Home
last modified time | relevance | path

Searched refs:UPSTAT_AUTORTS (Results 1 – 8 of 8) sorted by relevance

/kernel/linux/linux-5.10/drivers/tty/serial/
Dstm32-usart.c536 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_usart_set_mctrl()
854 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_usart_set_termios()
856 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_usart_set_termios()
Damba-pl011.c1573 if (port->status & UPSTAT_AUTORTS) { in pl011_set_mctrl()
1860 uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_disable_uart()
2046 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in pl011_set_termios()
2049 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_set_termios()
Domap-serial.c693 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in serial_omap_set_mctrl()
1047 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in serial_omap_set_termios()
1051 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in serial_omap_set_termios()
Dmax310x.c968 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in max310x_set_termios()
972 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in max310x_set_termios()
Dserial_core.c724 mask |= UPSTAT_AUTORTS; in uart_throttle()
731 if (mask & UPSTAT_AUTORTS) in uart_throttle()
753 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
760 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
D8250_omap.c179 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in __omap8250_set_mctrl()
481 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in omap_8250_set_termios()
487 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in omap_8250_set_termios()
D8250_port.c1910 (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) && in serial8250_handle_irq()
/kernel/linux/linux-5.10/include/linux/
Dserial_core.h228 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro