Home
last modified time | relevance | path

Searched refs:serial_out (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/drivers/serial/
Dns16550.c26 #define serial_out(x, y) outb(x, (ulong)y) macro
29 #define serial_out(x, y) out_be32(y, x) macro
32 #define serial_out(x, y) out_le32(y, x) macro
35 #define serial_out(x, y) writeb(x, y) macro
129 #define serial_out(value, addr) \ macro
154 serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr); in NS16550_setbrg()
155 serial_out(baud_divisor & 0xff, &com_port->dll); in NS16550_setbrg()
156 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); in NS16550_setbrg()
157 serial_out(lcr_val, &com_port->lcr); in NS16550_setbrg()
173 serial_out(0, &com_port->mdr1); in NS16550_init()
[all …]
/external/crosvm/devices/src/
Dserial.rs450 let serial_out = SharedBuffer::new(); in serial_output() localVariable
452 let mut serial = Serial::new_out(intr_evt, Box::new(serial_out.clone())); in serial_output()
458 serial_out.buf.lock().as_slice(), in serial_output()
466 let serial_out = SharedBuffer::new(); in serial_input() localVariable
469 Serial::new_out(intr_evt.try_clone().unwrap(), Box::new(serial_out.clone())); in serial_input()