Patch "PCI: iproc: Fix BCMA probe resource handling" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    PCI: iproc: Fix BCMA probe resource handling

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     pci-iproc-fix-bcma-probe-resource-handling.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 120c0c172f49add914a62bf7ca7b818e0943ed20
Author: Rob Herring <robh@xxxxxxxxxx>
Date:   Tue Aug 3 15:56:56 2021 -0600

    PCI: iproc: Fix BCMA probe resource handling
    
    [ Upstream commit aeaea8969b402e0081210cc9144404d13996efed ]
    
    In commit 7ef1c871da16 ("PCI: iproc: Use
    pci_parse_request_of_pci_ranges()"), calling
    devm_request_pci_bus_resources() was dropped from the common iProc
    probe code, but is still needed for BCMA bus probing. Without it, there
    will be lots of warnings like this:
    
    pci 0000:00:00.0: BAR 8: no space for [mem size 0x00c00000]
    pci 0000:00:00.0: BAR 8: failed to assign [mem size 0x00c00000]
    
    Add back calling devm_request_pci_bus_resources() and adding the
    resources to pci_host_bridge.windows for BCMA bus probe.
    
    Link: https://lore.kernel.org/r/20210803215656.3803204-2-robh@xxxxxxxxxx
    Fixes: 7ef1c871da16 ("PCI: iproc: Use pci_parse_request_of_pci_ranges()")
    Reported-by: Rafał Miłecki <zajec5@xxxxxxxxx>
    Tested-by: Rafał Miłecki <rafal@xxxxxxxxxx>
    Signed-off-by: Rob Herring <robh@xxxxxxxxxx>
    Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@xxxxxxx>
    Cc: Srinath Mannam <srinath.mannam@xxxxxxxxxxxx>
    Cc: Roman Bacik <roman.bacik@xxxxxxxxxxxx>
    Cc: Bharat Gooty <bharat.gooty@xxxxxxxxxxxx>
    Cc: Abhishek Shah <abhishek.shah@xxxxxxxxxxxx>
    Cc: Jitendra Bhivare <jitendra.bhivare@xxxxxxxxxxxx>
    Cc: Ray Jui <ray.jui@xxxxxxxxxxxx>
    Cc: Florian Fainelli <f.fainelli@xxxxxxxxx>
    Cc: BCM Kernel Feedback <bcm-kernel-feedback-list@xxxxxxxxxxxx>
    Cc: Scott Branden <sbranden@xxxxxxxxxxxx>
    Cc: Lorenzo Pieralisi <lorenzo.pieralisi@xxxxxxx>
    Cc: "Krzysztof Wilczyński" <kw@xxxxxxxxx>
    Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/pci/controller/pcie-iproc-bcma.c b/drivers/pci/controller/pcie-iproc-bcma.c
index 56b8ee7bf330..f918c713afb0 100644
--- a/drivers/pci/controller/pcie-iproc-bcma.c
+++ b/drivers/pci/controller/pcie-iproc-bcma.c
@@ -35,7 +35,6 @@ static int iproc_pcie_bcma_probe(struct bcma_device *bdev)
 {
 	struct device *dev = &bdev->dev;
 	struct iproc_pcie *pcie;
-	LIST_HEAD(resources);
 	struct pci_host_bridge *bridge;
 	int ret;
 
@@ -60,19 +59,16 @@ static int iproc_pcie_bcma_probe(struct bcma_device *bdev)
 	pcie->mem.end = bdev->addr_s[0] + SZ_128M - 1;
 	pcie->mem.name = "PCIe MEM space";
 	pcie->mem.flags = IORESOURCE_MEM;
-	pci_add_resource(&resources, &pcie->mem);
+	pci_add_resource(&bridge->windows, &pcie->mem);
+	ret = devm_request_pci_bus_resources(dev, &bridge->windows);
+	if (ret)
+		return ret;
 
 	pcie->map_irq = iproc_pcie_bcma_map_irq;
 
-	ret = iproc_pcie_setup(pcie, &resources);
-	if (ret) {
-		dev_err(dev, "PCIe controller setup failed\n");
-		pci_free_resource_list(&resources);
-		return ret;
-	}
-
 	bcma_set_drvdata(bdev, pcie);
-	return 0;
+
+	return iproc_pcie_setup(pcie, &bridge->windows);
 }
 
 static void iproc_pcie_bcma_remove(struct bcma_device *bdev)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux