Lines Matching refs:lcr

250 	unsigned long lcr;  in tegra_uart_break_ctl()  local
252 lcr = tup->lcr_shadow; in tegra_uart_break_ctl()
254 lcr |= UART_LCR_SBC; in tegra_uart_break_ctl()
256 lcr &= ~UART_LCR_SBC; in tegra_uart_break_ctl()
257 tegra_uart_write(tup, lcr, UART_LCR); in tegra_uart_break_ctl()
258 tup->lcr_shadow = lcr; in tegra_uart_break_ctl()
380 unsigned long lcr; in tegra_set_baudrate() local
411 lcr = tup->lcr_shadow; in tegra_set_baudrate()
412 lcr |= UART_LCR_DLAB; in tegra_set_baudrate()
413 tegra_uart_write(tup, lcr, UART_LCR); in tegra_set_baudrate()
418 lcr &= ~UART_LCR_DLAB; in tegra_set_baudrate()
419 tegra_uart_write(tup, lcr, UART_LCR); in tegra_set_baudrate()
1273 unsigned int lcr; in tegra_uart_set_termios() local
1294 lcr = tup->lcr_shadow; in tegra_uart_set_termios()
1295 lcr &= ~UART_LCR_PARITY; in tegra_uart_set_termios()
1303 lcr |= UART_LCR_PARITY; in tegra_uart_set_termios()
1304 lcr &= ~UART_LCR_EPAR; in tegra_uart_set_termios()
1305 lcr &= ~UART_LCR_SPAR; in tegra_uart_set_termios()
1307 lcr |= UART_LCR_PARITY; in tegra_uart_set_termios()
1308 lcr |= UART_LCR_EPAR; in tegra_uart_set_termios()
1309 lcr &= ~UART_LCR_SPAR; in tegra_uart_set_termios()
1313 lcr &= ~UART_LCR_WLEN8; in tegra_uart_set_termios()
1316 lcr |= UART_LCR_WLEN5; in tegra_uart_set_termios()
1320 lcr |= UART_LCR_WLEN6; in tegra_uart_set_termios()
1324 lcr |= UART_LCR_WLEN7; in tegra_uart_set_termios()
1328 lcr |= UART_LCR_WLEN8; in tegra_uart_set_termios()
1335 lcr |= UART_LCR_STOP; in tegra_uart_set_termios()
1338 lcr &= ~UART_LCR_STOP; in tegra_uart_set_termios()
1342 tegra_uart_write(tup, lcr, UART_LCR); in tegra_uart_set_termios()
1343 tup->lcr_shadow = lcr; in tegra_uart_set_termios()