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 sort-by-offset; 11 end-at-4gb; 12 size = <0x200>; 13 u-boot-spl-with-ucode-ptr { 14 }; 15 16 /* 17 * Microcode goes before the DTB which contains it, so binman 18 * will need to obtain the contents of the next section before 19 * obtaining the contents of this one. 20 */ 21 u-boot-ucode { 22 }; 23 24 u-boot-dtb-with-ucode { 25 }; 26 }; 27 28 microcode { 29 update@0 { 30 data = <0x12345678 0x12345679>; 31 }; 32 update@1 { 33 data = <0xabcd0000 0x78235609>; 34 }; 35 }; 36}; 37