Skip to content

Commit

Permalink
target-arm: implement arm_debug_target_el()
Browse files Browse the repository at this point in the history
Implement debug exception routing according to ARM ARM D2.3.1 Pseudocode
description of routing debug exceptions.

Signed-off-by: Sergey Fedorov <serge.fdrv@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
sergefdrv authored and pm215 committed Oct 16, 2015
1 parent 74de8c3 commit 81669b8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion target-arm/cpu.h
Expand Up @@ -1702,7 +1702,22 @@ static inline int cpu_mmu_index(CPUARMState *env, bool ifetch)
*/
static inline int arm_debug_target_el(CPUARMState *env)
{
return 1;
bool secure = arm_is_secure(env);
bool route_to_el2 = false;

if (arm_feature(env, ARM_FEATURE_EL2) && !secure) {
route_to_el2 = env->cp15.hcr_el2 & HCR_TGE ||
env->cp15.mdcr_el2 & (1 << 8);
}

if (route_to_el2) {
return 2;
} else if (arm_feature(env, ARM_FEATURE_EL3) &&
!arm_el_is_aa64(env, 3) && secure) {
return 3;
} else {
return 1;
}
}

static inline bool aa64_generate_debug_exceptions(CPUARMState *env)
Expand Down

0 comments on commit 81669b8

Please sign in to comment.