diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-10-07 00:26:58 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-12-10 03:26:50 -0500 |
commit | 02b4a748c7ef37c2852478e67251a86e36d87152 (patch) | |
tree | a9ffb0c4b6639d0044e6df71758bb1a0b0fe4f07 /arch | |
parent | 4a46beadec749d690acecc92811259cd7e85c6c4 (diff) |
ARM: shmobile: lager: add MMCIF support on DTS
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/r8a7790-lager-reference.dts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/r8a7790-lager-reference.dts b/arch/arm/boot/dts/r8a7790-lager-reference.dts index 0a3f0c60d302..75730f5d1477 100644 --- a/arch/arm/boot/dts/r8a7790-lager-reference.dts +++ b/arch/arm/boot/dts/r8a7790-lager-reference.dts | |||
@@ -42,6 +42,15 @@ | |||
42 | gpios = <&gpio5 17 GPIO_ACTIVE_HIGH>; | 42 | gpios = <&gpio5 17 GPIO_ACTIVE_HIGH>; |
43 | }; | 43 | }; |
44 | }; | 44 | }; |
45 | |||
46 | fixedregulator3v3: fixedregulator@0 { | ||
47 | compatible = "regulator-fixed"; | ||
48 | regulator-name = "fixed-3.3V"; | ||
49 | regulator-min-microvolt = <3300000>; | ||
50 | regulator-max-microvolt = <3300000>; | ||
51 | regulator-boot-on; | ||
52 | regulator-always-on; | ||
53 | }; | ||
45 | }; | 54 | }; |
46 | 55 | ||
47 | &pfc { | 56 | &pfc { |
@@ -57,4 +66,19 @@ | |||
57 | renesas,groups = "scif1_data"; | 66 | renesas,groups = "scif1_data"; |
58 | renesas,function = "scif1"; | 67 | renesas,function = "scif1"; |
59 | }; | 68 | }; |
69 | |||
70 | mmc1_pins: mmc1 { | ||
71 | renesas,groups = "mmc1_data8", "mmc1_ctrl"; | ||
72 | renesas,function = "mmc1"; | ||
73 | }; | ||
74 | }; | ||
75 | |||
76 | &mmcif1 { | ||
77 | pinctrl-0 = <&mmc1_pins>; | ||
78 | pinctrl-names = "default"; | ||
79 | |||
80 | vmmc-supply = <&fixedregulator3v3>; | ||
81 | bus-width = <8>; | ||
82 | non-removable; | ||
83 | status = "okay"; | ||
60 | }; | 84 | }; |