aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-10-17 16:43:48 +0100
committerIan Campbell <ian.campbell@citrix.com>2012-10-17 16:43:48 +0100
commit20013e0b97aa8b6f47b6440f7a6d06862c87a29b (patch)
treec36ed8f8c31dd1b12e3b5ec412ac7c64e55ff498 /tools/include
parentd09910ae4d71556cbd513c4d782b0e7f42d99ffd (diff)
downloadxen-20013e0b97aa8b6f47b6440f7a6d06862c87a29b.tar.gz
xen-20013e0b97aa8b6f47b6440f7a6d06862c87a29b.tar.bz2
xen-20013e0b97aa8b6f47b6440f7a6d06862c87a29b.zip
arm: tools: add arm to foreign structs checking
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/xen-foreign/Makefile5
-rw-r--r--tools/include/xen-foreign/mkheader.py7
-rw-r--r--tools/include/xen-foreign/reference.size20
-rw-r--r--tools/include/xen-foreign/structs.py7
4 files changed, 27 insertions, 12 deletions
diff --git a/tools/include/xen-foreign/Makefile b/tools/include/xen-foreign/Makefile
index 8b22b10960..cfaf790d45 100644
--- a/tools/include/xen-foreign/Makefile
+++ b/tools/include/xen-foreign/Makefile
@@ -3,7 +3,7 @@ include $(XEN_ROOT)/tools/Rules.mk
ROOT = $(XEN_ROOT)/xen/include/public
-architectures := x86_32 x86_64
+architectures := arm x86_32 x86_64
headers := $(patsubst %, %.h, $(architectures))
.PHONY: all clean check-headers
@@ -22,6 +22,9 @@ check-headers: checker
diff -u reference.size tmp.size
rm tmp.size
+arm.h: mkheader.py structs.py $(ROOT)/arch-arm.h
+ $(PYTHON) $< $* $@ $(filter %.h,$^)
+
x86_32.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
$(PYTHON) $< $* $@ $(filter %.h,$^)
diff --git a/tools/include/xen-foreign/mkheader.py b/tools/include/xen-foreign/mkheader.py
index 797a8805b9..d189b076e8 100644
--- a/tools/include/xen-foreign/mkheader.py
+++ b/tools/include/xen-foreign/mkheader.py
@@ -16,6 +16,13 @@ inttypes = {};
header = {};
footer = {};
+#arm
+inttypes["arm"] = {
+ "unsigned long" : "uint32_t",
+ "long" : "uint32_t",
+ "xen_pfn_t" : "uint64_t",
+};
+
# x86_32
inttypes["x86_32"] = {
"unsigned long" : "uint32_t",
diff --git a/tools/include/xen-foreign/reference.size b/tools/include/xen-foreign/reference.size
index fac1b1d258..a2cbfd60f3 100644
--- a/tools/include/xen-foreign/reference.size
+++ b/tools/include/xen-foreign/reference.size
@@ -1,13 +1,13 @@
-structs | x86_32 x86_64
+structs | arm x86_32 x86_64
-start_info | 1112 1168
-trap_info | 8 16
-cpu_user_regs | 68 200
-vcpu_guest_context | 2800 5168
-arch_vcpu_info | 24 16
-vcpu_time_info | 32 32
-vcpu_info | 64 64
-arch_shared_info | 268 280
-shared_info | 2584 3368
+start_info | - 1112 1168
+trap_info | - 8 16
+cpu_user_regs | 160 68 200
+vcpu_guest_context | 180 2800 5168
+arch_vcpu_info | - 24 16
+vcpu_time_info | - 32 32
+vcpu_info | - 64 64
+arch_shared_info | - 268 280
+shared_info | - 2584 3368
diff --git a/tools/include/xen-foreign/structs.py b/tools/include/xen-foreign/structs.py
index 571f7bb3dc..51a77c0ad8 100644
--- a/tools/include/xen-foreign/structs.py
+++ b/tools/include/xen-foreign/structs.py
@@ -13,9 +13,14 @@ structs = [ "start_info",
"arch_shared_info",
"shared_info" ];
-defines = [ "__i386__",
+defines = [ "__arm__",
+ "__i386__",
"__x86_64__",
+ # arm
+ # None
+
+ # x86_{32,64}
"FLAT_RING1_CS",
"FLAT_RING1_DS",
"FLAT_RING1_SS",