summaryrefslogtreecommitdiff
path: root/system/arm/dt/Makefile
diff options
context:
space:
mode:
authorJairo Balart <jairo.balart@metempsy.com>2018-11-13 11:02:46 +0100
committerJairo Balart <jairo.balart@metempsy.com>2019-01-07 22:38:30 +0000
commit3e1e21da61d79b79534a18398b1dde2cc4e473cb (patch)
treef265dc256cf9456e7682477c38c86532de8e436c /system/arm/dt/Makefile
parent761a5806fb9b96acb94cd8278d3273241e657226 (diff)
downloadgem5-3e1e21da61d79b79534a18398b1dde2cc4e473cb.tar.xz
system-arm: Add device tree for new VExpress GEM5_V2 platform
Change-Id: Ifc2b91afe5b88a656b4ed1c64ab6cca97f082034 Reviewed-on: https://gem5-review.googlesource.com/c/14275 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'system/arm/dt/Makefile')
-rw-r--r--system/arm/dt/Makefile24
1 files changed, 19 insertions, 5 deletions
diff --git a/system/arm/dt/Makefile b/system/arm/dt/Makefile
index a162b9fd1..9d2faf0e0 100644
--- a/system/arm/dt/Makefile
+++ b/system/arm/dt/Makefile
@@ -32,14 +32,23 @@ DTC?=dtc
DTC_CPP_FLAGS=-nostdinc -undef
TARGETS=\
- armv7_gem5_v1_1cpu.dtb armv7_gem5_v1_2cpu.dtb \
- armv7_gem5_v1_4cpu.dtb armv7_gem5_v1_8cpu.dtb \
+ armv7_gem5_v1_1cpu.dtb \
+ armv7_gem5_v1_2cpu.dtb \
+ armv7_gem5_v1_4cpu.dtb \
+ armv7_gem5_v1_8cpu.dtb \
armv7_gem5_v1_16cpu.dtb \
- armv8_gem5_v1_1cpu.dtb armv8_gem5_v1_2cpu.dtb \
- armv8_gem5_v1_4cpu.dtb armv8_gem5_v1_8cpu.dtb \
+ armv8_gem5_v1_1cpu.dtb \
+ armv8_gem5_v1_2cpu.dtb \
+ armv8_gem5_v1_4cpu.dtb \
+ armv8_gem5_v1_8cpu.dtb \
armv8_gem5_v1_16cpu.dtb \
armv8_gem5_v1_big_little_2_2.dtb \
- armv8_gem5_v1_big_little_2_4.dtb
+ armv8_gem5_v1_big_little_2_4.dtb \
+ armv8_gem5_v2_1cpu.dtb \
+ armv8_gem5_v2_2cpu.dtb \
+ armv8_gem5_v2_4cpu.dtb \
+ armv8_gem5_v2_8cpu.dtb \
+ armv8_gem5_v2_16cpu.dtb
GEN_DTS=mkdir -p .gen; \
$(CPP) -x assembler-with-cpp \
@@ -52,12 +61,17 @@ all: $(TARGETS)
platforms/vexpress_gem5_v1.dtsi: platforms/vexpress_gem5_v1_base.dtsi
+platforms/vexpress_gem5_v2.dtsi: platforms/vexpress_gem5_v2_base.dtsi
+
.gen/armv7_gem5_v1_%cpu.dts: armv7.dts platforms/vexpress_gem5_v1.dtsi
$(call GEN_DTS,vexpress_gem5_v1.dtsi,$*)
.gen/armv8_gem5_v1_%cpu.dts: armv8.dts platforms/vexpress_gem5_v1.dtsi
$(call GEN_DTS,vexpress_gem5_v1.dtsi,$*)
+.gen/armv8_gem5_v2_%cpu.dts: armv8.dts platforms/vexpress_gem5_v2.dtsi
+ $(call GEN_DTS,vexpress_gem5_v2.dtsi,$*)
+
.gen/armv8_gem5_v1_big_little%.dts: armv8_big_little.dts \
platforms/vexpress_gem5_v1.dtsi
$(call GEN_DTS,vexpress_gem5_v1.dtsi,$*)