Commit aae9d3a4 authored by Kunihiko Hayashi's avatar Kunihiko Hayashi Committed by Ulf Hansson

mmc: f-sdh30: Add quirks for broken timeout clock capability

There is a case where the timeout clock is not supplied to the capability.
Add a quirk for that.
Signed-off-by: default avatarKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Acked-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
Link: https://lore.kernel.org/r/20221111081033.3813-7-hayashi.kunihiko@socionext.comSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent e2d2dcc8
......@@ -188,6 +188,9 @@ static int sdhci_f_sdh30_probe(struct platform_device *pdev)
if (reg & SDHCI_CAN_DO_8BIT)
priv->vendor_hs200 = F_SDH30_EMMC_HS200;
if (!(reg & SDHCI_TIMEOUT_CLK_MASK))
host->quirks |= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK;
ret = sdhci_add_host(host);
if (ret)
goto err_add_host;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment