Home
last modified time | relevance | path

Searched refs:SER_RTS (Results 1 – 19 of 19) sorted by relevance

/freebsd-12-stable/sys/sys/
Dserial.h46 #define SER_RTS 0x0002 /* request to send */ macro
60 #define SER_DRTS SER_DELTA(SER_RTS)
/freebsd-12-stable/sys/dev/usb/serial/
Dusb_serial.c799 ucom_modem(tp, SER_DTR | SER_RTS, 0); in ucom_open()
962 if (sc->sc_mcr & SER_RTS) { in ucom_modem()
963 sigon |= SER_RTS; in ucom_modem()
985 if (sigon & SER_RTS) { in ucom_modem()
986 sc->sc_mcr |= SER_RTS; in ucom_modem()
988 if (sigoff & SER_RTS) { in ucom_modem()
989 sc->sc_mcr &= ~SER_RTS; in ucom_modem()
994 onoff = (sc->sc_mcr & SER_RTS) ? 1 : 0; in ucom_modem()
1336 ucom_modem(tp, SER_RTS, 0); in ucom_param()
/freebsd-12-stable/sys/mips/atheros/
Duart_dev_ar933x.c641 SIGCHG(sig & SER_RTS, new, SER_RTS, in ar933x_bus_setsig()
649 if (new & SER_RTS) in ar933x_bus_setsig()
/freebsd-12-stable/sys/mips/cavium/
Duart_dev_oct16550.c460 sc->sc_hwsig |= SER_RTS; in oct16550_bus_attach()
776 SIGCHG(sig & SER_RTS, new, SER_RTS, in oct16550_bus_setsig()
784 if (new & SER_RTS) in oct16550_bus_setsig()
/freebsd-12-stable/sys/arm/xilinx/
Duart_dev_cdnc.c495 SIGCHG(sig & SER_RTS, new, SER_RTS, SER_DRTS); in cdnc_uart_bus_setsig()
503 if ((new & SER_RTS) != 0) in cdnc_uart_bus_setsig()
/freebsd-12-stable/sys/dev/uart/
Duart_tty.c233 UART_SETSIG(sc, SER_DRTS|SER_RTS); in uart_tty_inwakeup()
294 UART_SETSIG(sc, SER_DRTS | SER_RTS); in uart_tty_param()
Duart_dev_z8530.c594 SIGCHG(sig & SER_RTS, new, SER_RTS, in z8530_bus_setsig()
604 if (new & SER_RTS) in z8530_bus_setsig()
Duart_dev_ns8250.c534 sc->sc_hwsig |= SER_RTS; in ns8250_bus_attach()
1006 new = (new & ~SER_RTS) | (sig & (SER_RTS | SER_DRTS)); in ns8250_bus_setsig()
1013 if (new & SER_RTS) in ns8250_bus_setsig()
Duart_dev_sab82532.c678 SIGCHG(sig & SER_RTS, new, SER_RTS, in sab82532_bus_setsig()
704 if (new & SER_RTS) in sab82532_bus_setsig()
Duart_dev_quicc.c465 SIGCHG(sig & SER_RTS, new, SER_RTS, in quicc_bus_setsig()
/freebsd-12-stable/sys/dev/rp/
Drp.c930 if (sigon & SER_RTS) in rpmodem()
932 if (sigoff & SER_RTS) in rpmodem()
945 k |= SER_RTS; in rpmodem()
/freebsd-12-stable/sys/arm/amlogic/aml8726/
Duart_dev_aml8726.c362 SIGCHG(sig & SER_RTS, new, SER_RTS, SER_DRTS); in aml8726_uart_bus_setsig()
/freebsd-12-stable/sys/dev/rc/
Drc.c834 (void) rc_modem(tp, SER_RTS, 0); in rc_close()
1055 biton |= SER_RTS; in rc_modem()
1077 if (biton & SER_RTS) in rc_modem()
1079 if (bitoff & SER_RTS) in rc_modem()
/freebsd-12-stable/sys/sparc64/pci/
Dsbbc.c1071 SIGCHG(sig & SER_RTS, new, SER_RTS, SER_DRTS); in sbbc_uart_bus_setsig()
/freebsd-12-stable/sys/dev/cy/
Dcy.c1855 sigon |= SER_RTS; in cymodem()
1883 if (sigon & SER_RTS) in cymodem()
1885 if (sigoff & SER_RTS) in cymodem()
/freebsd-12-stable/sys/dev/sio/
Dsio.c2142 if (sigoff & SER_RTS) in commodem()
2146 if (sigon & SER_RTS) in commodem()
2160 bitor |= SER_RTS; in commodem()
/freebsd-12-stable/sys/dev/cx/
Dif_cx.c1494 if (d->chan->rts) sigon |= SER_RTS; in cx_tmodem()
1503 if (sigon & SER_RTS) in cx_tmodem()
1505 if (sigoff & SER_RTS) in cx_tmodem()
/freebsd-12-stable/sys/dev/usb/net/
Dif_usie.c750 sc->sc_msr |= (param & USIE_RTS) ? SER_RTS : 0; in usie_uc_status_callback()
/freebsd-12-stable/sys/kern/
Dtty.c325 ttydevsw_modem(tp, SER_DTR|SER_RTS, 0); in ttydev_open()