Lines Matching refs:lcr
288 unsigned int lcr = vt8500_read(port, VT8500_URLCR); in vt8500_set_mctrl() local
291 lcr |= VT8500_RTS; in vt8500_set_mctrl()
293 lcr &= ~VT8500_RTS; in vt8500_set_mctrl()
295 vt8500_write(port, lcr, VT8500_URLCR); in vt8500_set_mctrl()
369 unsigned int baud, lcr; in vt8500_set_termios() local
381 lcr = vt8500_read(&vt8500_port->uart, VT8500_URLCR); in vt8500_set_termios()
382 lcr &= ~(VT8500_PARENB | VT8500_PARODD); in vt8500_set_termios()
384 lcr |= VT8500_PARENB; in vt8500_set_termios()
387 lcr |= VT8500_PARODD; in vt8500_set_termios()
391 lcr &= ~VT8500_CS8; in vt8500_set_termios()
397 lcr |= VT8500_CS8; in vt8500_set_termios()
404 lcr &= ~VT8500_CSTOPB; in vt8500_set_termios()
406 lcr |= VT8500_CSTOPB; in vt8500_set_termios()
408 lcr &= ~VT8500_SWRTSCTS; in vt8500_set_termios()
410 lcr |= VT8500_SWRTSCTS; in vt8500_set_termios()
413 vt8500_write(&vt8500_port->uart, lcr, VT8500_URLCR); in vt8500_set_termios()