Lines Matching refs:errctl
1681 unsigned long errctl; in parity_protection_init() local
1684 errctl = read_c0_ecc(); in parity_protection_init()
1685 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1688 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1693 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1699 errctl |= ERRCTL_PE; in parity_protection_init()
1701 errctl |= ERRCTL_L2P; in parity_protection_init()
1704 errctl |= ERRCTL_PE; in parity_protection_init()
1707 errctl |= ERRCTL_L2P; in parity_protection_init()
1712 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1714 write_c0_ecc(errctl); in parity_protection_init()
1716 errctl = read_c0_ecc(); in parity_protection_init()
1717 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1721 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1725 errctl ^= ERRCTL_L2P; in parity_protection_init()
1727 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()