]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: a37xx: pci: Do not automatically enable bus mastering on PCI Bridge
authorPali Rohár <pali@kernel.org>
Sat, 25 Sep 2021 22:54:43 +0000 (00:54 +0200)
committerStefan Roese <sr@denx.de>
Fri, 8 Oct 2021 06:37:55 +0000 (08:37 +0200)
Now that PCI Bridge is working for the PCIe Root Port, U-Boot's PCI_PNP
code automatically enables memory access and bus mastering when needed.

We do not need to enable it when setting the HW up.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
drivers/pci/pci-aardvark.c

index 082fdc3b74da0db7755d7517e380e3b0db7548d4..2481cbea526999681519f29b9b790ae712d33add 100644 (file)
@@ -910,12 +910,6 @@ static int pcie_advk_setup_hw(struct pcie_advk *pcie)
        if (pcie_advk_wait_for_link(pcie))
                return -ENXIO;
 
-       reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG);
-       reg |= PCIE_CORE_CMD_MEM_ACCESS_EN |
-               PCIE_CORE_CMD_IO_ACCESS_EN |
-               PCIE_CORE_CMD_MEM_IO_REQ_EN;
-       advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG);
-
        return 0;
 }