diff options
| author | Ryota Ozaki | 2015-03-11 14:21:06 +0100 |
|---|---|---|
| committer | Peter Maydell | 2015-03-11 14:21:06 +0100 |
| commit | 0458b7b5b87be2422a67912c222aa1ec97fe94fa (patch) | |
| tree | eedc52d66208b5c42b797f47171814c58184beab /target-arm | |
| parent | netduino2: Add the Netduino 2 Machine (diff) | |
| download | qemu-0458b7b5b87be2422a67912c222aa1ec97fe94fa.tar.gz qemu-0458b7b5b87be2422a67912c222aa1ec97fe94fa.tar.xz qemu-0458b7b5b87be2422a67912c222aa1ec97fe94fa.zip | |
target-arm: Add missing compatible property to A57
Signed-off-by: Ryota Ozaki <ozaki.ryota@gmail.com>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Message-id: 1424097799-11002-1-git-send-email-ozaki.ryota@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm')
| -rw-r--r-- | target-arm/cpu64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/cpu64.c b/target-arm/cpu64.c index 823c739f08..270bc2fec7 100644 --- a/target-arm/cpu64.c +++ b/target-arm/cpu64.c @@ -96,6 +96,7 @@ static void aarch64_a57_initfn(Object *obj) { ARMCPU *cpu = ARM_CPU(obj); + cpu->dtb_compatible = "arm,cortex-a57"; set_feature(&cpu->env, ARM_FEATURE_V8); set_feature(&cpu->env, ARM_FEATURE_VFP4); set_feature(&cpu->env, ARM_FEATURE_NEON); |
