summaryrefslogblamecommitdiffstats
blob: 6cff7a1f6b6ae2bff19c7bf1dfc8d6e3f8eb972b (plain) (tree)
1
2
3
4


         
                                               























                                                              
                                                         



                                                                   








































                                                                              



                        


                                                       



                                              











                                                                 

          
/dts-v1/;

/ {
	description = "AM65x FIT Image Source";
	#address-cells = <1>;

	images {
		kernel@1 {
			description = "LCPD kernel";
			data = /incbin/("Image");
			type = "kernel";
			arch = "arm64";
			os = "linux";
			compression = "none";
			load = <0x80080000>;
			entry = <0x80080000>;
		};
		ramdisk@1 {
			description = "Android Ramdisk Image";
			data = /incbin/("ramdisk.img");
			type = "ramdisk";
			arch = "arm64";
			os = "linux";
			compression = "none";
			load = <0x88080000>;
			entry = <0x88080000>;
		};
		fdt@1 {
			description = "AM65x Base Board";
			data = /incbin/("k3-am654-base-board.dtb");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83000000>;
		};
		fdt@2 {
			description = "AM65x PCIe/USB2 Card Overlay";
			data = /incbin/("k3-am654-pcie-usb2.dtbo");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83080000>;
		};
		fdt@3 {
			description = "AM65x IDK Board Support Overlay";
			data = /incbin/("k3-am654-idk.dtbo");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83100000>;
		};
		fdt@4 {
			description = "AM65x PCIe/USB3 Card Overlay";
			data = /incbin/("k3-am654-pcie-usb3.dtbo");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83180000>;
		};
		fdt@5 {
			description = "AM65x CSI2/OV490 Card Support Overlay";
			data = /incbin/("k3-am654-evm-csi2-ov490.dtbo");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83200000>;
		};
		fdt@6 {
			description = "AM65x OLDI-LCD Support Overlay";
			data = /incbin/("k3-am654-evm-oldi-lcd1evm.dtbo");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load = <0x83280000>;
		};
	};

	configurations {
		default = "am65x";
		am65x {
			description = "AM65x Base EVM";
			kernel = "kernel@1";
			ramdisk = "ramdisk@1";
			fdt = "fdt@1";
		};
		am65x_idk {
			description = "AM65x IDK";
			kernel = "kernel@1";
			ramdisk = "ramdisk@1";
			fdt = "fdt@1", "fdt@2", "fdt@3";
		};
		am65x_evm {
			description = "AM65x EVM";
			kernel = "kernel@1";
			ramdisk = "ramdisk@1";
			fdt = "fdt@1", "fdt@4", "fdt@5", "fdt@6";
		};
	};
};