/external/u-boot/drivers/serial/ |
ns16550.c | 129 ns16550_writeb(com_port, \ 130 (unsigned char *)addr - (unsigned char *)com_port, value) 132 ns16550_readb(com_port, \ 133 (unsigned char *)addr - (unsigned char *)com_port) 148 static void NS16550_setbrg(NS16550_t com_port, int baud_divisor) 150 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); 151 serial_out(baud_divisor & 0xff, &com_port->dll); 152 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); 153 serial_out(UART_LCRVAL, &com_port->lcr); 156 void NS16550_init(NS16550_t com_port, int baud_divisor 246 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; local 269 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; local 286 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; local 305 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; local 319 struct NS16550 *const com_port = dev_get_priv(dev); local 339 struct NS16550 *const com_port = dev_get_priv(dev); local 349 struct NS16550 *const com_port = dev_get_priv(dev); local 359 struct NS16550 *const com_port = dev_get_priv(dev); local 372 struct NS16550 *const com_port = dev_get_priv(dev); local [all...] |
/external/u-boot/include/ |
debug_uart.h | 114 serial_out_shift((char *)com_port + \ 115 ((char *)reg - (char *)com_port) * \ 119 serial_in_shift((char *)com_port + \ 120 ((char *)reg - (char *)com_port) * \
|
ns16550.h | 204 void NS16550_init(NS16550_t com_port, int baud_divisor); 205 void NS16550_putc(NS16550_t com_port, char c); 206 char NS16550_getc(NS16550_t com_port); 207 int NS16550_tstc(NS16550_t com_port); 208 void NS16550_reinit(NS16550_t com_port, int baud_divisor);
|
/external/u-boot/arch/arm/mach-socfpga/ |
reset_manager_arria10.c | 32 unsigned int com_port; local 34 com_port = uart_com_port(gd->fdt_blob); 36 if (com_port == SOCFPGA_UART1_ADDRESS) 38 else if (com_port == SOCFPGA_UART0_ADDRESS)
|
/external/u-boot/lib/efi/ |
efi_stub.c | 69 NS16550_t com_port = (NS16550_t)0x3f8; local 71 while ((inb((ulong)&com_port->lsr) & UART_LSR_THRE) == 0) 73 outb(ch, (ulong)&com_port->thr);
|