Lines Matching refs:errctl
1769 unsigned long errctl; in parity_protection_init() local
1772 errctl = read_c0_ecc(); in parity_protection_init()
1773 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1776 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1781 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1787 errctl |= ERRCTL_PE; in parity_protection_init()
1789 errctl |= ERRCTL_L2P; in parity_protection_init()
1792 errctl |= ERRCTL_PE; in parity_protection_init()
1795 errctl |= ERRCTL_L2P; in parity_protection_init()
1800 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1802 write_c0_ecc(errctl); in parity_protection_init()
1804 errctl = read_c0_ecc(); in parity_protection_init()
1805 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1809 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1813 errctl ^= ERRCTL_L2P; in parity_protection_init()
1815 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()