target-arm: make VMSAv7 remapping and AP dependent on V6K

The VMSAv7 remapping and access permissions were introduced in ARMv6K
and not ARMv7.

Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
master
Jamie Iles 2011-06-23 01:12:59 +00:00 committed by Peter Maydell
parent c886edfb85
commit 0ab06d8347
1 changed files with 1 additions and 1 deletions

View File

@ -948,7 +948,7 @@ static inline int check_ap(CPUState *env, int ap, int domain, int access_type,
case 6:
return prot_ro;
case 7:
if (!arm_feature (env, ARM_FEATURE_V7))
if (!arm_feature (env, ARM_FEATURE_V6K))
return 0;
return prot_ro;
default: