Searched refs:TIOCM_RTS (Results 1 - 25 of 106) sorted by relevance

12345

/linux-master/include/uapi/asm-generic/
H A Dtermios.h35 #define TIOCM_RTS 0x004 macro
/linux-master/arch/mips/include/uapi/asm/
H A Dtermios.h67 #define TIOCM_RTS 0x004 /* request to send */ macro
/linux-master/drivers/usb/serial/
H A Dmct_u232.c286 if (control_state & TIOCM_RTS)
438 priv->control_state = TIOCM_DTR | TIOCM_RTS;
487 priv->control_state |= TIOCM_DTR | TIOCM_RTS;
489 priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
624 control_state |= TIOCM_DTR | TIOCM_RTS;
633 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
723 if (set & TIOCM_RTS)
724 control_state |= TIOCM_RTS;
727 if (clear & TIOCM_RTS)
728 control_state &= ~TIOCM_RTS;
[all...]
H A Dmetro-usb.c229 if (control_state & TIOCM_RTS)
308 if (set & TIOCM_RTS)
309 control_state |= TIOCM_RTS;
312 if (clear & TIOCM_RTS)
313 control_state &= ~TIOCM_RTS;
H A Dupd78f0730.c197 ((signals & UPD78F0730_RTS) ? TIOCM_RTS : 0);
220 if (set & TIOCM_RTS) {
228 if (clear & TIOCM_RTS) {
275 set = TIOCM_DTR | TIOCM_RTS;
277 clear = TIOCM_DTR | TIOCM_RTS;
H A Dbelkin_sa.c311 control_state |= (TIOCM_DTR|TIOCM_RTS);
341 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
446 if (set & TIOCM_RTS) {
447 control_state |= TIOCM_RTS;
454 if (clear & TIOCM_RTS) {
455 control_state &= ~TIOCM_RTS;
H A Dssu100.c139 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
148 if (set & TIOCM_RTS)
368 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
399 set_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
401 clear_mctrl(dev, TIOCM_DTR | TIOCM_RTS);
H A Dopticon.c313 result |= TIOCM_RTS;
336 if (set & TIOCM_RTS)
338 if (clear & TIOCM_RTS)
H A Df81232.c248 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
261 if (clear & TIOCM_RTS)
267 if (set & TIOCM_RTS)
624 f81232_set_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
626 f81232_set_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
683 (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
760 f81232_set_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
762 f81232_set_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
H A Dspcp8x5.c422 if (set & TIOCM_RTS)
426 if (clear & TIOCM_RTS)
454 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
H A Df81534.c689 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
703 if (clear & TIOCM_RTS)
709 if (set & TIOCM_RTS)
960 f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
962 f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
1444 (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
1464 f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
1466 f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
H A Dquatech2.c215 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0) {
225 if (set & TIOCM_RTS)
724 (d[0] & UART_MCR_RTS ? TIOCM_RTS : 0) |
782 update_mctrl(port_priv, TIOCM_DTR | TIOCM_RTS, 0);
784 update_mctrl(port_priv, 0, TIOCM_DTR | TIOCM_RTS);
H A Dxr_serial.c454 ((status & XR_GPIO_RTS) ? 0 : TIOCM_RTS) |
473 if (set & TIOCM_RTS)
477 if (clear & TIOCM_RTS)
503 xr_tiocmset_port(port, TIOCM_DTR | TIOCM_RTS, 0);
505 xr_tiocmset_port(port, 0, TIOCM_DTR | TIOCM_RTS);
/linux-master/drivers/bluetooth/
H A Dhci_ldisc.c335 set &= ~(TIOCM_OUT2 | TIOCM_RTS);
337 set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
339 clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
348 set |= (TIOCM_OUT2 | TIOCM_RTS);
350 set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
352 clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
H A Dhci_ath.c59 tty->driver->ops->tiocmset(tty, 0x00, TIOCM_RTS);
64 tty->driver->ops->tiocmset(tty, TIOCM_RTS, 0x00);
/linux-master/arch/xtensa/include/uapi/asm/
H A Dioctls.h61 # define TIOCM_RTS 0x004 macro
/linux-master/arch/sh/include/uapi/asm/
H A Dioctls.h49 # define TIOCM_RTS 0x004 macro
/linux-master/arch/arm/mach-versatile/
H A Dintegrator_ap.c122 if (mctrl & TIOCM_RTS)
/linux-master/drivers/mmc/core/
H A Dsdio_uart.c217 if (mctrl & TIOCM_RTS)
555 sdio_uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
557 sdio_uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
628 sdio_uart_set_mctrl(port, TIOCM_RTS | TIOCM_DTR);
824 sdio_uart_clear_mctrl(port, TIOCM_RTS);
850 sdio_uart_set_mctrl(port, TIOCM_RTS);
869 sdio_uart_clear_mctrl(port, TIOCM_RTS | TIOCM_DTR);
875 mask |= TIOCM_RTS;
/linux-master/include/linux/
H A Dserdev.h303 return serdev_device_set_tiocm(serdev, TIOCM_RTS, 0);
305 return serdev_device_set_tiocm(serdev, 0, TIOCM_RTS);
/linux-master/drivers/tty/ipwireless/
H A Dtty.c291 out |= TIOCM_RTS;
309 if (set & TIOCM_RTS) {
331 if (clear & TIOCM_RTS) {
/linux-master/arch/powerpc/include/uapi/asm/
H A Dioctls.h57 # define TIOCM_RTS 0x004 macro
/linux-master/arch/alpha/include/uapi/asm/
H A Dioctls.h62 # define TIOCM_RTS 0x004 macro
/linux-master/arch/sparc/include/uapi/asm/
H A Dtermbits.h188 #define TIOCM_RTS 0x004 macro
/linux-master/drivers/tty/serial/8250/
H A D8250.h223 if (tiocm & TIOCM_RTS)
242 tiocm |= TIOCM_RTS;

Completed in 249 milliseconds

12345