diff options
author | Chen-Yu Tsai <wens@csie.org> | 2014-08-16 23:52:14 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-08-17 03:59:14 -0400 |
commit | eacda1f11fcb8e38cdc9954c1f9cce295315bcab (patch) | |
tree | bc2f8b070c14ab66497ea2bb8d91421f613d74b5 /arch/arm/boot/dts/sun8i-a23.dtsi | |
parent | cdb6fd6798339efd6e1cb768d9d504929342b91b (diff) |
ARM: dts: sun8i: Add mmc controller nodes
Add nodes for the 3 mmc controllers found on A23 SoCs to the sun8i DTSI.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'arch/arm/boot/dts/sun8i-a23.dtsi')
-rw-r--r-- | arch/arm/boot/dts/sun8i-a23.dtsi | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sun8i-a23.dtsi b/arch/arm/boot/dts/sun8i-a23.dtsi index 342b52aab344..284522e1a591 100644 --- a/arch/arm/boot/dts/sun8i-a23.dtsi +++ b/arch/arm/boot/dts/sun8i-a23.dtsi | |||
@@ -211,6 +211,39 @@ | |||
211 | #size-cells = <1>; | 211 | #size-cells = <1>; |
212 | ranges; | 212 | ranges; |
213 | 213 | ||
214 | mmc0: mmc@01c0f000 { | ||
215 | compatible = "allwinner,sun5i-a13-mmc"; | ||
216 | reg = <0x01c0f000 0x1000>; | ||
217 | clocks = <&ahb1_gates 8>, <&mmc0_clk>; | ||
218 | clock-names = "ahb", "mmc"; | ||
219 | resets = <&ahb1_rst 8>; | ||
220 | reset-names = "ahb"; | ||
221 | interrupts = <0 60 4>; | ||
222 | status = "disabled"; | ||
223 | }; | ||
224 | |||
225 | mmc1: mmc@01c10000 { | ||
226 | compatible = "allwinner,sun5i-a13-mmc"; | ||
227 | reg = <0x01c10000 0x1000>; | ||
228 | clocks = <&ahb1_gates 9>, <&mmc1_clk>; | ||
229 | clock-names = "ahb", "mmc"; | ||
230 | resets = <&ahb1_rst 9>; | ||
231 | reset-names = "ahb"; | ||
232 | interrupts = <0 61 4>; | ||
233 | status = "disabled"; | ||
234 | }; | ||
235 | |||
236 | mmc2: mmc@01c11000 { | ||
237 | compatible = "allwinner,sun5i-a13-mmc"; | ||
238 | reg = <0x01c11000 0x1000>; | ||
239 | clocks = <&ahb1_gates 10>, <&mmc2_clk>; | ||
240 | clock-names = "ahb", "mmc"; | ||
241 | resets = <&ahb1_rst 10>; | ||
242 | reset-names = "ahb"; | ||
243 | interrupts = <0 62 4>; | ||
244 | status = "disabled"; | ||
245 | }; | ||
246 | |||
214 | pio: pinctrl@01c20800 { | 247 | pio: pinctrl@01c20800 { |
215 | compatible = "allwinner,sun8i-a23-pinctrl"; | 248 | compatible = "allwinner,sun8i-a23-pinctrl"; |
216 | reg = <0x01c20800 0x400>; | 249 | reg = <0x01c20800 0x400>; |