Merge branch 'akpm' (patches from Andrew)
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / sram / milbeaut-smp-sram.txt
1 Milbeaut SRAM for smp bringup
2
3 Milbeaut SoCs use a part of the sram for the bringup of the secondary cores.
4 Once they get powered up in the bootloader, they stay at the specific part
5 of the sram.
6 Therefore the part needs to be added as the sub-node of mmio-sram.
7
8 Required sub-node properties:
9 - compatible : should be "socionext,milbeaut-smp-sram"
10
11 Example:
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         };