diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-03-01 13:15:08 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:49 -0400 |
commit | 14f18b7f7e58de9a34c4b5fd38d5f73f22fba7ac (patch) | |
tree | dd4acaac38b4a238349fc0ef785bb84152fb1942 | |
parent | 5068debff2dcbc8f624811e3c06d60c7c0bba744 (diff) |
On 24K we did always disable cache parity protection - obviously not
the greatest thing to do. Try to enable parity protection, check if
we actually succeeded and print a message about the outcome of this.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/kernel/traps.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index a53b1ed7b386..d06db5f8115f 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
@@ -736,16 +736,12 @@ static inline void parity_protection_init(void) | |||
736 | { | 736 | { |
737 | switch (current_cpu_data.cputype) { | 737 | switch (current_cpu_data.cputype) { |
738 | case CPU_24K: | 738 | case CPU_24K: |
739 | /* 24K cache parity not currently implemented in FPGA */ | ||
740 | printk(KERN_INFO "Disable cache parity protection for " | ||
741 | "MIPS 24K CPU.\n"); | ||
742 | write_c0_ecc(read_c0_ecc() & ~0x80000000); | ||
743 | break; | ||
744 | case CPU_5KC: | 739 | case CPU_5KC: |
745 | /* Set the PE bit (bit 31) in the c0_ecc register. */ | 740 | write_c0_ecc(0x80000000); |
746 | printk(KERN_INFO "Enable cache parity protection for " | 741 | back_to_back_c0_hazard(); |
747 | "MIPS 5KC/24K CPUs.\n"); | 742 | /* Set the PE bit (bit 31) in the c0_errctl register. */ |
748 | write_c0_ecc(read_c0_ecc() | 0x80000000); | 743 | printk(KERN_INFO "Cache parity protection %sabled\n", |
744 | (read_c0_ecc() & 0x80000000) ? "en" : "dis"); | ||
749 | break; | 745 | break; |
750 | case CPU_20KC: | 746 | case CPU_20KC: |
751 | case CPU_25KF: | 747 | case CPU_25KF: |