Home
last modified time | relevance | path

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

/openbmc/linux/drivers/tty/serial/
H A Dsa1100.c406 utcr0 = UTCR0_DSS; in sa1100_set_termios()
408 utcr0 = 0; in sa1100_set_termios()
411 utcr0 |= UTCR0_SBS; in sa1100_set_termios()
413 utcr0 |= UTCR0_PE; in sa1100_set_termios()
415 utcr0 |= UTCR0_OES; in sa1100_set_termios()
474 UART_PUT_UTCR0(sport, utcr0); in sa1100_set_termios()
724 unsigned int utcr0, quot; in sa1100_console_get_options() local
726 utcr0 = UART_GET_UTCR0(sport); in sa1100_console_get_options()
729 if (utcr0 & UTCR0_PE) { in sa1100_console_get_options()
730 if (utcr0 & UTCR0_OES) in sa1100_console_get_options()
[all …]
/openbmc/qemu/hw/arm/
H A Dstrongarm.c932 uint8_t utcr0; member
1012 if (s->utcr0 & UTCR0_PE) { in strongarm_uart_update_parameters()
1015 if (s->utcr0 & UTCR0_OES) { in strongarm_uart_update_parameters()
1023 if (s->utcr0 & UTCR0_SBS) { in strongarm_uart_update_parameters()
1029 data_bits = (s->utcr0 & UTCR0_DSS) ? 8 : 7; in strongarm_uart_update_parameters()
1150 return s->utcr0; in strongarm_uart_read()
1193 s->utcr0 = value & 0x7f; in strongarm_uart_write()
1280 s->utcr0 = UTCR0_DSS; /* 8 data, no parity */ in strongarm_uart_reset()
1320 VMSTATE_UINT8(utcr0, StrongARMUARTState),