On Thu, Apr 11, 2019 at 10:33:41PM +0530, Manikanta Maddireddy wrote: > AFI_CACHE* registers are available only in Tegra20, program them only > for Tegra20. > > Signed-off-by: Manikanta Maddireddy > --- > drivers/pci/controller/pci-tegra.c | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) > > diff --git a/drivers/pci/controller/pci-tegra.c b/drivers/pci/controller/pci-tegra.c > index 8e5fdc8ce3d6..cdaaf13a9fd7 100644 > --- a/drivers/pci/controller/pci-tegra.c > +++ b/drivers/pci/controller/pci-tegra.c > @@ -887,6 +887,7 @@ static irqreturn_t tegra_pcie_isr(int irq, void *arg) > */ > static void tegra_pcie_setup_translations(struct tegra_pcie *pcie) > { > + struct device_node *np = pcie->dev->of_node; > u32 fpci_bar, size, axi_address; > > /* Bar 0: type 1 extended configuration space */ > @@ -927,11 +928,13 @@ static void tegra_pcie_setup_translations(struct tegra_pcie *pcie) > afi_writel(pcie, 0, AFI_AXI_BAR5_SZ); > afi_writel(pcie, 0, AFI_FPCI_BAR5); > > - /* map all upstream transactions as uncached */ > - afi_writel(pcie, 0, AFI_CACHE_BAR0_ST); > - afi_writel(pcie, 0, AFI_CACHE_BAR0_SZ); > - afi_writel(pcie, 0, AFI_CACHE_BAR1_ST); > - afi_writel(pcie, 0, AFI_CACHE_BAR1_SZ); > + if (of_device_is_compatible(np, "nvidia,tegra20-pcie")) { At this point we've already matched on that compatible string, so we could probably get that information from the SoC structure. Why are these registers not available on later chips? How would we mark transactions as uncached on later generations of Tegra? Also, typically writing to non-existing registers on Tegra186 would cause an SError exception, but I haven't seen any of those with PCIe on Tegra186. So do these really not exist, or are they simply not used? Thierry > + /* map all upstream transactions as uncached */ > + afi_writel(pcie, 0, AFI_CACHE_BAR0_ST); > + afi_writel(pcie, 0, AFI_CACHE_BAR0_SZ); > + afi_writel(pcie, 0, AFI_CACHE_BAR1_ST); > + afi_writel(pcie, 0, AFI_CACHE_BAR1_SZ); > + } > > /* MSI translations are setup only when needed */ > afi_writel(pcie, 0, AFI_MSI_FPCI_BAR_ST); > -- > 2.17.1 >