ar71xx: don't register PCI controller on AR934x if PCIE_RC bit is not set
authorGabor Juhos <juhosg@openwrt.org>
Mon, 5 Dec 2011 18:21:15 +0000 (18:21 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Mon, 5 Dec 2011 18:21:15 +0000 (18:21 +0000)
SVN-Revision: 29456

target/linux/ar71xx/files/arch/mips/ar71xx/pci.c

index 8850c0b6b01d61c8cb59f2d19dd03a07770c2f0d..f3c64524185c8666b38e55dfd1ababfaa9d51be2 100644 (file)
@@ -68,6 +68,7 @@ int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin)
 
 int __init ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map)
 {
+       u32 t;
        int ret = 0;
 
        switch (ar71xx_soc) {
@@ -86,9 +87,13 @@ int __init ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map)
 
        case AR71XX_SOC_AR9342:
        case AR71XX_SOC_AR9344:
-               ret = ar724x_pcibios_init(AR934X_IP2_IRQ_PCIE);
-               break;
+               t = ar71xx_reset_rr(AR934X_RESET_REG_BOOTSTRAP);
+               if (t & AR934X_BOOTSTRAP_PCIE_RC) {
+                       ret = ar724x_pcibios_init(AR934X_IP2_IRQ_PCIE);
+                       break;
+               }
 
+               /* fall through */
        default:
                return 0;
        }