Lines Matching refs:errctl
1761 unsigned long errctl; in parity_protection_init() local
1764 errctl = read_c0_ecc(); in parity_protection_init()
1765 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1768 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1773 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1779 errctl |= ERRCTL_PE; in parity_protection_init()
1781 errctl |= ERRCTL_L2P; in parity_protection_init()
1784 errctl |= ERRCTL_PE; in parity_protection_init()
1787 errctl |= ERRCTL_L2P; in parity_protection_init()
1792 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1794 write_c0_ecc(errctl); in parity_protection_init()
1796 errctl = read_c0_ecc(); in parity_protection_init()
1797 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1801 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1805 errctl ^= ERRCTL_L2P; in parity_protection_init()
1807 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()