Lines Matching defs:parity
95 #define CDNS_UART_MR_PARITY_NONE 0x00000020 /* No parity mode */
96 #define CDNS_UART_MR_PARITY_MARK 0x00000018 /* Mark parity mode */
97 #define CDNS_UART_MR_PARITY_SPACE 0x00000010 /* Space parity mode */
98 #define CDNS_UART_MR_PARITY_ODD 0x00000008 /* Odd parity mode */
99 #define CDNS_UART_MR_PARITY_EVEN 0x00000000 /* Even parity mode */
129 * Do not enable parity error interrupt for the following
130 * reason: When parity error interrupt is enabled, each Rx
131 * parity error always results in 2 events. The first one
132 * being parity error interrupt and the second one with a
134 * parity error interrupt ensures better handling of parity
135 * error events. With this change, for a parity error case, we
136 * get a Rx interrupt with parity error set in ISR register
137 * and we still handle parity errors in the desired way.
277 port->icount.parity++;
287 port->icount.parity++;
671 * cdns_uart_set_termios - termios operations, handling data length, parity,
772 /* Mark or Space parity */
842 * no parity.
1276 int parity = 'n';
1287 uart_parse_options(options, &baud, &parity, &bits, &flow);
1296 return uart_set_options(port, co, baud, parity, bits, flow);