diff options
author | Kanoj Sarcar <kanoj@engr.sgi.com> | 2001-02-27 18:53:52 +0000 |
---|---|---|
committer | Kanoj Sarcar <kanoj@engr.sgi.com> | 2001-02-27 18:53:52 +0000 |
commit | 0e9ad0e05f2563d015e2d409fef068f26b665429 (patch) | |
tree | 35a64f68978ee86a80a92b20968c48e09bc4b455 | |
parent | d709bd73a451d061f164406f76f8912e679dae02 (diff) |
Basic boot support for R12000. This does not mean R12000 is fully
supported in the mips64 port.
-rw-r--r-- | arch/mips64/kernel/setup.c | 1 | ||||
-rw-r--r-- | include/asm-mips64/cpu.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips64/kernel/setup.c b/arch/mips64/kernel/setup.c index 077a63034..74511142b 100644 --- a/arch/mips64/kernel/setup.c +++ b/arch/mips64/kernel/setup.c @@ -135,6 +135,7 @@ static inline void cpu_probe(void) mips_cputype = CPU_R8000; break; case PRID_IMP_R10000: + case PRID_IMP_R12000: mips_cputype = CPU_R10000; break; default: diff --git a/include/asm-mips64/cpu.h b/include/asm-mips64/cpu.h index c1cdb2026..942928b46 100644 --- a/include/asm-mips64/cpu.h +++ b/include/asm-mips64/cpu.h @@ -22,6 +22,7 @@ #define PRID_IMP_R4000 0x0400 #define PRID_IMP_R6000A 0x0600 #define PRID_IMP_R10000 0x0900 +#define PRID_IMP_R12000 0x0e00 #define PRID_IMP_R4300 0x0b00 #define PRID_IMP_R12000 0x0e00 #define PRID_IMP_R8000 0x1000 |