[PATCH v6 6/8] dma-mapping: detect and configure IOMMU in of_dma_configure
Will Deacon
will.deacon at arm.com
Mon Dec 15 03:32:52 PST 2014
On Sun, Dec 14, 2014 at 03:51:13PM +0000, Laurent Pinchart wrote:
> On Monday 01 December 2014 16:57:12 Will Deacon wrote:
> > This patch extends of_dma_configure so that it sets up the IOMMU for a
> > device, as well as the coherent/non-coherent DMA mapping ops.
> >
> > Acked-by: Arnd Bergmann <arnd at arndb.de>
> > Acked-by: Marek Szyprowski <m.szyprowski at samsung.com>
> > Tested-by: Robin Murphy <robin.murphy at arm.com>
> > Signed-off-by: Will Deacon <will.deacon at arm.com>
[...]
> > +static void of_dma_deconfigure(struct device *dev)
> > +{
> > + arch_teardown_dma_ops(dev);
> > }
> >
> > /**
> > @@ -223,16 +234,12 @@ static struct platform_device
> > *of_platform_device_create_pdata( if (!dev)
> > goto err_clear_flag;
> >
> > - of_dma_configure(&dev->dev);
> > dev->dev.bus = &platform_bus_type;
> > dev->dev.platform_data = platform_data;
> > -
> > - /* We do not fill the DMA ops for platform devices by default.
> > - * This is currently the responsibility of the platform code
> > - * to do such, possibly using a device notifier
> > - */
> > + of_dma_configure(&dev->dev);
> >
> > if (of_device_add(dev) != 0) {
> > + of_dma_deconfigure(&dev->dev);
>
> Don't you also need to call of_dma_deconfigure() when the device is destroyed
> ? Otherwise the default domain created by arch_setup_dma_ops() will be leaked.
Something like below?
Will
--->8
diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index b89caf8c7586..ec29c25b4fce 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -525,6 +525,7 @@ static int of_platform_device_destroy(struct device *dev, void *data)
amba_device_unregister(to_amba_device(dev));
#endif
+ of_dma_deconfigure(dev);
of_node_clear_flag(dev->of_node, OF_POPULATED);
of_node_clear_flag(dev->of_node, OF_POPULATED_BUS);
return 0;
More information about the linux-arm-kernel
mailing list