diff options
Diffstat (limited to 'system/arm/dt/Makefile')
-rw-r--r-- | system/arm/dt/Makefile | 24 |
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,$*) |