diff options
author | Peter Maydell | 2017-01-20 12:15:10 +0100 |
---|---|---|
committer | Peter Maydell | 2017-01-20 12:15:10 +0100 |
commit | c25bd18a04c8bd0f19556d719864b7b08528222d (patch) | |
tree | de0d79f47a6c941150bdb2a993af2521a0b49523 /target/arm/cpu.h | |
parent | target/arm/psci.c: If EL2 implemented, start CPUs in EL2 (diff) | |
download | qemu-c25bd18a04c8bd0f19556d719864b7b08528222d.tar.gz qemu-c25bd18a04c8bd0f19556d719864b7b08528222d.tar.xz qemu-c25bd18a04c8bd0f19556d719864b7b08528222d.zip |
target-arm: Enable EL2 feature bit on A53 and A57
Enable the ARM_FEATURE_EL2 bit on Cortex-A52 and
Cortex-A57, since this is all now sufficiently implemented
to work with the GICv3. We provide the usual CPU property
to disable it for backwards compatibility with the older
virt boards.
In this commit, we disable the EL2 feature on the
virt and ZynpMP boards, so there is no overall effect.
Another commit will expose a board-level property to
allow the user to enable EL2.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Message-id: 1483977924-14522-18-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 16c7c10bfb..151a5d754e 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -577,6 +577,8 @@ struct ARMCPU { bool start_powered_off; /* CPU currently in PSCI powered-off state */ bool powered_off; + /* CPU has virtualization extension */ + bool has_el2; /* CPU has security extension */ bool has_el3; /* CPU has PMU (Performance Monitor Unit) */ |