Skip to content

Commit

Permalink
target-arm: Use a 1:1 mapping between EL and MMU index
Browse files Browse the repository at this point in the history
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Message-id: 1400980132-25949-6-git-send-email-edgar.iglesias@gmail.com
Message-id: 1400805738-11889-7-git-send-email-edgar.iglesias@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
edgarigl authored and pm215 committed May 27, 2014
1 parent 6ce2faf commit f79fbf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 4 additions & 4 deletions target-arm/cpu.h
Expand Up @@ -1080,12 +1080,12 @@ static inline CPUARMState *cpu_init(const char *cpu_model)
#define cpu_list arm_cpu_list

/* MMU modes definitions */
#define MMU_MODE0_SUFFIX _kernel
#define MMU_MODE1_SUFFIX _user
#define MMU_USER_IDX 1
#define MMU_MODE0_SUFFIX _user
#define MMU_MODE1_SUFFIX _kernel
#define MMU_USER_IDX 0
static inline int cpu_mmu_index (CPUARMState *env)
{
return arm_current_pl(env) ? 0 : 1;
return arm_current_pl(env);
}

#include "exec/cpu-all.h"
Expand Down
6 changes: 1 addition & 5 deletions target-arm/translate.h
Expand Up @@ -54,11 +54,7 @@ static inline int arm_dc_feature(DisasContext *dc, int feature)

static inline int get_mem_index(DisasContext *s)
{
#ifdef CONFIG_USER_ONLY
return 1;
#else
return s->user;
#endif
return s->current_pl;
}

/* target-specific extra values for is_jmp */
Expand Down

0 comments on commit f79fbf3

Please sign in to comment.