/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_insformat.h | 55 parity : 1; member 57 uint32_t parity : 1, 74 parity : 1; member 76 uint32_t parity : 1, 92 parity : 1; member 94 uint32_t parity : 1, 110 parity : 1; member 112 uint32_t parity : 1, 128 parity : 1; member 130 uint32_t parity : 1, [all …]
|
D | aicasm_gram.y | 1680 f1_instr->parity = 1; in format_1_instr() 1817 f3_instr->parity = 1; in format_3_instr()
|
/linux-4.4.14/Documentation/mtd/ |
D | nand_ecc.txt | 28 bytes. This is done by calculating several parity bits over the rows and 29 columns. The parity used is even parity which means that the parity bit = 1 30 if the data over which the parity is calculated is 1 and the parity bit = 0 31 if the data over which the parity is calculated is 0. So the total 32 number of bits over the data over which the parity is calculated + the 33 parity bit is even. (see wikipedia if you can't follow this). 53 cp is my abbreviation for column parity, rp for row parity. 55 Let's start to explain column parity. 56 cp0 is the parity that belongs to all bit0, bit2, bit4, bit6. 59 cp2 is the parity over bit0, bit1, bit4 and bit5 [all …]
|
/linux-4.4.14/arch/mips/mti-sead3/ |
D | sead3-init.c | 25 char parity = '\0', bits = '\0', flow = '\0'; in console_config() local 36 parity = *s++; in console_config() 48 if (parity != 'n' && parity != 'o' && parity != 'e') in console_config() 49 parity = 'n'; in console_config() 55 parity, bits, flow); in console_config()
|
/linux-4.4.14/arch/mips/mm/ |
D | cerr-sb1.c | 269 static const uint8_t parity[256] = { variable 303 char parity = 0; in range_parity() local 308 parity = !parity; in range_parity() 311 return parity; in range_parity() 318 char parity = 0; in inst_parity() local 326 parity <<= 1; in inst_parity() 327 parity |= byte_parity; in inst_parity() 329 return parity; in inst_parity() 449 p ^= (parity[w>>24] ^ parity[(w>>16) & 0xFF] in dc_ecc() 450 ^ parity[(w>>8) & 0xFF] ^ parity[w & 0xFF]); in dc_ecc() [all …]
|
/linux-4.4.14/drivers/media/pci/mantis/ |
D | mantis_uart.c | 43 enum mantis_parity parity; member 58 } parity[3] = { variable 119 mmwrite((mmread(MANTIS_UART_CTL) | (params->parity & 0x3)), MANTIS_UART_CTL); in mantis_uart_setup() 155 params.parity = config->parity; in mantis_uart_init() 158 parity[params.parity].string); in mantis_uart_init()
|
D | mantis_vp3028.c | 36 .parity = MANTIS_PARITY_NONE,
|
D | hopper_vp3028.c | 82 .parity = MANTIS_PARITY_NONE,
|
D | mantis_vp3030.c | 97 .parity = MANTIS_PARITY_NONE,
|
D | mantis_vp1034.c | 114 .parity = MANTIS_PARITY_NONE,
|
D | mantis_vp1033.c | 206 .parity = MANTIS_PARITY_NONE,
|
D | mantis_vp2040.c | 181 .parity = MANTIS_PARITY_NONE,
|
D | mantis_vp2033.c | 182 .parity = MANTIS_PARITY_NONE,
|
D | mantis_common.h | 94 enum mantis_parity parity; member
|
D | mantis_vp1041.c | 351 .parity = MANTIS_PARITY_NONE,
|
/linux-4.4.14/arch/mips/mti-malta/ |
D | malta-init.c | 46 char parity = '\0', bits = '\0', flow = '\0'; in console_config() local 56 parity = *s++; in console_config() 68 if (parity != 'n' && parity != 'o' && parity != 'e') in console_config() 69 parity = 'n'; in console_config() 77 parity, bits); in console_config() 83 parity, bits, flow); in console_config()
|
/linux-4.4.14/arch/mips/ar7/ |
D | prom.c | 203 char parity = '\0', bits = '\0', flow = '\0'; in console_config() local 216 parity = *s++; in console_config() 229 if (parity != 'n' && parity != 'o' && parity != 'e') in console_config() 230 parity = 'n'; in console_config() 236 parity, bits, flow); in console_config() 238 sprintf(console_string, " console=ttyS0,%d%c%c", baud, parity, in console_config()
|
/linux-4.4.14/drivers/firmware/ |
D | pcdp.c | 28 char parity; in setup_serial_console() local 36 switch (uart->parity) { in setup_serial_console() 37 case 0x2: parity = 'e'; break; in setup_serial_console() 38 case 0x3: parity = 'o'; break; in setup_serial_console() 39 default: parity = 'n'; in setup_serial_console() 41 p += sprintf(p, "%c%d", parity, uart->bits); in setup_serial_console()
|
D | pcdp.h | 41 u8 parity; member
|
/linux-4.4.14/drivers/tty/serial/ |
D | max3100.c | 112 int parity; /* keeps track if we should send parity */ member 146 int parity; in max3100_do_parity() local 148 if (s->parity & MAX3100_PARITY_ODD) in max3100_do_parity() 149 parity = 1; in max3100_do_parity() 151 parity = 0; in max3100_do_parity() 153 if (s->parity & MAX3100_7BIT) in max3100_do_parity() 158 parity = parity ^ (hweight8(c) & 1); in max3100_do_parity() 159 return parity; in max3100_do_parity() 169 if (s->parity & MAX3100_7BIT) in max3100_calc_parity() 174 if (s->parity & MAX3100_PARITY_ON) in max3100_calc_parity() [all …]
|
D | 21285.c | 95 port->icount.parity++; in serial21285_rx_chars() 386 int *parity, int *bits) in serial21285_get_options() argument 409 *parity = 'o'; in serial21285_get_options() 411 *parity = 'e'; in serial21285_get_options() 425 int parity = 'n'; in serial21285_console_setup() local 437 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial21285_console_setup() 439 serial21285_get_options(port, &baud, &parity, &bits); in serial21285_console_setup() 441 return uart_set_options(port, co, baud, parity, bits, flow); in serial21285_console_setup()
|
D | apbuart.c | 98 port->icount.parity++; in apbuart_rx_chars() 455 int *parity, int *bits) in apbuart_console_get_options() argument 462 *parity = 'n'; in apbuart_console_get_options() 465 *parity = 'e'; in apbuart_console_get_options() 467 *parity = 'o'; in apbuart_console_get_options() 481 int parity = 'n'; in apbuart_console_setup() local 500 uart_parse_options(options, &baud, &parity, &bits, &flow); in apbuart_console_setup() 502 apbuart_console_get_options(port, &baud, &parity, &bits); in apbuart_console_setup() 504 return uart_set_options(port, co, baud, parity, bits, flow); in apbuart_console_setup()
|
D | serial_ks8695.c | 178 port->icount.parity++; in ks8695uart_rx_chars() 578 static void __init ks8695_console_get_options(struct uart_port *port, int *baud, int *parity, int *… in ks8695_console_get_options() argument 586 *parity = 'o'; in ks8695_console_get_options() 589 *parity = 'e'; in ks8695_console_get_options() 592 *parity = 'n'; in ks8695_console_get_options() 619 int parity = 'n'; in ks8695_console_setup() local 630 uart_parse_options(options, &baud, &parity, &bits, &flow); in ks8695_console_setup() 632 ks8695_console_get_options(port, &baud, &parity, &bits); in ks8695_console_setup() 634 return uart_set_options(port, co, baud, parity, bits, flow); in ks8695_console_setup()
|
D | efm32-uart.c | 219 port->icount.parity++; in efm32_uart_rx_chars() 555 int *baud, int *parity, int *bits) in efm32_uart_console_get_options() argument 576 *parity = 'o'; in efm32_uart_console_get_options() 578 *parity = 'e'; in efm32_uart_console_get_options() 580 *parity = 'n'; in efm32_uart_console_get_options() 586 *baud, *parity, *bits); in efm32_uart_console_get_options() 594 int parity = 'n'; in efm32_uart_console_setup() local 626 uart_parse_options(options, &baud, &parity, &bits, &flow); in efm32_uart_console_setup() 629 &baud, &parity, &bits); in efm32_uart_console_setup() 631 return uart_set_options(&efm_port->port, co, baud, parity, bits, flow); in efm32_uart_console_setup()
|
D | netx-serial.c | 217 port->icount.parity++; in netx_rxint() 552 int *parity, int *bits, int *flow) in netx_console_get_options() argument 565 *parity = 'n'; in netx_console_get_options() 568 *parity = 'e'; in netx_console_get_options() 570 *parity = 'o'; in netx_console_get_options() 598 int parity = 'n'; in netx_console_setup() local 611 uart_parse_options(options, &baud, &parity, &bits, &flow); in netx_console_setup() 618 &parity, &bits, &flow); in netx_console_setup() 623 return uart_set_options(&sport->port, co, baud, parity, bits, flow); in netx_console_setup()
|
D | suncore.c | 89 char parity; in sunserial_console_termios() local 123 parity = *(++s); in sunserial_console_termios() 154 switch (parity) { in sunserial_console_termios()
|
D | amba-pl010.c | 155 uap->port.icount.parity++; in pl010_rx_chars() 625 int *parity, int *bits) in pl010_console_get_options() argument 631 *parity = 'n'; in pl010_console_get_options() 634 *parity = 'e'; in pl010_console_get_options() 636 *parity = 'o'; in pl010_console_get_options() 655 int parity = 'n'; in pl010_console_setup() local 677 uart_parse_options(options, &baud, &parity, &bits, &flow); in pl010_console_setup() 679 pl010_console_get_options(uap, &baud, &parity, &bits); in pl010_console_setup() 681 return uart_set_options(&uap->port, co, baud, parity, bits, flow); in pl010_console_setup()
|
D | sa1100.c | 212 sport->port.icount.parity++; in sa1100_rx_chars() 750 int *parity, int *bits) in sa1100_console_get_options() argument 761 *parity = 'n'; in sa1100_console_get_options() 764 *parity = 'e'; in sa1100_console_get_options() 766 *parity = 'o'; in sa1100_console_get_options() 786 int parity = 'n'; in sa1100_console_setup() local 799 uart_parse_options(options, &baud, &parity, &bits, &flow); in sa1100_console_setup() 801 sa1100_console_get_options(sport, &baud, &parity, &bits); in sa1100_console_setup() 803 return uart_set_options(&sport->port, co, baud, parity, bits, flow); in sa1100_console_setup()
|
D | clps711x.c | 122 port->icount.parity++; in uart_clps711x_int_rx() 389 int baud = 38400, bits = 8, parity = 'n', flow = 'n'; in uart_clps711x_console_setup() local 414 parity = 'e'; in uart_clps711x_console_setup() 416 parity = 'o'; in uart_clps711x_console_setup() 426 uart_parse_options(options, &baud, &parity, &bits, &flow); in uart_clps711x_console_setup() 428 ret = uart_set_options(port, co, baud, parity, bits, flow); in uart_clps711x_console_setup()
|
D | bfin_uart.c | 291 uart->port.icount.parity++; in bfin_serial_rx_chars() 431 uart->port.icount.parity++; in bfin_serial_dma_rx_chars() 1043 int *parity, int *bits) in bfin_serial_console_get_options() argument 1054 *parity = 'n'; in bfin_serial_console_get_options() 1057 *parity = 'e'; in bfin_serial_console_get_options() 1059 *parity = 'o'; in bfin_serial_console_get_options() 1073 pr_debug("%s:baud = %d, parity = %c, bits= %d\n", __func__, *baud, *parity, *bits); in bfin_serial_console_get_options() 1112 int parity = 'n'; in bfin_serial_console_setup() local 1133 uart_parse_options(options, &baud, &parity, &bits, &flow); in bfin_serial_console_setup() 1135 bfin_serial_console_get_options(uart, &baud, &parity, &bits); in bfin_serial_console_setup() [all …]
|
D | fsl_lpuart.c | 664 sport->port.icount.parity++; in lpuart_rxint() 728 sport->port.icount.parity++; in lpuart32_rxint() 1602 int *parity, int *bits) in lpuart_console_get_options() argument 1616 *parity = 'n'; in lpuart_console_get_options() 1619 *parity = 'o'; in lpuart_console_get_options() 1621 *parity = 'e'; in lpuart_console_get_options() 1651 int *parity, int *bits) in lpuart32_console_get_options() argument 1665 *parity = 'n'; in lpuart32_console_get_options() 1668 *parity = 'o'; in lpuart32_console_get_options() 1670 *parity = 'e'; in lpuart32_console_get_options() [all …]
|
D | mxs-auart.c | 346 s->port.icount.parity++; in mxs_auart_rx_char() 1073 int *parity, int *bits) in auart_console_get_options() argument 1082 *parity = 'n'; in auart_console_get_options() 1085 *parity = 'e'; in auart_console_get_options() 1087 *parity = 'o'; in auart_console_get_options() 1113 int parity = 'n'; in auart_console_setup() local 1133 uart_parse_options(options, &baud, &parity, &bits, &flow); in auart_console_setup() 1135 auart_console_get_options(&s->port, &baud, &parity, &bits); in auart_console_setup() 1137 ret = uart_set_options(&s->port, co, baud, parity, bits, flow); in auart_console_setup()
|
D | pch_uart.c | 455 unsigned int parity, unsigned int bits, in pch_uart_hal_set_line() argument 470 if (parity & ~(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS | PCH_UART_LCR_SP)) { in pch_uart_hal_set_line() 471 dev_err(priv->port.dev, "Invalid parity(0x%x)\n", parity); in pch_uart_hal_set_line() 485 lcr = parity; in pch_uart_hal_set_line() 1083 port->icount.parity++; in pch_uart_err_ir() 1390 unsigned int baud, parity, bits, stb; in pch_uart_set_termios() local 1416 parity = PCH_UART_HAL_PARITY_ODD; in pch_uart_set_termios() 1418 parity = PCH_UART_HAL_PARITY_EVEN; in pch_uart_set_termios() 1421 parity = PCH_UART_HAL_PARITY_NONE; in pch_uart_set_termios() 1437 rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb); in pch_uart_set_termios() [all …]
|
D | digicolor-usart.c | 157 port->icount.parity++; in digicolor_uart_rx() 422 int baud = 115200, bits = 8, parity = 'n', flow = 'n'; in digicolor_uart_console_setup() local 433 uart_parse_options(options, &baud, &parity, &bits, &flow); in digicolor_uart_console_setup() 435 return uart_set_options(port, co, baud, parity, bits, flow); in digicolor_uart_console_setup()
|
D | uartlite.c | 131 port->icount.parity++; in ulite_receive() 476 int parity = 'n'; in ulite_console_setup() local 497 uart_parse_options(options, &baud, &parity, &bits, &flow); in ulite_console_setup() 499 return uart_set_options(port, co, baud, parity, bits, flow); in ulite_console_setup()
|
D | altera_uart.c | 213 port->icount.parity++; in altera_uart_rx_chars() 455 int parity = 'n'; in altera_uart_console_setup() local 465 uart_parse_options(options, &baud, &parity, &bits, &flow); in altera_uart_console_setup() 467 return uart_set_options(port, co, baud, parity, bits, flow); in altera_uart_console_setup()
|
D | mcf.c | 304 port->icount.parity++; in mcf_rx_chars() 554 int parity = 'n'; in mcf_console_setup() local 564 uart_parse_options(options, &baud, &parity, &bits, &flow); in mcf_console_setup() 566 return uart_set_options(port, co, baud, parity, bits, flow); in mcf_console_setup()
|
D | sprd_serial.c | 211 port->icount.parity++; in handle_lsr_errors() 567 int parity = 'n'; in sprd_console_setup() local 579 uart_parse_options(options, &baud, &parity, &bits, &flow); in sprd_console_setup() 581 return uart_set_options(port, co, baud, parity, bits, flow); in sprd_console_setup()
|
D | lantiq.c | 177 port->icount.parity++; in lqasc_rx_chars() 622 int parity = 'n'; in lqasc_console_setup() local 640 uart_parse_options(options, &baud, &parity, &bits, &flow); in lqasc_console_setup() 641 return uart_set_options(port, co, baud, parity, bits, flow); in lqasc_console_setup()
|
D | stm32-usart.c | 175 port->icount.parity++; in stm32_receive_chars() 652 int parity = 'n'; in stm32_console_setup() local 670 uart_parse_options(options, &baud, &parity, &bits, &flow); in stm32_console_setup() 672 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow); in stm32_console_setup()
|
D | vt8500_serial.c | 191 port->icount.parity++; in handle_rx() 535 int parity = 'n'; in vt8500_console_setup() local 547 uart_parse_options(options, &baud, &parity, &bits, &flow); in vt8500_console_setup() 550 co, baud, parity, bits, flow); in vt8500_console_setup()
|
D | arc_uart.c | 496 int parity = 'n'; in arc_serial_console_setup() local 511 uart_parse_options(options, &baud, &parity, &bits, &flow); in arc_serial_console_setup() 517 return uart_set_options(port, co, baud, parity, bits, flow); in arc_serial_console_setup()
|
D | mpc52xx_uart.c | 1412 port->icount.parity++; in mpc52xx_uart_int_rx_chars() 1542 int *baud, int *parity, int *bits, int *flow) in mpc52xx_console_get_options() argument 1571 *parity = 'n'; in mpc52xx_console_get_options() 1573 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e'; in mpc52xx_console_get_options() 1621 int parity = 'n'; in mpc52xx_console_setup() local 1671 uart_parse_options(options, &baud, &parity, &bits, &flow); in mpc52xx_console_setup() 1673 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow); in mpc52xx_console_setup() 1676 baud, bits, parity, flow); in mpc52xx_console_setup() 1678 return uart_set_options(port, co, baud, parity, bits, flow); in mpc52xx_console_setup()
|
D | pnx8xxx_uart.c | 214 sport->port.icount.parity++; in pnx8xxx_rx_chars() 730 int parity = 'n'; in pnx8xxx_console_setup() local 743 uart_parse_options(options, &baud, &parity, &bits, &flow); in pnx8xxx_console_setup() 745 return uart_set_options(&sport->port, co, baud, parity, bits, flow); in pnx8xxx_console_setup()
|
D | bcm63xx_uart.c | 281 port->icount.parity++; in bcm_uart_do_rx() 737 int parity = 'n'; in bcm_console_setup() local 746 uart_parse_options(options, &baud, &parity, &bits, &flow); in bcm_console_setup() 748 return uart_set_options(port, co, baud, parity, bits, flow); in bcm_console_setup()
|
D | st-asc.c | 315 port->icount.parity++; in asc_receive_chars() 839 int parity = 'n'; in asc_console_setup() local 857 uart_parse_options(options, &baud, &parity, &bits, &flow); in asc_console_setup() 859 return uart_set_options(&ascport->port, co, baud, parity, bits, flow); in asc_console_setup()
|
D | dz.c | 223 icount->parity++; in dz_receive_chars() 869 int parity = 'n'; in dz_console_setup() local 883 uart_parse_options(options, &baud, &parity, &bits, &flow); in dz_console_setup() 885 return uart_set_options(&dport->port, co, baud, parity, bits, flow); in dz_console_setup()
|
D | serial_core.c | 1161 icount->parity = cnow.parity; in uart_get_icount() 1705 if (uport->icount.parity) in uart_line_info() 1707 uport->icount.parity); in uart_line_info() 1879 uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow) in uart_parse_options() argument 1887 *parity = *s++; in uart_parse_options() 1926 int baud, int parity, int bits, int flow) in uart_set_options() argument 1961 switch (parity) { in uart_set_options() 2279 int parity = 'n'; in uart_poll_init() local 2307 uart_parse_options(options, &baud, &parity, &bits, &flow); in uart_poll_init() 2308 return uart_set_options(port, NULL, baud, parity, bits, flow); in uart_poll_init()
|
D | meson_uart.c | 478 int parity = 'n'; in meson_serial_console_setup() local 489 uart_parse_options(options, &baud, &parity, &bits, &flow); in meson_serial_console_setup() 491 return uart_set_options(port, co, baud, parity, bits, flow); in meson_serial_console_setup()
|
D | vr41xx_siu.c | 344 port->icount.parity++; in receive_chars() 789 int parity = 'n'; in siu_console_setup() local 807 uart_parse_options(options, &baud, &parity, &bits, &flow); in siu_console_setup() 809 return uart_set_options(port, con, baud, parity, bits, flow); in siu_console_setup()
|
D | etraxfs-uart.c | 95 int parity = 'n'; in cris_console_setup() local 106 uart_parse_options(options, &baud, &parity, &bits, &flow); in cris_console_setup() 109 uart_set_options(port, co, baud, parity, bits, flow); in cris_console_setup() 518 icount->parity++; in receive_chars_no_dma()
|
D | pxa.c | 136 up->port.icount.parity++; in receive_chars() 736 int parity = 'n'; in serial_pxa_console_setup() local 746 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial_pxa_console_setup() 748 return uart_set_options(&up->port, co, baud, parity, bits, flow); in serial_pxa_console_setup()
|
D | sb1250-duart.c | 368 icount->parity++; in sbd_receive_chars() 880 int parity = 'n'; in sbd_console_setup() local 894 uart_parse_options(options, &baud, &parity, &bits, &flow); in sbd_console_setup() 895 return uart_set_options(uport, co, baud, parity, bits, flow); in sbd_console_setup()
|
D | ar933x_uart.c | 585 int parity = 'n'; in ar933x_uart_console_setup() local 596 uart_parse_options(options, &baud, &parity, &bits, &flow); in ar933x_uart_console_setup() 598 return uart_set_options(&up->port, co, baud, parity, bits, flow); in ar933x_uart_console_setup()
|
D | lpc32xx_hs.c | 169 int parity = 'n'; in lpc32xx_hsuart_console_setup() local 180 uart_parse_options(options, &baud, &parity, &bits, &flow); in lpc32xx_hsuart_console_setup() 182 return uart_set_options(port, co, baud, parity, bits, flow); in lpc32xx_hsuart_console_setup()
|
D | m32r_sio.c | 337 up->port.icount.parity++; in receive_chars() 1056 int parity = 'n'; in m32r_sio_console_setup() local 1074 uart_parse_options(options, &baud, &parity, &bits, &flow); in m32r_sio_console_setup() 1076 return uart_set_options(port, co, baud, parity, bits, flow); in m32r_sio_console_setup()
|
D | imx.c | 675 sport->port.icount.parity++; in imx_rxint() 1687 int *parity, int *bits) in imx_console_get_options() argument 1698 *parity = 'n'; in imx_console_get_options() 1701 *parity = 'o'; in imx_console_get_options() 1703 *parity = 'e'; in imx_console_get_options() 1750 int parity = 'n'; in imx_console_setup() local 1771 uart_parse_options(options, &baud, &parity, &bits, &flow); in imx_console_setup() 1773 imx_console_get_options(sport, &baud, &parity, &bits); in imx_console_setup() 1777 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow); in imx_console_setup()
|
D | amba-pl011.c | 217 uap->port.icount.parity++; in pl011_fifo_to_tty() 2109 int *parity, int *bits) in pl011_console_get_options() argument 2116 *parity = 'n'; in pl011_console_get_options() 2119 *parity = 'e'; in pl011_console_get_options() 2121 *parity = 'o'; in pl011_console_get_options() 2147 int parity = 'n'; in pl011_console_setup() local 2184 &baud, &parity, &bits, &flow); in pl011_console_setup() 2186 pl011_console_get_options(uap, &baud, &parity, &bits); in pl011_console_setup() 2189 return uart_set_options(&uap->port, co, baud, parity, bits, flow); in pl011_console_setup()
|
D | samsung.c | 2030 int *parity, int *bits) in s3c24xx_serial_get_options() argument 2067 *parity = 'e'; in s3c24xx_serial_get_options() 2071 *parity = 'o'; in s3c24xx_serial_get_options() 2076 *parity = 'n'; in s3c24xx_serial_get_options() 2102 int parity = 'n'; in s3c24xx_serial_console_setup() local 2130 uart_parse_options(options, &baud, &parity, &bits, &flow); in s3c24xx_serial_console_setup() 2132 s3c24xx_serial_get_options(port, &baud, &parity, &bits); in s3c24xx_serial_console_setup() 2136 return uart_set_options(port, co, baud, parity, bits, flow); in s3c24xx_serial_console_setup()
|
D | atmel_serial.c | 674 port->icount.parity++; in atmel_pdc_rxerr() 1439 port->icount.parity++; in atmel_rx_from_ring() 2493 int *parity, int *bits) in atmel_console_get_options() argument 2513 *parity = 'e'; in atmel_console_get_options() 2515 *parity = 'o'; in atmel_console_get_options() 2532 int parity = 'n'; in atmel_console_setup() local 2549 uart_parse_options(options, &baud, &parity, &bits, &flow); in atmel_console_setup() 2551 atmel_console_get_options(port, &baud, &parity, &bits); in atmel_console_setup() 2553 return uart_set_options(port, co, baud, parity, bits, flow); in atmel_console_setup()
|
D | bfin_sport_uart.c | 618 int parity = 'n'; in sport_uart_console_setup() local 634 uart_parse_options(options, &baud, &parity, &bits, &flow); in sport_uart_console_setup() 636 return uart_set_options(&up->port, co, baud, parity, bits, flow); in sport_uart_console_setup()
|
D | serial_txx9.c | 305 up->port.icount.parity++; in receive_chars() 939 int parity = 'n'; in serial_txx9_console_setup() local 957 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial_txx9_console_setup() 959 return uart_set_options(port, co, baud, parity, bits, flow); in serial_txx9_console_setup()
|
D | sccnxp.c | 377 port->icount.parity++; in sccnxp_handle_rx() 828 int baud = 9600, bits = 8, parity = 'n', flow = 'n'; in sccnxp_console_setup() local 831 uart_parse_options(options, &baud, &parity, &bits, &flow); in sccnxp_console_setup() 833 return uart_set_options(port, co, baud, parity, bits, flow); in sccnxp_console_setup()
|
D | ip22zilog.c | 293 up->port.icount.parity++; in ip22zilog_receive_chars() 1035 int parity = 'n'; in ip22zilog_console_setup() local 1051 uart_parse_options(options, &baud, &parity, &bits, &flow); in ip22zilog_console_setup() 1052 return uart_set_options(&up->port, con, baud, parity, bits, flow); in ip22zilog_console_setup()
|
D | xilinx_uartps.c | 256 port->icount.parity++; in cdns_uart_isr() 1153 int parity = 'n'; in cdns_uart_console_setup() local 1166 uart_parse_options(options, &baud, &parity, &bits, &flow); in cdns_uart_console_setup() 1168 return uart_set_options(port, co, baud, parity, bits, flow); in cdns_uart_console_setup()
|
D | zs.c | 587 icount->parity++; in zs_receive_chars() 1201 int parity = 'n'; in zs_console_setup() local 1213 uart_parse_options(options, &baud, &parity, &bits, &flow); in zs_console_setup() 1214 return uart_set_options(uport, co, baud, parity, bits, flow); in zs_console_setup()
|
D | sirfsoc_uart.c | 498 port->icount.parity++; in sirfsoc_uart_isr() 1089 unsigned int parity = 'n'; in sirfsoc_uart_console_setup() local 1107 uart_parse_options(options, &baud, &parity, &bits, &flow); in sirfsoc_uart_console_setup() 1113 return uart_set_options(&sirfport->port, co, baud, parity, bits, flow); in sirfsoc_uart_console_setup()
|
D | pmac_zilog.c | 298 uap->port.icount.parity++; in pmz_receive_chars() 2000 int parity = 'n'; in pmz_console_setup() local 2047 uart_parse_options(options, &baud, &parity, &bits, &flow); in pmz_console_setup() 2049 return uart_set_options(port, co, baud, parity, bits, flow); in pmz_console_setup()
|
D | omap-serial.c | 525 up->port.icount.parity++; in serial_omap_rlsi() 1305 int parity = 'n'; in serial_omap_console_setup() local 1313 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial_omap_console_setup() 1315 return uart_set_options(&up->port, co, baud, parity, bits, flow); in serial_omap_console_setup()
|
D | sh-sci.c | 831 port->icount.parity++; in sci_receive_chars() 939 port->icount.parity++; in sci_handle_errors() 2440 int parity = 'n'; in serial_console_setup() local 2464 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial_console_setup() 2466 return uart_set_options(port, co, baud, parity, bits, flow); in serial_console_setup()
|
D | mpsc.c | 1773 int baud, bits, parity, flow; in mpsc_console_setup() local 1784 parity = pi->default_parity; in mpsc_console_setup() 1793 uart_parse_options(options, &baud, &parity, &bits, &flow); in mpsc_console_setup() 1795 return uart_set_options(&pi->port, co, baud, parity, bits, flow); in mpsc_console_setup()
|
D | msm_serial.c | 1443 int parity = 'n'; in msm_console_setup() local 1457 uart_parse_options(options, &baud, &parity, &bits, &flow); in msm_console_setup() 1461 return uart_set_options(port, co, baud, parity, bits, flow); in msm_console_setup()
|
D | men_z135_uart.c | 208 port->icount.parity++; in men_z135_handle_lsr()
|
/linux-4.4.14/drivers/mtd/ |
D | ssfdc.c | 189 int parity; in get_parity() local 191 parity = 1; in get_parity() 193 parity += (number >> k); in get_parity() 194 parity &= 1; in get_parity() 196 return parity; in get_parity() 202 int block_address, parity; in get_logical_address() local 218 parity = block_address & 0x01; in get_logical_address() 222 if (get_parity(block_address, 10) != parity) { in get_logical_address()
|
D | inftlcore.c | 481 unsigned char anac, nacs, parity; in INFTL_findwriteunit() local 596 parity = (nrbits(thisVUC, 16) & 0x1) ? 0x1 : 0; in INFTL_findwriteunit() 597 parity |= (nrbits(prev_block, 16) & 0x1) ? 0x2 : 0; in INFTL_findwriteunit() 598 parity |= (nrbits(anac, 8) & 0x1) ? 0x4 : 0; in INFTL_findwriteunit() 599 parity |= (nrbits(nacs, 8) & 0x1) ? 0x8 : 0; in INFTL_findwriteunit() 605 oob.u.a.parityPerField = parity; in INFTL_findwriteunit() 616 oob.u.b.parityPerField = parity; in INFTL_findwriteunit()
|
/linux-4.4.14/arch/x86/kernel/ |
D | bootflag.c | 22 static int __init parity(u8 v) in parity() function 41 if (!parity(v)) in sbf_write() 72 if (!parity(v)) in sbf_value_valid()
|
/linux-4.4.14/drivers/input/serio/ |
D | ams_delta_serio.c | 42 int i, parity = 0; in check_data() local 54 parity++; in check_data() 57 if (!(parity & 0x01)) { in check_data() 60 data, parity); in check_data()
|
/linux-4.4.14/fs/exofs/ |
D | ore.c | 55 layout->parity = 0; in ore_verify_layout() 58 layout->parity = 1; in ore_verify_layout() 61 layout->parity = 2; in ore_verify_layout() 109 (layout->group_width - layout->parity); in ore_verify_layout() 110 if (layout->parity) { in ore_verify_layout() 112 (layout->group_width - layout->parity) * in ore_verify_layout() 251 if (layout->parity && length) { in ore_get_rw_state() 252 unsigned data_devs = layout->group_width - layout->parity; in ore_get_rw_state() 263 num_raid_units = num_stripes * layout->parity; in ore_get_rw_state() 296 if (layout->parity) in ore_get_rw_state() [all …]
|
D | ore_raid.c | 44 unsigned parity; member 70 unsigned parity, struct __stripe_pages_2d **psp2d) in _sp2d_alloc() argument 73 unsigned data_devs = group_width - parity; in _sp2d_alloc() 136 sp2d->parity = parity; in _sp2d_alloc() 146 unsigned group_width = data_devs + sp2d->parity; in _sp2d_reset() 223 if (sp2d->parity == 1) in _gen_xor_unit() 235 if (sp2d->parity == 1) in _gen_xor_unit() 241 sp2d->data_devs + sp2d->parity, in _gen_xor_unit() 691 layout->parity, &ios->sp2d)) { in _ore_post_alloc_raid_stuff()
|
/linux-4.4.14/drivers/net/wan/ |
D | hdlc_raw.c | 73 if (new_settings.parity == PARITY_DEFAULT) in raw_ioctl() 74 new_settings.parity = PARITY_CRC16_PR1_CCITT; in raw_ioctl() 77 new_settings.parity); in raw_ioctl()
|
D | hdlc_raw_eth.c | 88 if (new_settings.parity == PARITY_DEFAULT) in raw_eth_ioctl() 89 new_settings.parity = PARITY_CRC16_PR1_CCITT; in raw_eth_ioctl() 92 new_settings.parity); in raw_eth_ioctl()
|
D | hd64572.c | 442 switch(port->parity) { in sca_open() 496 unsigned short parity) in sca_attach() argument 505 if (parity != PARITY_NONE && in sca_attach() 506 parity != PARITY_CRC16_PR0 && in sca_attach() 507 parity != PARITY_CRC16_PR1 && in sca_attach() 508 parity != PARITY_CRC32_PR1_CCITT && in sca_attach() 509 parity != PARITY_CRC16_PR1_CCITT) in sca_attach() 513 dev_to_port(dev)->parity = parity; in sca_attach()
|
D | hd64570.c | 478 switch(port->parity) { in sca_open() 543 unsigned short parity) in sca_attach() argument 552 if (parity != PARITY_NONE && in sca_attach() 553 parity != PARITY_CRC16_PR0 && in sca_attach() 554 parity != PARITY_CRC16_PR1 && in sca_attach() 555 parity != PARITY_CRC16_PR0_CCITT && in sca_attach() 556 parity != PARITY_CRC16_PR1_CCITT) in sca_attach() 560 dev_to_port(dev)->parity = parity; in sca_attach()
|
D | wanxl.c | 320 unsigned short parity) in wanxl_attach() argument 328 if (parity != PARITY_NONE && in wanxl_attach() 329 parity != PARITY_CRC32_PR1_CCITT && in wanxl_attach() 330 parity != PARITY_CRC16_PR1_CCITT && in wanxl_attach() 331 parity != PARITY_CRC32_PR0_CCITT && in wanxl_attach() 332 parity != PARITY_CRC16_PR0_CCITT) in wanxl_attach() 336 get_status(port)->parity = parity; in wanxl_attach()
|
D | dscc4.c | 236 unsigned short parity; member 939 dpriv->parity = PARITY_CRC16_PR0_CCITT; in dscc4_found1() 1443 i = dscc4_match(crc, dpriv->parity); in dscc4_crc_setting() 2003 unsigned short parity) in dscc4_hdlc_attach() argument 2014 if (parity != PARITY_NONE && in dscc4_hdlc_attach() 2015 parity != PARITY_CRC16_PR0_CCITT && in dscc4_hdlc_attach() 2016 parity != PARITY_CRC16_PR1_CCITT && in dscc4_hdlc_attach() 2017 parity != PARITY_CRC32_PR0_CCITT && in dscc4_hdlc_attach() 2018 parity != PARITY_CRC32_PR1_CCITT) in dscc4_hdlc_attach() 2022 dpriv->parity = parity; in dscc4_hdlc_attach()
|
D | hostess_sv11.c | 169 unsigned short parity) in hostess_attach() argument 171 if (encoding == ENCODING_NRZ && parity == PARITY_CRC16_PR1_CCITT) in hostess_attach()
|
D | sealevel.c | 167 unsigned short parity) in sealevel_attach() argument 169 if (encoding == ENCODING_NRZ && parity == PARITY_CRC16_PR1_CCITT) in sealevel_attach()
|
D | wanxl.h | 146 u32 parity; member
|
D | c101.c | 67 unsigned short parity; member
|
D | pci200syn.c | 75 unsigned short parity; member
|
D | n2.c | 105 unsigned short parity; member
|
D | pc300too.c | 87 unsigned short parity; member
|
D | cosa.c | 281 unsigned short parity); 629 unsigned short parity) in cosa_net_attach() argument 631 if (encoding == ENCODING_NRZ && parity == PARITY_CRC16_PR1_CCITT) in cosa_net_attach()
|
D | ixp4xx_hss.c | 1167 unsigned short parity) in hss_hdlc_attach() argument 1174 switch(parity) { in hss_hdlc_attach()
|
/linux-4.4.14/drivers/scsi/pcmcia/ |
D | aha152x_stub.c | 63 static int parity = 1; variable 70 module_param(parity, int, 0); 167 s.parity = parity; in aha152x_config_cs()
|
/linux-4.4.14/drivers/staging/skein/ |
D | threefish_api.c | 10 u64 parity = KEY_SCHEDULE_CONST; in threefish_set_key() local 18 parity ^= key_data[i]; in threefish_set_key() 20 key_ctx->key[i] = parity; in threefish_set_key()
|
/linux-4.4.14/Documentation/device-mapper/ |
D | dm-raid.txt | 18 raid4 RAID4 dedicated parity disk 20 - rotating parity 0 with data continuation 22 - rotating parity N with data continuation 24 - rotating parity 0 with data restart 26 - rotating parity N with data restart 28 - rotating parity zero (left-to-right) with data restart 30 - rotating parity N (right-to-left) with data restart 32 - rotating parity N (right-to-left) with data continuation 130 # RAID4 - 4 data drives, 1 parity (no metadata devices) 139 # RAID4 - 4 data drives, 1 parity (with metadata devices) [all …]
|
/linux-4.4.14/arch/ia64/include/asm/sn/ |
D | tioce.h | 338 u64 parity[512]; /* 0x00E000 -- 0x00EFF8 */ member 345 u64 parity[512]; /* 0x011000 -- 0x011FF8 */ member 352 u64 parity[512]; /* 0x014000 -- 0x014FF8 */ member 359 u64 parity[512]; /* 0x017000 -- 0x017FF8 */ member 366 u64 parity[512]; /* 0x01A000 -- 0x01AFF8 */ member 373 u64 parity[64]; /* 0x01B400 -- 0x01B5F8 */ member 391 u64 parity[258]; /* 0x025020 -- 0x025828 */ member 436 u64 parity[32]; /* 0x040400 -- 0x0404F8 */ member 447 u64 parity[256]; /* 0x043000 -- 0x0437F8 */ member 457 u64 parity[8]; /* 0x044200 -- 0x044238 */ member
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
D | rng.c | 45 unsigned long parity; in rng_whiten() local 48 asm ("popcntd %0,%1" : "=r" (parity) : "r" (val)); in rng_whiten() 54 rng->mask = (rng->mask << 1) | (parity & 1); in rng_whiten()
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | early_printk.c | 40 char parity; in earlyserial_init() local 75 parity = buf[0]; in earlyserial_init() 77 switch (parity) { in earlyserial_init()
|
/linux-4.4.14/arch/m68k/atari/ |
D | debug.c | 169 int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x04 : 0x06) : 0; in atari_init_mfp_port() local 179 st_mfp.usart_ctr = parity | csize | 0x88; /* 1:16 clk mode, 1 stop bit */ in atari_init_mfp_port() 268 int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x0c : 0x08) : 0x04; in atari_init_midi_port() local 283 acia.mid_ctrl = div | csize | parity | in atari_init_midi_port()
|
/linux-4.4.14/arch/cris/arch-v32/kernel/ |
D | debugport.c | 21 unsigned char parity; member 132 if (p->parity == 'O') { in start_port() 137 } else if (p->parity == 'E') { in start_port()
|
/linux-4.4.14/drivers/scsi/ |
D | aha152x.h | 270 unsigned parity:1; /* SCSI-parity: 1=enabled 0=disabled */ member 275 #define cf_parity fields.parity 322 int parity; member
|
D | aha152x.c | 349 static int parity[] = {1, 1}; variable 350 module_param_array(parity, int, NULL, 0); 351 MODULE_PARM_DESC(parity,"use scsi parity"); 456 int parity; /* parity checking enabled */ member 558 #define PARITY (HOSTDATA(shpnt)->parity) 754 PARITY = setup->parity; in aha152x_probe_one() 3062 if ((setup->parity < 0) || (setup->parity > 1)) in checksetup() 3109 override.parity, in aha152x_init() 3130 override.parity, in aha152x_init() 3148 setup[setup_count].parity = aha152x[4]; in aha152x_init() [all …]
|
D | BusLogic.h | 441 bool parity:1; /* Byte 0 Bit 1 */ member 571 bool parity:1; /* Byte 15 Bit 1 */ member 967 bool parity:1; /* Byte 20 Bit 0 */ member 1012 bool parity:1; member
|
D | BusLogic.c | 1378 adapter->parity = fpinfo->parity; in blogic_rdconfig() 1619 adapter->parity = autoscsi.parity; in blogic_rdconfig() 1657 adapter->parity = setupinfo.parity; in blogic_rdconfig() 1867 adapter, (adapter->parity ? "Enabled" : "Disabled"), in blogic_reportconfig()
|
/linux-4.4.14/drivers/usb/serial/ |
D | console.c | 63 int parity = 'n'; in usb_console_setup() local 79 parity = *s++; in usb_console_setup() 99 switch (parity) { in usb_console_setup()
|
D | iuu_phoenix.c | 791 u32 *actual, u8 parity) in iuu_uart_baud() argument 844 switch (parity & 0x0F) { in iuu_uart_baud() 866 switch (parity & 0xF0) { in iuu_uart_baud() 895 u32 parity; in iuu_set_termios() local 906 parity = 0; in iuu_set_termios() 909 parity |= IUU_PARITY_SPACE; in iuu_set_termios() 911 parity |= IUU_PARITY_MARK; in iuu_set_termios() 913 parity |= IUU_PARITY_NONE; in iuu_set_termios() 916 parity |= IUU_PARITY_ODD; in iuu_set_termios() 918 parity |= IUU_PARITY_EVEN; in iuu_set_termios() [all …]
|
D | mxuport.c | 423 port->icount.parity++; in mxuport_lsr_event() 854 u8 parity; in mxuport_set_termios() local 890 parity = MX_PARITY_MARK; in mxuport_set_termios() 892 parity = MX_PARITY_SPACE; in mxuport_set_termios() 895 parity = MX_PARITY_ODD; in mxuport_set_termios() 897 parity = MX_PARITY_EVEN; in mxuport_set_termios() 900 parity = MX_PARITY_NONE; in mxuport_set_termios() 910 buf[1] = parity; in mxuport_set_termios() 938 dev_dbg(&port->dev, "parity : %d\n", parity); in mxuport_set_termios()
|
D | whiteheat.c | 697 port_settings.parity = WHITEHEAT_PAR_MARK; in firm_setup_port() 699 port_settings.parity = WHITEHEAT_PAR_SPACE; in firm_setup_port() 702 port_settings.parity = WHITEHEAT_PAR_ODD; in firm_setup_port() 704 port_settings.parity = WHITEHEAT_PAR_EVEN; in firm_setup_port() 706 port_settings.parity = WHITEHEAT_PAR_NONE; in firm_setup_port() 707 dev_dbg(dev, "%s - parity = %c\n", __func__, port_settings.parity); in firm_setup_port()
|
D | keyspan_usa28msg.h | 111 u8 parity, // 1=use parity, 0=don't member
|
D | whiteheat.h | 98 __u8 parity; /* see WHITEHEAT_PAR_* above */ member
|
D | generic.c | 531 icount->parity = cnow.parity; in usb_serial_generic_get_icount()
|
D | ssu100.c | 484 port->icount.parity++; in ssu100_update_lsr()
|
D | f81232.c | 314 port->icount.parity++; in f81232_process_read_urb()
|
D | ark3116.c | 552 port->icount.parity++; in ark3116_update_lsr()
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
D | debugport.c | 37 unsigned char parity; member 228 if (p->parity == 'E') { in start_port() 235 } else if (p->parity == 'O') { in start_port() 386 port->parity = 'N'; in console_setup() 392 if (*s) port->parity = *s++; in console_setup()
|
/linux-4.4.14/arch/mips/include/asm/netlogic/xlp-hal/ |
D | uart.h | 156 int parity, int int_en, int loopback) in nlm_uart_init() argument 173 lcr |= parity << 3; in nlm_uart_init()
|
/linux-4.4.14/drivers/usb/storage/ |
D | alauda.c | 227 static unsigned char parity[256]; variable 234 parity[0] = 0; in nand_init_ecc() 236 parity[i] = (parity[i&(i-1)] ^ 1); in nand_init_ecc() 250 ecc2[i] = ~(a ^ (a<<1) ^ (parity[i] ? 0xa8 : 0)); in nand_init_ecc() 263 bit = parity[data[i]]; in nand_compute_ecc() 271 ecc[0] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0)); in nand_compute_ecc() 274 ecc[1] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0)); in nand_compute_ecc() 637 if (parity[data[6] ^ data[7]]) { in alauda_read_map() 857 if (parity[MSB_of(lbap) ^ LSB_of(lbap)]) in alauda_write_lba()
|
D | sddr09.c | 196 static unsigned char parity[256]; variable 202 parity[0] = 0; in nand_init_ecc() 204 parity[i] = (parity[i&(i-1)] ^ 1); in nand_init_ecc() 218 ecc2[i] = ~(a ^ (a<<1) ^ (parity[i] ? 0xa8 : 0)); in nand_init_ecc() 230 bit = parity[data[i]]; in nand_compute_ecc() 238 ecc[0] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0)); in nand_compute_ecc() 241 ecc[1] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0)); in nand_compute_ecc() 875 if (parity[MSB_of(lbap) ^ LSB_of(lbap)]) in sddr09_write_lba() 1316 if (parity[ptr[6] ^ ptr[7]]) { in sddr09_read_map()
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | chosen.txt | 32 <baud>{<parity>{<bits>{<flow>}}} 37 parity - 'n' (none), 'o', (odd) or 'e' (even)
|
D | xilinx.txt | 85 xlnx,odd-parity = <0>; 86 xlnx,use-parity = <0>;
|
/linux-4.4.14/include/linux/ |
D | serial.h | 22 __u32 frame, parity, overrun, brk; member
|
D | synclink.h | 32 unsigned char parity; member
|
D | serial_core.h | 109 __u32 parity; member 364 void uart_parse_options(char *options, int *baud, int *parity, int *bits, 367 int parity, int bits, int flow);
|
D | tc.h | 57 s32 parity; /* System module supports TC parity. */ member
|
D | hdlc.h | 41 unsigned short encoding, unsigned short parity);
|
D | cyclades.h | 105 __u32 frame, parity, overrun, brk; member
|
/linux-4.4.14/Documentation/input/ |
D | elantech.txt | 116 Turns parity checking ON or OFF. 118 By echoing "0" to this file parity checking will be turned OFF. Any 123 calculating a parity bit for the last 3 bytes of each packet. The driver 127 Hardware version 2 does not provide the same parity bits. Only some basic 206 P: 1 = enable parity checking for relative mode 249 some models have M as byte 3 odd parity bit 250 when parity checking is enabled (reg_11, P = 1): 251 p1..p2 = byte 1 and 2 odd parity bit 268 parity checking enabled (reg_11, P = 1): 313 p1..p3 = byte 1..3 odd parity bit [all …]
|
/linux-4.4.14/include/uapi/linux/ |
D | synclink.h | 167 unsigned char parity; /* none, even, or odd */ member 214 __u32 frame, parity, overrun, brk; member
|
D | serial.h | 103 int frame, overrun, parity, brk; member
|
/linux-4.4.14/drivers/md/ |
D | Kconfig | 135 contain data sectors, and one drive contains the parity protection. 136 For a RAID-4 set, the parity blocks are present on a single drive, 137 while a RAID-5 set distributes the parity across the drives in one 138 of the available parity distribution methods. 146 in one of the available parity distribution methods. 370 contain data sectors, and one drive contains the parity protection. 371 For a RAID-4 set, the parity blocks are present on a single drive, 372 while a RAID-5 set distributes the parity across the drives in one 373 of the available parity distribution methods. 381 in one of the available parity distribution methods.
|
/linux-4.4.14/include/uapi/linux/hdlc/ |
D | ioctl.h | 54 unsigned short parity; member
|
/linux-4.4.14/include/uapi/linux/dvb/ |
D | ca.h | 72 unsigned int parity; /* 0 == even, 1 == odd */ member
|
/linux-4.4.14/Documentation/frv/ |
D | booting.txt | 86 (*) console=ttyS<x>[,<baud>[<parity>[<bits>[<flow>]]]] 93 <parity> is a parity setting of "N", "O", "E", "M" or "S" for None, Odd, 106 To use the first on-chip serial port at baud rate 115200, no parity, 8
|
/linux-4.4.14/fs/ocfs2/ |
D | blockcheck.c | 107 u32 ocfs2_hamming_encode(u32 parity, void *data, unsigned int d, unsigned int nr) in ocfs2_hamming_encode() argument 146 parity ^= b; in ocfs2_hamming_encode() 151 return parity; in ocfs2_hamming_encode()
|
D | blockcheck.h | 88 u32 ocfs2_hamming_encode(u32 parity, void *data, unsigned int d,
|
/linux-4.4.14/Documentation/scsi/ |
D | aic7xxx.txt | 139 - Correct code that disables PCI parity error checking. 168 - Dynamically disable PCI parity error reporting after 171 with bad parity. Once the user has been informed of the 181 - Add ability to disable PCI parity error checking. 221 Definition: Toggles the detection of PCI parity errors. 223 PCI parity is not generated correctly on the 225 differentiate between these "spurious" parity 226 errors and real parity errors. The symptom of
|
D | aha152x.txt | 23 PARITY enable parity checking (0/1; default 1 [on]) 88 parity=PAR0[PAR1] 89 use parity for first and second controller
|
D | ncr53c8xx.txt | 34 10.2.1 Master parity checking 35 10.2.2 Scsi parity checking 149 SCSI parity checking 150 Master parity checking 309 The driver supports SCSI parity checking and PCI bus master parity 312 problems with parity. You can disable either PCI parity or SCSI parity 667 10.2.1 Master parity checking 671 10.2.2 Scsi parity checking 858 master parity disabled mpar:n 859 scsi parity enabled spar:y [all …]
|
D | sym53c8xx_2.txt | 119 SCSI parity checking 120 PCI Master parity checking 280 The driver supports SCSI parity checking and PCI bus master parity 283 with parity. The options to defeat parity checking have been removed 630 Data parity error detected on the PCI BUS. 654 SCSI parity error detected. 713 SCSI parity checking Y Y 832 0x00000010 parity enable 941 | | | | | | | | ----- parity check 0 - off
|
D | ChangeLog.sym53c8xx | 6 hardwares that fail PCI parity checking. 160 chips will check parity in some special circumstances. 161 This will cause a parity error interrupt if not in 227 errors (unrecovered parity error, data overrun, etc ...) 434 - Major rewrite of the SCSI parity error handling.
|
/linux-4.4.14/Documentation/ |
D | serial-console.txt | 23 defines the baudrate/parity/bits/flow control of 25 speed, P is parity (n/o/e), N is number of bits, 68 serial = 1,9600n8 (ttyS1, 9600 bd, no parity, 8 bits)
|
D | edac.txt | 56 the vendor should tie the parity status bits to 0 if they do not intend 57 to generate parity. Some vendors do not do this, and thus the parity bit 61 the EDAC PCI scanning code. If that attribute is set, PCI parity/error 385 parity error regardless of whether parity is enabled on the device or 386 not. (The spec indicates parity is generated in some cases). On Header 388 if parity occurred on the bus on the other side of the bridge. 417 This attribute file will display the number of parity errors that 488 This control file enables or disables panicking when a parity 678 bit 2 - parity
|
D | md.txt | 59 'dirty' means that the parity cannot be trusted, and the fact that it 61 be reconstructed (due to no parity). 105 can create appropriate redundancy (copying in raid1, parity
|
/linux-4.4.14/drivers/nfc/s3fwrn5/ |
D | firmware.h | 100 char parity; member
|
D | firmware.c | 70 hdr.type = type | fw_info->parity; in s3fwrn5_fw_prep_msg() 71 fw_info->parity ^= 0x80; in s3fwrn5_fw_prep_msg() 487 fw_info->parity = 0x00; in s3fwrn5_fw_init()
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134-input.c | 362 unsigned int start = 0,parity = 0,code = 0; in get_key_pinnacle() local 373 parity=b[(start+parity_offset) % 4]; in get_key_pinnacle() 378 if (parity == 0) in get_key_pinnacle() 382 if (ir->old == parity) in get_key_pinnacle() 385 ir->old = parity; in get_key_pinnacle()
|
/linux-4.4.14/drivers/input/mouse/ |
D | elantech.h | 144 unsigned char parity[256]; member
|
D | elantech.c | 696 return etd->parity[packet[1]] == p1 && in elantech_packet_check_v1() 697 etd->parity[packet[2]] == p2 && in elantech_packet_check_v1() 698 etd->parity[packet[3]] == p3; in elantech_packet_check_v1() 1638 etd->parity[0] = 1; in elantech_init() 1640 etd->parity[i] = etd->parity[i & (i - 1)] ^ 1; in elantech_init()
|
/linux-4.4.14/lib/raid6/ |
D | neon.uc | 63 p = dptr[z0+1]; /* XOR parity */ 94 p = dptr[disks-2]; /* XOR parity */
|
D | int.uc | 91 p = dptr[z0+1]; /* XOR parity */ 120 p = dptr[disks-2]; /* XOR parity */
|
D | tilegx.uc | 61 p = (u64 *)dptr[z0+1]; /* XOR parity */
|
D | altivec.uc | 78 p = dptr[z0+1]; /* XOR parity */
|
/linux-4.4.14/Documentation/serial/ |
D | driver | 215 Change the port parameters, including word length, parity, stop 221 PARENB - parity enable 222 PARODD - odd parity (when PARENB is in force) 230 INPCK - enable frame and parity error events to be 236 IGNPAR - ignore parity and framing errors 239 The interaction of the iflag bits is as follows (parity error 353 number of bits, parity, stop bits and baud rate.
|
/linux-4.4.14/drivers/media/i2c/ |
D | saa7115.c | 732 unsigned char parity; in saa711x_decode_wss() local 744 parity = wss & 15; in saa711x_decode_wss() 745 parity ^= parity >> 2; in saa711x_decode_wss() 746 parity ^= parity >> 1; in saa711x_decode_wss() 748 if (!(parity & 1)) in saa711x_decode_wss()
|
/linux-4.4.14/net/bluetooth/rfcomm/ |
D | core.c | 101 #define __rpn_line_settings(data, stop, parity) ((data & 0x3) | ((stop & 0x1) << 2) | ((parity & 0… argument 964 u8 parity, u8 flow_ctrl_settings, in rfcomm_send_rpn() argument 974 s, cr, dlci, bit_rate, data_bits, stop_bits, parity, in rfcomm_send_rpn() 989 rpn->line_settings = __rpn_line_settings(data_bits, stop_bits, parity); in rfcomm_send_rpn() 1458 u8 parity = 0; in rfcomm_recv_rpn() local 1476 parity = RFCOMM_RPN_PARITY_NONE; in rfcomm_recv_rpn() 1514 parity = __get_rpn_parity(rpn->line_settings); in rfcomm_recv_rpn() 1515 if (parity != RFCOMM_RPN_PARITY_NONE) { in rfcomm_recv_rpn() 1516 BT_DBG("RPN parity mismatch 0x%x", parity); in rfcomm_recv_rpn() 1517 parity = RFCOMM_RPN_PARITY_NONE; in rfcomm_recv_rpn() [all …]
|
D | tty.c | 876 u8 baud, data_bits, stop_bits, parity, x_on, x_off; in rfcomm_tty_set_termios() local 901 parity = RFCOMM_RPN_PARITY_ODD; in rfcomm_tty_set_termios() 904 parity = RFCOMM_RPN_PARITY_EVEN; in rfcomm_tty_set_termios() 908 parity = RFCOMM_RPN_PARITY_NONE; in rfcomm_tty_set_termios() 1005 data_bits, stop_bits, parity, in rfcomm_tty_set_termios()
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-pko-defs.h | 2289 uint64_t parity:1; member 2291 uint64_t parity:1; 2302 uint64_t parity:1; member 2304 uint64_t parity:1; 2317 uint64_t parity:1; member 2319 uint64_t parity:1; 2480 uint64_t parity:1; member 2482 uint64_t parity:1; 2493 uint64_t parity:1; member 2495 uint64_t parity:1; [all …]
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | dma.c | 690 bool parity = ring->dev->dma.parity; in dmacontroller_setup() local 704 if (!parity) in dmacontroller_setup() 717 if (!parity) in dmacontroller_setup() 736 if (!parity) in dmacontroller_setup() 752 if (!parity) in dmacontroller_setup() 1141 dma->parity = true; in b43_dma_init() 1145 dma->parity = false; in b43_dma_init()
|
D | b43.h | 669 bool parity; /* Check for parity */ member
|
/linux-4.4.14/net/irda/ircomm/ |
D | ircomm_tty_ioctl.c | 400 put_user(cnow.parity, &p_cuser->parity) || in ircomm_tty_ioctl()
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
D | av7110_ca.c | 316 if (descr->index >= 16 || descr->parity > 1) { in dvb_ca_ioctl() 321 (descr->index<<8)|descr->parity, in dvb_ca_ioctl()
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | rsserial.c | 425 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.uart_serial_bus.parity), 426 AML_OFFSET(uart_serial_bus.parity),
|
D | amlresrc.h | 394 u8 parity; member
|
D | rsdumpinfo.c | 392 {ACPI_RSD_UINT8, ACPI_RSD_OFFSET(uart_serial_bus.parity), "Parity",
|
/linux-4.4.14/include/scsi/ |
D | osd_ore.h | 44 unsigned parity; member
|
/linux-4.4.14/Documentation/networking/ |
D | generic-hdlc.txt | 66 no-parity / crc16 / crc16-pr0 (CRC16 with preset zeros) / crc32-itu 67 crc16-itu (CRC16 with ITU-T polynomial) / crc16-itu-pr0 - sets parity
|
/linux-4.4.14/drivers/char/pcmcia/ |
D | synclink_cs.c | 929 icount->parity++; in rx_ready_async() 953 icount->parity,icount->frame,icount->overrun); in rx_ready_async() 1437 info->params.parity = ASYNC_PARITY_NONE; in mgslpc_change_params() 1440 info->params.parity = ASYNC_PARITY_ODD; in mgslpc_change_params() 1442 info->params.parity = ASYNC_PARITY_EVEN; in mgslpc_change_params() 1445 info->params.parity = ASYNC_PARITY_SPACE; in mgslpc_change_params() 2217 icount->parity = cnow.parity; in mgslpc_get_icount() 2599 if (info->icount.parity) in line_info() 2600 seq_printf(m, " pe:%d", info->icount.parity); in line_info() 3517 if (info->params.parity != ASYNC_PARITY_NONE) in async_mode() [all …]
|
/linux-4.4.14/drivers/scsi/isci/ |
D | phy.h | 135 u32 parity:1; member
|
/linux-4.4.14/drivers/tty/ |
D | amiserial.c | 294 icount->parity++; in receive_chars() 1233 icount->parity = cnow.parity; in rs_get_icount() 1579 if (state->icount.parity) in line_info() 1580 seq_printf(m, " pe:%d", state->icount.parity); in line_info() 1719 state->icount.frame = state->icount.parity = 0; in amiga_serial_probe()
|
D | synclink_gt.c | 370 .parity = ASYNC_PARITY_NONE 1123 icount->parity = cnow.parity; in get_icount() 1152 tmp_params.parity = info->params.parity; in get_params32() 1182 info->params.parity = tmp_params.parity; in set_params32() 1293 if (info->icount.parity) in line_info() 1294 seq_printf(m, " pe:%d", info->icount.parity); in line_info() 1436 unsigned short parity) in hdlcdev_attach() argument 1458 switch (parity) in hdlcdev_attach() 1879 icount->parity++; in rx_async() 2566 info->params.parity = (cflag & PARODD) ? ASYNC_PARITY_ODD : ASYNC_PARITY_EVEN; in change_params() [all …]
|
D | synclink.c | 1481 icount->parity++; in mgsl_isr_receive_data() 1519 icount->parity,icount->frame,icount->overrun); in mgsl_isr_receive_data() 1938 info->params.parity = ASYNC_PARITY_NONE; in mgsl_change_params() 1941 info->params.parity = ASYNC_PARITY_ODD; in mgsl_change_params() 1943 info->params.parity = ASYNC_PARITY_EVEN; in mgsl_change_params() 1946 info->params.parity = ASYNC_PARITY_SPACE; in mgsl_change_params() 2945 icount->parity = cnow.parity; in msgl_get_icount() 3503 if (info->icount.parity) in line_info() 3504 seq_printf(m, " pe:%d", info->icount.parity); in line_info() 5917 if ( info->params.parity != ASYNC_PARITY_NONE ) { in usc_set_async_mode() [all …]
|
D | synclinkmp.c | 1331 icount->parity = cnow.parity; in get_icount() 1397 if (info->icount.parity) in line_info() 1398 seq_printf(m, " pe:%d", info->icount.parity); in line_info() 1552 unsigned short parity) in hdlcdev_attach() argument 1572 switch (parity) in hdlcdev_attach() 2182 icount->parity++; in isr_rxrdy() 2215 icount->rx,icount->brk,icount->parity, in isr_rxrdy() 2789 info->params.parity = ASYNC_PARITY_NONE; in change_params() 2792 info->params.parity = ASYNC_PARITY_ODD; in change_params() 2794 info->params.parity = ASYNC_PARITY_EVEN; in change_params() [all …]
|
D | mxser.c | 216 int parity[32]; member 1609 me->parity[p] = cflag & (PARENB | PARODD | in mxser_ioctl_special() 1840 icount->parity = cnow.parity; in mxser_get_icount() 2122 port->icount.parity++; in mxser_receive_chars()
|
/linux-4.4.14/drivers/mmc/card/ |
D | sdio_uart.c | 63 __u32 parity; member 396 port->icount.parity++; in sdio_uart_receive_chars() 984 if (port->icount.parity) in sdio_uart_proc_show() 986 port->icount.parity); in sdio_uart_proc_show()
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | Itsy | 32 8-bit data, no parity, 1 stop bit(s), 115200.00 b/s. in the monitor, in the
|
/linux-4.4.14/drivers/tc/ |
D | tc.c | 162 tc_bus.info.parity ? "" : "out"); in tc_init()
|
/linux-4.4.14/Documentation/filesystems/ |
D | ntfs.txt | 246 mirrors, i.e. raid level 1 should not work, too. Stripes with parity, i.e. 388 stripes with parity, i.e. raid level 5, should not work, too. 412 mirrors, change it to "raid-level 1", and for stripe sets with parity, change 415 Note for stripe sets with parity you will also need to tell the MD driver 416 which parity algorithm to use by specifying the option "parity-algorithm
|
/linux-4.4.14/drivers/gpu/drm/bridge/ |
D | dw_hdmi-ahb-audio.c | 178 static u32 parity(u32 sample) in parity() function 209 sample |= parity(sample & ~0xf8000000); in dw_hdmi_reformat_s24()
|
/linux-4.4.14/drivers/tty/serial/cpm_uart/ |
D | cpm_uart_core.c | 338 port->icount.parity++; in cpm_uart_int_rx() 1299 int parity = 'n'; in cpm_uart_console_setup() local 1337 uart_parse_options(options, &baud, &parity, &bits, &flow); in cpm_uart_console_setup() 1367 uart_set_options(port, co, baud, parity, bits, flow); in cpm_uart_console_setup()
|
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/ |
D | kernel-entry-init.h | 72 # Zero all of CVMSEG to make sure parity is correct
|
/linux-4.4.14/Documentation/usb/ |
D | iuu_phoenix.txt | 72 is an abstraction, so use any speed or parity setting will
|
D | usb-serial.txt | 162 parity, 7 vs 8 bits per char, 1 or 2 stop bits 179 character settings. Other character lengths and parity setups are 241 $PSRF100,<protocol>,<baud>,<databits>,<stopbits>,<parity>*CHECKSUM
|
/linux-4.4.14/drivers/mtd/nand/ |
D | diskonchip.c | 147 uint8_t parity; in doc_ecc_decode() local 156 parity = ecc[1]; in doc_ecc_decode() 205 parity ^= val; in doc_ecc_decode() 215 parity ^= val; in doc_ecc_decode() 222 return parity ? -EBADMSG : nerr; in doc_ecc_decode()
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | mn10300-serial.c | 633 icount->parity++; in mn10300_serial_receive_interrupt() 1668 int i, parity = 'n', baud = 9600, bits = 8, flow = 0; in mn10300_serial_console_setup() local 1694 uart_parse_options(options, &baud, &parity, &bits, &flow); in mn10300_serial_console_setup() 1696 return uart_set_options(&port->uart, co, baud, parity, bits, flow); in mn10300_serial_console_setup()
|
/linux-4.4.14/include/net/bluetooth/ |
D | rfcomm.h | 229 u8 parity, u8 flow_ctrl_settings,
|
/linux-4.4.14/include/acpi/ |
D | acrestyp.h | 486 u8 parity; member
|
D | actbl2.h | 1121 u8 parity; member
|
/linux-4.4.14/Documentation/acpi/apei/ |
D | output_format.txt | 80 target abort | parity error | watchdog timeout | invalid address | \
|
/linux-4.4.14/arch/microblaze/boot/dts/ |
D | system.dts | 310 xlnx,odd-parity = <0x0>; 311 xlnx,use-parity = <0x0>;
|
/linux-4.4.14/fs/btrfs/ |
D | raid56.c | 2377 void *parity; in finish_parity_scrub() local 2405 parity = kmap(p); in finish_parity_scrub() 2406 if (memcmp(parity, pointers[rbio->scrubp], PAGE_CACHE_SIZE)) in finish_parity_scrub() 2407 memcpy(parity, pointers[rbio->scrubp], PAGE_CACHE_SIZE); in finish_parity_scrub()
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | brcm,brcmnand.txt | 105 out the parity bytes it stores on the flash.
|
/linux-4.4.14/drivers/tty/serial/8250/ |
D | 8250_port.c | 1436 port->icount.parity++; in serial8250_rx_chars() 2912 int parity = 'n'; in serial8250_console_setup() local 2919 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial8250_console_setup() 2923 return uart_set_options(port, port->cons, baud, parity, bits, flow); in serial8250_console_setup()
|
/linux-4.4.14/arch/blackfin/mach-bf609/ |
D | Kconfig | 21 bool "Enable L1 parity check" 24 Enable the L1 parity check in L1 sram. A fault event is raised 25 when L1 parity error is found.
|
/linux-4.4.14/drivers/usb/class/ |
D | cdc-acm.c | 338 acm->iocount.parity++; in acm_ctrl_irq() 931 icount.parity = acm->iocount.parity; in get_serial_usage()
|
/linux-4.4.14/drivers/net/usb/ |
D | hso.c | 1524 icount->parity++; in tiocmget_intr_callback() 1527 icount->parity++; in tiocmget_intr_callback() 1635 icount->parity = cnow.parity; in hso_get_count()
|
/linux-4.4.14/fs/nfs/objlayout/ |
D | objio_osd.c | 569 (layout->group_width - layout->parity); in aligned_on_raid_stripe()
|
/linux-4.4.14/lib/ |
D | bch.c | 281 static inline int parity(unsigned int x) in parity() function 497 tmp |= parity(mask) << (m-r); in solve_linear_system()
|
/linux-4.4.14/Documentation/dmaengine/ |
D | provider.txt | 167 - The device is able to perform parity check using the XOR 175 - The device is able to perform parity check using RAID6 P+Q
|