]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
dmaengine: mpc512x: register for device tree channel lookup
authorAlexander Popov <a13xp0p0v88@gmail.com>
Wed, 25 Jun 2014 10:53:00 +0000 (14:53 +0400)
committerVinod Koul <vinod.koul@intel.com>
Fri, 25 Jul 2014 18:51:42 +0000 (00:21 +0530)
Register the controller for device tree based lookup of DMA channels
(non-fatal for backwards compatibility with older device trees) and
provide the '#dma-cells' property in the shared mpc5121.dtsi file

Signed-off-by: Alexander Popov <a13xp0p0v88@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
arch/powerpc/boot/dts/mpc5121.dtsi
drivers/dma/mpc512x_dma.c

index 2c0e1552d20bb9a410ab6c27762d676e6e7f5b9e..7f9d14f5c4daae8e93f4686849b4357e8fe098d4 100644 (file)
                        compatible = "fsl,mpc5121-dma";
                        reg = <0x14000 0x1800>;
                        interrupts = <65 0x8>;
+                       #dma-cells = <1>;
                };
        };
 
index 2ad43738ac8b71051f496327400fced644d5dbd3..881db2bcb48b89cb1b3896dc42da69c65d517347 100644 (file)
@@ -53,6 +53,7 @@
 #include <linux/of_address.h>
 #include <linux/of_device.h>
 #include <linux/of_irq.h>
+#include <linux/of_dma.h>
 #include <linux/of_platform.h>
 
 #include <linux/random.h>
@@ -1036,7 +1037,15 @@ static int mpc_dma_probe(struct platform_device *op)
        if (retval)
                goto err_free2;
 
-       return retval;
+       /* Register with OF helpers for DMA lookups (nonfatal) */
+       if (dev->of_node) {
+               retval = of_dma_controller_register(dev->of_node,
+                                               of_dma_xlate_by_chan_id, mdma);
+               if (retval)
+                       dev_warn(dev, "Could not register for OF lookup\n");
+       }
+
+       return 0;
 
 err_free2:
        if (mdma->is_mpc8308)
@@ -1057,6 +1066,8 @@ static int mpc_dma_remove(struct platform_device *op)
        struct device *dev = &op->dev;
        struct mpc_dma *mdma = dev_get_drvdata(dev);
 
+       if (dev->of_node)
+               of_dma_controller_free(dev->of_node);
        dma_async_device_unregister(&mdma->dma);
        if (mdma->is_mpc8308) {
                free_irq(mdma->irq2, mdma);