Merge branch 'master' of git://git.denx.de/u-boot-sh
[platform/kernel/u-boot.git] / tools / binman / test / 044_x86_optional_ucode.dts
1 /dts-v1/;
2
3 / {
4         #address-cells = <1>;
5         #size-cells = <1>;
6
7         binman {
8                 sort-by-offset;
9                 end-at-4gb;
10                 size = <0x200>;
11                 u-boot-with-ucode-ptr {
12                         optional-ucode;
13                 };
14
15                 u-boot-dtb-with-ucode {
16                 };
17
18                 u-boot-ucode {
19                 };
20         };
21
22         microcode {
23                 update@0 {
24                         data = <0x12345678 0x12345679>;
25                 };
26                 update@1 {
27                         data = <0xabcd0000 0x78235609>;
28                 };
29         };
30 };