Lines Matching refs:errctl
1655 unsigned long errctl; in parity_protection_init() local
1658 errctl = read_c0_ecc(); in parity_protection_init()
1659 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1662 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1667 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1673 errctl |= ERRCTL_PE; in parity_protection_init()
1675 errctl |= ERRCTL_L2P; in parity_protection_init()
1678 errctl |= ERRCTL_PE; in parity_protection_init()
1681 errctl |= ERRCTL_L2P; in parity_protection_init()
1686 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1688 write_c0_ecc(errctl); in parity_protection_init()
1690 errctl = read_c0_ecc(); in parity_protection_init()
1691 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1695 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1699 errctl ^= ERRCTL_L2P; in parity_protection_init()
1701 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()