mpfs_icicle.its 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
  2. /*
  3. * Flattened Image Tree file for Icicle Kit
  4. *
  5. */
  6. /dts-v1/;
  7. / {
  8. description = "U-Boot fitImage for the MPFS";
  9. address-cells = <1>;
  10. images {
  11. kernel {
  12. description = "Linux kernel";
  13. data = /incbin/("./Image");
  14. type = "kernel";
  15. arch = "riscv";
  16. os = "linux";
  17. compression = "none";
  18. load = <0x80200000>;
  19. entry = <0x80200000>;
  20. hash-1 {
  21. algo = "sha256";
  22. };
  23. };
  24. base_fdt {
  25. description = "Flattened Device Tree blob";
  26. data = /incbin/("./mpfs-icicle-kit.dtb");
  27. type = "flat_dt";
  28. arch = "riscv";
  29. compression = "none";
  30. load = <0x8a000000>;
  31. hash-1 {
  32. algo = "sha256";
  33. };
  34. };
  35. };
  36. configurations {
  37. default = "kernel_dtb";
  38. kernel_dtb {
  39. description = "1 Linux kernel, FDT blob";
  40. kernel = "kernel";
  41. fdt = "base_fdt";
  42. };
  43. base_dtb {
  44. description = "Base FDT blob for MPFS Icicle board";
  45. fdt = "base_fdt";
  46. };
  47. };
  48. };