diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2015-07-30 10:13:39 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-08-05 12:53:19 +0200 |
commit | 9f04ceebe21a8cc8930adbea0fcc538a46e7289a (patch) | |
tree | fa1ac92385624cf68b4df50e4ec106c0d4123485 /arch/arm/boot/dts/dra7-evm.dts | |
parent | ARM: dts: am57xx-beagle-x15: mmc1: remove redundant pbias-supply property (diff) | |
download | linux-9f04ceebe21a8cc8930adbea0fcc538a46e7289a.tar.xz linux-9f04ceebe21a8cc8930adbea0fcc538a46e7289a.zip |
ARM: dts: dra7-evm: Fix spurious card insert/removal interrupt
ldo1_reg in addition to being connected to the io lines is also
connected to the card detect line. On card removal, omap_hsmmc
driver does a regulator_disable causing card detect line to be
pulled down. This raises a card insertion interrupt and once the
MMC core detects there is no card inserted, it does a
regulator disable which again raises a card insertion interrupt.
This happens in a loop causing infinite MMC interrupts.
Fix it by making ldo1_reg as always_on.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/dra7-evm.dts')
-rw-r--r-- | arch/arm/boot/dts/dra7-evm.dts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts index 3ab649b8afe6..1ae935cde2f0 100644 --- a/arch/arm/boot/dts/dra7-evm.dts +++ b/arch/arm/boot/dts/dra7-evm.dts @@ -358,6 +358,7 @@ regulator-name = "ldo1"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <3300000>; + regulator-always-on; regulator-boot-on; }; |