Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/tty/serial/8250/
D8250_omap.c145 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in omap8250_set_mctrl()
449 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in omap_8250_set_termios()
453 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in omap_8250_set_termios()
/Linux-v4.19/drivers/tty/serial/
Dstm32-usart.c483 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_set_mctrl()
648 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_set_termios()
650 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_set_termios()
Damba-pl011.c1571 if (port->status & UPSTAT_AUTORTS) { in pl011_set_mctrl()
1841 uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_disable_uart()
2027 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in pl011_set_termios()
2030 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_set_termios()
Dserial_core.c694 mask |= UPSTAT_AUTORTS; in uart_throttle()
701 if (mask & UPSTAT_AUTORTS) in uart_throttle()
723 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
730 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
Domap-serial.c689 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in serial_omap_set_mctrl()
1043 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in serial_omap_set_termios()
1047 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in serial_omap_set_termios()
/Linux-v4.19/include/linux/
Dserial_core.h240 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro