167_fit_image_subentry_alignment.dts 939 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. fit {
  8. description = "test-desc";
  9. #address-cells = <1>;
  10. images {
  11. kernel {
  12. description = "Offset-Align Test";
  13. type = "kernel";
  14. arch = "arm64";
  15. os = "linux";
  16. compression = "none";
  17. load = <00000000>;
  18. entry = <00000000>;
  19. u-boot-spl {
  20. offset = <0x20>;
  21. };
  22. u-boot {
  23. align = <0x10>;
  24. };
  25. };
  26. fdt-1 {
  27. description = "Pad-Before-After Test";
  28. type = "flat_dt";
  29. arch = "arm64";
  30. compression = "none";
  31. u-boot-spl-dtb {
  32. };
  33. text {
  34. text-label = "test-id";
  35. pad-before = <20>;
  36. pad-after = <30>;
  37. };
  38. u-boot-dtb {
  39. };
  40. };
  41. };
  42. configurations {
  43. default = "conf-1";
  44. conf-1 {
  45. description = "Kernel with FDT blob";
  46. kernel = "kernel";
  47. fdt = "fdt-1";
  48. };
  49. };
  50. };
  51. };
  52. };