|
@@ -25,6 +25,8 @@
|
|
#include <linux/stat.h>
|
|
#include <linux/stat.h>
|
|
|
|
|
|
#include <linux/mmc/host.h>
|
|
#include <linux/mmc/host.h>
|
|
|
|
+
|
|
|
|
+#include <mach/atmel-mci.h>
|
|
#include <linux/atmel-mci.h>
|
|
#include <linux/atmel-mci.h>
|
|
|
|
|
|
#include <asm/io.h>
|
|
#include <asm/io.h>
|
|
@@ -1584,14 +1586,43 @@ static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
|
|
#ifdef CONFIG_MMC_ATMELMCI_DMA
|
|
#ifdef CONFIG_MMC_ATMELMCI_DMA
|
|
static bool filter(struct dma_chan *chan, void *slave)
|
|
static bool filter(struct dma_chan *chan, void *slave)
|
|
{
|
|
{
|
|
- struct dw_dma_slave *dws = slave;
|
|
|
|
|
|
+ struct mci_dma_data *sl = slave;
|
|
|
|
|
|
- if (dws->dma_dev == chan->device->dev) {
|
|
|
|
- chan->private = dws;
|
|
|
|
|
|
+ if (sl && find_slave_dev(sl) == chan->device->dev) {
|
|
|
|
+ chan->private = slave_data_ptr(sl);
|
|
return true;
|
|
return true;
|
|
- } else
|
|
|
|
|
|
+ } else {
|
|
return false;
|
|
return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+static void atmci_configure_dma(struct atmel_mci *host)
|
|
|
|
+{
|
|
|
|
+ struct mci_platform_data *pdata;
|
|
|
|
+
|
|
|
|
+ if (host == NULL)
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ pdata = host->pdev->dev.platform_data;
|
|
|
|
+
|
|
|
|
+ if (pdata && find_slave_dev(pdata->dma_slave)) {
|
|
|
|
+ dma_cap_mask_t mask;
|
|
|
|
+
|
|
|
|
+ setup_dma_addr(pdata->dma_slave,
|
|
|
|
+ host->mapbase + MCI_TDR,
|
|
|
|
+ host->mapbase + MCI_RDR);
|
|
|
|
+
|
|
|
|
+ /* Try to grab a DMA channel */
|
|
|
|
+ dma_cap_zero(mask);
|
|
|
|
+ dma_cap_set(DMA_SLAVE, mask);
|
|
|
|
+ host->dma.chan =
|
|
|
|
+ dma_request_channel(mask, filter, pdata->dma_slave);
|
|
|
|
+ }
|
|
|
|
+ if (!host->dma.chan)
|
|
|
|
+ dev_notice(&host->pdev->dev, "DMA not available, using PIO\n");
|
|
|
|
+}
|
|
|
|
+#else
|
|
|
|
+static void atmci_configure_dma(struct atmel_mci *host) {}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
static int __init atmci_probe(struct platform_device *pdev)
|
|
static int __init atmci_probe(struct platform_device *pdev)
|
|
@@ -1645,22 +1676,7 @@ static int __init atmci_probe(struct platform_device *pdev)
|
|
if (ret)
|
|
if (ret)
|
|
goto err_request_irq;
|
|
goto err_request_irq;
|
|
|
|
|
|
-#ifdef CONFIG_MMC_ATMELMCI_DMA
|
|
|
|
- if (pdata->dma_slave.dma_dev) {
|
|
|
|
- struct dw_dma_slave *dws = &pdata->dma_slave;
|
|
|
|
- dma_cap_mask_t mask;
|
|
|
|
-
|
|
|
|
- dws->tx_reg = regs->start + MCI_TDR;
|
|
|
|
- dws->rx_reg = regs->start + MCI_RDR;
|
|
|
|
-
|
|
|
|
- /* Try to grab a DMA channel */
|
|
|
|
- dma_cap_zero(mask);
|
|
|
|
- dma_cap_set(DMA_SLAVE, mask);
|
|
|
|
- host->dma.chan = dma_request_channel(mask, filter, dws);
|
|
|
|
- }
|
|
|
|
- if (!host->dma.chan)
|
|
|
|
- dev_notice(&pdev->dev, "DMA not available, using PIO\n");
|
|
|
|
-#endif /* CONFIG_MMC_ATMELMCI_DMA */
|
|
|
|
|
|
+ atmci_configure_dma(host);
|
|
|
|
|
|
platform_set_drvdata(pdev, host);
|
|
platform_set_drvdata(pdev, host);
|
|
|
|
|