drivers: flag buses which demand DMA configuration
authorRobin Murphy <robin.murphy@arm.com>
Thu, 12 Oct 2017 15:56:14 +0000 (16:56 +0100)
committerChristoph Hellwig <hch@lst.de>
Thu, 19 Oct 2017 14:34:52 +0000 (16:34 +0200)
We do not want the common dma_configure() pathway to apply
indiscriminately to all devices, since there are plenty of buses which
do not have DMA capability, and if their child devices were used for
DMA API calls it would only be indicative of a driver bug. However,
there are a number of buses for which DMA is implicitly expected even
when not described by firmware - those we whitelist with an automatic
opt-in to dma_configure(), assuming that the DMA address space and the
physical address space are equivalent if not otherwise specified.

Commit 723288836628 ("of: restrict DMA configuration") introduced a
short-term fix by comparing explicit bus types, but this approach is far
from pretty, doesn't scale well, and fails to cope at all with bus
drivers which may be built as modules, like host1x. Let's refine things
by making that opt-in a property of the bus type, which neatly addresses
those problems and lets the decision of whether firmware description of
DMA capability should be optional or mandatory stay internal to the bus
drivers themselves.

Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/amba/bus.c
drivers/base/platform.c
drivers/gpu/host1x/bus.c
drivers/of/device.c
drivers/pci/pci-driver.c
include/linux/device.h

index e0f74ddc22b73caf6b652092dd6a623739e58b5e..594c228d2f02112345ebc2ad345cd02a7e563a52 100644 (file)
@@ -195,6 +195,7 @@ struct bus_type amba_bustype = {
        .match          = amba_match,
        .uevent         = amba_uevent,
        .pm             = &amba_pm,
+       .force_dma      = true,
 };
 
 static int __init amba_init(void)
index 9045c5f3734e8df88d19ec58106e01efbe8f5a31..c203fb90c1a01d4cbac98bb24211f0decd4cb5c3 100644 (file)
@@ -1143,6 +1143,7 @@ struct bus_type platform_bus_type = {
        .match          = platform_match,
        .uevent         = platform_uevent,
        .pm             = &platform_dev_pm_ops,
+       .force_dma      = true,
 };
 EXPORT_SYMBOL_GPL(platform_bus_type);
 
index f9cde03030fd9042bea5a4528854b786cdd0451a..ed03b3243195bbacea19c283fba166018acae049 100644 (file)
@@ -320,6 +320,7 @@ struct bus_type host1x_bus_type = {
        .name = "host1x",
        .match = host1x_device_match,
        .pm = &host1x_device_pm_ops,
+       .force_dma = true,
 };
 
 static void __host1x_device_del(struct host1x_device *device)
index 64b710265d3907a404dcc92bd720b145f48b67da..25bddf9c9fe1c6af37c1dcaa21ca6d1d1f52d701 100644 (file)
@@ -9,9 +9,7 @@
 #include <linux/module.h>
 #include <linux/mod_devicetable.h>
 #include <linux/slab.h>
-#include <linux/pci.h>
 #include <linux/platform_device.h>
-#include <linux/amba/bus.h>
 
 #include <asm/errno.h>
 #include "of_private.h"
@@ -101,11 +99,7 @@ int of_dma_configure(struct device *dev, struct device_node *np)
                 * DMA configuration regardless of whether "dma-ranges" is
                 * correctly specified or not.
                 */
-               if (!dev_is_pci(dev) &&
-#ifdef CONFIG_ARM_AMBA
-                   dev->bus != &amba_bustype &&
-#endif
-                   dev->bus != &platform_bus_type)
+               if (!dev->bus->force_dma)
                        return ret == -ENODEV ? 0 : ret;
 
                dma_addr = offset = 0;
index 11bd267fc1371acc303795876a6fba0b7725767a..38bdb97b6dc642562f7af1887609822c6896551f 100644 (file)
@@ -1466,6 +1466,7 @@ struct bus_type pci_bus_type = {
        .drv_groups     = pci_drv_groups,
        .pm             = PCI_PM_OPS_PTR,
        .num_vf         = pci_bus_num_vf,
+       .force_dma      = true,
 };
 EXPORT_SYMBOL(pci_bus_type);
 
index 66fe271c2544d5cf861e1e5c58e23a0793ba1ed6..d60f7701e245f9db9148a07a48fbace6756147bc 100644 (file)
@@ -97,6 +97,8 @@ extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
  * @p:         The private data of the driver core, only the driver core can
  *             touch this.
  * @lock_key:  Lock class key for use by the lock validator
+ * @force_dma: Assume devices on this bus should be set up by dma_configure()
+ *             even if DMA capability is not explicitly described by firmware.
  *
  * A bus is a channel between the processor and one or more devices. For the
  * purposes of the device model, all devices are connected via a bus, even if
@@ -135,6 +137,8 @@ struct bus_type {
 
        struct subsys_private *p;
        struct lock_class_key lock_key;
+
+       bool force_dma;
 };
 
 extern int __must_check bus_register(struct bus_type *bus);