diff options
author | Daniel Chen <daniel.ch_chen@htc.com> | 2009-12-09 09:45:36 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2012-02-14 11:26:18 -0800 |
commit | d431f5275f8033f633c7474c6d8c748678907f9d (patch) | |
tree | 1dcfa78419c251e1062eff7fdca6f2ce558866ad /drivers | |
parent | 52d8a4d97afcdf1197d885f1b2690ce6b10748eb (diff) |
mmc: sdio: Add high speed support to sdio_reset_comm()
Signed-off-by: San Mehat <san@google.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/core/sdio.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index b400056ea34..25565a5363a 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -1258,7 +1258,28 @@ int sdio_reset_comm(struct mmc_card *card) goto err; } - mmc_set_clock(host, card->cis.max_dtr); + /* + * Switch to high-speed (if supported). + */ + err = sdio_enable_hs(card); + if (err) + goto err; + + /* + * Change to the card's maximum speed. + */ + if (mmc_card_highspeed(card)) { + /* + * The SDIO specification doesn't mention how + * the CIS transfer speed register relates to + * high-speed, but it seems that 50 MHz is + * mandatory. + */ + mmc_set_clock(host, 50000000); + } else { + mmc_set_clock(host, card->cis.max_dtr); + } + err = sdio_enable_wide(card); if (err) goto err; |