diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-01-29 11:37:54 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-02-03 16:46:10 +1000 |
commit | a120d32097910edfc1612c604836582c3a4b83c6 (patch) | |
tree | 5825ea99713119a574477988b1673b52103598bd /target/loongarch | |
parent | 68283ff4b48344fb996384f0481b3d8d72c830fe (diff) | |
download | qemu-a120d32097910edfc1612c604836582c3a4b83c6.zip qemu-a120d32097910edfc1612c604836582c3a4b83c6.tar.gz qemu-a120d32097910edfc1612c604836582c3a4b83c6.tar.bz2 |
include/exec: Implement cpu_mmu_index generically
For user-only mode, use MMU_USER_IDX.
For system mode, use CPUClass.mmu_index.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/loongarch')
-rw-r--r-- | target/loongarch/cpu.c | 2 | ||||
-rw-r--r-- | target/loongarch/cpu.h | 10 |
2 files changed, 1 insertions, 11 deletions
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c index 49ced98..7dc50bf 100644 --- a/target/loongarch/cpu.c +++ b/target/loongarch/cpu.c @@ -375,7 +375,7 @@ static bool loongarch_cpu_has_work(CPUState *cs) #endif } -int loongarch_cpu_mmu_index(CPUState *cs, bool ifetch) +static int loongarch_cpu_mmu_index(CPUState *cs, bool ifetch) { CPULoongArchState *env = cpu_env(cs); diff --git a/target/loongarch/cpu.h b/target/loongarch/cpu.h index 47fd110..ec37579 100644 --- a/target/loongarch/cpu.h +++ b/target/loongarch/cpu.h @@ -408,16 +408,6 @@ struct LoongArchCPUClass { #define MMU_USER_IDX MMU_PLV_USER #define MMU_DA_IDX 4 -int loongarch_cpu_mmu_index(CPUState *cs, bool ifetch); -static inline int cpu_mmu_index(CPULoongArchState *env, bool ifetch) -{ -#ifdef CONFIG_USER_ONLY - return MMU_USER_IDX; -#else - return loongarch_cpu_mmu_index(env_cpu(env), ifetch); -#endif -} - static inline bool is_la64(CPULoongArchState *env) { return FIELD_EX32(env->cpucfg[1], CPUCFG1, ARCH) == CPUCFG1_ARCH_LA64; |