Skip to content

Commit

Permalink
PCI: Move DT resource setup into devm_pci_alloc_host_bridge()
Browse files Browse the repository at this point in the history
Now that pci_parse_request_of_pci_ranges() callers just setup
pci_host_bridge.windows and dma_ranges directly and don't need the bus
range returned, we can just initialize them when allocating the
pci_host_bridge struct.

With this, pci_parse_request_of_pci_ranges() becomes a static function.

Link: https://lore.kernel.org/r/20200722022514.1283916-19-robh@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
  • Loading branch information
robherring authored and Lorenzo Pieralisi committed Aug 4, 2020
1 parent 4a95756 commit 669cbc7
Show file tree
Hide file tree
Showing 24 changed files with 36 additions and 155 deletions.
6 changes: 0 additions & 6 deletions drivers/pci/controller/cadence/pcie-cadence-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,8 @@ static int cdns_pcie_host_init_address_translation(struct cdns_pcie_rc *rc)
static int cdns_pcie_host_init(struct device *dev,
struct cdns_pcie_rc *rc)
{
struct pci_host_bridge *bridge = pci_host_bridge_from_priv(rc);
int err;

/* Parse our PCI ranges and request their resources */
err = pci_parse_request_of_pci_ranges(dev, &bridge->windows, NULL, NULL);
if (err)
return err;

err = cdns_pcie_host_init_root_port(rc);
if (err)
return err;
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/dwc/pcie-designware-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,11 +346,6 @@ int dw_pcie_host_init(struct pcie_port *pp)
if (!bridge)
return -ENOMEM;

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret)
return ret;

/* Get the I/O and memory ranges from DT */
resource_list_for_each_entry(win, &bridge->windows) {
switch (resource_type(win->res)) {
Expand Down
8 changes: 0 additions & 8 deletions drivers/pci/controller/mobiveil/pcie-mobiveil-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -577,14 +577,6 @@ int mobiveil_pcie_host_probe(struct mobiveil_pcie *pcie)
if (!mobiveil_pcie_is_bridge(pcie))
return -ENODEV;

/* parse the host bridge base addresses from the device tree file */
ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret) {
dev_err(dev, "Getting bridge resources failed\n");
return ret;
}

/*
* configure all inbound and outbound windows and prepare the RC for
* config access
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pci-aardvark.c
Original file line number Diff line number Diff line change
Expand Up @@ -1130,13 +1130,6 @@ static int advk_pcie_probe(struct platform_device *pdev)
return ret;
}

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret) {
dev_err(dev, "Failed to parse resources\n");
return ret;
}

pcie->reset_gpio = devm_gpiod_get_from_of_node(dev, dev->of_node,
"reset-gpios", 0,
GPIOD_OUT_LOW,
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pci-ftpci100.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,11 +465,6 @@ static int faraday_pci_probe(struct platform_device *pdev)
if (IS_ERR(p->base))
return PTR_ERR(p->base);

ret = pci_parse_request_of_pci_ranges(dev, &host->windows,
&host->dma_ranges, NULL);
if (ret)
return ret;

win = resource_list_first_type(&host->windows, IORESOURCE_IO);
if (win) {
io = win->res;
Expand Down
13 changes: 6 additions & 7 deletions drivers/pci/controller/pci-host-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,20 @@ static struct pci_config_window *gen_pci_init(struct device *dev,
{
int err;
struct resource cfgres;
struct resource *bus_range = NULL;
struct resource_entry *bus;
struct pci_config_window *cfg;

/* Parse our PCI ranges and request their resources */
err = pci_parse_request_of_pci_ranges(dev, &bridge->windows, NULL, &bus_range);
if (err)
return ERR_PTR(err);

err = of_address_to_resource(dev->of_node, 0, &cfgres);
if (err) {
dev_err(dev, "missing \"reg\" property\n");
return ERR_PTR(err);
}

cfg = pci_ecam_create(dev, &cfgres, bus_range, ops);
bus = resource_list_first_type(&bridge->windows, IORESOURCE_BUS);
if (!bus)
return ERR_PTR(-ENODEV);

cfg = pci_ecam_create(dev, &cfgres, bus->res, ops);
if (IS_ERR(cfg))
return cfg;

Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pci-loongson.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,6 @@ static int loongson_pci_probe(struct platform_device *pdev)
}
}

err = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (err) {
dev_err(dev, "failed to get bridge resources\n");
return err;
}

bridge->sysdata = priv;
bridge->ops = &loongson_pci_ops;
bridge->map_irq = loongson_map_irq;
Expand Down
6 changes: 0 additions & 6 deletions drivers/pci/controller/pci-rcar-gen2.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ static int rcar_pci_probe(struct platform_device *pdev)
struct rcar_pci_priv *priv;
struct pci_host_bridge *bridge;
void __iomem *reg;
int ret;

bridge = devm_pci_alloc_host_bridge(dev, sizeof(*priv));
if (!bridge)
Expand Down Expand Up @@ -315,11 +314,6 @@ static int rcar_pci_probe(struct platform_device *pdev)
return priv->irq;
}

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret)
return ret;

bridge->ops = &rcar_pci_ops;

pci_add_flags(PCI_REASSIGN_ALL_BUS);
Expand Down
6 changes: 0 additions & 6 deletions drivers/pci/controller/pci-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -2682,12 +2682,6 @@ static int tegra_pcie_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&pcie->ports);
pcie->dev = dev;

err = pci_parse_request_of_pci_ranges(dev, &host->windows, NULL, NULL);
if (err) {
dev_err(dev, "Getting bridge resources failed\n");
return err;
}

err = tegra_pcie_parse_dt(pcie);
if (err < 0)
return err;
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pci-v3-semi.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,11 +764,6 @@ static int v3_pci_probe(struct platform_device *pdev)
if (IS_ERR(v3->config_base))
return PTR_ERR(v3->config_base);

ret = pci_parse_request_of_pci_ranges(dev, &host->windows,
&host->dma_ranges, NULL);
if (ret)
return ret;

/* Get and request error IRQ resource */
irq = platform_get_irq(pdev, 0);
if (irq < 0) {
Expand Down
7 changes: 1 addition & 6 deletions drivers/pci/controller/pci-versatile.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static int versatile_pci_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev;
struct resource *res;
struct resource_entry *entry;
int ret, i, myslot = -1, mem = 1;
int i, myslot = -1, mem = 1;
u32 val;
void __iomem *local_pci_cfg_base;
struct pci_host_bridge *bridge;
Expand All @@ -89,11 +89,6 @@ static int versatile_pci_probe(struct platform_device *pdev)
if (IS_ERR(versatile_cfg_base[1]))
return PTR_ERR(versatile_cfg_base[1]);

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
NULL, NULL);
if (ret)
return ret;

resource_list_for_each_entry(entry, &bridge->windows) {
if (resource_type(entry->res) == IORESOURCE_MEM) {
writel(entry->res->start >> 28, PCI_IMAP(mem));
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pci-xgene.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,11 +614,6 @@ static int xgene_pcie_probe(struct platform_device *pdev)
if (ret)
return ret;

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret)
return ret;

ret = xgene_pcie_setup(port);
if (ret)
return ret;
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pcie-altera.c
Original file line number Diff line number Diff line change
Expand Up @@ -794,13 +794,6 @@ static int altera_pcie_probe(struct platform_device *pdev)
return ret;
}

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret) {
dev_err(dev, "Failed add resources\n");
return ret;
}

ret = altera_pcie_init_irq_domain(pcie);
if (ret) {
dev_err(dev, "Failed creating IRQ Domain\n");
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pcie-brcmstb.c
Original file line number Diff line number Diff line change
Expand Up @@ -970,11 +970,6 @@ static int brcm_pcie_probe(struct platform_device *pdev)

pcie->ssc = of_property_read_bool(np, "brcm,enable-ssc");

ret = pci_parse_request_of_pci_ranges(pcie->dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret)
return ret;

ret = clk_prepare_enable(pcie->clk);
if (ret) {
dev_err(&pdev->dev, "could not enable clock\n");
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pcie-iproc-platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,6 @@ static int iproc_pcie_pltfm_probe(struct platform_device *pdev)
if (IS_ERR(pcie->phy))
return PTR_ERR(pcie->phy);

ret = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (ret) {
dev_err(dev, "unable to get PCI host bridge resources\n");
return ret;
}

/* PAXC doesn't support legacy IRQs, skip mapping */
switch (pcie->type) {
case IPROC_PCIE_PAXC:
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pcie-mediatek.c
Original file line number Diff line number Diff line change
Expand Up @@ -1027,15 +1027,8 @@ static int mtk_pcie_setup(struct mtk_pcie *pcie)
struct device *dev = pcie->dev;
struct device_node *node = dev->of_node, *child;
struct mtk_pcie_port *port, *tmp;
struct pci_host_bridge *host = pci_host_bridge_from_priv(pcie);
struct list_head *windows = &host->windows;
int err;

err = pci_parse_request_of_pci_ranges(dev, windows,
&host->dma_ranges, NULL);
if (err)
return err;

for_each_available_child_of_node(node, child) {
int slot;

Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pcie-rcar-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -913,11 +913,6 @@ static int rcar_pcie_probe(struct platform_device *pdev)
pcie->dev = dev;
platform_set_drvdata(pdev, host);

err = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (err)
return err;

pm_runtime_enable(pcie->dev);
err = pm_runtime_get_sync(pcie->dev);
if (err < 0) {
Expand Down
5 changes: 0 additions & 5 deletions drivers/pci/controller/pcie-rockchip-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -989,11 +989,6 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
if (err < 0)
goto err_deinit_port;

err = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (err)
goto err_remove_irq_domain;

err = rockchip_pcie_cfg_atu(rockchip);
if (err)
goto err_remove_irq_domain;
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pcie-xilinx-nwl.c
Original file line number Diff line number Diff line change
Expand Up @@ -838,13 +838,6 @@ static int nwl_pcie_probe(struct platform_device *pdev)
return err;
}

err = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (err) {
dev_err(dev, "Getting bridge resources failed\n");
return err;
}

err = nwl_pcie_init_irq_domain(pcie);
if (err) {
dev_err(dev, "Failed creating IRQ Domain\n");
Expand Down
7 changes: 0 additions & 7 deletions drivers/pci/controller/pcie-xilinx.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,13 +641,6 @@ static int xilinx_pcie_probe(struct platform_device *pdev)
return err;
}

err = pci_parse_request_of_pci_ranges(dev, &bridge->windows,
&bridge->dma_ranges, NULL);
if (err) {
dev_err(dev, "Getting bridge resources failed\n");
return err;
}

bridge->sysdata = port;
bridge->ops = &xilinx_pcie_ops;
bridge->map_irq = of_irq_parse_and_map_pci;
Expand Down
37 changes: 17 additions & 20 deletions drivers/pci/of.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,28 +521,26 @@ int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
EXPORT_SYMBOL_GPL(of_irq_parse_and_map_pci);
#endif /* CONFIG_OF_IRQ */

int pci_parse_request_of_pci_ranges(struct device *dev,
struct list_head *resources,
struct list_head *ib_resources,
struct resource **bus_range)
static int pci_parse_request_of_pci_ranges(struct device *dev,
struct pci_host_bridge *bridge)
{
int err, res_valid = 0;
resource_size_t iobase;
struct resource_entry *win, *tmp;

INIT_LIST_HEAD(resources);
if (ib_resources)
INIT_LIST_HEAD(ib_resources);
err = devm_of_pci_get_host_bridge_resources(dev, 0, 0xff, resources,
ib_resources, &iobase);
INIT_LIST_HEAD(&bridge->windows);
INIT_LIST_HEAD(&bridge->dma_ranges);

err = devm_of_pci_get_host_bridge_resources(dev, 0, 0xff, &bridge->windows,
&bridge->dma_ranges, &iobase);
if (err)
return err;

err = devm_request_pci_bus_resources(dev, resources);
err = devm_request_pci_bus_resources(dev, &bridge->windows);
if (err)
goto out_release_res;
return err;

resource_list_for_each_entry_safe(win, tmp, resources) {
resource_list_for_each_entry_safe(win, tmp, &bridge->windows) {
struct resource *res = win->res;

switch (resource_type(res)) {
Expand All @@ -557,23 +555,22 @@ int pci_parse_request_of_pci_ranges(struct device *dev,
case IORESOURCE_MEM:
res_valid |= !(res->flags & IORESOURCE_PREFETCH);
break;
case IORESOURCE_BUS:
if (bus_range)
*bus_range = res;
break;
}
}

if (!res_valid)
dev_warn(dev, "non-prefetchable memory resource required\n");

return 0;
}

out_release_res:
pci_free_resource_list(resources);
return err;
int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
{
if (!dev->of_node)
return 0;

return pci_parse_request_of_pci_ranges(dev, bridge);
}
EXPORT_SYMBOL_GPL(pci_parse_request_of_pci_ranges);

#endif /* CONFIG_PCI */

Expand Down
8 changes: 8 additions & 0 deletions drivers/pci/pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,8 @@ void pci_release_of_node(struct pci_dev *dev);
void pci_set_bus_of_node(struct pci_bus *bus);
void pci_release_bus_of_node(struct pci_bus *bus);

int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge);

#else
static inline int
of_pci_parse_bus_range(struct device_node *node, struct resource *res)
Expand All @@ -650,6 +652,12 @@ static inline void pci_set_of_node(struct pci_dev *dev) { }
static inline void pci_release_of_node(struct pci_dev *dev) { }
static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
static inline void pci_release_bus_of_node(struct pci_bus *bus) { }

static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
{
return 0;
}

#endif /* CONFIG_OF */

#ifdef CONFIG_PCIEAER
Expand Down
4 changes: 4 additions & 0 deletions drivers/pci/probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,10 @@ struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
if (ret)
return NULL;

ret = devm_of_pci_bridge_init(dev, bridge);
if (ret)
return NULL;

return bridge;
}
EXPORT_SYMBOL(devm_pci_alloc_host_bridge);
Expand Down
Loading

0 comments on commit 669cbc7

Please sign in to comment.