blob: dcdde5a7f0a9a7e93dea6e6120cf989efbcff9d3 [file] [log] [blame]
developer31003ad2021-09-28 21:14:06 +08001&spi0 {
2 spi_nor@0 {
3 partitions {
4 compatible = "fixed-partitions";
5 #address-cells = <1>;
6 #size-cells = <1>;
7
8 partition@00000 {
9 label = "BL2";
10 reg = <0x00000 0x0040000>;
11 };
12 partition@40000 {
13 label = "u-boot-env";
14 reg = <0x40000 0x0010000>;
15 };
16 factory: partition@50000 {
17 label = "Factory";
18 reg = <0x50000 0x00B0000>;
19 };
20 partition@100000 {
21 label = "FIP";
22 reg = <0x100000 0x0080000>;
23 };
24 partition@180000 {
25 label = "firmware";
26 reg = <0x180000 0xE00000>;
27 };
28 };
29 };
30};