diff options
author | Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> | 2013-11-20 05:46:02 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-22 14:19:01 -0500 |
commit | b5f065e7d3e87e43b971640185b3980b10d7e73c (patch) | |
tree | faefe3ccb903b5cd6adcc9b1d0f169dba9ca8de9 /arch | |
parent | 26ab96dfa9f98d74ef38efbe830d356547a292c1 (diff) |
MIPS: kernel: cpu-probe: Add support for probing interAptiv cores
Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6152/
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 65b61bb8882d..32db114a4a8e 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -809,6 +809,14 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) | |||
809 | c->cputype = CPU_74K; | 809 | c->cputype = CPU_74K; |
810 | __cpu_name[cpu] = "MIPS 1074Kc"; | 810 | __cpu_name[cpu] = "MIPS 1074Kc"; |
811 | break; | 811 | break; |
812 | case PRID_IMP_INTERAPTIV_UP: | ||
813 | c->cputype = CPU_INTERAPTIV; | ||
814 | __cpu_name[cpu] = "MIPS interAptiv"; | ||
815 | break; | ||
816 | case PRID_IMP_INTERAPTIV_MP: | ||
817 | c->cputype = CPU_INTERAPTIV; | ||
818 | __cpu_name[cpu] = "MIPS interAptiv (multi)"; | ||
819 | break; | ||
812 | case PRID_IMP_PROAPTIV_UP: | 820 | case PRID_IMP_PROAPTIV_UP: |
813 | c->cputype = CPU_PROAPTIV; | 821 | c->cputype = CPU_PROAPTIV; |
814 | __cpu_name[cpu] = "MIPS proAptiv"; | 822 | __cpu_name[cpu] = "MIPS proAptiv"; |