summaryrefslogtreecommitdiffstats
blob: 34b022acd191081c35bd7a3b9eb7ddf41e20943d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/dts-v1/;

/ {
	description = "beagle-x15";
	#address-cells = <1>;

	images {
		kernel@1 {
			description = "TI kernel";
			data = /incbin/("zImage");
			type = "kernel";
			arch = "arm";
			os = "linux";
			compression = "none";
			load = <0x82000000>;
			entry = <0x82000000>;
		};
		ramdisk@1 {
			description = "Android Ramdisk Image";
			data = /incbin/("ramdisk.img");
			type = "ramdisk";
			arch = "arm";
			os = "linux";
			compression = "none";
			load = <0x88080000>;
			entry = <0x88080000>;
		};
		fdt@1 {
			description = "AM57xx-beagle-x15-revc";
			data = /incbin/("am57xx-beagle-x15-revc.dtb");
			type = "flat_dt";
			arch = "arm";
			compression = "none";
			load = <0x83000000>;
		};
		fdt@2 {
			description = "AM57xx-evm-common overlay";
			data = /incbin/("am57xx-evm-common.dtbo");
			type = "flat_dt";
			arch = "arm";
			compression = "none";
			load = <0x83080000>;
		};
		fdt@3 {
			description = "AM57xx-evm-reva3 overlay";
			data = /incbin/("am57xx-evm-reva3.dtbo");
			type = "flat_dt";
			arch = "arm";
			compression = "none";
			load = <0x83090000>;
		};

	};

	configurations {
		default = "am57xx-beagle-x15-revc.dtb";
		am57xx-beagle-x15-revc.dtb {
			description = "AM57xx beagle-x15 C";
			kernel = "kernel@1";
			ramdisk = "ramdisk@1";
			fdt = "fdt@1";
		};
		am57xx-evm-reva3.dtb {
			description = "AM57xx EVM rev A3";
			kernel = "kernel@1";
			ramdisk = "ramdisk@1";
			fdt = "fdt@1", "fdt@2", "fdt@3";
		};
	};
};