MIPS: Add defs & probing of [X]ContextConfig
The CP0_[X]ContextConfig registers are present if CP0_Config3.CTXTC or CP0_Config3.SM are set, and provide more control over which bits of CP0_[X]Context are set to the faulting virtual address on a TLB exception. KVM/VZ will need to be able to save and restore these registers in the guest context, so add the relevant definitions and probing of the ContextConfig feature in the root context first. [ralf@linux-mips.org: resolve merge conflict.] Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/13225/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:

committed by
Ralf Baechle

parent
e06a1548f3
commit
f18bdfa191
@@ -687,10 +687,12 @@ static inline unsigned int decode_config3(struct cpuinfo_mips *c)
|
||||
|
||||
if (config3 & MIPS_CONF3_SM) {
|
||||
c->ases |= MIPS_ASE_SMARTMIPS;
|
||||
c->options |= MIPS_CPU_RIXI;
|
||||
c->options |= MIPS_CPU_RIXI | MIPS_CPU_CTXTC;
|
||||
}
|
||||
if (config3 & MIPS_CONF3_RXI)
|
||||
c->options |= MIPS_CPU_RIXI;
|
||||
if (config3 & MIPS_CONF3_CTXTC)
|
||||
c->options |= MIPS_CPU_CTXTC;
|
||||
if (config3 & MIPS_CONF3_DSP)
|
||||
c->ases |= MIPS_ASE_DSP;
|
||||
if (config3 & MIPS_CONF3_DSP2P) {
|
||||
|
Reference in New Issue
Block a user