Commit 45b585c8 authored by David Daney's avatar David Daney Committed by Ralf Baechle

MIPS: Add function get_ebase_cpunum

This returns the CPUNum from the low order Ebase bits.
Signed-off-by: default avatarDavid Daney <david.daney@cavium.com>
Signed-off-by: default avatarAndreas Herrmann <andreas.herrmann@caviumnetworks.com>
Cc: linux-mips@linux-mips.org
Cc: James Hogan <james.hogan@imgtec.com>
Cc: kvm@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/7012/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 18a8cd63
...@@ -1792,6 +1792,15 @@ __BUILD_SET_C0(brcm_cmt_ctrl) ...@@ -1792,6 +1792,15 @@ __BUILD_SET_C0(brcm_cmt_ctrl)
__BUILD_SET_C0(brcm_config) __BUILD_SET_C0(brcm_config)
__BUILD_SET_C0(brcm_mode) __BUILD_SET_C0(brcm_mode)
/*
* Return low 10 bits of ebase.
* Note that under KVM (MIPSVZ) this returns vcpu id.
*/
static inline unsigned int get_ebase_cpunum(void)
{
return read_c0_ebase() & 0x3ff;
}
#endif /* !__ASSEMBLY__ */ #endif /* !__ASSEMBLY__ */
#endif /* _ASM_MIPSREGS_H */ #endif /* _ASM_MIPSREGS_H */
...@@ -423,7 +423,7 @@ static void decode_configs(struct cpuinfo_mips *c) ...@@ -423,7 +423,7 @@ static void decode_configs(struct cpuinfo_mips *c)
#ifndef CONFIG_MIPS_CPS #ifndef CONFIG_MIPS_CPS
if (cpu_has_mips_r2) { if (cpu_has_mips_r2) {
c->core = read_c0_ebase() & 0x3ff; c->core = get_ebase_cpunum();
if (cpu_has_mipsmt) if (cpu_has_mipsmt)
c->core >>= fls(core_nvpes()) - 1; c->core >>= fls(core_nvpes()) - 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment