Home
last modified time | relevance | path

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

/Linux-v6.6/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()
2251 port->status &= ~UPSTAT_AUTORTS; in pl011_rs485_config()
Domap-serial.c636 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in serial_omap_set_mctrl()
965 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in serial_omap_set_termios()
969 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in serial_omap_set_termios()
Dmax310x.c980 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in max310x_set_termios()
984 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in max310x_set_termios()
Dstm32-usart.c923 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_usart_set_mctrl()
1255 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_usart_set_termios()
1257 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_usart_set_termios()
Dserial_core.c727 mask |= UPSTAT_AUTORTS; in uart_throttle()
734 if (mask & UPSTAT_AUTORTS) in uart_throttle()
756 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
763 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
Dsc16is7xx.c1086 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in sc16is7xx_set_termios()
1090 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in sc16is7xx_set_termios()
/Linux-v6.6/drivers/tty/serial/8250/
D8250_omap.c187 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.c1934 (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) && in serial8250_handle_irq()
/Linux-v6.6/include/linux/
Dserial_core.h554 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro