aboutsummaryrefslogtreecommitdiffstats
path: root/xen
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-09-25 12:21:51 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-09-26 15:47:17 +0100
commit856107eca87d85c7138ca01eeefd8e6402f7ecb4 (patch)
treebd190f60caca5e278f54fa4d04d1edc1d93ce623 /xen
parent53059bda06c14a8fb559e4b6c42de2c9dd9ce3f8 (diff)
downloadxen-856107eca87d85c7138ca01eeefd8e6402f7ecb4.tar.gz
xen-856107eca87d85c7138ca01eeefd8e6402f7ecb4.tar.bz2
xen-856107eca87d85c7138ca01eeefd8e6402f7ecb4.zip
xen: arm: use new 64-bit zImage magic numbers for Xen binary
Upstream commit 4370eec05a88 "arm64: Expand arm64 image header" ended up changing the zImage magic (which was actually the initial branch instructio encoding!). The new header has a proper magic number at a fixed location. Switch Xen itself to using this format. Neither the bootwrapper nor the models care about this header themselves and real bootloaders are not widely used, so now is as good a time as any to switch (as upstream have proven) Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Tim Deegan <tim@xen.org>
Diffstat (limited to 'xen')
-rw-r--r--xen/arch/arm/arm64/head.S8
1 files changed, 8 insertions, 0 deletions
diff --git a/xen/arch/arm/arm64/head.S b/xen/arch/arm/arm64/head.S
index e0831b6fd7..4495f72c32 100644
--- a/xen/arch/arm/arm64/head.S
+++ b/xen/arch/arm/arm64/head.S
@@ -73,6 +73,14 @@ start:
.quad 0 /* Image load offset from start of RAM */
.quad 0 /* reserved */
.quad 0 /* reserved */
+ .quad 0 /* reserved */
+ .quad 0 /* reserved */
+ .quad 0 /* reserved */
+ .byte 0x41 /* Magic number, "ARM\x64" */
+ .byte 0x52
+ .byte 0x4d
+ .byte 0x64
+ .word 0 /* reserved */
real_start:
msr DAIFSet, 0xf /* Disable all interrupts */