Searched refs:serial_out (Results 1 – 1 of 1) sorted by relevance
/external/u-boot/drivers/serial/ |
D | ns16550.c | 25 #define serial_out(x, y) outb(x, (ulong)y) macro 28 #define serial_out(x, y) out_be32(y, x) macro 31 #define serial_out(x, y) out_le32(y, x) macro 34 #define serial_out(x, y) writeb(x, y) macro 128 #define serial_out(value, addr) \ macro 150 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); in NS16550_setbrg() 151 serial_out(baud_divisor & 0xff, &com_port->dll); in NS16550_setbrg() 152 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); in NS16550_setbrg() 153 serial_out(UART_LCRVAL, &com_port->lcr); in NS16550_setbrg() 169 serial_out(0, &com_port->mdr1); in NS16550_init() [all …]
|