Lines Matching refs:errctl
1754 unsigned long errctl; in parity_protection_init() local
1757 errctl = read_c0_ecc(); in parity_protection_init()
1758 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1761 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1766 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1772 errctl |= ERRCTL_PE; in parity_protection_init()
1774 errctl |= ERRCTL_L2P; in parity_protection_init()
1777 errctl |= ERRCTL_PE; in parity_protection_init()
1780 errctl |= ERRCTL_L2P; in parity_protection_init()
1785 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1787 write_c0_ecc(errctl); in parity_protection_init()
1789 errctl = read_c0_ecc(); in parity_protection_init()
1790 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1794 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1798 errctl ^= ERRCTL_L2P; in parity_protection_init()
1800 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()