diff options
author | Andrew F. Davis <afd@ti.com> | 2017-09-29 19:44:25 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2017-10-02 22:57:36 +0300 |
commit | 21b6146fbdb137f9cd58b9a0abb1ea4468b18b9a (patch) | |
tree | bfdc7639343bc9c6fd8afa621629c0d8ae2ef577 /arch/arm/boot/dts/am43x-epos-evm.dts | |
parent | ac4550708581c770594054aa6c91196e180f8c46 (diff) | |
download | linux-21b6146fbdb137f9cd58b9a0abb1ea4468b18b9a.tar.xz |
ARM: dts: am43xx-epos-evm: Add sleep pinmux for mmc1
Add sleep pinmux for mmc1.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/am43x-epos-evm.dts')
-rw-r--r-- | arch/arm/boot/dts/am43x-epos-evm.dts | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/arch/arm/boot/dts/am43x-epos-evm.dts b/arch/arm/boot/dts/am43x-epos-evm.dts index 9c4ac6f715ec..4d5487b853c3 100644 --- a/arch/arm/boot/dts/am43x-epos-evm.dts +++ b/arch/arm/boot/dts/am43x-epos-evm.dts @@ -295,12 +295,18 @@ >; }; - mmc1_pins: pinmux_mmc1_pins { + mmc1_pins_default: pinmux_mmc1_pins_default { pinctrl-single,pins = < AM4372_IOPAD(0x960, PIN_INPUT | MUX_MODE7) /* spi0_cs1.gpio0_6 */ >; }; + mmc1_pins_sleep: pinmux_mmc1_pins_sleep { + pinctrl-single,pins = < + AM4372_IOPAD(0x960, DS0_PIN_OUTPUT_PULLUP | PIN_INPUT | MUX_MODE7) + >; + }; + qspi1_pins_default: qspi1_pins_default { pinctrl-single,pins = < AM4372_IOPAD(0x87c, PIN_INPUT_PULLUP | MUX_MODE3) @@ -440,8 +446,9 @@ status = "okay"; vmmc-supply = <&vmmcsd_fixed>; bus-width = <4>; - pinctrl-names = "default"; - pinctrl-0 = <&mmc1_pins>; + pinctrl-names = "default", "sleep"; + pinctrl-0 = <&mmc1_pins_default>; + pinctrl-1 = <&mmc1_pins_sleep>; cd-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>; }; |