openbmc-flash-layout-64.dtsi 557 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2020 Bytedance.
  4. */
  5. partitions {
  6. compatible = "fixed-partitions";
  7. #address-cells = <1>;
  8. #size-cells = <1>;
  9. u-boot@0 {
  10. reg = <0x0 0xe0000>; // 896KB
  11. label = "u-boot";
  12. };
  13. u-boot-env@e0000 {
  14. reg = <0xe0000 0x20000>; // 128KB
  15. label = "u-boot-env";
  16. };
  17. kernel@100000 {
  18. reg = <0x100000 0x900000>; // 9MB
  19. label = "kernel";
  20. };
  21. rofs@a00000 {
  22. reg = <0xa00000 0x2000000>; // 32MB
  23. label = "rofs";
  24. };
  25. rwfs@2a00000 {
  26. reg = <0x2a00000 0x1600000>; // 22MB
  27. label = "rwfs";
  28. };
  29. };