1Rockchip SRAM for smp bringup: 2------------------------------ 3 4Rockchip's smp-capable SoCs use the first part of the sram for the bringup 5of the cores. Once the core gets powered up it executes the code that is 6residing at the very beginning of the sram. 7 8Therefore a reserved section sub-node has to be added to the mmio-sram 9declaration. 10 11Required sub-node properties: 12- compatible : should be "rockchip,rk3066-smp-sram" 13 14The rest of the properties should follow the generic mmio-sram discription 15found in ../../misc/sram.txt 16 17Example: 18 19 sram: sram@10080000 { 20 compatible = "mmio-sram"; 21 reg = <0x10080000 0x10000>; 22 #address-cells = <1>; 23 #size-cells = <1>; 24 ranges; 25 26 smp-sram@10080000 { 27 compatible = "rockchip,rk3066-smp-sram"; 28 reg = <0x10080000 0x50>; 29 }; 30 }; 31