1/dts-v1/; 2 3/ { 4 description = "U-Boot fitImage"; 5 #address-cells = <1>; 6 7 images { 8 kernel@1 { 9 description = "Linux kernel"; 10 data = /incbin/("zImage.sec"); 11 type = "kernel"; 12 arch = "arm"; 13 os = "linux"; 14 compression = "none"; 15 load = <0x82000000>; 16 entry = <0x82000000>; 17 }; 18 19 am437x-gp-evm.dtb { 20 description = "Flattened Device Tree blob"; 21 data = /incbin/("am437x-gp-evm.dtb.sec"); 22 type = "flat_dt"; 23 arch = "arm"; 24 compression = "none"; 25 }; 26 27 am43x-epos-evm.dtb { 28 description = "Flattened Device Tree blob"; 29 data = /incbin/("am43x-epos-evm.dtb.sec"); 30 type = "flat_dt"; 31 arch = "arm"; 32 compression = "none"; 33 }; 34 35 optee { 36 description = "OPTEE OS Image"; 37 data = /incbin/("tee.bin.sec"); 38 type = "tee"; 39 arch = "arm"; 40 compression = "none"; 41 load = <0xbdb000e4>; 42 }; 43 }; 44 45 configurations { 46 default = "am437x-gp-evm.dtb"; 47 48 am437x-gp-evm.dtb { 49 description = "Linux kernel, FDT blob, OPTEE OS"; 50 kernel = "kernel@1"; 51 fdt = "am437x-gp-evm.dtb"; 52 loadables = "optee"; 53 }; 54 55 am43x-epos-evm.dtb { 56 description = "Linux kernel, FDT blob, OPTEE OS"; 57 kernel = "kernel@1"; 58 fdt = "am43x-epos-evm.dtb"; 59 loadables = "optee"; 60 }; 61 }; 62}; 63