1Milbeaut SRAM for smp bringup
2
3Milbeaut SoCs use a part of the sram for the bringup of the secondary cores.
4Once they get powered up in the bootloader, they stay at the specific part
5of the sram.
6Therefore the part needs to be added as the sub-node of mmio-sram.
7
8Required sub-node properties:
9- compatible : should be "socionext,milbeaut-smp-sram"
10
11Example:
12
13        sram: sram@0 {
14                compatible = "mmio-sram";
15                reg = <0x0 0x10000>;
16                #address-cells = <1>;
17                #size-cells = <1>;
18                ranges = <0 0x0 0x10000>;
19
20                smp-sram@f100 {
21                        compatible = "socionext,milbeaut-smp-sram";
22                        reg = <0xf100 0x20>;
23                };
24        };
25