diff options
author | David Daney <ddaney@caviumnetworks.com> | 2010-07-26 17:29:37 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:26:26 -0400 |
commit | 0c2f4551df3880083e4733b5d928d2758b71162c (patch) | |
tree | 2eec2945e305d8938fff39194d949493379c77a1 /arch/mips/kernel/cpu-probe.c | |
parent | fa90c87297a1bebd8356e41d71518b37ada56583 (diff) |
MIPS: Decode core number for R2 CPUs.
The struct cpuinfo_mips.core field should be populated with the
physical core number. For R2 CPUs, this is carried in the low 10 bits
of Ebase.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1505/
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 9b6633171a1f..b1b304ea2128 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -761,6 +761,9 @@ static void __cpuinit decode_configs(struct cpuinfo_mips *c) | |||
761 | ok = decode_config4(c); | 761 | ok = decode_config4(c); |
762 | 762 | ||
763 | mips_probe_watch_registers(c); | 763 | mips_probe_watch_registers(c); |
764 | |||
765 | if (cpu_has_mips_r2) | ||
766 | c->core = read_c0_ebase() & 0x3ff; | ||
764 | } | 767 | } |
765 | 768 | ||
766 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) | 769 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) |