|
@@ -728,7 +728,7 @@ static int mmc_select_powerclass(struct mmc_card *card,
|
|
|
*/
|
|
|
static int mmc_select_hs200(struct mmc_card *card)
|
|
|
{
|
|
|
- int idx, err = 0;
|
|
|
+ int idx, err = -EINVAL;
|
|
|
struct mmc_host *host;
|
|
|
static unsigned ext_csd_bits[] = {
|
|
|
EXT_CSD_BUS_WIDTH_4,
|
|
@@ -744,10 +744,12 @@ static int mmc_select_hs200(struct mmc_card *card)
|
|
|
host = card->host;
|
|
|
|
|
|
if (card->ext_csd.card_type & EXT_CSD_CARD_TYPE_SDR_1_2V &&
|
|
|
- host->caps2 & MMC_CAP2_HS200_1_2V_SDR)
|
|
|
- if (mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120, 0))
|
|
|
- err = mmc_set_signal_voltage(host,
|
|
|
- MMC_SIGNAL_VOLTAGE_180, 0);
|
|
|
+ host->caps2 & MMC_CAP2_HS200_1_2V_SDR)
|
|
|
+ err = mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120, 0);
|
|
|
+
|
|
|
+ if (err && card->ext_csd.card_type & EXT_CSD_CARD_TYPE_SDR_1_8V &&
|
|
|
+ host->caps2 & MMC_CAP2_HS200_1_8V_SDR)
|
|
|
+ err = mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180, 0);
|
|
|
|
|
|
/* If fails try again during next card power cycle */
|
|
|
if (err)
|