Lines Matching refs:errctl
1760 unsigned long errctl; in parity_protection_init() local
1763 errctl = read_c0_ecc(); in parity_protection_init()
1764 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1767 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1772 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1778 errctl |= ERRCTL_PE; in parity_protection_init()
1780 errctl |= ERRCTL_L2P; in parity_protection_init()
1783 errctl |= ERRCTL_PE; in parity_protection_init()
1786 errctl |= ERRCTL_L2P; in parity_protection_init()
1791 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1793 write_c0_ecc(errctl); in parity_protection_init()
1795 errctl = read_c0_ecc(); in parity_protection_init()
1796 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1800 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1804 errctl ^= ERRCTL_L2P; in parity_protection_init()
1806 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()