Lines Matching refs:lcr
250 unsigned long lcr;
252 lcr = tup->lcr_shadow;
254 lcr |= UART_LCR_SBC;
256 lcr &= ~UART_LCR_SBC;
257 tegra_uart_write(tup, lcr, UART_LCR);
258 tup->lcr_shadow = lcr;
380 unsigned long lcr;
411 lcr = tup->lcr_shadow;
412 lcr |= UART_LCR_DLAB;
413 tegra_uart_write(tup, lcr, UART_LCR);
418 lcr &= ~UART_LCR_DLAB;
419 tegra_uart_write(tup, lcr, UART_LCR);
1279 unsigned int lcr;
1300 lcr = tup->lcr_shadow;
1301 lcr &= ~UART_LCR_PARITY;
1309 lcr |= UART_LCR_PARITY;
1310 lcr &= ~UART_LCR_EPAR;
1311 lcr &= ~UART_LCR_SPAR;
1313 lcr |= UART_LCR_PARITY;
1314 lcr |= UART_LCR_EPAR;
1315 lcr &= ~UART_LCR_SPAR;
1319 lcr &= ~UART_LCR_WLEN8;
1322 lcr |= UART_LCR_WLEN5;
1326 lcr |= UART_LCR_WLEN6;
1330 lcr |= UART_LCR_WLEN7;
1334 lcr |= UART_LCR_WLEN8;
1341 lcr |= UART_LCR_STOP;
1344 lcr &= ~UART_LCR_STOP;
1348 tegra_uart_write(tup, lcr, UART_LCR);
1349 tup->lcr_shadow = lcr;