From: Jan Glauber Date: Thu, 30 Mar 2017 15:31:27 +0000 (+0200) Subject: mmc: cavium: Support DDR mode for eMMC devices X-Git-Tag: v4.12-rc1~128^2~39 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4ce944074e5e2cb7ee48ff36608d65d0bc9c7647;p=karo-tx-linux.git mmc: cavium: Support DDR mode for eMMC devices Add support for switching to DDR mode for eMMC devices. Signed-off-by: Jan Glauber Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/cavium.c b/drivers/mmc/host/cavium.c index eebb387dc8c4..d842b6986189 100644 --- a/drivers/mmc/host/cavium.c +++ b/drivers/mmc/host/cavium.c @@ -864,6 +864,10 @@ static void cvm_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) break; } + /* DDR is available for 4/8 bit bus width */ + if (ios->bus_width && ios->timing == MMC_TIMING_MMC_DDR52) + bus_width |= 4; + /* Change the clock frequency. */ clock = ios->clock; if (clock > 52000000) @@ -1032,8 +1036,14 @@ int cvm_mmc_of_slot_probe(struct device *dev, struct cvm_mmc_host *host) /* Set up host parameters */ mmc->ops = &cvm_mmc_ops; + /* + * We only have a 3.3v supply, we cannot support any + * of the UHS modes. We do support the high speed DDR + * modes up to 52MHz. + */ mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED | - MMC_CAP_ERASE | MMC_CAP_CMD23 | MMC_CAP_POWER_OFF_CARD; + MMC_CAP_ERASE | MMC_CAP_CMD23 | MMC_CAP_POWER_OFF_CARD | + MMC_CAP_3_3V_DDR; if (host->use_sg) mmc->max_segs = 16;