Home
last modified time | relevance | path

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

/openbmc/linux/drivers/tty/serial/
H A Damba-pl011.c1640 if (port->status & UPSTAT_AUTORTS) { in pl011_set_mctrl()
1931 uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_disable_uart()
2130 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in pl011_set_termios()
2133 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in pl011_set_termios()
2247 port->status &= ~UPSTAT_AUTORTS; in pl011_rs485_config()
H A 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()
H A Dmax310x.c996 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in max310x_set_termios()
1000 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in max310x_set_termios()
H A Dstm32-usart.c929 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_usart_set_mctrl()
1262 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_usart_set_termios()
1264 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_usart_set_termios()
H A Dserial_core.c740 mask |= UPSTAT_AUTORTS; in uart_throttle()
747 if (mask & UPSTAT_AUTORTS) in uart_throttle()
769 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
776 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
H A Dsc16is7xx.c1084 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in sc16is7xx_set_termios()
1088 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in sc16is7xx_set_termios()
/openbmc/linux/drivers/tty/serial/8250/
H A 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()
H A D8250_port.c1928 (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) && in serial8250_handle_irq()
/openbmc/linux/include/linux/
H A Dserial_core.h555 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro