diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2016-12-12 22:51:26 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2017-02-13 15:19:52 +0300 |
commit | b1c95170f97ef19ff63a6da1eb2c70899186aecc (patch) | |
tree | 3d36c2449f117a1ff4ae0f82db2bc208d262e37e | |
parent | 03c5b0d90300fc725fc1fb644872b522483a2d7e (diff) | |
download | linux-b1c95170f97ef19ff63a6da1eb2c70899186aecc.tar.xz |
mmc: sh_mobile_sdhi: enable HS200
Setup tuning when the board is HS200 enabled.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r-- | drivers/mmc/host/sh_mobile_sdhi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mmc/host/sh_mobile_sdhi.c b/drivers/mmc/host/sh_mobile_sdhi.c index 72c2dbc74c9f..59db14b4827c 100644 --- a/drivers/mmc/host/sh_mobile_sdhi.c +++ b/drivers/mmc/host/sh_mobile_sdhi.c @@ -651,7 +651,9 @@ static int sh_mobile_sdhi_probe(struct platform_device *pdev) goto efree; /* Enable tuning iff we have an SCC and a supported mode */ - if (of_data && of_data->scc_offset && host->mmc->caps & MMC_CAP_UHS_SDR104) { + if (of_data && of_data->scc_offset && + (host->mmc->caps & MMC_CAP_UHS_SDR104 || + host->mmc->caps2 & MMC_CAP2_HS200_1_8V_SDR)) { const struct sh_mobile_sdhi_scc *taps = of_data->taps; bool hit = false; |