aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel
diff options
context:
space:
mode:
authorLeonid Yegoshin <Leonid.Yegoshin@imgtec.com>2014-03-04 08:34:44 -0500
committerRalf Baechle <ralf@linux-mips.org>2014-03-26 18:09:22 -0400
commit9943ed921bbf4de59ed1986cb316e720a244f757 (patch)
treeb583fbfcdc801bf365f5fecac97cbb9213a8c0f2 /arch/mips/kernel
parentf36c4720fca325579faddc880d4e178e4ccbda88 (diff)
MIPS: cpu-probe: Add support for probing M5150 cores
Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/6597/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r--arch/mips/kernel/cpu-probe.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index e225b0d369e8..f4229544df10 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -853,6 +853,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
853 c->cputype = CPU_P5600; 853 c->cputype = CPU_P5600;
854 __cpu_name[cpu] = "MIPS P5600"; 854 __cpu_name[cpu] = "MIPS P5600";
855 break; 855 break;
856 case PRID_IMP_M5150:
857 c->cputype = CPU_M5150;
858 __cpu_name[cpu] = "MIPS M5150";
859 break;
856 } 860 }
857 861
858 decode_configs(c); 862 decode_configs(c);