mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-20 13:24:00 +00:00
mmc: sdhci-of-esdhc: add/remove some quirks according to vendor version
A previous patch had removed esdhc_of_platform_init() by mistake.
static void esdhc_of_platform_init(struct sdhci_host *host)
{
u32 vvn;
vvn = in_be32(host->ioaddr + SDHCI_SLOT_INT_STATUS);
vvn = (vvn & SDHCI_VENDOR_VER_MASK) >> SDHCI_VENDOR_VER_SHIFT;
if (vvn == VENDOR_V_22)
host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23;
if (vvn > VENDOR_V_22)
host->quirks &= ~SDHCI_QUIRK_NO_BUSY_IRQ;
}
This patch is used to fix it by add/remove some quirks according to
verdor version in probe.
Signed-off-by: Yangbo Lu <yangbo.lu@freescale.com>
Fixes: f4932cfd22
("mmc: sdhci-of-esdhc: support both BE and LE host controller")
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
447dc0d20a
commit
1ef5e49e46
1 changed files with 10 additions and 0 deletions
|
@ -584,6 +584,8 @@ static int sdhci_esdhc_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct sdhci_host *host;
|
struct sdhci_host *host;
|
||||||
struct device_node *np;
|
struct device_node *np;
|
||||||
|
struct sdhci_pltfm_host *pltfm_host;
|
||||||
|
struct sdhci_esdhc *esdhc;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
np = pdev->dev.of_node;
|
np = pdev->dev.of_node;
|
||||||
|
@ -600,6 +602,14 @@ static int sdhci_esdhc_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
sdhci_get_of_property(pdev);
|
sdhci_get_of_property(pdev);
|
||||||
|
|
||||||
|
pltfm_host = sdhci_priv(host);
|
||||||
|
esdhc = pltfm_host->priv;
|
||||||
|
if (esdhc->vendor_ver == VENDOR_V_22)
|
||||||
|
host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23;
|
||||||
|
|
||||||
|
if (esdhc->vendor_ver > VENDOR_V_22)
|
||||||
|
host->quirks &= ~SDHCI_QUIRK_NO_BUSY_IRQ;
|
||||||
|
|
||||||
if (of_device_is_compatible(np, "fsl,p5040-esdhc") ||
|
if (of_device_is_compatible(np, "fsl,p5040-esdhc") ||
|
||||||
of_device_is_compatible(np, "fsl,p5020-esdhc") ||
|
of_device_is_compatible(np, "fsl,p5020-esdhc") ||
|
||||||
of_device_is_compatible(np, "fsl,p4080-esdhc") ||
|
of_device_is_compatible(np, "fsl,p4080-esdhc") ||
|
||||||
|
|
Loading…
Add table
Reference in a new issue