aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ténart <antoine.tenart@free-electrons.com>2014-09-03 03:48:21 -0400
committerSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>2014-10-29 14:44:38 -0400
commitcdaea91019056fad4f21a697038a84606a6187cc (patch)
tree456bbbf829ab0dea1edc3303534941e49b7fd67b
parente00ec0bd23ef0eea0c8f8e1b75936a9537ec1c33 (diff)
Documentation: bindings: add reset bindings docs for Marvell Berlin SoCs
Add the reset binding documentation to the SoC binding documentation as the reset driver in Marvell Berlin SoC is part of the chip/system control registers. This patch adds the required properties to configure the reset controller. Signed-off-by: Antoine Ténart <antoine.tenart@free-electrons.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
-rw-r--r--Documentation/devicetree/bindings/arm/marvell,berlin.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/marvell,berlin.txt b/Documentation/devicetree/bindings/arm/marvell,berlin.txt
index 904de5781f44..a99eb9eb14c0 100644
--- a/Documentation/devicetree/bindings/arm/marvell,berlin.txt
+++ b/Documentation/devicetree/bindings/arm/marvell,berlin.txt
@@ -106,11 +106,21 @@ Required subnode-properties:
106- groups: a list of strings describing the group names. 106- groups: a list of strings describing the group names.
107- function: a string describing the function used to mux the groups. 107- function: a string describing the function used to mux the groups.
108 108
109* Reset controller binding
110
111A reset controller is part of the chip control registers set. The chip control
112node also provides the reset. The register set is not at the same offset between
113Berlin SoCs.
114
115Required property:
116- #reset-cells: must be set to 2
117
109Example: 118Example:
110 119
111chip: chip-control@ea0000 { 120chip: chip-control@ea0000 {
112 compatible = "marvell,berlin2-chip-ctrl"; 121 compatible = "marvell,berlin2-chip-ctrl";
113 #clock-cells = <1>; 122 #clock-cells = <1>;
123 #reset-cells = <2>;
114 reg = <0xea0000 0x400>; 124 reg = <0xea0000 0x400>;
115 clocks = <&refclk>, <&externaldev 0>; 125 clocks = <&refclk>, <&externaldev 0>;
116 clock-names = "refclk", "video_ext0"; 126 clock-names = "refclk", "video_ext0";