PCI: dwc: keystone: Convert .scan_bus() callback to use add_bus
[linux-2.6-microblaze.git] / drivers / pci / controller / dwc / pcie-designware-host.c
index 9dafecb..14ffc2c 100644 (file)
 #include "pcie-designware.h"
 
 static struct pci_ops dw_pcie_ops;
-
-static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
-                              u32 *val)
-{
-       struct dw_pcie *pci;
-
-       if (pp->ops->rd_own_conf)
-               return pp->ops->rd_own_conf(pp, where, size, val);
-
-       pci = to_dw_pcie_from_pp(pp);
-       return dw_pcie_read(pci->dbi_base + where, size, val);
-}
-
-static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
-                              u32 val)
-{
-       struct dw_pcie *pci;
-
-       if (pp->ops->wr_own_conf)
-               return pp->ops->wr_own_conf(pp, where, size, val);
-
-       pci = to_dw_pcie_from_pp(pp);
-       return dw_pcie_write(pci->dbi_base + where, size, val);
-}
+static struct pci_ops dw_child_pcie_ops;
 
 static void dw_msi_ack_irq(struct irq_data *d)
 {
@@ -82,13 +59,13 @@ irqreturn_t dw_handle_msi_irq(struct pcie_port *pp)
        unsigned long val;
        u32 status, num_ctrls;
        irqreturn_t ret = IRQ_NONE;
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
        num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
 
        for (i = 0; i < num_ctrls; i++) {
-               dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS +
-                                       (i * MSI_REG_CTRL_BLOCK_SIZE),
-                                   4, &status);
+               status = dw_pcie_readl_dbi(pci, PCIE_MSI_INTR0_STATUS +
+                                          (i * MSI_REG_CTRL_BLOCK_SIZE));
                if (!status)
                        continue;
 
@@ -148,6 +125,7 @@ static int dw_pci_msi_set_affinity(struct irq_data *d,
 static void dw_pci_bottom_mask(struct irq_data *d)
 {
        struct pcie_port *pp = irq_data_get_irq_chip_data(d);
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
        unsigned int res, bit, ctrl;
        unsigned long flags;
 
@@ -158,8 +136,7 @@ static void dw_pci_bottom_mask(struct irq_data *d)
        bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
 
        pp->irq_mask[ctrl] |= BIT(bit);
-       dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK + res, 4,
-                           pp->irq_mask[ctrl]);
+       dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK + res, pp->irq_mask[ctrl]);
 
        raw_spin_unlock_irqrestore(&pp->lock, flags);
 }
@@ -167,6 +144,7 @@ static void dw_pci_bottom_mask(struct irq_data *d)
 static void dw_pci_bottom_unmask(struct irq_data *d)
 {
        struct pcie_port *pp = irq_data_get_irq_chip_data(d);
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
        unsigned int res, bit, ctrl;
        unsigned long flags;
 
@@ -177,8 +155,7 @@ static void dw_pci_bottom_unmask(struct irq_data *d)
        bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
 
        pp->irq_mask[ctrl] &= ~BIT(bit);
-       dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK + res, 4,
-                           pp->irq_mask[ctrl]);
+       dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK + res, pp->irq_mask[ctrl]);
 
        raw_spin_unlock_irqrestore(&pp->lock, flags);
 }
@@ -186,13 +163,14 @@ static void dw_pci_bottom_unmask(struct irq_data *d)
 static void dw_pci_bottom_ack(struct irq_data *d)
 {
        struct pcie_port *pp  = irq_data_get_irq_chip_data(d);
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
        unsigned int res, bit, ctrl;
 
        ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
        res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
        bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
 
-       dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_STATUS + res, 4, BIT(bit));
+       dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_STATUS + res, BIT(bit));
 }
 
 static struct irq_chip dw_pci_msi_bottom_irq_chip = {
@@ -310,10 +288,8 @@ void dw_pcie_msi_init(struct pcie_port *pp)
        msi_target = (u64)pp->msi_data;
 
        /* Program the msi_data */
-       dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
-                           lower_32_bits(msi_target));
-       dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4,
-                           upper_32_bits(msi_target));
+       dw_pcie_writel_dbi(pci, PCIE_MSI_ADDR_LO, lower_32_bits(msi_target));
+       dw_pcie_writel_dbi(pci, PCIE_MSI_ADDR_HI, upper_32_bits(msi_target));
 }
 EXPORT_SYMBOL_GPL(dw_pcie_msi_init);
 
@@ -327,7 +303,6 @@ int dw_pcie_host_init(struct pcie_port *pp)
        struct pci_bus *child;
        struct pci_host_bridge *bridge;
        struct resource *cfg_res;
-       u32 hdr_type;
        int ret;
 
        raw_spin_lock_init(&pci->pp.lock);
@@ -346,6 +321,8 @@ int dw_pcie_host_init(struct pcie_port *pp)
        if (!bridge)
                return -ENOMEM;
 
+       pp->bridge = bridge;
+
        /* Get the I/O and memory ranges from DT */
        resource_list_for_each_entry(win, &bridge->windows) {
                switch (resource_type(win->res)) {
@@ -447,29 +424,17 @@ int dw_pcie_host_init(struct pcie_port *pp)
                }
        }
 
+       /* Set default bus ops */
+       bridge->ops = &dw_pcie_ops;
+       bridge->child_ops = &dw_child_pcie_ops;
+
        if (pp->ops->host_init) {
                ret = pp->ops->host_init(pp);
                if (ret)
                        goto err_free_msi;
        }
 
-       ret = dw_pcie_rd_own_conf(pp, PCI_HEADER_TYPE, 1, &hdr_type);
-       if (ret != PCIBIOS_SUCCESSFUL) {
-               dev_err(pci->dev, "Failed reading PCI_HEADER_TYPE cfg space reg (ret: 0x%x)\n",
-                       ret);
-               ret = pcibios_err_to_errno(ret);
-               goto err_free_msi;
-       }
-       if (hdr_type != PCI_HEADER_TYPE_BRIDGE) {
-               dev_err(pci->dev,
-                       "PCIe controller is not set to bridge type (hdr_type: 0x%x)!\n",
-                       hdr_type);
-               ret = -EIO;
-               goto err_free_msi;
-       }
-
        bridge->sysdata = pp;
-       bridge->ops = &dw_pcie_ops;
 
        ret = pci_scan_root_bus_bridge(bridge);
        if (ret)
@@ -505,14 +470,14 @@ void dw_pcie_host_deinit(struct pcie_port *pp)
 }
 EXPORT_SYMBOL_GPL(dw_pcie_host_deinit);
 
-static int dw_pcie_access_other_conf(struct pcie_port *pp, struct pci_bus *bus,
-                                    u32 devfn, int where, int size, u32 *val,
-                                    bool write)
+static void __iomem *dw_pcie_other_conf_map_bus(struct pci_bus *bus,
+                                               unsigned int devfn, int where)
 {
-       int ret, type;
+       int type;
        u32 busdev, cfg_size;
        u64 cpu_addr;
        void __iomem *va_cfg_base;
+       struct pcie_port *pp = bus->sysdata;
        struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
        busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
@@ -533,90 +498,66 @@ static int dw_pcie_access_other_conf(struct pcie_port *pp, struct pci_bus *bus,
        dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
                                  type, cpu_addr,
                                  busdev, cfg_size);
-       if (write)
-               ret = dw_pcie_write(va_cfg_base + where, size, *val);
-       else
-               ret = dw_pcie_read(va_cfg_base + where, size, val);
-
-       if (pci->num_viewport <= 2)
-               dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
-                                         PCIE_ATU_TYPE_IO, pp->io_base,
-                                         pp->io_bus_addr, pp->io_size);
 
-       return ret;
-}
-
-static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
-                                u32 devfn, int where, int size, u32 *val)
-{
-       if (pp->ops->rd_other_conf)
-               return pp->ops->rd_other_conf(pp, bus, devfn, where,
-                                             size, val);
-
-       return dw_pcie_access_other_conf(pp, bus, devfn, where, size, val,
-                                        false);
-}
-
-static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
-                                u32 devfn, int where, int size, u32 val)
-{
-       if (pp->ops->wr_other_conf)
-               return pp->ops->wr_other_conf(pp, bus, devfn, where,
-                                             size, val);
-
-       return dw_pcie_access_other_conf(pp, bus, devfn, where, size, &val,
-                                        true);
+       return va_cfg_base + where;
 }
 
-static int dw_pcie_valid_device(struct pcie_port *pp, struct pci_bus *bus,
-                               int dev)
+static int dw_pcie_rd_other_conf(struct pci_bus *bus, unsigned int devfn,
+                                int where, int size, u32 *val)
 {
+       int ret;
+       struct pcie_port *pp = bus->sysdata;
        struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
-       /* If there is no link, then there is no device */
-       if (!pci_is_root_bus(bus)) {
-               if (!dw_pcie_link_up(pci))
-                       return 0;
-       } else if (dev > 0)
-               /* Access only one slot on each root port */
-               return 0;
+       ret = pci_generic_config_read(bus, devfn, where, size, val);
 
-       return 1;
+       if (!ret && pci->num_viewport <= 2)
+               dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
+                                         PCIE_ATU_TYPE_IO, pp->io_base,
+                                         pp->io_bus_addr, pp->io_size);
+
+       return ret;
 }
 
-static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
-                          int size, u32 *val)
+static int dw_pcie_wr_other_conf(struct pci_bus *bus, unsigned int devfn,
+                                int where, int size, u32 val)
 {
+       int ret;
        struct pcie_port *pp = bus->sysdata;
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
-       if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn))) {
-               *val = 0xffffffff;
-               return PCIBIOS_DEVICE_NOT_FOUND;
-       }
+       ret = pci_generic_config_write(bus, devfn, where, size, val);
 
-       if (pci_is_root_bus(bus))
-               return dw_pcie_rd_own_conf(pp, where, size, val);
+       if (!ret && pci->num_viewport <= 2)
+               dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
+                                         PCIE_ATU_TYPE_IO, pp->io_base,
+                                         pp->io_bus_addr, pp->io_size);
 
-       return dw_pcie_rd_other_conf(pp, bus, devfn, where, size, val);
+       return ret;
 }
 
-static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
-                          int where, int size, u32 val)
+static struct pci_ops dw_child_pcie_ops = {
+       .map_bus = dw_pcie_other_conf_map_bus,
+       .read = dw_pcie_rd_other_conf,
+       .write = dw_pcie_wr_other_conf,
+};
+
+void __iomem *dw_pcie_own_conf_map_bus(struct pci_bus *bus, unsigned int devfn, int where)
 {
        struct pcie_port *pp = bus->sysdata;
+       struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
-       if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn)))
-               return PCIBIOS_DEVICE_NOT_FOUND;
-
-       if (pci_is_root_bus(bus))
-               return dw_pcie_wr_own_conf(pp, where, size, val);
+       if (PCI_SLOT(devfn) > 0)
+               return NULL;
 
-       return dw_pcie_wr_other_conf(pp, bus, devfn, where, size, val);
+       return pci->dbi_base + where;
 }
+EXPORT_SYMBOL_GPL(dw_pcie_own_conf_map_bus);
 
 static struct pci_ops dw_pcie_ops = {
-       .read = dw_pcie_rd_conf,
-       .write = dw_pcie_wr_conf,
+       .map_bus = dw_pcie_own_conf_map_bus,
+       .read = pci_generic_config_read,
+       .write = pci_generic_config_write,
 };
 
 void dw_pcie_setup_rc(struct pcie_port *pp)
@@ -638,12 +579,12 @@ void dw_pcie_setup_rc(struct pcie_port *pp)
                /* Initialize IRQ Status array */
                for (ctrl = 0; ctrl < num_ctrls; ctrl++) {
                        pp->irq_mask[ctrl] = ~0;
-                       dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK +
+                       dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK +
                                            (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
-                                           4, pp->irq_mask[ctrl]);
-                       dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE +
+                                           pp->irq_mask[ctrl]);
+                       dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_ENABLE +
                                            (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
-                                           4, ~0);
+                                           ~0);
                }
        }
 
@@ -671,11 +612,11 @@ void dw_pcie_setup_rc(struct pcie_port *pp)
        dw_pcie_writel_dbi(pci, PCI_COMMAND, val);
 
        /*
-        * If the platform provides ->rd_other_conf, it means the platform
-        * uses its own address translation component rather than ATU, so
-        * we should not program the ATU here.
+        * If the platform provides its own child bus config accesses, it means
+        * the platform uses its own address translation component rather than
+        * ATU, so we should not program the ATU here.
         */
-       if (!pp->ops->rd_other_conf) {
+       if (pp->bridge->child_ops == &dw_child_pcie_ops) {
                dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX0,
                                          PCIE_ATU_TYPE_MEM, pp->mem_base,
                                          pp->mem_bus_addr, pp->mem_size);
@@ -685,14 +626,14 @@ void dw_pcie_setup_rc(struct pcie_port *pp)
                                                  pp->io_bus_addr, pp->io_size);
        }
 
-       dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
+       dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0);
 
        /* Program correct class for RC */
-       dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
+       dw_pcie_writew_dbi(pci, PCI_CLASS_DEVICE, PCI_CLASS_BRIDGE_PCI);
 
-       dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
+       val = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
        val |= PORT_LOGIC_SPEED_CHANGE;
-       dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
+       dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, val);
 
        dw_pcie_dbi_ro_wr_dis(pci);
 }