Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/tty/serial/
Damba-pl011.c1644 if (port->status & UPSTAT_AUTORTS) { in pl011_set_mctrl()
1935 uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_disable_uart()
2134 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in pl011_set_termios()
2137 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_set_termios()
2244 port->status &= ~UPSTAT_AUTORTS; in pl011_rs485_config()
Domap-serial.c665 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in serial_omap_set_mctrl()
994 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in serial_omap_set_termios()
998 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in serial_omap_set_termios()
Dmax310x.c978 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in max310x_set_termios()
982 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in max310x_set_termios()
Dstm32-usart.c832 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_usart_set_mctrl()
1210 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_usart_set_termios()
1212 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_usart_set_termios()
Dserial_core.c712 mask |= UPSTAT_AUTORTS; in uart_throttle()
719 if (mask & UPSTAT_AUTORTS) in uart_throttle()
741 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
748 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
Dsc16is7xx.c1089 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in sc16is7xx_set_termios()
1093 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in sc16is7xx_set_termios()
/linux-6.1.9/drivers/tty/serial/8250/
D8250_omap.c179 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in __omap8250_set_mctrl()
467 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in omap_8250_set_termios()
473 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in omap_8250_set_termios()
D8250_port.c1938 (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) && in serial8250_handle_irq()
/linux-6.1.9/include/linux/
Dserial_core.h551 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro