1// SPDX-License-Identifier: GPL-2.0+ 2 3/dts-v1/; 4 5/ { 6 #address-cells = <1>; 7 #size-cells = <1>; 8 9 binman { 10 fit { 11 fit,encrypt; 12 description = "Test a FIT with encrypted data"; 13 #address-cells = <1>; 14 15 images { 16 u-boot { 17 description = "U-Boot"; 18 type = "firmware"; 19 arch = "arm64"; 20 os = "U-Boot"; 21 compression = "none"; 22 load = <00000000>; 23 entry = <00000000>; 24 cipher { 25 algo = "aes256"; 26 key-name-hint = "aes256"; 27 }; 28 u-boot-nodtb { 29 }; 30 }; 31 fdt-1 { 32 description = "Flattened Device Tree blob"; 33 type = "flat_dt"; 34 arch = "arm64"; 35 compression = "none"; 36 cipher { 37 algo = "aes256"; 38 key-name-hint = "aes256"; 39 }; 40 }; 41 }; 42 43 configurations { 44 default = "conf-1"; 45 conf-1 { 46 description = "Boot U-Boot with FDT blob"; 47 firmware = "u-boot"; 48 fdt = "fdt-1"; 49 }; 50 }; 51 }; 52 }; 53}; 54