diff options
author | Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> | 2013-11-14 11:12:28 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-22 14:18:59 -0500 |
commit | b0d4d30026ba4e5f3c71012ec90b77084fe9825b (patch) | |
tree | 811deac8064b35232efb475ac911c53dad8d3c71 /arch | |
parent | 708ac4b8703ea3204eee7c1c00c29912468a759d (diff) |
MIPS: kernel: cpu-probe: Add support for probing proAptiv 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/6135/
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 e1acfa81a053..f86414ebe05e 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -746,6 +746,14 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) | |||
746 | c->cputype = CPU_74K; | 746 | c->cputype = CPU_74K; |
747 | __cpu_name[cpu] = "MIPS 1074Kc"; | 747 | __cpu_name[cpu] = "MIPS 1074Kc"; |
748 | break; | 748 | break; |
749 | case PRID_IMP_PROAPTIV_UP: | ||
750 | c->cputype = CPU_PROAPTIV; | ||
751 | __cpu_name[cpu] = "MIPS proAptiv"; | ||
752 | break; | ||
753 | case PRID_IMP_PROAPTIV_MP: | ||
754 | c->cputype = CPU_PROAPTIV; | ||
755 | __cpu_name[cpu] = "MIPS proAptiv (multi)"; | ||
756 | break; | ||
749 | } | 757 | } |
750 | 758 | ||
751 | spram_config(); | 759 | spram_config(); |