diff options
author | Joel Stanley <joel@jms.id.au> | 2018-02-19 20:43:28 -0500 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2018-02-20 11:41:30 -0500 |
commit | 14b5057a2f84b9da246e5bda29c9fd914a8f691c (patch) | |
tree | 05b7aef96fb0d59d6fff3e778935f664c17c4e35 | |
parent | 320da785db9b724cc099c79852de477f390b6cab (diff) |
dt-bindings: aspeed-lpc: Add reset controller
This describes the reset controller present in the LPC address space.
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Joel Stanley <joel@jms.id.au>
[p.zabel@pengutronix.de: removed a space before tab in indent]
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r-- | Documentation/devicetree/bindings/mfd/aspeed-lpc.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/mfd/aspeed-lpc.txt b/Documentation/devicetree/bindings/mfd/aspeed-lpc.txt index 514d82ced95b..7136432f9905 100644 --- a/Documentation/devicetree/bindings/mfd/aspeed-lpc.txt +++ b/Documentation/devicetree/bindings/mfd/aspeed-lpc.txt | |||
@@ -135,3 +135,24 @@ lhc: lhc@20 { | |||
135 | compatible = "aspeed,ast2500-lhc"; | 135 | compatible = "aspeed,ast2500-lhc"; |
136 | reg = <0x20 0x24 0x48 0x8>; | 136 | reg = <0x20 0x24 0x48 0x8>; |
137 | }; | 137 | }; |
138 | |||
139 | LPC reset control | ||
140 | ----------------- | ||
141 | |||
142 | The UARTs present in the ASPEED SoC can have their resets tied to the reset | ||
143 | state of the LPC bus. Some systems may chose to modify this configuration. | ||
144 | |||
145 | Required properties: | ||
146 | |||
147 | - compatible: "aspeed,ast2500-lpc-reset" or | ||
148 | "aspeed,ast2400-lpc-reset" | ||
149 | - reg: offset and length of the IP in the LHC memory region | ||
150 | - #reset-controller indicates the number of reset cells expected | ||
151 | |||
152 | Example: | ||
153 | |||
154 | lpc_reset: reset-controller@18 { | ||
155 | compatible = "aspeed,ast2500-lpc-reset"; | ||
156 | reg = <0x18 0x4>; | ||
157 | #reset-cells = <1>; | ||
158 | }; | ||