Lines Matching refs:lcr
297 unsigned int lcr = vt8500_read(port, VT8500_URLCR); in vt8500_set_mctrl() local
300 lcr |= VT8500_RTS; in vt8500_set_mctrl()
302 lcr &= ~VT8500_RTS; in vt8500_set_mctrl()
304 vt8500_write(port, lcr, VT8500_URLCR); in vt8500_set_mctrl()
378 unsigned int baud, lcr; in vt8500_set_termios() local
390 lcr = vt8500_read(&vt8500_port->uart, VT8500_URLCR); in vt8500_set_termios()
391 lcr &= ~(VT8500_PARENB | VT8500_PARODD); in vt8500_set_termios()
393 lcr |= VT8500_PARENB; in vt8500_set_termios()
396 lcr |= VT8500_PARODD; in vt8500_set_termios()
400 lcr &= ~VT8500_CS8; in vt8500_set_termios()
406 lcr |= VT8500_CS8; in vt8500_set_termios()
413 lcr &= ~VT8500_CSTOPB; in vt8500_set_termios()
415 lcr |= VT8500_CSTOPB; in vt8500_set_termios()
417 lcr &= ~VT8500_SWRTSCTS; in vt8500_set_termios()
419 lcr |= VT8500_SWRTSCTS; in vt8500_set_termios()
422 vt8500_write(&vt8500_port->uart, lcr, VT8500_URLCR); in vt8500_set_termios()