mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
6b187df787
Add a test for this feature. It allows SPL to hold a pointer to the microcode block. This is used for 64-bit U-Boot on x86. Signed-off-by: Simon Glass <sjg@chromium.org>
29 lines
337 B
Text
29 lines
337 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
sort-by-pos;
|
|
end-at-4gb;
|
|
size = <0x200>;
|
|
u-boot-spl-with-ucode-ptr {
|
|
};
|
|
|
|
u-boot-dtb-with-ucode {
|
|
};
|
|
|
|
u-boot-ucode {
|
|
};
|
|
};
|
|
|
|
microcode {
|
|
update@0 {
|
|
data = <0x12345678 0x12345679>;
|
|
};
|
|
update@1 {
|
|
data = <0xabcd0000 0x78235609>;
|
|
};
|
|
};
|
|
};
|