diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 3 | ||||
-rw-r--r-- | arch/mips/kernel/proc.c | 1 | ||||
-rw-r--r-- | arch/mips/mm/tlbex.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index f7a841573b84..a263fb7a3971 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -623,6 +623,9 @@ static inline void cpu_probe_sibyte(struct cpuinfo_mips *c) | |||
623 | c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); | 623 | c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); |
624 | #endif | 624 | #endif |
625 | break; | 625 | break; |
626 | case PRID_IMP_SB1A: | ||
627 | c->cputype = CPU_SB1A; | ||
628 | break; | ||
626 | } | 629 | } |
627 | } | 630 | } |
628 | 631 | ||
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index f2b0446e44bc..86fe15b273cd 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c | |||
@@ -56,6 +56,7 @@ static const char *cpu_name[] = { | |||
56 | [CPU_5KC] = "MIPS 5Kc", | 56 | [CPU_5KC] = "MIPS 5Kc", |
57 | [CPU_R4310] = "R4310", | 57 | [CPU_R4310] = "R4310", |
58 | [CPU_SB1] = "SiByte SB1", | 58 | [CPU_SB1] = "SiByte SB1", |
59 | [CPU_SB1A] = "SiByte SB1A", | ||
59 | [CPU_TX3912] = "TX3912", | 60 | [CPU_TX3912] = "TX3912", |
60 | [CPU_TX3922] = "TX3922", | 61 | [CPU_TX3922] = "TX3922", |
61 | [CPU_TX3927] = "TX3927", | 62 | [CPU_TX3927] = "TX3927", |
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 240537d263ff..0f9485806bac 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -854,6 +854,7 @@ static __init void build_tlb_write_entry(u32 **p, struct label **l, | |||
854 | case CPU_R12000: | 854 | case CPU_R12000: |
855 | case CPU_4KC: | 855 | case CPU_4KC: |
856 | case CPU_SB1: | 856 | case CPU_SB1: |
857 | case CPU_SB1A: | ||
857 | case CPU_4KSC: | 858 | case CPU_4KSC: |
858 | case CPU_20KC: | 859 | case CPU_20KC: |
859 | case CPU_25KF: | 860 | case CPU_25KF: |