|
@@ -61,6 +61,7 @@
|
|
|
#define PCIE_ATU_VIEWPORT 0x900
|
|
|
#define PCIE_ATU_REGION_INBOUND (0x1 << 31)
|
|
|
#define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
|
|
|
+#define PCIE_ATU_REGION_INDEX2 (0x2 << 0)
|
|
|
#define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
|
|
|
#define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
|
|
|
#define PCIE_ATU_CR1 0x904
|
|
@@ -616,6 +617,10 @@ int dw_pcie_host_init(struct pcie_port *pp)
|
|
|
if (ret)
|
|
|
pp->lanes = 0;
|
|
|
|
|
|
+ ret = of_property_read_u32(np, "num-viewport", &pp->num_viewport);
|
|
|
+ if (ret)
|
|
|
+ pp->num_viewport = 2;
|
|
|
+
|
|
|
if (IS_ENABLED(CONFIG_PCI_MSI)) {
|
|
|
if (!pp->ops->msi_host_init) {
|
|
|
pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
|
|
@@ -707,9 +712,10 @@ static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
|
|
|
type, cpu_addr,
|
|
|
busdev, cfg_size);
|
|
|
ret = dw_pcie_cfg_read(va_cfg_base + where, size, val);
|
|
|
- dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
|
|
|
- PCIE_ATU_TYPE_IO, pp->io_base,
|
|
|
- pp->io_bus_addr, pp->io_size);
|
|
|
+ if (pp->num_viewport <= 2)
|
|
|
+ dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
|
|
|
+ PCIE_ATU_TYPE_IO, pp->io_base,
|
|
|
+ pp->io_bus_addr, pp->io_size);
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
@@ -744,9 +750,10 @@ static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
|
|
|
type, cpu_addr,
|
|
|
busdev, cfg_size);
|
|
|
ret = dw_pcie_cfg_write(va_cfg_base + where, size, val);
|
|
|
- dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
|
|
|
- PCIE_ATU_TYPE_IO, pp->io_base,
|
|
|
- pp->io_bus_addr, pp->io_size);
|
|
|
+ if (pp->num_viewport <= 2)
|
|
|
+ dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
|
|
|
+ PCIE_ATU_TYPE_IO, pp->io_base,
|
|
|
+ pp->io_bus_addr, pp->io_size);
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
@@ -882,10 +889,15 @@ void dw_pcie_setup_rc(struct pcie_port *pp)
|
|
|
* 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->ops->rd_other_conf) {
|
|
|
dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1,
|
|
|
PCIE_ATU_TYPE_MEM, pp->mem_base,
|
|
|
pp->mem_bus_addr, pp->mem_size);
|
|
|
+ if (pp->num_viewport > 2)
|
|
|
+ dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX2,
|
|
|
+ PCIE_ATU_TYPE_IO, pp->io_base,
|
|
|
+ pp->io_bus_addr, pp->io_size);
|
|
|
+ }
|
|
|
|
|
|
dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
|
|
|
|