Merge branches 'fixes', 'misc' and 'spectre' into for-next
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / sram / sunxi-sram.txt
1 Allwinnner SoC SRAM controllers
2 -----------------------------------------------------
3
4 The SRAM controller found on most Allwinner devices is represented by
5 a regular node for the SRAM controller itself, with sub-nodes
6 reprensenting the SRAM handled by the SRAM controller.
7
8 Controller Node
9 ---------------
10
11 Required properties:
12 - compatible : should be:
13     - "allwinner,sun4i-a10-sram-controller" (deprecated)
14     - "allwinner,sun4i-a10-system-control"
15     - "allwinner,sun5i-a13-system-control"
16     - "allwinner,sun7i-a20-system-control", "allwinner,sun4i-a10-system-control"
17     - "allwinner,sun8i-a23-system-control"
18     - "allwinner,sun8i-h3-system-control"
19     - "allwinner,sun50i-a64-sram-controller" (deprecated)
20     - "allwinner,sun50i-a64-system-control"
21 - reg : sram controller register offset + length
22
23 SRAM nodes
24 ----------
25
26 Each SRAM is described using the mmio-sram bindings documented in
27 Documentation/devicetree/bindings/sram/sram.txt
28
29 Each SRAM will have SRAM sections that are going to be handled by the
30 SRAM controller as subnodes. These sections are represented following
31 once again the representation described in the mmio-sram binding.
32
33 The valid sections compatible for A10 are:
34     - allwinner,sun4i-a10-sram-a3-a4
35     - allwinner,sun4i-a10-sram-c1
36     - allwinner,sun4i-a10-sram-d
37
38 The valid sections compatible for A13 are:
39     - allwinner,sun5i-a13-sram-a3-a4, allwinner,sun4i-a10-sram-a3-a4
40     - allwinner,sun5i-a13-sram-c1, allwinner,sun4i-a10-sram-c1
41     - allwinner,sun5i-a13-sram-d, allwinner,sun4i-a10-sram-d
42
43 The valid sections compatible for A20 are:
44     - allwinner,sun7i-a20-sram-a3-a4, allwinner,sun4i-a10-sram-a3-a4
45     - allwinner,sun7i-a20-sram-c1, allwinner,sun4i-a10-sram-c1
46     - allwinner,sun7i-a20-sram-d, allwinner,sun4i-a10-sram-d
47
48 The valid sections compatible for A23/A33 are:
49     - allwinner,sun8i-a23-sram-c1, allwinner,sun4i-a10-sram-c1
50
51 The valid sections compatible for H3 are:
52     - allwinner,sun8i-h3-sram-c1, allwinner,sun4i-a10-sram-c1
53
54 The valid sections compatible for A64 are:
55     - allwinner,sun50i-a64-sram-c
56
57 Devices using SRAM sections
58 ---------------------------
59
60 Some devices need to request to the SRAM controller to map an SRAM for
61 their exclusive use.
62
63 The relationship between such a device and an SRAM section is
64 expressed through the allwinner,sram property, that will take a
65 phandle and an argument.
66
67 This valid values for this argument are:
68   - 0: CPU
69   - 1: Device
70
71 Example
72 -------
73 system-control@1c00000 {
74         compatible = "allwinner,sun4i-a10-system-control";
75         reg = <0x01c00000 0x30>;
76         #address-cells = <1>;
77         #size-cells = <1>;
78         ranges;
79
80         sram_a: sram@00000000 {
81                 compatible = "mmio-sram";
82                 reg = <0x00000000 0xc000>;
83                 #address-cells = <1>;
84                 #size-cells = <1>;
85                 ranges = <0 0x00000000 0xc000>;
86
87                 emac_sram: sram-section@8000 {
88                         compatible = "allwinner,sun4i-a10-sram-a3-a4";
89                         reg = <0x8000 0x4000>;
90                 };
91         };
92 };
93
94 emac: ethernet@1c0b000 {
95         compatible = "allwinner,sun4i-a10-emac";
96         ...
97
98         allwinner,sram = <&emac_sram 1>;
99 };