mmc: f-sdh30: Add quirks for broken timeout clock capability
authorKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Fri, 11 Nov 2022 08:10:33 +0000 (17:10 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 7 Jan 2023 11:07:33 +0000 (12:07 +0100)
[ Upstream commit aae9d3a440736691b3c1cb09ae2c32c4f1ee2e67 ]

There is a case where the timeout clock is not supplied to the capability.
Add a quirk for that.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Acked-by: Jassi Brar <jaswinder.singh@linaro.org>
Link: https://lore.kernel.org/r/20221111081033.3813-7-hayashi.kunihiko@socionext.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mmc/host/sdhci_f_sdh30.c

index 111b66f5439bc25a33c8ed1d8e925ce39d417bb1..43e787954293aedbf3601bb40fecb04f776f4d58 100644 (file)
@@ -180,6 +180,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;