diff options
author | Steven J. Hill <sjhill@mips.com> | 2012-06-26 08:11:03 +0400 |
---|---|---|
committer | Steven J. Hill <sjhill@mips.com> | 2012-09-14 00:21:47 +0400 |
commit | 006a851b10a395955c153a145ad8241494d43688 (patch) | |
tree | e636786a07cf84b2e587c5403564465a9d5e8fd4 /arch/mips/kernel/cpu-probe.c | |
parent | fea7a08acb13524b47711625eebea40a0ede69a0 (diff) | |
download | linux-006a851b10a395955c153a145ad8241494d43688.tar.xz |
MIPS: Add support for the 1074K core.
Signed-off-by: Steven J. Hill <sjhill@mips.com>
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 1b51046191e8..ed3eaf6409b4 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -857,6 +857,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) c->cputype = CPU_1004K; __cpu_name[cpu] = "MIPS 1004Kc"; break; + case PRID_IMP_1074K: + c->cputype = CPU_74K; + __cpu_name[cpu] = "MIPS 1074Kc"; + break; } spram_config(); |