facebook-bmc-flash-layout.dtsi 791 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // SPDX-License-Identifier: GPL-2.0+
  2. // Copyright (c) 2018 Facebook Inc.
  3. partitions {
  4. compatible = "fixed-partitions";
  5. #address-cells = <1>;
  6. #size-cells = <1>;
  7. u-boot@0 {
  8. reg = <0x0 0x60000>;
  9. label = "u-boot";
  10. };
  11. u-boot-env@60000 {
  12. reg = <0x60000 0x20000>;
  13. label = "env";
  14. };
  15. fit@80000 {
  16. reg = <0x80000 0x1b80000>;
  17. label = "fit";
  18. };
  19. /*
  20. * "data0" partition is used by several Facebook BMC platforms
  21. * as persistent data store.
  22. */
  23. data0@1c00000 {
  24. reg = <0x1c00000 0x400000>;
  25. label = "data0";
  26. };
  27. /*
  28. * Although the master partition can be created by enabling
  29. * MTD_PARTITIONED_MASTER option, below "flash0" partition is
  30. * explicitly created to avoid breaking legacy applications.
  31. */
  32. flash0@0 {
  33. reg = <0x0 0x2000000>;
  34. label = "flash0";
  35. };
  36. };