diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-07-14 03:34:18 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:51 -0400 |
commit | 8f40611d2b184ca5d525075d273854929cf8d1d0 (patch) | |
tree | 962ef8dfa515cee330f506dc4ceac83670d0f84e /arch/mips/kernel/cpu-probe.c | |
parent | 699dbc90e8c7baecae197fb331773f505a46a1eb (diff) |
Detect the MIPS R2 vectored interrupt, external interrupt controller
options and the precense of the MT ASE.
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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 53e4496de6b6..844126b39ed3 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -501,6 +501,12 @@ static inline unsigned int decode_config3(struct cpuinfo_mips *c) | |||
501 | c->ases |= MIPS_ASE_SMARTMIPS; | 501 | c->ases |= MIPS_ASE_SMARTMIPS; |
502 | if (config3 & MIPS_CONF3_DSP) | 502 | if (config3 & MIPS_CONF3_DSP) |
503 | c->ases |= MIPS_ASE_DSP; | 503 | c->ases |= MIPS_ASE_DSP; |
504 | if (config3 & MIPS_CONF3_VINT) | ||
505 | c->options |= MIPS_CPU_VINT; | ||
506 | if (config3 & MIPS_CONF3_VEIC) | ||
507 | c->options |= MIPS_CPU_VEIC; | ||
508 | if (config3 & MIPS_CONF3_MT) | ||
509 | c->ases |= MIPS_ASE_MIPSMT; | ||
504 | 510 | ||
505 | return config3 & MIPS_CONF_M; | 511 | return config3 & MIPS_CONF_M; |
506 | } | 512 | } |