summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel
diff options
context:
space:
mode:
authorLeonid Yegoshin2014-03-04 14:34:44 +0100
committerRalf Baechle2014-03-26 23:09:22 +0100
commit9943ed921bbf4de59ed1986cb316e720a244f757 (patch)
treeb583fbfcdc801bf365f5fecac97cbb9213a8c0f2 /arch/mips/kernel
parentMIPS: Add support for the M5150 processor (diff)
downloadkernel-qcow2-linux-9943ed921bbf4de59ed1986cb316e720a244f757.tar.gz
kernel-qcow2-linux-9943ed921bbf4de59ed1986cb316e720a244f757.tar.xz
kernel-qcow2-linux-9943ed921bbf4de59ed1986cb316e720a244f757.zip
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)
c->cputype = CPU_P5600;
__cpu_name[cpu] = "MIPS P5600";
break;
+ case PRID_IMP_M5150:
+ c->cputype = CPU_M5150;
+ __cpu_name[cpu] = "MIPS M5150";
+ break;
}
decode_configs(c);