Lines Matching refs:errctl
1720 unsigned long errctl; in parity_protection_init() local
1723 errctl = read_c0_ecc(); in parity_protection_init()
1724 errctl &= ~(ERRCTL_PE|ERRCTL_L2P); in parity_protection_init()
1727 write_c0_ecc(errctl | ERRCTL_PE); in parity_protection_init()
1732 write_c0_ecc(errctl|ERRCTL_L2P); in parity_protection_init()
1738 errctl |= ERRCTL_PE; in parity_protection_init()
1740 errctl |= ERRCTL_L2P; in parity_protection_init()
1743 errctl |= ERRCTL_PE; in parity_protection_init()
1746 errctl |= ERRCTL_L2P; in parity_protection_init()
1751 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1753 write_c0_ecc(errctl); in parity_protection_init()
1755 errctl = read_c0_ecc(); in parity_protection_init()
1756 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); in parity_protection_init()
1760 (errctl & ERRCTL_PE) ? "en" : "dis"); in parity_protection_init()
1764 errctl ^= ERRCTL_L2P; in parity_protection_init()
1766 (errctl & ERRCTL_L2P) ? "en" : "dis"); in parity_protection_init()