dmaengine: DW DMAC: enable memory-to-memory transfers support
authorEugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Fri, 25 Nov 2016 14:59:06 +0000 (17:59 +0300)
committerVinod Koul <vinod.koul@intel.com>
Wed, 30 Nov 2016 03:27:17 +0000 (08:57 +0530)
All known devices, which use DT for configuration, support
memory-to-memory transfers. So enable it by default, if we read
configuration from DT.

Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/dw/platform.c

index 5bda0eb..aa7a5c1 100644 (file)
@@ -129,6 +129,12 @@ dw_dma_parse_dt(struct platform_device *pdev)
        if (of_property_read_bool(np, "is_private"))
                pdata->is_private = true;
 
+       /*
+        * All known devices, which use DT for configuration, support
+        * memory-to-memory transfers. So enable it by default.
+        */
+       pdata->is_memcpy = true;
+
        if (!of_property_read_u32(np, "chan_allocation_order", &tmp))
                pdata->chan_allocation_order = (unsigned char)tmp;