Skip to content

Commit 1d0bf7b

Browse files
sugayataichi-sniarndb
authored andcommitted
dt-bindings: sram: milbeaut: Add binding for Milbeaut smp-sram
The Milbeaut M10V SoC needs a part of sram for smp, so this adds the M10V sram compatible and binding. Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
1 parent 49a5785 commit 1d0bf7b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
};

0 commit comments

Comments
 (0)