diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/microblaze/dts | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/microblaze/dts')
-rw-r--r-- | roms/u-boot/arch/microblaze/dts/Makefile | 13 | ||||
l--------- | roms/u-boot/arch/microblaze/dts/include/dt-bindings | 1 | ||||
-rw-r--r-- | roms/u-boot/arch/microblaze/dts/microblaze-generic.dts | 9 |
3 files changed, 23 insertions, 0 deletions
diff --git a/roms/u-boot/arch/microblaze/dts/Makefile b/roms/u-boot/arch/microblaze/dts/Makefile new file mode 100644 index 000000000..4690dc1b9 --- /dev/null +++ b/roms/u-boot/arch/microblaze/dts/Makefile @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0+ + +dtb-y += $(shell echo $(CONFIG_DEFAULT_DEVICE_TREE)).dtb + +targets += $(dtb-y) + +DTC_FLAGS += -R 4 -p 0x1000 + +PHONY += dtbs +dtbs: $(addprefix $(obj)/, $(dtb-y)) + @: + +clean-files := *.dtb diff --git a/roms/u-boot/arch/microblaze/dts/include/dt-bindings b/roms/u-boot/arch/microblaze/dts/include/dt-bindings new file mode 120000 index 000000000..0cecb3d08 --- /dev/null +++ b/roms/u-boot/arch/microblaze/dts/include/dt-bindings @@ -0,0 +1 @@ +../../../../include/dt-bindings
\ No newline at end of file diff --git a/roms/u-boot/arch/microblaze/dts/microblaze-generic.dts b/roms/u-boot/arch/microblaze/dts/microblaze-generic.dts new file mode 100644 index 000000000..08a1396f2 --- /dev/null +++ b/roms/u-boot/arch/microblaze/dts/microblaze-generic.dts @@ -0,0 +1,9 @@ +/dts-v1/; +/ { + #address-cells = <1>; + #size-cells = <1>; + aliases { + } ; + chosen { + } ; +} ; |