]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
mmc: sdhci: When a UHS switch fails, cycle power if regulator is used
authorPhilip Rakity <prakity@marvell.com>
Wed, 27 Jun 2012 16:15:00 +0000 (09:15 -0700)
committerChris Ball <cjb@laptop.org>
Sun, 22 Jul 2012 19:25:51 +0000 (15:25 -0400)
Power needs to be removed from the card when switching to 1.8v fails.

If a regulator is used to control vmmc we need to turn the
regulator off and then back on otherwise power will not be
removed from the card.

Signed-off-by: Philip Rakity <prakity@marvell.com>
Reviewed-by: Aaron Lu <aaron.lu@amd.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/sdhci.c

index bc1de70360c8b415e66142dfe4ab647302ebe4e2..d9966568143b5b8db1488751fd11b1b8711d9bf9 100644 (file)
@@ -1682,11 +1682,15 @@ static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
                pwr = sdhci_readb(host, SDHCI_POWER_CONTROL);
                pwr &= ~SDHCI_POWER_ON;
                sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
+               if (host->vmmc)
+                       regulator_disable(host->vmmc);
 
                /* Wait for 1ms as per the spec */
                usleep_range(1000, 1500);
                pwr |= SDHCI_POWER_ON;
                sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
+               if (host->vmmc)
+                       regulator_enable(host->vmmc);
 
                pr_info(DRIVER_NAME ": Switching to 1.8V signalling "
                        "voltage failed, retrying with S18R set to 0\n");