All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] of/pci/dma: fix DMA configuration for PCI masters
@ 2017-05-03  4:46 ` Oza Pawandeep via iommu
  0 siblings, 0 replies; 61+ messages in thread
From: Oza Pawandeep @ 2017-05-03  4:46 UTC (permalink / raw)
  To: Joerg Roedel, Robin Murphy
  Cc: iommu, linux-pci, linux-kernel, linux-arm-kernel, devicetree,
	bcm-kernel-feedback-list, Oza Pawandeep, Oza Pawandeep

current device framework and of framework integration assumes
dma-ranges in a way where memory-mapped devices define their
dma-ranges. (child-bus-address, parent-bus-address, length).

of_dma_configure is specifically written to take care of memory
mapped devices. but no implementation exists for pci to take
care of pcie based memory ranges.

for e.g. iproc based SOCs and other SOCs(suc as rcar) have PCI
world dma-ranges.
dma-ranges = <0x43000000 0x00 0x00 0x00 0x00 0x80 0x00>;

this patch serves following:

1) exposes interface to the pci host driver for their
inbound memory ranges

2) provide an interface to callers such as of_dma_get_ranges.
so then the returned size get best possible (largest) dma_mask.
because PCI RC drivers do not call APIs such as
dma_set_coherent_mask() and hence rather it shows its addressing
capabilities based on dma-ranges.
for e.g.
dma-ranges = <0x43000000 0x00 0x00 0x00 0x00 0x80 0x00>;
we should get dev->coherent_dma_mask=0x7fffffffff.

3) this patch handles multiple inbound windows and dma-ranges.
it is left to the caller, how it wants to use them.
the new function returns the resources in a standard and unform way

4) this way the callers of for e.g. of_dma_get_ranges
does not need to change.

5) leaves scope of adding PCI flag handling for inbound memory
by the new function.

Bug: SOC-5216
Change-Id: Ie045386df91e1e0587846bb147ae40d96f6d7d2e
Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com>
Reviewed-on: http://gerrit-ccxsw.broadcom.net/40428
Reviewed-by: vpx_checkpatch status <vpx_checkpatch@broadcom.com>
Reviewed-by: CCXSW <ccxswbuild@broadcom.com>
Reviewed-by: Ray Jui <ray.jui@broadcom.com>
Tested-by: vpx_autobuild status <vpx_autobuild@broadcom.com>
Tested-by: vpx_smoketest status <vpx_smoketest@broadcom.com>
Tested-by: CCXSW <ccxswbuild@broadcom.com>
Reviewed-by: Scott Branden <scott.branden@broadcom.com>

diff --git a/drivers/of/of_pci.c b/drivers/of/of_pci.c
index 0ee42c3..ed6e69a 100644
--- a/drivers/of/of_pci.c
+++ b/drivers/of/of_pci.c
@@ -283,6 +283,83 @@ int of_pci_get_host_bridge_resources(struct device_node *dev,
 	return err;
 }
 EXPORT_SYMBOL_GPL(of_pci_get_host_bridge_resources);
+
+/**
+ * of_pci_get_dma_ranges - Parse PCI host bridge inbound resources from DT
+ * @np: device node of the host bridge having the dma-ranges property
+ * @resources: list where the range of resources will be added after DT parsing
+ *
+ * It is the caller's job to free the @resources list.
+ *
+ * This function will parse the "dma-ranges" property of a
+ * PCI host bridge device node and setup the resource mapping based
+ * on its content.
+ *
+ * It returns zero if the range parsing has been successful or a standard error
+ * value if it failed.
+ */
+
+int of_pci_get_dma_ranges(struct device_node *np, struct list_head *resources)
+{
+	struct device_node *node = of_node_get(np);
+	int rlen;
+	int ret = 0;
+	const int na = 3, ns = 2;
+	struct resource *res;
+	struct of_pci_range_parser parser;
+	struct of_pci_range range;
+
+	if (!node)
+		return -EINVAL;
+
+	parser.node = node;
+	parser.pna = of_n_addr_cells(node);
+	parser.np = parser.pna + na + ns;
+
+	parser.range = of_get_property(node, "dma-ranges", &rlen);
+
+	if (!parser.range) {
+		pr_debug("pcie device has no dma-ranges defined for node(%s)\n",
+			  np->full_name);
+		ret = -EINVAL;
+		goto out;
+	}
+
+	parser.end = parser.range + rlen / sizeof(__be32);
+
+	for_each_of_pci_range(&parser, &range) {
+		/*
+		 * If we failed translation or got a zero-sized region
+		 * then skip this range
+		 */
+		if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
+			continue;
+
+		res = kzalloc(sizeof(struct resource), GFP_KERNEL);
+		if (!res) {
+			ret = -ENOMEM;
+			goto parse_failed;
+		}
+
+		ret = of_pci_range_to_resource(&range, np, res);
+		if (ret) {
+			kfree(res);
+			continue;
+		}
+
+		pci_add_resource_offset(resources, res,
+					res->start - range.pci_addr);
+	}
+
+	return ret;
+
+parse_failed:
+	pci_free_resource_list(resources);
+out:
+	of_node_put(node);
+	return ret;
+}
+EXPORT_SYMBOL_GPL(of_pci_get_dma_ranges);
 #endif /* CONFIG_OF_ADDRESS */
 
 #ifdef CONFIG_PCI_MSI
diff --git a/include/linux/of_pci.h b/include/linux/of_pci.h
index 0e0974e..617b90d 100644
--- a/include/linux/of_pci.h
+++ b/include/linux/of_pci.h
@@ -76,6 +76,7 @@ static inline void of_pci_check_probe_only(void) { }
 int of_pci_get_host_bridge_resources(struct device_node *dev,
 			unsigned char busno, unsigned char bus_max,
 			struct list_head *resources, resource_size_t *io_base);
+int of_pci_get_dma_ranges(struct device_node *np, struct list_head *resources);
 #else
 static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
 			unsigned char busno, unsigned char bus_max,
@@ -83,6 +84,12 @@ static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
 {
 	return -EINVAL;
 }
+
+static inline int of_pci_get_dma_ranges(struct device_node *np,
+					struct list_head *resources)
+{
+	return -EINVAL;
+}
 #endif
 
 #if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI)
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 61+ messages in thread

end of thread, other threads:[~2017-05-22 16:45 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-03  4:46 [PATCH 1/3] of/pci/dma: fix DMA configuration for PCI masters Oza Pawandeep
2017-05-03  4:46 ` Oza Pawandeep
2017-05-03  4:46 ` Oza Pawandeep via iommu
2017-05-03  4:46 ` [PATCH 2/3] iommu/pci: reserve iova " Oza Pawandeep
2017-05-03  4:46   ` Oza Pawandeep
2017-05-03  4:46   ` Oza Pawandeep via iommu
2017-05-03  5:07   ` Oza Oza
2017-05-03  5:07     ` Oza Oza
2017-05-03  5:07     ` Oza Oza via iommu
2017-05-04 18:20   ` Robin Murphy
2017-05-04 18:20     ` Robin Murphy
2017-05-04 18:20     ` Robin Murphy
2017-05-04 18:52     ` Oza Oza
2017-05-04 18:52       ` Oza Oza
2017-05-04 18:52       ` Oza Oza via iommu
2017-05-05 15:51       ` Robin Murphy
2017-05-05 15:51         ` Robin Murphy
2017-05-05 15:51         ` Robin Murphy
2017-05-05 15:51         ` Robin Murphy
2017-05-06  6:01         ` Oza Oza
2017-05-06  6:01           ` Oza Oza
2017-05-22 16:45         ` Oza Oza
2017-05-22 16:45           ` Oza Oza
2017-05-05  8:10     ` Oza Oza
2017-05-05  8:10       ` Oza Oza
2017-05-05  8:10       ` Oza Oza via iommu
2017-05-03  4:46 ` [PATCH 3/3] PCI/of fix of_dma_get_range; get PCI specific dma-ranges Oza Pawandeep
2017-05-03  4:46   ` Oza Pawandeep
2017-05-03  4:46   ` Oza Pawandeep via iommu
2017-05-03  5:07   ` Oza Oza
2017-05-03  5:07     ` Oza Oza
2017-05-03  5:07     ` Oza Oza via iommu
2017-05-03 20:06   ` Rob Herring
2017-05-03 20:06     ` Rob Herring
2017-05-03 20:06     ` Rob Herring
2017-05-03 20:06     ` Rob Herring
2017-05-03  5:06 ` [PATCH 1/3] of/pci/dma: fix DMA configuration for PCI masters Oza Oza
2017-05-03  5:06   ` Oza Oza
2017-05-03  5:06   ` Oza Oza via iommu
2017-05-03 19:55 ` Rob Herring
2017-05-03 19:55   ` Rob Herring
2017-05-03 19:55   ` Rob Herring
2017-05-03 19:55   ` Rob Herring
2017-05-04 18:02 ` Robin Murphy
2017-05-04 18:02   ` Robin Murphy
2017-05-04 18:02   ` Robin Murphy
2017-05-04 18:41   ` Oza Oza
2017-05-04 18:41     ` Oza Oza
2017-05-04 18:41     ` Oza Oza
2017-05-05 15:25     ` Robin Murphy
2017-05-05 15:25       ` Robin Murphy
2017-05-05 15:25       ` Robin Murphy
2017-05-05 15:25       ` Robin Murphy
2017-05-06  5:30       ` Oza Oza
2017-05-06  5:30         ` Oza Oza
2017-05-06  5:30         ` Oza Oza via iommu
2017-05-16  5:24         ` Oza Oza
2017-05-16  5:24           ` Oza Oza
2017-05-04 19:12   ` Oza Oza
2017-05-04 19:12     ` Oza Oza
2017-05-04 19:12     ` Oza Oza via iommu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.