blob: 5529de7328ba0131db29a57876148b8f96cbbce5 [file] [log] [blame]
Thierry Redingd1523b52013-08-09 16:49:19 +02001/*
Jay Agarwal94716cd2013-08-09 16:49:24 +02002 * PCIe host controller driver for Tegra SoCs
Thierry Redingd1523b52013-08-09 16:49:19 +02003 *
4 * Copyright (c) 2010, CompuLab, Ltd.
5 * Author: Mike Rapoport <mike@compulab.co.il>
6 *
7 * Based on NVIDIA PCIe driver
8 * Copyright (c) 2008-2009, NVIDIA Corporation.
9 *
10 * Bits taken from arch/arm/mach-dove/pcie.c
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 * more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 */
26
27#include <linux/clk.h>
Thierry Reding2cb989f2014-07-22 12:30:46 -060028#include <linux/debugfs.h>
Thierry Redingd1523b52013-08-09 16:49:19 +020029#include <linux/delay.h>
30#include <linux/export.h>
31#include <linux/interrupt.h>
32#include <linux/irq.h>
33#include <linux/irqdomain.h>
34#include <linux/kernel.h>
35#include <linux/module.h>
36#include <linux/msi.h>
37#include <linux/of_address.h>
38#include <linux/of_pci.h>
39#include <linux/of_platform.h>
40#include <linux/pci.h>
Thierry Reding7f1f0542014-08-26 17:11:38 +020041#include <linux/phy/phy.h>
Thierry Redingd1523b52013-08-09 16:49:19 +020042#include <linux/platform_device.h>
Stephen Warren3127a6b2013-11-06 15:56:58 -070043#include <linux/reset.h>
Thierry Redingd1523b52013-08-09 16:49:19 +020044#include <linux/sizes.h>
45#include <linux/slab.h>
Thierry Redingd1523b52013-08-09 16:49:19 +020046#include <linux/vmalloc.h>
47#include <linux/regulator/consumer.h>
48
Thierry Reding306a7f92014-07-17 13:17:24 +020049#include <soc/tegra/cpuidle.h>
Thierry Reding72323982014-07-11 13:19:06 +020050#include <soc/tegra/pmc.h>
Thierry Reding306a7f92014-07-17 13:17:24 +020051
Thierry Redingd1523b52013-08-09 16:49:19 +020052#include <asm/mach/irq.h>
53#include <asm/mach/map.h>
54#include <asm/mach/pci.h>
55
56#define INT_PCI_MSI_NR (8 * 32)
Thierry Redingd1523b52013-08-09 16:49:19 +020057
58/* register definitions */
59
60#define AFI_AXI_BAR0_SZ 0x00
61#define AFI_AXI_BAR1_SZ 0x04
62#define AFI_AXI_BAR2_SZ 0x08
63#define AFI_AXI_BAR3_SZ 0x0c
64#define AFI_AXI_BAR4_SZ 0x10
65#define AFI_AXI_BAR5_SZ 0x14
66
67#define AFI_AXI_BAR0_START 0x18
68#define AFI_AXI_BAR1_START 0x1c
69#define AFI_AXI_BAR2_START 0x20
70#define AFI_AXI_BAR3_START 0x24
71#define AFI_AXI_BAR4_START 0x28
72#define AFI_AXI_BAR5_START 0x2c
73
74#define AFI_FPCI_BAR0 0x30
75#define AFI_FPCI_BAR1 0x34
76#define AFI_FPCI_BAR2 0x38
77#define AFI_FPCI_BAR3 0x3c
78#define AFI_FPCI_BAR4 0x40
79#define AFI_FPCI_BAR5 0x44
80
81#define AFI_CACHE_BAR0_SZ 0x48
82#define AFI_CACHE_BAR0_ST 0x4c
83#define AFI_CACHE_BAR1_SZ 0x50
84#define AFI_CACHE_BAR1_ST 0x54
85
86#define AFI_MSI_BAR_SZ 0x60
87#define AFI_MSI_FPCI_BAR_ST 0x64
88#define AFI_MSI_AXI_BAR_ST 0x68
89
90#define AFI_MSI_VEC0 0x6c
91#define AFI_MSI_VEC1 0x70
92#define AFI_MSI_VEC2 0x74
93#define AFI_MSI_VEC3 0x78
94#define AFI_MSI_VEC4 0x7c
95#define AFI_MSI_VEC5 0x80
96#define AFI_MSI_VEC6 0x84
97#define AFI_MSI_VEC7 0x88
98
99#define AFI_MSI_EN_VEC0 0x8c
100#define AFI_MSI_EN_VEC1 0x90
101#define AFI_MSI_EN_VEC2 0x94
102#define AFI_MSI_EN_VEC3 0x98
103#define AFI_MSI_EN_VEC4 0x9c
104#define AFI_MSI_EN_VEC5 0xa0
105#define AFI_MSI_EN_VEC6 0xa4
106#define AFI_MSI_EN_VEC7 0xa8
107
108#define AFI_CONFIGURATION 0xac
109#define AFI_CONFIGURATION_EN_FPCI (1 << 0)
110
111#define AFI_FPCI_ERROR_MASKS 0xb0
112
113#define AFI_INTR_MASK 0xb4
114#define AFI_INTR_MASK_INT_MASK (1 << 0)
115#define AFI_INTR_MASK_MSI_MASK (1 << 8)
116
117#define AFI_INTR_CODE 0xb8
118#define AFI_INTR_CODE_MASK 0xf
Thierry Reding7f1f0542014-08-26 17:11:38 +0200119#define AFI_INTR_INI_SLAVE_ERROR 1
120#define AFI_INTR_INI_DECODE_ERROR 2
Thierry Redingd1523b52013-08-09 16:49:19 +0200121#define AFI_INTR_TARGET_ABORT 3
122#define AFI_INTR_MASTER_ABORT 4
123#define AFI_INTR_INVALID_WRITE 5
124#define AFI_INTR_LEGACY 6
125#define AFI_INTR_FPCI_DECODE_ERROR 7
Thierry Reding7f1f0542014-08-26 17:11:38 +0200126#define AFI_INTR_AXI_DECODE_ERROR 8
127#define AFI_INTR_FPCI_TIMEOUT 9
128#define AFI_INTR_PE_PRSNT_SENSE 10
129#define AFI_INTR_PE_CLKREQ_SENSE 11
130#define AFI_INTR_CLKCLAMP_SENSE 12
131#define AFI_INTR_RDY4PD_SENSE 13
132#define AFI_INTR_P2P_ERROR 14
Thierry Redingd1523b52013-08-09 16:49:19 +0200133
134#define AFI_INTR_SIGNATURE 0xbc
135#define AFI_UPPER_FPCI_ADDRESS 0xc0
136#define AFI_SM_INTR_ENABLE 0xc4
137#define AFI_SM_INTR_INTA_ASSERT (1 << 0)
138#define AFI_SM_INTR_INTB_ASSERT (1 << 1)
139#define AFI_SM_INTR_INTC_ASSERT (1 << 2)
140#define AFI_SM_INTR_INTD_ASSERT (1 << 3)
141#define AFI_SM_INTR_INTA_DEASSERT (1 << 4)
142#define AFI_SM_INTR_INTB_DEASSERT (1 << 5)
143#define AFI_SM_INTR_INTC_DEASSERT (1 << 6)
144#define AFI_SM_INTR_INTD_DEASSERT (1 << 7)
145
146#define AFI_AFI_INTR_ENABLE 0xc8
147#define AFI_INTR_EN_INI_SLVERR (1 << 0)
148#define AFI_INTR_EN_INI_DECERR (1 << 1)
149#define AFI_INTR_EN_TGT_SLVERR (1 << 2)
150#define AFI_INTR_EN_TGT_DECERR (1 << 3)
151#define AFI_INTR_EN_TGT_WRERR (1 << 4)
152#define AFI_INTR_EN_DFPCI_DECERR (1 << 5)
153#define AFI_INTR_EN_AXI_DECERR (1 << 6)
154#define AFI_INTR_EN_FPCI_TIMEOUT (1 << 7)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200155#define AFI_INTR_EN_PRSNT_SENSE (1 << 8)
Thierry Redingd1523b52013-08-09 16:49:19 +0200156
157#define AFI_PCIE_CONFIG 0x0f8
158#define AFI_PCIE_CONFIG_PCIE_DISABLE(x) (1 << ((x) + 1))
159#define AFI_PCIE_CONFIG_PCIE_DISABLE_ALL 0xe
160#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK (0xf << 20)
161#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE (0x0 << 20)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200162#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420 (0x0 << 20)
Thierry Reding7f1f0542014-08-26 17:11:38 +0200163#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1 (0x0 << 20)
Thierry Redingd1523b52013-08-09 16:49:19 +0200164#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL (0x1 << 20)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200165#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222 (0x1 << 20)
Thierry Reding7f1f0542014-08-26 17:11:38 +0200166#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1 (0x1 << 20)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200167#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411 (0x2 << 20)
Thierry Redingd1523b52013-08-09 16:49:19 +0200168
169#define AFI_FUSE 0x104
170#define AFI_FUSE_PCIE_T0_GEN2_DIS (1 << 2)
171
172#define AFI_PEX0_CTRL 0x110
173#define AFI_PEX1_CTRL 0x118
Jay Agarwal94716cd2013-08-09 16:49:24 +0200174#define AFI_PEX2_CTRL 0x128
Thierry Redingd1523b52013-08-09 16:49:19 +0200175#define AFI_PEX_CTRL_RST (1 << 0)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200176#define AFI_PEX_CTRL_CLKREQ_EN (1 << 1)
Thierry Redingd1523b52013-08-09 16:49:19 +0200177#define AFI_PEX_CTRL_REFCLK_EN (1 << 3)
Thierry Reding7f1f0542014-08-26 17:11:38 +0200178#define AFI_PEX_CTRL_OVERRIDE_EN (1 << 4)
179
180#define AFI_PLLE_CONTROL 0x160
181#define AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL (1 << 9)
182#define AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN (1 << 1)
Thierry Redingd1523b52013-08-09 16:49:19 +0200183
Jay Agarwal94716cd2013-08-09 16:49:24 +0200184#define AFI_PEXBIAS_CTRL_0 0x168
185
Thierry Redingd1523b52013-08-09 16:49:19 +0200186#define RP_VEND_XP 0x00000F00
187#define RP_VEND_XP_DL_UP (1 << 30)
188
Thierry Reding7f1f0542014-08-26 17:11:38 +0200189#define RP_PRIV_MISC 0x00000FE0
190#define RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT (0xE << 0)
191#define RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT (0xF << 0)
192
Thierry Redingd1523b52013-08-09 16:49:19 +0200193#define RP_LINK_CONTROL_STATUS 0x00000090
194#define RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE 0x20000000
195#define RP_LINK_CONTROL_STATUS_LINKSTAT_MASK 0x3fff0000
196
197#define PADS_CTL_SEL 0x0000009C
198
199#define PADS_CTL 0x000000A0
200#define PADS_CTL_IDDQ_1L (1 << 0)
201#define PADS_CTL_TX_DATA_EN_1L (1 << 6)
202#define PADS_CTL_RX_DATA_EN_1L (1 << 10)
203
Jay Agarwal94716cd2013-08-09 16:49:24 +0200204#define PADS_PLL_CTL_TEGRA20 0x000000B8
205#define PADS_PLL_CTL_TEGRA30 0x000000B4
Thierry Redingd1523b52013-08-09 16:49:19 +0200206#define PADS_PLL_CTL_RST_B4SM (1 << 1)
207#define PADS_PLL_CTL_LOCKDET (1 << 8)
208#define PADS_PLL_CTL_REFCLK_MASK (0x3 << 16)
209#define PADS_PLL_CTL_REFCLK_INTERNAL_CML (0 << 16)
210#define PADS_PLL_CTL_REFCLK_INTERNAL_CMOS (1 << 16)
211#define PADS_PLL_CTL_REFCLK_EXTERNAL (2 << 16)
212#define PADS_PLL_CTL_TXCLKREF_MASK (0x1 << 20)
213#define PADS_PLL_CTL_TXCLKREF_DIV10 (0 << 20)
214#define PADS_PLL_CTL_TXCLKREF_DIV5 (1 << 20)
Jay Agarwal94716cd2013-08-09 16:49:24 +0200215#define PADS_PLL_CTL_TXCLKREF_BUF_EN (1 << 22)
216
217#define PADS_REFCLK_CFG0 0x000000C8
218#define PADS_REFCLK_CFG1 0x000000CC
Thierry Reding7f1f0542014-08-26 17:11:38 +0200219#define PADS_REFCLK_BIAS 0x000000D0
Thierry Redingd1523b52013-08-09 16:49:19 +0200220
Stephen Warrenb02b07a2013-08-09 16:49:25 +0200221/*
222 * Fields in PADS_REFCLK_CFG*. Those registers form an array of 16-bit
223 * entries, one entry per PCIe port. These field definitions and desired
224 * values aren't in the TRM, but do come from NVIDIA.
225 */
226#define PADS_REFCLK_CFG_TERM_SHIFT 2 /* 6:2 */
227#define PADS_REFCLK_CFG_E_TERM_SHIFT 7
228#define PADS_REFCLK_CFG_PREDI_SHIFT 8 /* 11:8 */
229#define PADS_REFCLK_CFG_DRVI_SHIFT 12 /* 15:12 */
230
231/* Default value provided by HW engineering is 0xfa5c */
232#define PADS_REFCLK_CFG_VALUE \
233 ( \
234 (0x17 << PADS_REFCLK_CFG_TERM_SHIFT) | \
235 (0 << PADS_REFCLK_CFG_E_TERM_SHIFT) | \
236 (0xa << PADS_REFCLK_CFG_PREDI_SHIFT) | \
237 (0xf << PADS_REFCLK_CFG_DRVI_SHIFT) \
238 )
239
Thierry Redingd1523b52013-08-09 16:49:19 +0200240struct tegra_msi {
Yijing Wangc2791b82014-11-11 17:45:45 -0700241 struct msi_controller chip;
Thierry Redingd1523b52013-08-09 16:49:19 +0200242 DECLARE_BITMAP(used, INT_PCI_MSI_NR);
243 struct irq_domain *domain;
244 unsigned long pages;
245 struct mutex lock;
246 int irq;
247};
248
Jay Agarwal94716cd2013-08-09 16:49:24 +0200249/* used to differentiate between Tegra SoC generations */
250struct tegra_pcie_soc_data {
251 unsigned int num_ports;
252 unsigned int msi_base_shift;
253 u32 pads_pll_ctl;
254 u32 tx_ref_sel;
255 bool has_pex_clkreq_en;
256 bool has_pex_bias_ctrl;
257 bool has_intr_prsnt_sense;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200258 bool has_cml_clk;
Thierry Reding7f1f0542014-08-26 17:11:38 +0200259 bool has_gen2;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200260};
261
Yijing Wangc2791b82014-11-11 17:45:45 -0700262static inline struct tegra_msi *to_tegra_msi(struct msi_controller *chip)
Thierry Redingd1523b52013-08-09 16:49:19 +0200263{
264 return container_of(chip, struct tegra_msi, chip);
265}
266
267struct tegra_pcie {
268 struct device *dev;
269
270 void __iomem *pads;
271 void __iomem *afi;
272 int irq;
273
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700274 struct list_head buses;
Thierry Redingd1523b52013-08-09 16:49:19 +0200275 struct resource *cs;
276
Thierry Reding41534e52014-08-01 14:15:11 +0200277 struct resource all;
Thierry Redingd1523b52013-08-09 16:49:19 +0200278 struct resource io;
279 struct resource mem;
280 struct resource prefetch;
281 struct resource busn;
282
283 struct clk *pex_clk;
284 struct clk *afi_clk;
Thierry Redingd1523b52013-08-09 16:49:19 +0200285 struct clk *pll_e;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200286 struct clk *cml_clk;
Thierry Redingd1523b52013-08-09 16:49:19 +0200287
Stephen Warren3127a6b2013-11-06 15:56:58 -0700288 struct reset_control *pex_rst;
289 struct reset_control *afi_rst;
290 struct reset_control *pcie_xrst;
291
Thierry Reding7f1f0542014-08-26 17:11:38 +0200292 struct phy *phy;
293
Thierry Redingd1523b52013-08-09 16:49:19 +0200294 struct tegra_msi msi;
295
296 struct list_head ports;
297 unsigned int num_ports;
298 u32 xbar_config;
299
Thierry Reding077fb152014-05-28 16:49:13 +0200300 struct regulator_bulk_data *supplies;
301 unsigned int num_supplies;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200302
303 const struct tegra_pcie_soc_data *soc_data;
Thierry Reding2cb989f2014-07-22 12:30:46 -0600304 struct dentry *debugfs;
Thierry Redingd1523b52013-08-09 16:49:19 +0200305};
306
307struct tegra_pcie_port {
308 struct tegra_pcie *pcie;
309 struct list_head list;
310 struct resource regs;
311 void __iomem *base;
312 unsigned int index;
313 unsigned int lanes;
314};
315
316struct tegra_pcie_bus {
317 struct vm_struct *area;
318 struct list_head list;
319 unsigned int nr;
320};
321
322static inline struct tegra_pcie *sys_to_pcie(struct pci_sys_data *sys)
323{
324 return sys->private_data;
325}
326
327static inline void afi_writel(struct tegra_pcie *pcie, u32 value,
328 unsigned long offset)
329{
330 writel(value, pcie->afi + offset);
331}
332
333static inline u32 afi_readl(struct tegra_pcie *pcie, unsigned long offset)
334{
335 return readl(pcie->afi + offset);
336}
337
338static inline void pads_writel(struct tegra_pcie *pcie, u32 value,
339 unsigned long offset)
340{
341 writel(value, pcie->pads + offset);
342}
343
344static inline u32 pads_readl(struct tegra_pcie *pcie, unsigned long offset)
345{
346 return readl(pcie->pads + offset);
347}
348
349/*
350 * The configuration space mapping on Tegra is somewhat similar to the ECAM
351 * defined by PCIe. However it deviates a bit in how the 4 bits for extended
352 * register accesses are mapped:
353 *
354 * [27:24] extended register number
355 * [23:16] bus number
356 * [15:11] device number
357 * [10: 8] function number
358 * [ 7: 0] register number
359 *
360 * Mapping the whole extended configuration space would require 256 MiB of
361 * virtual address space, only a small part of which will actually be used.
362 * To work around this, a 1 MiB of virtual addresses are allocated per bus
363 * when the bus is first accessed. When the physical range is mapped, the
364 * the bus number bits are hidden so that the extended register number bits
365 * appear as bits [19:16]. Therefore the virtual mapping looks like this:
366 *
367 * [19:16] extended register number
368 * [15:11] device number
369 * [10: 8] function number
370 * [ 7: 0] register number
371 *
372 * This is achieved by stitching together 16 chunks of 64 KiB of physical
373 * address space via the MMU.
374 */
375static unsigned long tegra_pcie_conf_offset(unsigned int devfn, int where)
376{
377 return ((where & 0xf00) << 8) | (PCI_SLOT(devfn) << 11) |
378 (PCI_FUNC(devfn) << 8) | (where & 0xfc);
379}
380
381static struct tegra_pcie_bus *tegra_pcie_bus_alloc(struct tegra_pcie *pcie,
382 unsigned int busnr)
383{
384 pgprot_t prot = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | L_PTE_XN |
385 L_PTE_MT_DEV_SHARED | L_PTE_SHARED;
386 phys_addr_t cs = pcie->cs->start;
387 struct tegra_pcie_bus *bus;
388 unsigned int i;
389 int err;
390
391 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
392 if (!bus)
393 return ERR_PTR(-ENOMEM);
394
395 INIT_LIST_HEAD(&bus->list);
396 bus->nr = busnr;
397
398 /* allocate 1 MiB of virtual addresses */
399 bus->area = get_vm_area(SZ_1M, VM_IOREMAP);
400 if (!bus->area) {
401 err = -ENOMEM;
402 goto free;
403 }
404
405 /* map each of the 16 chunks of 64 KiB each */
406 for (i = 0; i < 16; i++) {
407 unsigned long virt = (unsigned long)bus->area->addr +
408 i * SZ_64K;
Peter Daifuku8d417942014-08-26 17:11:36 +0200409 phys_addr_t phys = cs + i * SZ_16M + busnr * SZ_64K;
Thierry Redingd1523b52013-08-09 16:49:19 +0200410
411 err = ioremap_page_range(virt, virt + SZ_64K, phys, prot);
412 if (err < 0) {
413 dev_err(pcie->dev, "ioremap_page_range() failed: %d\n",
414 err);
415 goto unmap;
416 }
417 }
418
419 return bus;
420
421unmap:
422 vunmap(bus->area->addr);
423free:
424 kfree(bus);
425 return ERR_PTR(err);
426}
427
428/*
429 * Look up a virtual address mapping for the specified bus number. If no such
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700430 * mapping exists, try to create one.
Thierry Redingd1523b52013-08-09 16:49:19 +0200431 */
432static void __iomem *tegra_pcie_bus_map(struct tegra_pcie *pcie,
433 unsigned int busnr)
434{
435 struct tegra_pcie_bus *bus;
436
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700437 list_for_each_entry(bus, &pcie->buses, list)
Thierry Redingd1523b52013-08-09 16:49:19 +0200438 if (bus->nr == busnr)
Jingoo Han1e652492013-09-25 16:40:54 -0600439 return (void __iomem *)bus->area->addr;
Thierry Redingd1523b52013-08-09 16:49:19 +0200440
441 bus = tegra_pcie_bus_alloc(pcie, busnr);
442 if (IS_ERR(bus))
443 return NULL;
444
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700445 list_add_tail(&bus->list, &pcie->buses);
Thierry Redingd1523b52013-08-09 16:49:19 +0200446
Jingoo Han1e652492013-09-25 16:40:54 -0600447 return (void __iomem *)bus->area->addr;
Thierry Redingd1523b52013-08-09 16:49:19 +0200448}
449
450static void __iomem *tegra_pcie_conf_address(struct pci_bus *bus,
451 unsigned int devfn,
452 int where)
453{
454 struct tegra_pcie *pcie = sys_to_pcie(bus->sysdata);
455 void __iomem *addr = NULL;
456
457 if (bus->number == 0) {
458 unsigned int slot = PCI_SLOT(devfn);
459 struct tegra_pcie_port *port;
460
461 list_for_each_entry(port, &pcie->ports, list) {
462 if (port->index + 1 == slot) {
463 addr = port->base + (where & ~3);
464 break;
465 }
466 }
467 } else {
468 addr = tegra_pcie_bus_map(pcie, bus->number);
469 if (!addr) {
470 dev_err(pcie->dev,
471 "failed to map cfg. space for bus %u\n",
472 bus->number);
473 return NULL;
474 }
475
476 addr += tegra_pcie_conf_offset(devfn, where);
477 }
478
479 return addr;
480}
481
482static int tegra_pcie_read_conf(struct pci_bus *bus, unsigned int devfn,
483 int where, int size, u32 *value)
484{
485 void __iomem *addr;
486
487 addr = tegra_pcie_conf_address(bus, devfn, where);
488 if (!addr) {
489 *value = 0xffffffff;
490 return PCIBIOS_DEVICE_NOT_FOUND;
491 }
492
493 *value = readl(addr);
494
495 if (size == 1)
496 *value = (*value >> (8 * (where & 3))) & 0xff;
497 else if (size == 2)
498 *value = (*value >> (8 * (where & 3))) & 0xffff;
499
500 return PCIBIOS_SUCCESSFUL;
501}
502
503static int tegra_pcie_write_conf(struct pci_bus *bus, unsigned int devfn,
504 int where, int size, u32 value)
505{
506 void __iomem *addr;
507 u32 mask, tmp;
508
509 addr = tegra_pcie_conf_address(bus, devfn, where);
510 if (!addr)
511 return PCIBIOS_DEVICE_NOT_FOUND;
512
513 if (size == 4) {
514 writel(value, addr);
515 return PCIBIOS_SUCCESSFUL;
516 }
517
518 if (size == 2)
519 mask = ~(0xffff << ((where & 0x3) * 8));
520 else if (size == 1)
521 mask = ~(0xff << ((where & 0x3) * 8));
522 else
523 return PCIBIOS_BAD_REGISTER_NUMBER;
524
525 tmp = readl(addr) & mask;
526 tmp |= value << ((where & 0x3) * 8);
527 writel(tmp, addr);
528
529 return PCIBIOS_SUCCESSFUL;
530}
531
532static struct pci_ops tegra_pcie_ops = {
533 .read = tegra_pcie_read_conf,
534 .write = tegra_pcie_write_conf,
535};
536
537static unsigned long tegra_pcie_port_get_pex_ctrl(struct tegra_pcie_port *port)
538{
539 unsigned long ret = 0;
540
541 switch (port->index) {
542 case 0:
543 ret = AFI_PEX0_CTRL;
544 break;
545
546 case 1:
547 ret = AFI_PEX1_CTRL;
548 break;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200549
550 case 2:
551 ret = AFI_PEX2_CTRL;
552 break;
Thierry Redingd1523b52013-08-09 16:49:19 +0200553 }
554
555 return ret;
556}
557
558static void tegra_pcie_port_reset(struct tegra_pcie_port *port)
559{
560 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
561 unsigned long value;
562
563 /* pulse reset signal */
564 value = afi_readl(port->pcie, ctrl);
565 value &= ~AFI_PEX_CTRL_RST;
566 afi_writel(port->pcie, value, ctrl);
567
568 usleep_range(1000, 2000);
569
570 value = afi_readl(port->pcie, ctrl);
571 value |= AFI_PEX_CTRL_RST;
572 afi_writel(port->pcie, value, ctrl);
573}
574
575static void tegra_pcie_port_enable(struct tegra_pcie_port *port)
576{
Jay Agarwal94716cd2013-08-09 16:49:24 +0200577 const struct tegra_pcie_soc_data *soc = port->pcie->soc_data;
Thierry Redingd1523b52013-08-09 16:49:19 +0200578 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
579 unsigned long value;
580
581 /* enable reference clock */
582 value = afi_readl(port->pcie, ctrl);
583 value |= AFI_PEX_CTRL_REFCLK_EN;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200584
585 if (soc->has_pex_clkreq_en)
586 value |= AFI_PEX_CTRL_CLKREQ_EN;
587
Thierry Reding7f1f0542014-08-26 17:11:38 +0200588 value |= AFI_PEX_CTRL_OVERRIDE_EN;
589
Thierry Redingd1523b52013-08-09 16:49:19 +0200590 afi_writel(port->pcie, value, ctrl);
591
592 tegra_pcie_port_reset(port);
593}
594
595static void tegra_pcie_port_disable(struct tegra_pcie_port *port)
596{
Thierry Reding0d20d622014-08-26 17:11:35 +0200597 const struct tegra_pcie_soc_data *soc = port->pcie->soc_data;
Thierry Redingd1523b52013-08-09 16:49:19 +0200598 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
599 unsigned long value;
600
601 /* assert port reset */
602 value = afi_readl(port->pcie, ctrl);
603 value &= ~AFI_PEX_CTRL_RST;
604 afi_writel(port->pcie, value, ctrl);
605
606 /* disable reference clock */
607 value = afi_readl(port->pcie, ctrl);
Thierry Reding0d20d622014-08-26 17:11:35 +0200608
609 if (soc->has_pex_clkreq_en)
610 value &= ~AFI_PEX_CTRL_CLKREQ_EN;
611
Thierry Redingd1523b52013-08-09 16:49:19 +0200612 value &= ~AFI_PEX_CTRL_REFCLK_EN;
613 afi_writel(port->pcie, value, ctrl);
614}
615
616static void tegra_pcie_port_free(struct tegra_pcie_port *port)
617{
618 struct tegra_pcie *pcie = port->pcie;
619
620 devm_iounmap(pcie->dev, port->base);
621 devm_release_mem_region(pcie->dev, port->regs.start,
622 resource_size(&port->regs));
623 list_del(&port->list);
624 devm_kfree(pcie->dev, port);
625}
626
627static void tegra_pcie_fixup_bridge(struct pci_dev *dev)
628{
629 u16 reg;
630
631 if ((dev->class >> 16) == PCI_BASE_CLASS_BRIDGE) {
632 pci_read_config_word(dev, PCI_COMMAND, &reg);
633 reg |= (PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
634 PCI_COMMAND_MASTER | PCI_COMMAND_SERR);
635 pci_write_config_word(dev, PCI_COMMAND, reg);
636 }
637}
638DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, tegra_pcie_fixup_bridge);
639
640/* Tegra PCIE root complex wrongly reports device class */
641static void tegra_pcie_fixup_class(struct pci_dev *dev)
642{
643 dev->class = PCI_CLASS_BRIDGE_PCI << 8;
644}
645DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA, 0x0bf0, tegra_pcie_fixup_class);
646DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA, 0x0bf1, tegra_pcie_fixup_class);
Jay Agarwal94716cd2013-08-09 16:49:24 +0200647DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA, 0x0e1c, tegra_pcie_fixup_class);
648DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA, 0x0e1d, tegra_pcie_fixup_class);
Thierry Redingd1523b52013-08-09 16:49:19 +0200649
650/* Tegra PCIE requires relaxed ordering */
651static void tegra_pcie_relax_enable(struct pci_dev *dev)
652{
653 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
654}
655DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, tegra_pcie_relax_enable);
656
657static int tegra_pcie_setup(int nr, struct pci_sys_data *sys)
658{
659 struct tegra_pcie *pcie = sys_to_pcie(sys);
Thierry Reding41534e52014-08-01 14:15:11 +0200660 int err;
Bjorn Helgaas07a7cbd2014-10-01 12:31:23 -0600661 phys_addr_t io_start;
Thierry Reding41534e52014-08-01 14:15:11 +0200662
663 err = devm_request_resource(pcie->dev, &pcie->all, &pcie->mem);
664 if (err < 0)
665 return err;
666
667 err = devm_request_resource(pcie->dev, &pcie->all, &pcie->prefetch);
668 if (err)
669 return err;
Thierry Redingd1523b52013-08-09 16:49:19 +0200670
Bjorn Helgaas07a7cbd2014-10-01 12:31:23 -0600671 io_start = pci_pio_to_address(pcie->io.start);
Thierry Redingd1523b52013-08-09 16:49:19 +0200672
673 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
674 pci_add_resource_offset(&sys->resources, &pcie->prefetch,
675 sys->mem_offset);
676 pci_add_resource(&sys->resources, &pcie->busn);
677
Liviu Dudau0b0b0892014-09-29 15:29:25 +0100678 pci_ioremap_io(nr * SZ_64K, io_start);
Thierry Redingd1523b52013-08-09 16:49:19 +0200679
680 return 1;
681}
682
683static int tegra_pcie_map_irq(const struct pci_dev *pdev, u8 slot, u8 pin)
684{
685 struct tegra_pcie *pcie = sys_to_pcie(pdev->bus->sysdata);
Lucas Stachf5d33522014-04-16 10:24:32 -0600686 int irq;
Thierry Redingd1523b52013-08-09 16:49:19 +0200687
Stephen Warrenb4f17372013-05-06 14:19:19 -0600688 tegra_cpuidle_pcie_irqs_in_use();
689
Lucas Stachf5d33522014-04-16 10:24:32 -0600690 irq = of_irq_parse_and_map_pci(pdev, slot, pin);
691 if (!irq)
692 irq = pcie->irq;
693
694 return irq;
Thierry Redingd1523b52013-08-09 16:49:19 +0200695}
696
697static void tegra_pcie_add_bus(struct pci_bus *bus)
698{
699 if (IS_ENABLED(CONFIG_PCI_MSI)) {
700 struct tegra_pcie *pcie = sys_to_pcie(bus->sysdata);
701
702 bus->msi = &pcie->msi.chip;
703 }
704}
705
706static struct pci_bus *tegra_pcie_scan_bus(int nr, struct pci_sys_data *sys)
707{
708 struct tegra_pcie *pcie = sys_to_pcie(sys);
709 struct pci_bus *bus;
710
711 bus = pci_create_root_bus(pcie->dev, sys->busnr, &tegra_pcie_ops, sys,
712 &sys->resources);
713 if (!bus)
714 return NULL;
715
716 pci_scan_child_bus(bus);
717
718 return bus;
719}
720
721static irqreturn_t tegra_pcie_isr(int irq, void *arg)
722{
723 const char *err_msg[] = {
724 "Unknown",
725 "AXI slave error",
726 "AXI decode error",
727 "Target abort",
728 "Master abort",
729 "Invalid write",
Thierry Reding7f1f0542014-08-26 17:11:38 +0200730 "Legacy interrupt",
Thierry Redingd1523b52013-08-09 16:49:19 +0200731 "Response decoding error",
732 "AXI response decoding error",
733 "Transaction timeout",
Thierry Reding7f1f0542014-08-26 17:11:38 +0200734 "Slot present pin change",
735 "Slot clock request change",
736 "TMS clock ramp change",
737 "TMS ready for power down",
738 "Peer2Peer error",
Thierry Redingd1523b52013-08-09 16:49:19 +0200739 };
740 struct tegra_pcie *pcie = arg;
741 u32 code, signature;
742
743 code = afi_readl(pcie, AFI_INTR_CODE) & AFI_INTR_CODE_MASK;
744 signature = afi_readl(pcie, AFI_INTR_SIGNATURE);
745 afi_writel(pcie, 0, AFI_INTR_CODE);
746
747 if (code == AFI_INTR_LEGACY)
748 return IRQ_NONE;
749
750 if (code >= ARRAY_SIZE(err_msg))
751 code = 0;
752
753 /*
754 * do not pollute kernel log with master abort reports since they
755 * happen a lot during enumeration
756 */
757 if (code == AFI_INTR_MASTER_ABORT)
758 dev_dbg(pcie->dev, "%s, signature: %08x\n", err_msg[code],
759 signature);
760 else
761 dev_err(pcie->dev, "%s, signature: %08x\n", err_msg[code],
762 signature);
763
764 if (code == AFI_INTR_TARGET_ABORT || code == AFI_INTR_MASTER_ABORT ||
765 code == AFI_INTR_FPCI_DECODE_ERROR) {
766 u32 fpci = afi_readl(pcie, AFI_UPPER_FPCI_ADDRESS) & 0xff;
767 u64 address = (u64)fpci << 32 | (signature & 0xfffffffc);
768
769 if (code == AFI_INTR_MASTER_ABORT)
770 dev_dbg(pcie->dev, " FPCI address: %10llx\n", address);
771 else
772 dev_err(pcie->dev, " FPCI address: %10llx\n", address);
773 }
774
775 return IRQ_HANDLED;
776}
777
778/*
779 * FPCI map is as follows:
780 * - 0xfdfc000000: I/O space
781 * - 0xfdfe000000: type 0 configuration space
782 * - 0xfdff000000: type 1 configuration space
783 * - 0xfe00000000: type 0 extended configuration space
784 * - 0xfe10000000: type 1 extended configuration space
785 */
786static void tegra_pcie_setup_translations(struct tegra_pcie *pcie)
787{
788 u32 fpci_bar, size, axi_address;
Liviu Dudau0b0b0892014-09-29 15:29:25 +0100789 phys_addr_t io_start = pci_pio_to_address(pcie->io.start);
Thierry Redingd1523b52013-08-09 16:49:19 +0200790
791 /* Bar 0: type 1 extended configuration space */
792 fpci_bar = 0xfe100000;
793 size = resource_size(pcie->cs);
794 axi_address = pcie->cs->start;
795 afi_writel(pcie, axi_address, AFI_AXI_BAR0_START);
796 afi_writel(pcie, size >> 12, AFI_AXI_BAR0_SZ);
797 afi_writel(pcie, fpci_bar, AFI_FPCI_BAR0);
798
799 /* Bar 1: downstream IO bar */
800 fpci_bar = 0xfdfc0000;
801 size = resource_size(&pcie->io);
Liviu Dudau0b0b0892014-09-29 15:29:25 +0100802 axi_address = io_start;
Thierry Redingd1523b52013-08-09 16:49:19 +0200803 afi_writel(pcie, axi_address, AFI_AXI_BAR1_START);
804 afi_writel(pcie, size >> 12, AFI_AXI_BAR1_SZ);
805 afi_writel(pcie, fpci_bar, AFI_FPCI_BAR1);
806
807 /* Bar 2: prefetchable memory BAR */
808 fpci_bar = (((pcie->prefetch.start >> 12) & 0x0fffffff) << 4) | 0x1;
809 size = resource_size(&pcie->prefetch);
810 axi_address = pcie->prefetch.start;
811 afi_writel(pcie, axi_address, AFI_AXI_BAR2_START);
812 afi_writel(pcie, size >> 12, AFI_AXI_BAR2_SZ);
813 afi_writel(pcie, fpci_bar, AFI_FPCI_BAR2);
814
815 /* Bar 3: non prefetchable memory BAR */
816 fpci_bar = (((pcie->mem.start >> 12) & 0x0fffffff) << 4) | 0x1;
817 size = resource_size(&pcie->mem);
818 axi_address = pcie->mem.start;
819 afi_writel(pcie, axi_address, AFI_AXI_BAR3_START);
820 afi_writel(pcie, size >> 12, AFI_AXI_BAR3_SZ);
821 afi_writel(pcie, fpci_bar, AFI_FPCI_BAR3);
822
823 /* NULL out the remaining BARs as they are not used */
824 afi_writel(pcie, 0, AFI_AXI_BAR4_START);
825 afi_writel(pcie, 0, AFI_AXI_BAR4_SZ);
826 afi_writel(pcie, 0, AFI_FPCI_BAR4);
827
828 afi_writel(pcie, 0, AFI_AXI_BAR5_START);
829 afi_writel(pcie, 0, AFI_AXI_BAR5_SZ);
830 afi_writel(pcie, 0, AFI_FPCI_BAR5);
831
832 /* map all upstream transactions as uncached */
833 afi_writel(pcie, PHYS_OFFSET, AFI_CACHE_BAR0_ST);
834 afi_writel(pcie, 0, AFI_CACHE_BAR0_SZ);
835 afi_writel(pcie, 0, AFI_CACHE_BAR1_ST);
836 afi_writel(pcie, 0, AFI_CACHE_BAR1_SZ);
837
838 /* MSI translations are setup only when needed */
839 afi_writel(pcie, 0, AFI_MSI_FPCI_BAR_ST);
840 afi_writel(pcie, 0, AFI_MSI_BAR_SZ);
841 afi_writel(pcie, 0, AFI_MSI_AXI_BAR_ST);
842 afi_writel(pcie, 0, AFI_MSI_BAR_SZ);
843}
844
Thierry Reding7f1f0542014-08-26 17:11:38 +0200845static int tegra_pcie_pll_wait(struct tegra_pcie *pcie, unsigned long timeout)
Thierry Redingd1523b52013-08-09 16:49:19 +0200846{
Jay Agarwal94716cd2013-08-09 16:49:24 +0200847 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
Thierry Reding7f1f0542014-08-26 17:11:38 +0200848 u32 value;
Thierry Redingd1523b52013-08-09 16:49:19 +0200849
Thierry Reding7f1f0542014-08-26 17:11:38 +0200850 timeout = jiffies + msecs_to_jiffies(timeout);
Jay Agarwal94716cd2013-08-09 16:49:24 +0200851
Thierry Reding7f1f0542014-08-26 17:11:38 +0200852 while (time_before(jiffies, timeout)) {
853 value = pads_readl(pcie, soc->pads_pll_ctl);
854 if (value & PADS_PLL_CTL_LOCKDET)
855 return 0;
856 }
Thierry Redingd1523b52013-08-09 16:49:19 +0200857
Thierry Reding7f1f0542014-08-26 17:11:38 +0200858 return -ETIMEDOUT;
859}
Thierry Redingd1523b52013-08-09 16:49:19 +0200860
Thierry Reding7f1f0542014-08-26 17:11:38 +0200861static int tegra_pcie_phy_enable(struct tegra_pcie *pcie)
862{
863 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
864 u32 value;
865 int err;
Thierry Redingd1523b52013-08-09 16:49:19 +0200866
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700867 /* initialize internal PHY, enable up to 16 PCIE lanes */
Thierry Redingd1523b52013-08-09 16:49:19 +0200868 pads_writel(pcie, 0x0, PADS_CTL_SEL);
869
870 /* override IDDQ to 1 on all 4 lanes */
871 value = pads_readl(pcie, PADS_CTL);
872 value |= PADS_CTL_IDDQ_1L;
873 pads_writel(pcie, value, PADS_CTL);
874
875 /*
876 * Set up PHY PLL inputs select PLLE output as refclock,
877 * set TX ref sel to div10 (not div5).
878 */
Jay Agarwal94716cd2013-08-09 16:49:24 +0200879 value = pads_readl(pcie, soc->pads_pll_ctl);
Thierry Redingd1523b52013-08-09 16:49:19 +0200880 value &= ~(PADS_PLL_CTL_REFCLK_MASK | PADS_PLL_CTL_TXCLKREF_MASK);
Jay Agarwal94716cd2013-08-09 16:49:24 +0200881 value |= PADS_PLL_CTL_REFCLK_INTERNAL_CML | soc->tx_ref_sel;
882 pads_writel(pcie, value, soc->pads_pll_ctl);
Thierry Redingd1523b52013-08-09 16:49:19 +0200883
Eric Yuenec732762014-08-26 17:11:37 +0200884 /* reset PLL */
885 value = pads_readl(pcie, soc->pads_pll_ctl);
886 value &= ~PADS_PLL_CTL_RST_B4SM;
887 pads_writel(pcie, value, soc->pads_pll_ctl);
888
889 usleep_range(20, 100);
890
Thierry Redingd1523b52013-08-09 16:49:19 +0200891 /* take PLL out of reset */
Jay Agarwal94716cd2013-08-09 16:49:24 +0200892 value = pads_readl(pcie, soc->pads_pll_ctl);
Thierry Redingd1523b52013-08-09 16:49:19 +0200893 value |= PADS_PLL_CTL_RST_B4SM;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200894 pads_writel(pcie, value, soc->pads_pll_ctl);
Thierry Redingd1523b52013-08-09 16:49:19 +0200895
Stephen Warrenb02b07a2013-08-09 16:49:25 +0200896 /* Configure the reference clock driver */
897 value = PADS_REFCLK_CFG_VALUE | (PADS_REFCLK_CFG_VALUE << 16);
898 pads_writel(pcie, value, PADS_REFCLK_CFG0);
899 if (soc->num_ports > 2)
900 pads_writel(pcie, PADS_REFCLK_CFG_VALUE, PADS_REFCLK_CFG1);
Thierry Redingd1523b52013-08-09 16:49:19 +0200901
902 /* wait for the PLL to lock */
Thierry Reding7f1f0542014-08-26 17:11:38 +0200903 err = tegra_pcie_pll_wait(pcie, 500);
904 if (err < 0) {
905 dev_err(pcie->dev, "PLL failed to lock: %d\n", err);
906 return err;
907 }
Thierry Redingd1523b52013-08-09 16:49:19 +0200908
909 /* turn off IDDQ override */
910 value = pads_readl(pcie, PADS_CTL);
911 value &= ~PADS_CTL_IDDQ_1L;
912 pads_writel(pcie, value, PADS_CTL);
913
914 /* enable TX/RX data */
915 value = pads_readl(pcie, PADS_CTL);
916 value |= PADS_CTL_TX_DATA_EN_1L | PADS_CTL_RX_DATA_EN_1L;
917 pads_writel(pcie, value, PADS_CTL);
918
Thierry Reding7f1f0542014-08-26 17:11:38 +0200919 return 0;
920}
921
922static int tegra_pcie_enable_controller(struct tegra_pcie *pcie)
923{
924 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
925 struct tegra_pcie_port *port;
926 unsigned long value;
927 int err;
928
929 /* enable PLL power down */
930 if (pcie->phy) {
931 value = afi_readl(pcie, AFI_PLLE_CONTROL);
932 value &= ~AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL;
933 value |= AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN;
934 afi_writel(pcie, value, AFI_PLLE_CONTROL);
935 }
936
937 /* power down PCIe slot clock bias pad */
938 if (soc->has_pex_bias_ctrl)
939 afi_writel(pcie, 0, AFI_PEXBIAS_CTRL_0);
940
941 /* configure mode and disable all ports */
942 value = afi_readl(pcie, AFI_PCIE_CONFIG);
943 value &= ~AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK;
944 value |= AFI_PCIE_CONFIG_PCIE_DISABLE_ALL | pcie->xbar_config;
945
946 list_for_each_entry(port, &pcie->ports, list)
947 value &= ~AFI_PCIE_CONFIG_PCIE_DISABLE(port->index);
948
949 afi_writel(pcie, value, AFI_PCIE_CONFIG);
950
951 if (soc->has_gen2) {
952 value = afi_readl(pcie, AFI_FUSE);
953 value &= ~AFI_FUSE_PCIE_T0_GEN2_DIS;
954 afi_writel(pcie, value, AFI_FUSE);
955 } else {
956 value = afi_readl(pcie, AFI_FUSE);
957 value |= AFI_FUSE_PCIE_T0_GEN2_DIS;
958 afi_writel(pcie, value, AFI_FUSE);
959 }
960
961 if (!pcie->phy)
962 err = tegra_pcie_phy_enable(pcie);
963 else
964 err = phy_power_on(pcie->phy);
965
966 if (err < 0) {
967 dev_err(pcie->dev, "failed to power on PHY: %d\n", err);
968 return err;
969 }
970
Thierry Redingd1523b52013-08-09 16:49:19 +0200971 /* take the PCIe interface module out of reset */
Stephen Warren3127a6b2013-11-06 15:56:58 -0700972 reset_control_deassert(pcie->pcie_xrst);
Thierry Redingd1523b52013-08-09 16:49:19 +0200973
974 /* finally enable PCIe */
975 value = afi_readl(pcie, AFI_CONFIGURATION);
976 value |= AFI_CONFIGURATION_EN_FPCI;
977 afi_writel(pcie, value, AFI_CONFIGURATION);
978
979 value = AFI_INTR_EN_INI_SLVERR | AFI_INTR_EN_INI_DECERR |
980 AFI_INTR_EN_TGT_SLVERR | AFI_INTR_EN_TGT_DECERR |
981 AFI_INTR_EN_TGT_WRERR | AFI_INTR_EN_DFPCI_DECERR;
Jay Agarwal94716cd2013-08-09 16:49:24 +0200982
983 if (soc->has_intr_prsnt_sense)
984 value |= AFI_INTR_EN_PRSNT_SENSE;
985
Thierry Redingd1523b52013-08-09 16:49:19 +0200986 afi_writel(pcie, value, AFI_AFI_INTR_ENABLE);
987 afi_writel(pcie, 0xffffffff, AFI_SM_INTR_ENABLE);
988
989 /* don't enable MSI for now, only when needed */
990 afi_writel(pcie, AFI_INTR_MASK_INT_MASK, AFI_INTR_MASK);
991
992 /* disable all exceptions */
993 afi_writel(pcie, 0, AFI_FPCI_ERROR_MASKS);
994
995 return 0;
996}
997
998static void tegra_pcie_power_off(struct tegra_pcie *pcie)
999{
1000 int err;
1001
1002 /* TODO: disable and unprepare clocks? */
1003
Thierry Reding7f1f0542014-08-26 17:11:38 +02001004 err = phy_power_off(pcie->phy);
1005 if (err < 0)
1006 dev_warn(pcie->dev, "failed to power off PHY: %d\n", err);
1007
Stephen Warren3127a6b2013-11-06 15:56:58 -07001008 reset_control_assert(pcie->pcie_xrst);
1009 reset_control_assert(pcie->afi_rst);
1010 reset_control_assert(pcie->pex_rst);
Thierry Redingd1523b52013-08-09 16:49:19 +02001011
1012 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE);
1013
Thierry Reding077fb152014-05-28 16:49:13 +02001014 err = regulator_bulk_disable(pcie->num_supplies, pcie->supplies);
Thierry Redingd1523b52013-08-09 16:49:19 +02001015 if (err < 0)
Thierry Reding077fb152014-05-28 16:49:13 +02001016 dev_warn(pcie->dev, "failed to disable regulators: %d\n", err);
Thierry Redingd1523b52013-08-09 16:49:19 +02001017}
1018
1019static int tegra_pcie_power_on(struct tegra_pcie *pcie)
1020{
Jay Agarwal94716cd2013-08-09 16:49:24 +02001021 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
Thierry Redingd1523b52013-08-09 16:49:19 +02001022 int err;
1023
Stephen Warren3127a6b2013-11-06 15:56:58 -07001024 reset_control_assert(pcie->pcie_xrst);
1025 reset_control_assert(pcie->afi_rst);
1026 reset_control_assert(pcie->pex_rst);
Thierry Redingd1523b52013-08-09 16:49:19 +02001027
1028 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE);
1029
1030 /* enable regulators */
Thierry Reding077fb152014-05-28 16:49:13 +02001031 err = regulator_bulk_enable(pcie->num_supplies, pcie->supplies);
1032 if (err < 0)
1033 dev_err(pcie->dev, "failed to enable regulators: %d\n", err);
Jay Agarwal94716cd2013-08-09 16:49:24 +02001034
Thierry Redingd1523b52013-08-09 16:49:19 +02001035 err = tegra_powergate_sequence_power_up(TEGRA_POWERGATE_PCIE,
Stephen Warren80b28792013-11-06 15:45:46 -07001036 pcie->pex_clk,
1037 pcie->pex_rst);
Thierry Redingd1523b52013-08-09 16:49:19 +02001038 if (err) {
1039 dev_err(pcie->dev, "powerup sequence failed: %d\n", err);
1040 return err;
1041 }
1042
Stephen Warren3127a6b2013-11-06 15:56:58 -07001043 reset_control_deassert(pcie->afi_rst);
Thierry Redingd1523b52013-08-09 16:49:19 +02001044
1045 err = clk_prepare_enable(pcie->afi_clk);
1046 if (err < 0) {
1047 dev_err(pcie->dev, "failed to enable AFI clock: %d\n", err);
1048 return err;
1049 }
1050
Jay Agarwal94716cd2013-08-09 16:49:24 +02001051 if (soc->has_cml_clk) {
1052 err = clk_prepare_enable(pcie->cml_clk);
1053 if (err < 0) {
1054 dev_err(pcie->dev, "failed to enable CML clock: %d\n",
1055 err);
1056 return err;
1057 }
1058 }
1059
Thierry Redingd1523b52013-08-09 16:49:19 +02001060 err = clk_prepare_enable(pcie->pll_e);
1061 if (err < 0) {
1062 dev_err(pcie->dev, "failed to enable PLLE clock: %d\n", err);
1063 return err;
1064 }
1065
1066 return 0;
1067}
1068
1069static int tegra_pcie_clocks_get(struct tegra_pcie *pcie)
1070{
Jay Agarwal94716cd2013-08-09 16:49:24 +02001071 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
1072
Thierry Redingd1523b52013-08-09 16:49:19 +02001073 pcie->pex_clk = devm_clk_get(pcie->dev, "pex");
1074 if (IS_ERR(pcie->pex_clk))
1075 return PTR_ERR(pcie->pex_clk);
1076
1077 pcie->afi_clk = devm_clk_get(pcie->dev, "afi");
1078 if (IS_ERR(pcie->afi_clk))
1079 return PTR_ERR(pcie->afi_clk);
1080
Thierry Redingd1523b52013-08-09 16:49:19 +02001081 pcie->pll_e = devm_clk_get(pcie->dev, "pll_e");
1082 if (IS_ERR(pcie->pll_e))
1083 return PTR_ERR(pcie->pll_e);
1084
Jay Agarwal94716cd2013-08-09 16:49:24 +02001085 if (soc->has_cml_clk) {
1086 pcie->cml_clk = devm_clk_get(pcie->dev, "cml");
1087 if (IS_ERR(pcie->cml_clk))
1088 return PTR_ERR(pcie->cml_clk);
1089 }
1090
Thierry Redingd1523b52013-08-09 16:49:19 +02001091 return 0;
1092}
1093
Stephen Warren3127a6b2013-11-06 15:56:58 -07001094static int tegra_pcie_resets_get(struct tegra_pcie *pcie)
1095{
1096 pcie->pex_rst = devm_reset_control_get(pcie->dev, "pex");
1097 if (IS_ERR(pcie->pex_rst))
1098 return PTR_ERR(pcie->pex_rst);
1099
1100 pcie->afi_rst = devm_reset_control_get(pcie->dev, "afi");
1101 if (IS_ERR(pcie->afi_rst))
1102 return PTR_ERR(pcie->afi_rst);
1103
1104 pcie->pcie_xrst = devm_reset_control_get(pcie->dev, "pcie_x");
1105 if (IS_ERR(pcie->pcie_xrst))
1106 return PTR_ERR(pcie->pcie_xrst);
1107
1108 return 0;
1109}
1110
Thierry Redingd1523b52013-08-09 16:49:19 +02001111static int tegra_pcie_get_resources(struct tegra_pcie *pcie)
1112{
1113 struct platform_device *pdev = to_platform_device(pcie->dev);
1114 struct resource *pads, *afi, *res;
1115 int err;
1116
1117 err = tegra_pcie_clocks_get(pcie);
1118 if (err) {
1119 dev_err(&pdev->dev, "failed to get clocks: %d\n", err);
1120 return err;
1121 }
1122
Stephen Warren3127a6b2013-11-06 15:56:58 -07001123 err = tegra_pcie_resets_get(pcie);
1124 if (err) {
1125 dev_err(&pdev->dev, "failed to get resets: %d\n", err);
1126 return err;
1127 }
1128
Thierry Reding7f1f0542014-08-26 17:11:38 +02001129 pcie->phy = devm_phy_optional_get(pcie->dev, "pcie");
1130 if (IS_ERR(pcie->phy)) {
1131 err = PTR_ERR(pcie->phy);
1132 dev_err(&pdev->dev, "failed to get PHY: %d\n", err);
1133 return err;
1134 }
1135
1136 err = phy_init(pcie->phy);
1137 if (err < 0) {
1138 dev_err(&pdev->dev, "failed to initialize PHY: %d\n", err);
1139 return err;
1140 }
1141
Thierry Redingd1523b52013-08-09 16:49:19 +02001142 err = tegra_pcie_power_on(pcie);
1143 if (err) {
1144 dev_err(&pdev->dev, "failed to power up: %d\n", err);
1145 return err;
1146 }
1147
Thierry Redingd1523b52013-08-09 16:49:19 +02001148 pads = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pads");
Julia Lawalldc05ee32013-08-26 11:11:09 +02001149 pcie->pads = devm_ioremap_resource(&pdev->dev, pads);
1150 if (IS_ERR(pcie->pads)) {
1151 err = PTR_ERR(pcie->pads);
Thierry Redingd1523b52013-08-09 16:49:19 +02001152 goto poweroff;
1153 }
1154
1155 afi = platform_get_resource_byname(pdev, IORESOURCE_MEM, "afi");
Julia Lawalldc05ee32013-08-26 11:11:09 +02001156 pcie->afi = devm_ioremap_resource(&pdev->dev, afi);
1157 if (IS_ERR(pcie->afi)) {
1158 err = PTR_ERR(pcie->afi);
Thierry Redingd1523b52013-08-09 16:49:19 +02001159 goto poweroff;
1160 }
1161
Julia Lawalldc05ee32013-08-26 11:11:09 +02001162 /* request configuration space, but remap later, on demand */
Thierry Redingd1523b52013-08-09 16:49:19 +02001163 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cs");
1164 if (!res) {
1165 err = -EADDRNOTAVAIL;
1166 goto poweroff;
1167 }
1168
1169 pcie->cs = devm_request_mem_region(pcie->dev, res->start,
1170 resource_size(res), res->name);
1171 if (!pcie->cs) {
1172 err = -EADDRNOTAVAIL;
1173 goto poweroff;
1174 }
1175
1176 /* request interrupt */
1177 err = platform_get_irq_byname(pdev, "intr");
1178 if (err < 0) {
1179 dev_err(&pdev->dev, "failed to get IRQ: %d\n", err);
1180 goto poweroff;
1181 }
1182
1183 pcie->irq = err;
1184
1185 err = request_irq(pcie->irq, tegra_pcie_isr, IRQF_SHARED, "PCIE", pcie);
1186 if (err) {
1187 dev_err(&pdev->dev, "failed to register IRQ: %d\n", err);
1188 goto poweroff;
1189 }
1190
1191 return 0;
1192
1193poweroff:
1194 tegra_pcie_power_off(pcie);
1195 return err;
1196}
1197
1198static int tegra_pcie_put_resources(struct tegra_pcie *pcie)
1199{
Thierry Reding7f1f0542014-08-26 17:11:38 +02001200 int err;
1201
Thierry Redingd1523b52013-08-09 16:49:19 +02001202 if (pcie->irq > 0)
1203 free_irq(pcie->irq, pcie);
1204
1205 tegra_pcie_power_off(pcie);
Thierry Reding7f1f0542014-08-26 17:11:38 +02001206
1207 err = phy_exit(pcie->phy);
1208 if (err < 0)
1209 dev_err(pcie->dev, "failed to teardown PHY: %d\n", err);
1210
Thierry Redingd1523b52013-08-09 16:49:19 +02001211 return 0;
1212}
1213
1214static int tegra_msi_alloc(struct tegra_msi *chip)
1215{
1216 int msi;
1217
1218 mutex_lock(&chip->lock);
1219
1220 msi = find_first_zero_bit(chip->used, INT_PCI_MSI_NR);
1221 if (msi < INT_PCI_MSI_NR)
1222 set_bit(msi, chip->used);
1223 else
1224 msi = -ENOSPC;
1225
1226 mutex_unlock(&chip->lock);
1227
1228 return msi;
1229}
1230
1231static void tegra_msi_free(struct tegra_msi *chip, unsigned long irq)
1232{
1233 struct device *dev = chip->chip.dev;
1234
1235 mutex_lock(&chip->lock);
1236
1237 if (!test_bit(irq, chip->used))
1238 dev_err(dev, "trying to free unused MSI#%lu\n", irq);
1239 else
1240 clear_bit(irq, chip->used);
1241
1242 mutex_unlock(&chip->lock);
1243}
1244
1245static irqreturn_t tegra_pcie_msi_irq(int irq, void *data)
1246{
1247 struct tegra_pcie *pcie = data;
1248 struct tegra_msi *msi = &pcie->msi;
1249 unsigned int i, processed = 0;
1250
1251 for (i = 0; i < 8; i++) {
1252 unsigned long reg = afi_readl(pcie, AFI_MSI_VEC0 + i * 4);
1253
1254 while (reg) {
1255 unsigned int offset = find_first_bit(&reg, 32);
1256 unsigned int index = i * 32 + offset;
1257 unsigned int irq;
1258
1259 /* clear the interrupt */
1260 afi_writel(pcie, 1 << offset, AFI_MSI_VEC0 + i * 4);
1261
1262 irq = irq_find_mapping(msi->domain, index);
1263 if (irq) {
1264 if (test_bit(index, msi->used))
1265 generic_handle_irq(irq);
1266 else
1267 dev_info(pcie->dev, "unhandled MSI\n");
1268 } else {
1269 /*
1270 * that's weird who triggered this?
1271 * just clear it
1272 */
1273 dev_info(pcie->dev, "unexpected MSI\n");
1274 }
1275
1276 /* see if there's any more pending in this vector */
1277 reg = afi_readl(pcie, AFI_MSI_VEC0 + i * 4);
1278
1279 processed++;
1280 }
1281 }
1282
1283 return processed > 0 ? IRQ_HANDLED : IRQ_NONE;
1284}
1285
Yijing Wangc2791b82014-11-11 17:45:45 -07001286static int tegra_msi_setup_irq(struct msi_controller *chip,
1287 struct pci_dev *pdev, struct msi_desc *desc)
Thierry Redingd1523b52013-08-09 16:49:19 +02001288{
1289 struct tegra_msi *msi = to_tegra_msi(chip);
1290 struct msi_msg msg;
1291 unsigned int irq;
1292 int hwirq;
1293
1294 hwirq = tegra_msi_alloc(msi);
1295 if (hwirq < 0)
1296 return hwirq;
1297
1298 irq = irq_create_mapping(msi->domain, hwirq);
Jisheng Zhang019fa462014-07-29 09:33:30 +08001299 if (!irq) {
1300 tegra_msi_free(msi, hwirq);
Thierry Redingd1523b52013-08-09 16:49:19 +02001301 return -EINVAL;
Jisheng Zhang019fa462014-07-29 09:33:30 +08001302 }
Thierry Redingd1523b52013-08-09 16:49:19 +02001303
1304 irq_set_msi_desc(irq, desc);
1305
1306 msg.address_lo = virt_to_phys((void *)msi->pages);
1307 /* 32 bit address only */
1308 msg.address_hi = 0;
1309 msg.data = hwirq;
1310
1311 write_msi_msg(irq, &msg);
1312
1313 return 0;
1314}
1315
Yijing Wangc2791b82014-11-11 17:45:45 -07001316static void tegra_msi_teardown_irq(struct msi_controller *chip,
1317 unsigned int irq)
Thierry Redingd1523b52013-08-09 16:49:19 +02001318{
1319 struct tegra_msi *msi = to_tegra_msi(chip);
1320 struct irq_data *d = irq_get_irq_data(irq);
Jisheng Zhang019fa462014-07-29 09:33:30 +08001321 irq_hw_number_t hwirq = irqd_to_hwirq(d);
Thierry Redingd1523b52013-08-09 16:49:19 +02001322
Jisheng Zhang019fa462014-07-29 09:33:30 +08001323 irq_dispose_mapping(irq);
1324 tegra_msi_free(msi, hwirq);
Thierry Redingd1523b52013-08-09 16:49:19 +02001325}
1326
1327static struct irq_chip tegra_msi_irq_chip = {
1328 .name = "Tegra PCIe MSI",
1329 .irq_enable = unmask_msi_irq,
1330 .irq_disable = mask_msi_irq,
1331 .irq_mask = mask_msi_irq,
1332 .irq_unmask = unmask_msi_irq,
1333};
1334
1335static int tegra_msi_map(struct irq_domain *domain, unsigned int irq,
1336 irq_hw_number_t hwirq)
1337{
1338 irq_set_chip_and_handler(irq, &tegra_msi_irq_chip, handle_simple_irq);
1339 irq_set_chip_data(irq, domain->host_data);
1340 set_irq_flags(irq, IRQF_VALID);
1341
Stephen Warrenb4f17372013-05-06 14:19:19 -06001342 tegra_cpuidle_pcie_irqs_in_use();
1343
Thierry Redingd1523b52013-08-09 16:49:19 +02001344 return 0;
1345}
1346
1347static const struct irq_domain_ops msi_domain_ops = {
1348 .map = tegra_msi_map,
1349};
1350
1351static int tegra_pcie_enable_msi(struct tegra_pcie *pcie)
1352{
1353 struct platform_device *pdev = to_platform_device(pcie->dev);
Jay Agarwal94716cd2013-08-09 16:49:24 +02001354 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
Thierry Redingd1523b52013-08-09 16:49:19 +02001355 struct tegra_msi *msi = &pcie->msi;
1356 unsigned long base;
1357 int err;
1358 u32 reg;
1359
1360 mutex_init(&msi->lock);
1361
1362 msi->chip.dev = pcie->dev;
1363 msi->chip.setup_irq = tegra_msi_setup_irq;
1364 msi->chip.teardown_irq = tegra_msi_teardown_irq;
1365
1366 msi->domain = irq_domain_add_linear(pcie->dev->of_node, INT_PCI_MSI_NR,
1367 &msi_domain_ops, &msi->chip);
1368 if (!msi->domain) {
1369 dev_err(&pdev->dev, "failed to create IRQ domain\n");
1370 return -ENOMEM;
1371 }
1372
1373 err = platform_get_irq_byname(pdev, "msi");
1374 if (err < 0) {
1375 dev_err(&pdev->dev, "failed to get IRQ: %d\n", err);
1376 goto err;
1377 }
1378
1379 msi->irq = err;
1380
1381 err = request_irq(msi->irq, tegra_pcie_msi_irq, 0,
1382 tegra_msi_irq_chip.name, pcie);
1383 if (err < 0) {
1384 dev_err(&pdev->dev, "failed to request IRQ: %d\n", err);
1385 goto err;
1386 }
1387
1388 /* setup AFI/FPCI range */
1389 msi->pages = __get_free_pages(GFP_KERNEL, 0);
1390 base = virt_to_phys((void *)msi->pages);
1391
Jay Agarwal94716cd2013-08-09 16:49:24 +02001392 afi_writel(pcie, base >> soc->msi_base_shift, AFI_MSI_FPCI_BAR_ST);
Thierry Redingd1523b52013-08-09 16:49:19 +02001393 afi_writel(pcie, base, AFI_MSI_AXI_BAR_ST);
1394 /* this register is in 4K increments */
1395 afi_writel(pcie, 1, AFI_MSI_BAR_SZ);
1396
1397 /* enable all MSI vectors */
1398 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC0);
1399 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC1);
1400 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC2);
1401 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC3);
1402 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC4);
1403 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC5);
1404 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC6);
1405 afi_writel(pcie, 0xffffffff, AFI_MSI_EN_VEC7);
1406
1407 /* and unmask the MSI interrupt */
1408 reg = afi_readl(pcie, AFI_INTR_MASK);
1409 reg |= AFI_INTR_MASK_MSI_MASK;
1410 afi_writel(pcie, reg, AFI_INTR_MASK);
1411
1412 return 0;
1413
1414err:
1415 irq_domain_remove(msi->domain);
1416 return err;
1417}
1418
1419static int tegra_pcie_disable_msi(struct tegra_pcie *pcie)
1420{
1421 struct tegra_msi *msi = &pcie->msi;
1422 unsigned int i, irq;
1423 u32 value;
1424
1425 /* mask the MSI interrupt */
1426 value = afi_readl(pcie, AFI_INTR_MASK);
1427 value &= ~AFI_INTR_MASK_MSI_MASK;
1428 afi_writel(pcie, value, AFI_INTR_MASK);
1429
1430 /* disable all MSI vectors */
1431 afi_writel(pcie, 0, AFI_MSI_EN_VEC0);
1432 afi_writel(pcie, 0, AFI_MSI_EN_VEC1);
1433 afi_writel(pcie, 0, AFI_MSI_EN_VEC2);
1434 afi_writel(pcie, 0, AFI_MSI_EN_VEC3);
1435 afi_writel(pcie, 0, AFI_MSI_EN_VEC4);
1436 afi_writel(pcie, 0, AFI_MSI_EN_VEC5);
1437 afi_writel(pcie, 0, AFI_MSI_EN_VEC6);
1438 afi_writel(pcie, 0, AFI_MSI_EN_VEC7);
1439
1440 free_pages(msi->pages, 0);
1441
1442 if (msi->irq > 0)
1443 free_irq(msi->irq, pcie);
1444
1445 for (i = 0; i < INT_PCI_MSI_NR; i++) {
1446 irq = irq_find_mapping(msi->domain, i);
1447 if (irq > 0)
1448 irq_dispose_mapping(irq);
1449 }
1450
1451 irq_domain_remove(msi->domain);
1452
1453 return 0;
1454}
1455
1456static int tegra_pcie_get_xbar_config(struct tegra_pcie *pcie, u32 lanes,
1457 u32 *xbar)
1458{
1459 struct device_node *np = pcie->dev->of_node;
1460
Thierry Reding7f1f0542014-08-26 17:11:38 +02001461 if (of_device_is_compatible(np, "nvidia,tegra124-pcie")) {
1462 switch (lanes) {
1463 case 0x0000104:
1464 dev_info(pcie->dev, "4x1, 1x1 configuration\n");
1465 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1;
1466 return 0;
1467
1468 case 0x0000102:
1469 dev_info(pcie->dev, "2x1, 1x1 configuration\n");
1470 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1;
1471 return 0;
1472 }
1473 } else if (of_device_is_compatible(np, "nvidia,tegra30-pcie")) {
Jay Agarwal94716cd2013-08-09 16:49:24 +02001474 switch (lanes) {
1475 case 0x00000204:
1476 dev_info(pcie->dev, "4x1, 2x1 configuration\n");
1477 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420;
1478 return 0;
Thierry Redingd1523b52013-08-09 16:49:19 +02001479
Jay Agarwal94716cd2013-08-09 16:49:24 +02001480 case 0x00020202:
1481 dev_info(pcie->dev, "2x3 configuration\n");
1482 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222;
1483 return 0;
1484
1485 case 0x00010104:
1486 dev_info(pcie->dev, "4x1, 1x2 configuration\n");
1487 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411;
1488 return 0;
1489 }
1490 } else if (of_device_is_compatible(np, "nvidia,tegra20-pcie")) {
1491 switch (lanes) {
1492 case 0x00000004:
1493 dev_info(pcie->dev, "single-mode configuration\n");
1494 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE;
1495 return 0;
1496
1497 case 0x00000202:
1498 dev_info(pcie->dev, "dual-mode configuration\n");
1499 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL;
1500 return 0;
1501 }
Thierry Redingd1523b52013-08-09 16:49:19 +02001502 }
1503
1504 return -EINVAL;
1505}
1506
Thierry Reding077fb152014-05-28 16:49:13 +02001507/*
1508 * Check whether a given set of supplies is available in a device tree node.
1509 * This is used to check whether the new or the legacy device tree bindings
1510 * should be used.
1511 */
1512static bool of_regulator_bulk_available(struct device_node *np,
1513 struct regulator_bulk_data *supplies,
1514 unsigned int num_supplies)
1515{
1516 char property[32];
1517 unsigned int i;
1518
1519 for (i = 0; i < num_supplies; i++) {
1520 snprintf(property, 32, "%s-supply", supplies[i].supply);
1521
1522 if (of_find_property(np, property, NULL) == NULL)
1523 return false;
1524 }
1525
1526 return true;
1527}
1528
1529/*
1530 * Old versions of the device tree binding for this device used a set of power
1531 * supplies that didn't match the hardware inputs. This happened to work for a
1532 * number of cases but is not future proof. However to preserve backwards-
1533 * compatibility with old device trees, this function will try to use the old
1534 * set of supplies.
1535 */
1536static int tegra_pcie_get_legacy_regulators(struct tegra_pcie *pcie)
1537{
1538 struct device_node *np = pcie->dev->of_node;
1539
1540 if (of_device_is_compatible(np, "nvidia,tegra30-pcie"))
1541 pcie->num_supplies = 3;
1542 else if (of_device_is_compatible(np, "nvidia,tegra20-pcie"))
1543 pcie->num_supplies = 2;
1544
1545 if (pcie->num_supplies == 0) {
1546 dev_err(pcie->dev, "device %s not supported in legacy mode\n",
1547 np->full_name);
1548 return -ENODEV;
1549 }
1550
1551 pcie->supplies = devm_kcalloc(pcie->dev, pcie->num_supplies,
1552 sizeof(*pcie->supplies),
1553 GFP_KERNEL);
1554 if (!pcie->supplies)
1555 return -ENOMEM;
1556
1557 pcie->supplies[0].supply = "pex-clk";
1558 pcie->supplies[1].supply = "vdd";
1559
1560 if (pcie->num_supplies > 2)
1561 pcie->supplies[2].supply = "avdd";
1562
1563 return devm_regulator_bulk_get(pcie->dev, pcie->num_supplies,
1564 pcie->supplies);
1565}
1566
1567/*
1568 * Obtains the list of regulators required for a particular generation of the
1569 * IP block.
1570 *
1571 * This would've been nice to do simply by providing static tables for use
1572 * with the regulator_bulk_*() API, but unfortunately Tegra30 is a bit quirky
1573 * in that it has two pairs or AVDD_PEX and VDD_PEX supplies (PEXA and PEXB)
1574 * and either seems to be optional depending on which ports are being used.
1575 */
1576static int tegra_pcie_get_regulators(struct tegra_pcie *pcie, u32 lane_mask)
1577{
1578 struct device_node *np = pcie->dev->of_node;
1579 unsigned int i = 0;
1580
Thierry Reding7f1f0542014-08-26 17:11:38 +02001581 if (of_device_is_compatible(np, "nvidia,tegra124-pcie")) {
1582 pcie->num_supplies = 7;
1583
1584 pcie->supplies = devm_kcalloc(pcie->dev, pcie->num_supplies,
1585 sizeof(*pcie->supplies),
1586 GFP_KERNEL);
1587 if (!pcie->supplies)
1588 return -ENOMEM;
1589
1590 pcie->supplies[i++].supply = "avddio-pex";
1591 pcie->supplies[i++].supply = "dvddio-pex";
1592 pcie->supplies[i++].supply = "avdd-pex-pll";
1593 pcie->supplies[i++].supply = "hvdd-pex";
1594 pcie->supplies[i++].supply = "hvdd-pex-pll-e";
1595 pcie->supplies[i++].supply = "vddio-pex-ctl";
1596 pcie->supplies[i++].supply = "avdd-pll-erefe";
1597 } else if (of_device_is_compatible(np, "nvidia,tegra30-pcie")) {
Thierry Reding077fb152014-05-28 16:49:13 +02001598 bool need_pexa = false, need_pexb = false;
1599
1600 /* VDD_PEXA and AVDD_PEXA supply lanes 0 to 3 */
1601 if (lane_mask & 0x0f)
1602 need_pexa = true;
1603
1604 /* VDD_PEXB and AVDD_PEXB supply lanes 4 to 5 */
1605 if (lane_mask & 0x30)
1606 need_pexb = true;
1607
1608 pcie->num_supplies = 4 + (need_pexa ? 2 : 0) +
1609 (need_pexb ? 2 : 0);
1610
1611 pcie->supplies = devm_kcalloc(pcie->dev, pcie->num_supplies,
1612 sizeof(*pcie->supplies),
1613 GFP_KERNEL);
1614 if (!pcie->supplies)
1615 return -ENOMEM;
1616
1617 pcie->supplies[i++].supply = "avdd-pex-pll";
1618 pcie->supplies[i++].supply = "hvdd-pex";
1619 pcie->supplies[i++].supply = "vddio-pex-ctl";
1620 pcie->supplies[i++].supply = "avdd-plle";
1621
1622 if (need_pexa) {
1623 pcie->supplies[i++].supply = "avdd-pexa";
1624 pcie->supplies[i++].supply = "vdd-pexa";
1625 }
1626
1627 if (need_pexb) {
1628 pcie->supplies[i++].supply = "avdd-pexb";
1629 pcie->supplies[i++].supply = "vdd-pexb";
1630 }
1631 } else if (of_device_is_compatible(np, "nvidia,tegra20-pcie")) {
1632 pcie->num_supplies = 5;
1633
1634 pcie->supplies = devm_kcalloc(pcie->dev, pcie->num_supplies,
1635 sizeof(*pcie->supplies),
1636 GFP_KERNEL);
1637 if (!pcie->supplies)
1638 return -ENOMEM;
1639
1640 pcie->supplies[0].supply = "avdd-pex";
1641 pcie->supplies[1].supply = "vdd-pex";
1642 pcie->supplies[2].supply = "avdd-pex-pll";
1643 pcie->supplies[3].supply = "avdd-plle";
1644 pcie->supplies[4].supply = "vddio-pex-clk";
1645 }
1646
1647 if (of_regulator_bulk_available(pcie->dev->of_node, pcie->supplies,
1648 pcie->num_supplies))
1649 return devm_regulator_bulk_get(pcie->dev, pcie->num_supplies,
1650 pcie->supplies);
1651
1652 /*
1653 * If not all regulators are available for this new scheme, assume
1654 * that the device tree complies with an older version of the device
1655 * tree binding.
1656 */
1657 dev_info(pcie->dev, "using legacy DT binding for power supplies\n");
1658
1659 devm_kfree(pcie->dev, pcie->supplies);
1660 pcie->num_supplies = 0;
1661
1662 return tegra_pcie_get_legacy_regulators(pcie);
1663}
1664
Thierry Redingd1523b52013-08-09 16:49:19 +02001665static int tegra_pcie_parse_dt(struct tegra_pcie *pcie)
1666{
Jay Agarwal94716cd2013-08-09 16:49:24 +02001667 const struct tegra_pcie_soc_data *soc = pcie->soc_data;
Thierry Redingd1523b52013-08-09 16:49:19 +02001668 struct device_node *np = pcie->dev->of_node, *port;
1669 struct of_pci_range_parser parser;
1670 struct of_pci_range range;
Thierry Reding077fb152014-05-28 16:49:13 +02001671 u32 lanes = 0, mask = 0;
1672 unsigned int lane = 0;
Thierry Redingd1523b52013-08-09 16:49:19 +02001673 struct resource res;
Thierry Redingd1523b52013-08-09 16:49:19 +02001674 int err;
1675
Thierry Reding41534e52014-08-01 14:15:11 +02001676 memset(&pcie->all, 0, sizeof(pcie->all));
1677 pcie->all.flags = IORESOURCE_MEM;
1678 pcie->all.name = np->full_name;
1679 pcie->all.start = ~0;
1680 pcie->all.end = 0;
1681
Thierry Redingd1523b52013-08-09 16:49:19 +02001682 if (of_pci_range_parser_init(&parser, np)) {
1683 dev_err(pcie->dev, "missing \"ranges\" property\n");
1684 return -EINVAL;
1685 }
1686
Thierry Redingd1523b52013-08-09 16:49:19 +02001687 for_each_of_pci_range(&parser, &range) {
Liviu Dudau0b0b0892014-09-29 15:29:25 +01001688 err = of_pci_range_to_resource(&range, np, &res);
1689 if (err < 0)
1690 return err;
Thierry Redingd1523b52013-08-09 16:49:19 +02001691
1692 switch (res.flags & IORESOURCE_TYPE_BITS) {
1693 case IORESOURCE_IO:
1694 memcpy(&pcie->io, &res, sizeof(res));
Thierry Reding41534e52014-08-01 14:15:11 +02001695 pcie->io.name = np->full_name;
Thierry Redingd1523b52013-08-09 16:49:19 +02001696 break;
1697
1698 case IORESOURCE_MEM:
1699 if (res.flags & IORESOURCE_PREFETCH) {
1700 memcpy(&pcie->prefetch, &res, sizeof(res));
Thierry Reding41534e52014-08-01 14:15:11 +02001701 pcie->prefetch.name = "prefetchable";
Thierry Redingd1523b52013-08-09 16:49:19 +02001702 } else {
1703 memcpy(&pcie->mem, &res, sizeof(res));
Thierry Reding41534e52014-08-01 14:15:11 +02001704 pcie->mem.name = "non-prefetchable";
Thierry Redingd1523b52013-08-09 16:49:19 +02001705 }
1706 break;
1707 }
Thierry Reding41534e52014-08-01 14:15:11 +02001708
1709 if (res.start <= pcie->all.start)
1710 pcie->all.start = res.start;
1711
1712 if (res.end >= pcie->all.end)
1713 pcie->all.end = res.end;
Thierry Redingd1523b52013-08-09 16:49:19 +02001714 }
1715
Thierry Reding41534e52014-08-01 14:15:11 +02001716 err = devm_request_resource(pcie->dev, &iomem_resource, &pcie->all);
1717 if (err < 0)
1718 return err;
1719
Thierry Redingd1523b52013-08-09 16:49:19 +02001720 err = of_pci_parse_bus_range(np, &pcie->busn);
1721 if (err < 0) {
1722 dev_err(pcie->dev, "failed to parse ranges property: %d\n",
1723 err);
1724 pcie->busn.name = np->name;
1725 pcie->busn.start = 0;
1726 pcie->busn.end = 0xff;
1727 pcie->busn.flags = IORESOURCE_BUS;
1728 }
1729
1730 /* parse root ports */
1731 for_each_child_of_node(np, port) {
1732 struct tegra_pcie_port *rp;
1733 unsigned int index;
1734 u32 value;
1735
1736 err = of_pci_get_devfn(port);
1737 if (err < 0) {
1738 dev_err(pcie->dev, "failed to parse address: %d\n",
1739 err);
1740 return err;
1741 }
1742
1743 index = PCI_SLOT(err);
1744
Jay Agarwal94716cd2013-08-09 16:49:24 +02001745 if (index < 1 || index > soc->num_ports) {
Thierry Redingd1523b52013-08-09 16:49:19 +02001746 dev_err(pcie->dev, "invalid port number: %d\n", index);
1747 return -EINVAL;
1748 }
1749
1750 index--;
1751
1752 err = of_property_read_u32(port, "nvidia,num-lanes", &value);
1753 if (err < 0) {
1754 dev_err(pcie->dev, "failed to parse # of lanes: %d\n",
1755 err);
1756 return err;
1757 }
1758
1759 if (value > 16) {
1760 dev_err(pcie->dev, "invalid # of lanes: %u\n", value);
1761 return -EINVAL;
1762 }
1763
1764 lanes |= value << (index << 3);
1765
Thierry Reding077fb152014-05-28 16:49:13 +02001766 if (!of_device_is_available(port)) {
1767 lane += value;
Thierry Redingd1523b52013-08-09 16:49:19 +02001768 continue;
Thierry Reding077fb152014-05-28 16:49:13 +02001769 }
1770
1771 mask |= ((1 << value) - 1) << lane;
1772 lane += value;
Thierry Redingd1523b52013-08-09 16:49:19 +02001773
1774 rp = devm_kzalloc(pcie->dev, sizeof(*rp), GFP_KERNEL);
1775 if (!rp)
1776 return -ENOMEM;
1777
1778 err = of_address_to_resource(port, 0, &rp->regs);
1779 if (err < 0) {
1780 dev_err(pcie->dev, "failed to parse address: %d\n",
1781 err);
1782 return err;
1783 }
1784
1785 INIT_LIST_HEAD(&rp->list);
1786 rp->index = index;
1787 rp->lanes = value;
1788 rp->pcie = pcie;
1789
Julia Lawalldc05ee32013-08-26 11:11:09 +02001790 rp->base = devm_ioremap_resource(pcie->dev, &rp->regs);
1791 if (IS_ERR(rp->base))
1792 return PTR_ERR(rp->base);
Thierry Redingd1523b52013-08-09 16:49:19 +02001793
1794 list_add_tail(&rp->list, &pcie->ports);
1795 }
1796
1797 err = tegra_pcie_get_xbar_config(pcie, lanes, &pcie->xbar_config);
1798 if (err < 0) {
1799 dev_err(pcie->dev, "invalid lane configuration\n");
1800 return err;
1801 }
1802
Thierry Reding077fb152014-05-28 16:49:13 +02001803 err = tegra_pcie_get_regulators(pcie, mask);
1804 if (err < 0)
1805 return err;
1806
Thierry Redingd1523b52013-08-09 16:49:19 +02001807 return 0;
1808}
1809
1810/*
1811 * FIXME: If there are no PCIe cards attached, then calling this function
1812 * can result in the increase of the bootup time as there are big timeout
1813 * loops.
1814 */
1815#define TEGRA_PCIE_LINKUP_TIMEOUT 200 /* up to 1.2 seconds */
1816static bool tegra_pcie_port_check_link(struct tegra_pcie_port *port)
1817{
1818 unsigned int retries = 3;
1819 unsigned long value;
1820
Thierry Reding7f1f0542014-08-26 17:11:38 +02001821 /* override presence detection */
1822 value = readl(port->base + RP_PRIV_MISC);
1823 value &= ~RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT;
1824 value |= RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT;
1825 writel(value, port->base + RP_PRIV_MISC);
1826
Thierry Redingd1523b52013-08-09 16:49:19 +02001827 do {
1828 unsigned int timeout = TEGRA_PCIE_LINKUP_TIMEOUT;
1829
1830 do {
1831 value = readl(port->base + RP_VEND_XP);
1832
1833 if (value & RP_VEND_XP_DL_UP)
1834 break;
1835
1836 usleep_range(1000, 2000);
1837 } while (--timeout);
1838
1839 if (!timeout) {
1840 dev_err(port->pcie->dev, "link %u down, retrying\n",
1841 port->index);
1842 goto retry;
1843 }
1844
1845 timeout = TEGRA_PCIE_LINKUP_TIMEOUT;
1846
1847 do {
1848 value = readl(port->base + RP_LINK_CONTROL_STATUS);
1849
1850 if (value & RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE)
1851 return true;
1852
1853 usleep_range(1000, 2000);
1854 } while (--timeout);
1855
1856retry:
1857 tegra_pcie_port_reset(port);
1858 } while (--retries);
1859
1860 return false;
1861}
1862
1863static int tegra_pcie_enable(struct tegra_pcie *pcie)
1864{
1865 struct tegra_pcie_port *port, *tmp;
1866 struct hw_pci hw;
1867
1868 list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
1869 dev_info(pcie->dev, "probing port %u, using %u lanes\n",
1870 port->index, port->lanes);
1871
1872 tegra_pcie_port_enable(port);
1873
1874 if (tegra_pcie_port_check_link(port))
1875 continue;
1876
1877 dev_info(pcie->dev, "link %u down, ignoring\n", port->index);
1878
1879 tegra_pcie_port_disable(port);
1880 tegra_pcie_port_free(port);
1881 }
1882
1883 memset(&hw, 0, sizeof(hw));
1884
1885 hw.nr_controllers = 1;
1886 hw.private_data = (void **)&pcie;
1887 hw.setup = tegra_pcie_setup;
1888 hw.map_irq = tegra_pcie_map_irq;
1889 hw.add_bus = tegra_pcie_add_bus;
1890 hw.scan = tegra_pcie_scan_bus;
1891 hw.ops = &tegra_pcie_ops;
1892
1893 pci_common_init_dev(pcie->dev, &hw);
1894
1895 return 0;
1896}
1897
Jay Agarwal94716cd2013-08-09 16:49:24 +02001898static const struct tegra_pcie_soc_data tegra20_pcie_data = {
1899 .num_ports = 2,
1900 .msi_base_shift = 0,
1901 .pads_pll_ctl = PADS_PLL_CTL_TEGRA20,
1902 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_DIV10,
1903 .has_pex_clkreq_en = false,
1904 .has_pex_bias_ctrl = false,
1905 .has_intr_prsnt_sense = false,
Jay Agarwal94716cd2013-08-09 16:49:24 +02001906 .has_cml_clk = false,
Thierry Reding7f1f0542014-08-26 17:11:38 +02001907 .has_gen2 = false,
Jay Agarwal94716cd2013-08-09 16:49:24 +02001908};
1909
1910static const struct tegra_pcie_soc_data tegra30_pcie_data = {
1911 .num_ports = 3,
1912 .msi_base_shift = 8,
1913 .pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
1914 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
1915 .has_pex_clkreq_en = true,
1916 .has_pex_bias_ctrl = true,
1917 .has_intr_prsnt_sense = true,
Jay Agarwal94716cd2013-08-09 16:49:24 +02001918 .has_cml_clk = true,
Thierry Reding7f1f0542014-08-26 17:11:38 +02001919 .has_gen2 = false,
1920};
1921
1922static const struct tegra_pcie_soc_data tegra124_pcie_data = {
1923 .num_ports = 2,
1924 .msi_base_shift = 8,
1925 .pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
1926 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
1927 .has_pex_clkreq_en = true,
1928 .has_pex_bias_ctrl = true,
1929 .has_intr_prsnt_sense = true,
1930 .has_cml_clk = true,
1931 .has_gen2 = true,
Jay Agarwal94716cd2013-08-09 16:49:24 +02001932};
1933
1934static const struct of_device_id tegra_pcie_of_match[] = {
Thierry Reding7f1f0542014-08-26 17:11:38 +02001935 { .compatible = "nvidia,tegra124-pcie", .data = &tegra124_pcie_data },
Jay Agarwal94716cd2013-08-09 16:49:24 +02001936 { .compatible = "nvidia,tegra30-pcie", .data = &tegra30_pcie_data },
1937 { .compatible = "nvidia,tegra20-pcie", .data = &tegra20_pcie_data },
1938 { },
1939};
1940MODULE_DEVICE_TABLE(of, tegra_pcie_of_match);
1941
Thierry Reding2cb989f2014-07-22 12:30:46 -06001942static void *tegra_pcie_ports_seq_start(struct seq_file *s, loff_t *pos)
1943{
1944 struct tegra_pcie *pcie = s->private;
1945
1946 if (list_empty(&pcie->ports))
1947 return NULL;
1948
1949 seq_printf(s, "Index Status\n");
1950
1951 return seq_list_start(&pcie->ports, *pos);
1952}
1953
1954static void *tegra_pcie_ports_seq_next(struct seq_file *s, void *v, loff_t *pos)
1955{
1956 struct tegra_pcie *pcie = s->private;
1957
1958 return seq_list_next(v, &pcie->ports, pos);
1959}
1960
1961static void tegra_pcie_ports_seq_stop(struct seq_file *s, void *v)
1962{
1963}
1964
1965static int tegra_pcie_ports_seq_show(struct seq_file *s, void *v)
1966{
1967 bool up = false, active = false;
1968 struct tegra_pcie_port *port;
1969 unsigned int value;
1970
1971 port = list_entry(v, struct tegra_pcie_port, list);
1972
1973 value = readl(port->base + RP_VEND_XP);
1974
1975 if (value & RP_VEND_XP_DL_UP)
1976 up = true;
1977
1978 value = readl(port->base + RP_LINK_CONTROL_STATUS);
1979
1980 if (value & RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE)
1981 active = true;
1982
1983 seq_printf(s, "%2u ", port->index);
1984
1985 if (up)
1986 seq_printf(s, "up");
1987
1988 if (active) {
1989 if (up)
1990 seq_printf(s, ", ");
1991
1992 seq_printf(s, "active");
1993 }
1994
1995 seq_printf(s, "\n");
1996 return 0;
1997}
1998
1999static const struct seq_operations tegra_pcie_ports_seq_ops = {
2000 .start = tegra_pcie_ports_seq_start,
2001 .next = tegra_pcie_ports_seq_next,
2002 .stop = tegra_pcie_ports_seq_stop,
2003 .show = tegra_pcie_ports_seq_show,
2004};
2005
2006static int tegra_pcie_ports_open(struct inode *inode, struct file *file)
2007{
2008 struct tegra_pcie *pcie = inode->i_private;
2009 struct seq_file *s;
2010 int err;
2011
2012 err = seq_open(file, &tegra_pcie_ports_seq_ops);
2013 if (err)
2014 return err;
2015
2016 s = file->private_data;
2017 s->private = pcie;
2018
2019 return 0;
2020}
2021
2022static const struct file_operations tegra_pcie_ports_ops = {
2023 .owner = THIS_MODULE,
2024 .open = tegra_pcie_ports_open,
2025 .read = seq_read,
2026 .llseek = seq_lseek,
2027 .release = seq_release,
2028};
2029
2030static int tegra_pcie_debugfs_init(struct tegra_pcie *pcie)
2031{
2032 struct dentry *file;
2033
2034 pcie->debugfs = debugfs_create_dir("pcie", NULL);
2035 if (!pcie->debugfs)
2036 return -ENOMEM;
2037
2038 file = debugfs_create_file("ports", S_IFREG | S_IRUGO, pcie->debugfs,
2039 pcie, &tegra_pcie_ports_ops);
2040 if (!file)
2041 goto remove;
2042
2043 return 0;
2044
2045remove:
2046 debugfs_remove_recursive(pcie->debugfs);
2047 pcie->debugfs = NULL;
2048 return -ENOMEM;
2049}
2050
Thierry Redingd1523b52013-08-09 16:49:19 +02002051static int tegra_pcie_probe(struct platform_device *pdev)
2052{
Jay Agarwal94716cd2013-08-09 16:49:24 +02002053 const struct of_device_id *match;
Thierry Redingd1523b52013-08-09 16:49:19 +02002054 struct tegra_pcie *pcie;
2055 int err;
2056
Jay Agarwal94716cd2013-08-09 16:49:24 +02002057 match = of_match_device(tegra_pcie_of_match, &pdev->dev);
2058 if (!match)
2059 return -ENODEV;
2060
Thierry Redingd1523b52013-08-09 16:49:19 +02002061 pcie = devm_kzalloc(&pdev->dev, sizeof(*pcie), GFP_KERNEL);
2062 if (!pcie)
2063 return -ENOMEM;
2064
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002065 INIT_LIST_HEAD(&pcie->buses);
Thierry Redingd1523b52013-08-09 16:49:19 +02002066 INIT_LIST_HEAD(&pcie->ports);
Jay Agarwal94716cd2013-08-09 16:49:24 +02002067 pcie->soc_data = match->data;
Thierry Redingd1523b52013-08-09 16:49:19 +02002068 pcie->dev = &pdev->dev;
2069
2070 err = tegra_pcie_parse_dt(pcie);
2071 if (err < 0)
2072 return err;
2073
2074 pcibios_min_mem = 0;
2075
2076 err = tegra_pcie_get_resources(pcie);
2077 if (err < 0) {
2078 dev_err(&pdev->dev, "failed to request resources: %d\n", err);
2079 return err;
2080 }
2081
2082 err = tegra_pcie_enable_controller(pcie);
2083 if (err)
2084 goto put_resources;
2085
2086 /* setup the AFI address translations */
2087 tegra_pcie_setup_translations(pcie);
2088
2089 if (IS_ENABLED(CONFIG_PCI_MSI)) {
2090 err = tegra_pcie_enable_msi(pcie);
2091 if (err < 0) {
2092 dev_err(&pdev->dev,
2093 "failed to enable MSI support: %d\n",
2094 err);
2095 goto put_resources;
2096 }
2097 }
2098
2099 err = tegra_pcie_enable(pcie);
2100 if (err < 0) {
2101 dev_err(&pdev->dev, "failed to enable PCIe ports: %d\n", err);
2102 goto disable_msi;
2103 }
2104
Thierry Reding2cb989f2014-07-22 12:30:46 -06002105 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
2106 err = tegra_pcie_debugfs_init(pcie);
2107 if (err < 0)
2108 dev_err(&pdev->dev, "failed to setup debugfs: %d\n",
2109 err);
2110 }
2111
Thierry Redingd1523b52013-08-09 16:49:19 +02002112 platform_set_drvdata(pdev, pcie);
2113 return 0;
2114
2115disable_msi:
2116 if (IS_ENABLED(CONFIG_PCI_MSI))
2117 tegra_pcie_disable_msi(pcie);
2118put_resources:
2119 tegra_pcie_put_resources(pcie);
2120 return err;
2121}
2122
Thierry Redingd1523b52013-08-09 16:49:19 +02002123static struct platform_driver tegra_pcie_driver = {
2124 .driver = {
2125 .name = "tegra-pcie",
2126 .owner = THIS_MODULE,
2127 .of_match_table = tegra_pcie_of_match,
2128 .suppress_bind_attrs = true,
2129 },
2130 .probe = tegra_pcie_probe,
2131};
2132module_platform_driver(tegra_pcie_driver);
2133
2134MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
2135MODULE_DESCRIPTION("NVIDIA Tegra PCIe driver");
Thierry Redingd975cb52014-07-11 08:58:58 +02002136MODULE_LICENSE("GPL v2");