LOCAL / arm64: dts: TM2: Add tizen-tm2.its file for using the u-boot
authorChanwoo Choi <cw00.choi@samsung.com>
Fri, 6 Jan 2017 08:15:28 +0000 (17:15 +0900)
committerJunghoon Kim <jhoon20.kim@samsung.com>
Thu, 14 Feb 2019 05:56:38 +0000 (14:56 +0900)
This patch just adds the .its file for TM2/TM2E. This file is used for
u-boot bootloader.

Change-Id: I177fcc9ae7e83b795dcfe7d151804de6e598d91d
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
arch/arm64/boot/tizen-tm2.its [new file with mode: 0644]

diff --git a/arch/arm64/boot/tizen-tm2.its b/arch/arm64/boot/tizen-tm2.its
new file mode 100644 (file)
index 0000000..9bb81cd
--- /dev/null
@@ -0,0 +1,55 @@
+/dts-v1/;
+/ {
+       description = "Combined kernel and dtbs image for Tizen TM2 board";
+       #address-cells = <1>;
+       images {
+               kernel@0 {
+                       description = "Linux kernel for arm64 exynos5433";
+                       data = /incbin/("Image.gz");
+                       type = "kernel";
+                       arch = "arm64";
+                       os = "linux";
+                       compression = "gzip";
+                       load = <0x20080000>;
+                       entry = <0x20080000>;
+                       hash@1 {
+                               algo = "crc32";
+                       };
+               };
+               fdt@0 {
+                       description = "exynos5433-tm2.dtb";
+                       data = /incbin/("dts/exynos/exynos5433-tm2.dtb");
+                       type = "flat_dt";
+                       arch = "arm64";
+                       compression = "none";
+                       load = <0x24000000>;
+                       hash@1 {
+                               algo = "crc32";
+                       };
+               };
+               fdt@1 {
+                       description = "exynos5433-tm2e.dtb";
+                       data = /incbin/("dts/exynos/exynos5433-tm2e.dtb");
+                       type = "flat_dt";
+                       arch = "arm64";
+                       compression = "none";
+                       load = <0x24000000>;
+                       hash@1 {
+                               algo = "crc32";
+                       };
+               };
+       };
+       configurations {
+               default = "tm2@0";
+               tm2@0 {
+                       description = "Linux kernel with exynos5433-tm2.dtb";
+                       kernel = "kernel@0";
+                       fdt = "fdt@0";
+               };
+               tm2e@1 {
+                       description = "Linux kernel with exynos5433-tm2e.dtb";
+                       kernel = "kernel@0";
+                       fdt = "fdt@1";
+               };
+       };
+};