Message ID | 45293FA4-D66D-4817-AA18-6BD50264F87A@marvell.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, On Mon, Feb 14 2011, Philip Rakity wrote: > 32 Bit DMA/ADMA Access > 32 Bit Size > Support ADMA End Descriptor in current chain > (no need for dummy entry) > > Signed-off-by: Philip Rakity <prakity@marvell.com> > --- > drivers/mmc/host/sdhci-pxa.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/drivers/mmc/host/sdhci-pxa.c b/drivers/mmc/host/sdhci-pxa.c > index c8abf0f..215517f 100644 > --- a/drivers/mmc/host/sdhci-pxa.c > +++ b/drivers/mmc/host/sdhci-pxa.c > @@ -120,6 +120,9 @@ static int __devinit sdhci_pxa_probe(struct platform_device *pdev) > host->ops = &sdhci_pxa_ops; > host->irq = irq; > host->quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL; > + host->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_32BIT_DMA_SIZE > + | SDHCI_QUIRK_32BIT_ADMA_SIZE > + | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC; > > if (pdata->quirks) > host->quirks |= pdata->quirks; Tested-by: Chris Ball <cjb@laptop.org> (on MMP2/XO-1.75) .. and pushed to mmc-next for .40, thanks. - Chris.
diff --git a/drivers/mmc/host/sdhci-pxa.c b/drivers/mmc/host/sdhci-pxa.c index c8abf0f..215517f 100644 --- a/drivers/mmc/host/sdhci-pxa.c +++ b/drivers/mmc/host/sdhci-pxa.c @@ -120,6 +120,9 @@ static int __devinit sdhci_pxa_probe(struct platform_device *pdev) host->ops = &sdhci_pxa_ops; host->irq = irq; host->quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL; + host->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_32BIT_DMA_SIZE + | SDHCI_QUIRK_32BIT_ADMA_SIZE + | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC; if (pdata->quirks) host->quirks |= pdata->quirks;