diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-10-12 03:19:41 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-10-12 03:19:41 +0000 |
commit | c4a2a91dd053af588f69a4da0f9408da334869f7 (patch) | |
tree | 6d92a7c9bd79249450d74020d6480d1e5d902e30 /arch/mips/kernel/setup.c | |
parent | 73c5574a141032a6d588b0e25be6d76bbf7b991d (diff) |
DDB5476 support from Jun Sun.
Diffstat (limited to 'arch/mips/kernel/setup.c')
-rw-r--r-- | arch/mips/kernel/setup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 6ac1c0643..c067218b6 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -186,6 +186,9 @@ static inline void cpu_probe(void) case PRID_IMP_R5000: mips_cputype = CPU_R5000; break; + case PRID_IMP_R5432: + mips_cputype = CPU_R5432; + break; case PRID_IMP_NEVADA: mips_cputype = CPU_NEVADA; break; @@ -318,6 +321,11 @@ void __init setup_arch(char **cmdline_p) ddb_setup(); break; #endif +#ifdef CONFIG_DDB5476 + case MACH_GROUP_NEC_DDB: + ddb_setup(); + break; +#endif #ifdef CONFIG_ORION case MACH_GROUP_ORION: orion_setup(); |