diff options
| author | Bjorn Helgaas <bhelgaas@google.com> | 2019-05-13 18:34:45 -0500 |
|---|---|---|
| committer | Bjorn Helgaas <bhelgaas@google.com> | 2019-05-13 18:34:45 -0500 |
| commit | f2e94683162565ff02d8d7386fadee175ab55e40 (patch) | |
| tree | fb9752bf2288737623456872d93791b40c30582f /drivers/pci/probe.c | |
| parent | ee6df38da8485b143cc5eccee569ae3e238be10a (diff) | |
| parent | 90199c951bd2a6248e55a8db3368a2568e3b3edc (diff) | |
| download | linux-f2e94683162565ff02d8d7386fadee175ab55e40.tar.gz linux-f2e94683162565ff02d8d7386fadee175ab55e40.tar.bz2 linux-f2e94683162565ff02d8d7386fadee175ab55e40.zip | |
Merge branch 'pci/iova-dma-ranges'
- Add list of legal DMA address ranges to PCI host bridge (Srinath
Mannam)
- Reserve inaccessible DMA ranges so IOMMU doesn't allocate them (Srinath
Mannam)
- Parse iProc DT dma-ranges to learn what PCI devices can reach via DMA
(Srinath Mannam)
* pci/iova-dma-ranges:
PCI: iproc: Add sorted dma ranges resource entries to host bridge
iommu/dma: Reserve IOVA for PCIe inaccessible DMA address
PCI: Add dma_ranges window list
# Conflicts:
# drivers/pci/probe.c
Diffstat (limited to 'drivers/pci/probe.c')
| -rw-r--r-- | drivers/pci/probe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 50cd9c17c08f..0dc42f0eb66d 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -589,6 +589,7 @@ static void pci_release_host_bridge_dev(struct device *dev) static void pci_init_host_bridge(struct pci_host_bridge *bridge) { INIT_LIST_HEAD(&bridge->windows); + INIT_LIST_HEAD(&bridge->dma_ranges); /* * We assume we can manage these PCIe features. Some systems may @@ -637,6 +638,7 @@ EXPORT_SYMBOL(devm_pci_alloc_host_bridge); void pci_free_host_bridge(struct pci_host_bridge *bridge) { pci_free_resource_list(&bridge->windows); + pci_free_resource_list(&bridge->dma_ranges); kfree(bridge); } |
