mirror of https://gitee.com/openkylin/qemu.git
Fix mips usermode emulation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3212 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
239fbd8623
commit
2337fdc208
|
@ -367,7 +367,10 @@ static void mvp_init (CPUMIPSState *env, mips_def_t *def)
|
|||
implemented, 5 TCs implemented. */
|
||||
env->mvp->CP0_MVPConf0 = (1 << CP0MVPC0_M) | (1 << CP0MVPC0_TLBS) |
|
||||
(0 << CP0MVPC0_GS) | (1 << CP0MVPC0_PCP) |
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
/* Usermode has no TLB support */
|
||||
(env->tlb->nb_tlb << CP0MVPC0_PTLBE) |
|
||||
#endif
|
||||
// TODO: actually do 2 VPEs.
|
||||
// (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
|
||||
// (0x04 << CP0MVPC0_PTC);
|
||||
|
|
Loading…
Reference in New Issue