058_x86_ucode_spl_needs_retry.dts 559 B

123456789101112131415161718192021222324252627282930313233343536
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. sort-by-offset;
  8. end-at-4gb;
  9. size = <0x200>;
  10. u-boot-spl-with-ucode-ptr {
  11. };
  12. /*
  13. * Microcode goes before the DTB which contains it, so binman
  14. * will need to obtain the contents of the next section before
  15. * obtaining the contents of this one.
  16. */
  17. u-boot-ucode {
  18. };
  19. u-boot-dtb-with-ucode {
  20. };
  21. };
  22. microcode {
  23. update@0 {
  24. data = <0x12345678 0x12345679>;
  25. };
  26. update@1 {
  27. data = <0xabcd0000 0x78235609>;
  28. };
  29. };
  30. };