Lines Matching refs:lcr
1775 int icr, lcr; in asyclose() local
1814 lcr = ddi_get8(asy->asy_iohandle, asy->asy_ioaddr + LCR); in asyclose()
1816 asy->asy_ioaddr + LCR, (lcr & ~SETBREAK)); in asyclose()
1992 uchar_t lcr; in asy_reset_fifo() local
1997 lcr = ddi_get8(asy->asy_iohandle, asy->asy_ioaddr + LCR); in asy_reset_fifo()
1999 lcr | DLAB); in asy_reset_fifo()
2008 ddi_put8(asy->asy_iohandle, asy->asy_ioaddr + LCR, lcr); in asy_reset_fifo()
2025 int icr, lcr; in asy_program() local
2114 lcr = ddi_get8(asy->asy_iohandle, asy->asy_ioaddr + LCR); in asy_program()
2115 lcr &= ~(WLS0|WLS1|STB|PEN|EPS); in asy_program()
2118 lcr |= STB; /* 2 stop bits */ in asy_program()
2121 lcr |= PEN; in asy_program()
2124 lcr |= EPS; in asy_program()
2128 lcr |= BITS5; in asy_program()
2131 lcr |= BITS6; in asy_program()
2134 lcr |= BITS7; in asy_program()
2137 lcr |= BITS8; in asy_program()
2151 ddi_put8(asy->asy_iohandle, asy->asy_ioaddr + LCR, lcr); in asy_program()
2985 uchar_t lcr; in async_restart() local
3003 lcr = ddi_get8(asy->asy_iohandle, asy->asy_ioaddr + LCR); in async_restart()
3005 (lcr & ~SETBREAK)); in async_restart()