aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/dw_dmac.c
diff options
context:
space:
mode:
authorJamie Iles <jamie@jamieiles.com>2011-01-21 09:11:54 -0500
committerDan Williams <dan.j.williams@intel.com>2011-01-30 02:10:55 -0500
commit95ea759e9e116dade3e7386be2a3db76c90f4675 (patch)
treea69b3fbb02f1d8305357524e67159e69e6ffa002 /drivers/dma/dw_dmac.c
parentf301c062dcdd113bc977ae1ebc8c12232f8531a9 (diff)
dmaengine/dw_dmac: provide a mechanism to indicate private devices
Some platforms (e.g. Picochip PC3XX) have multiple DMA controllers where some may be used for slave transfers and others for general purpose memcpy type transfers. Add a .is_private boolean to the platform data structure so that controllers can be marked as private so that the DMA_PRIVATE capability will be set for that controller. Signed-off-by: Jamie Iles <jamie.iles@picochip.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/dw_dmac.c')
-rw-r--r--drivers/dma/dw_dmac.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c
index a4cf2614085a..08dab3badad2 100644
--- a/drivers/dma/dw_dmac.c
+++ b/drivers/dma/dw_dmac.c
@@ -1341,6 +1341,8 @@ static int __init dw_probe(struct platform_device *pdev)
1341 1341
1342 dma_cap_set(DMA_MEMCPY, dw->dma.cap_mask); 1342 dma_cap_set(DMA_MEMCPY, dw->dma.cap_mask);
1343 dma_cap_set(DMA_SLAVE, dw->dma.cap_mask); 1343 dma_cap_set(DMA_SLAVE, dw->dma.cap_mask);
1344 if (pdata->is_private)
1345 dma_cap_set(DMA_PRIVATE, dw->dma.cap_mask);
1344 dw->dma.dev = &pdev->dev; 1346 dw->dma.dev = &pdev->dev;
1345 dw->dma.device_alloc_chan_resources = dwc_alloc_chan_resources; 1347 dw->dma.device_alloc_chan_resources = dwc_alloc_chan_resources;
1346 dw->dma.device_free_chan_resources = dwc_free_chan_resources; 1348 dw->dma.device_free_chan_resources = dwc_free_chan_resources;