1*4882a593Smuzhiyun// SPDX-License-Identifier: GPL-2.0+ 2*4882a593Smuzhiyun 3*4882a593Smuzhiyunpartitions { 4*4882a593Smuzhiyun compatible = "fixed-partitions"; 5*4882a593Smuzhiyun #address-cells = <1>; 6*4882a593Smuzhiyun #size-cells = <1>; 7*4882a593Smuzhiyun 8*4882a593Smuzhiyun u-boot@0 { 9*4882a593Smuzhiyun reg = <0x0 0xe0000>; // 896KB 10*4882a593Smuzhiyun label = "u-boot"; 11*4882a593Smuzhiyun }; 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun u-boot-env@e0000 { 14*4882a593Smuzhiyun reg = <0xe0000 0x20000>; // 128KB 15*4882a593Smuzhiyun label = "u-boot-env"; 16*4882a593Smuzhiyun }; 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun kernel@100000 { 19*4882a593Smuzhiyun reg = <0x100000 0x900000>; // 9MB 20*4882a593Smuzhiyun label = "kernel"; 21*4882a593Smuzhiyun }; 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun rofs@a00000 { 24*4882a593Smuzhiyun reg = <0xa00000 0x5600000>; // 86MB 25*4882a593Smuzhiyun label = "rofs"; 26*4882a593Smuzhiyun }; 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun rwfs@6000000 { 29*4882a593Smuzhiyun reg = <0x6000000 0x2000000>; // 32MB 30*4882a593Smuzhiyun label = "rwfs"; 31*4882a593Smuzhiyun }; 32*4882a593Smuzhiyun}; 33