diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-02-03 16:17:30 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-05-13 14:01:53 +0200 |
commit | 43aff742b64d8756d5612f4805af89635ae6c622 (patch) | |
tree | 3db025234ac9cabf8194ccb80786ae9feab612e7 /arch/mips/kernel/cpu-probe.c | |
parent | 1dbf6a81c845a748e46b4bcaf25d958038624ad8 (diff) | |
download | linux-stable-43aff742b64d8756d5612f4805af89635ae6c622.tar.gz linux-stable-43aff742b64d8756d5612f4805af89635ae6c622.tar.bz2 linux-stable-43aff742b64d8756d5612f4805af89635ae6c622.zip |
MIPS: Probe the M6250 CPU
Support probing the M6250 CPU now that cases for handling it have been
added where required in the core MIPS kernel code.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: Maciej W. Rozycki <macro@imgtec.com>
Cc: Joshua Kinard <kumba@gentoo.org>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/12375/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cpu-probe.c')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 0aa5bb06bb47..785e9a11c721 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -1329,6 +1329,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) c->cputype = CPU_M5150; __cpu_name[cpu] = "MIPS M5150"; break; + case PRID_IMP_M6250: + c->cputype = CPU_M6250; + __cpu_name[cpu] = "MIPS M6250"; + break; } decode_configs(c); |