2 * PCIe host controller driver for Tegra SoCs
4 * Copyright (c) 2010, CompuLab, Ltd.
5 * Author: Mike Rapoport <mike@compulab.co.il>
7 * Based on NVIDIA PCIe driver
8 * Copyright (c) 2008-2009, NVIDIA Corporation.
10 * Bits taken from arch/arm/mach-dove/pcie.c
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.
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
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.
27 #include <linux/clk.h>
28 #include <linux/debugfs.h>
29 #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>
41 #include <linux/phy/phy.h>
42 #include <linux/platform_device.h>
43 #include <linux/reset.h>
44 #include <linux/sizes.h>
45 #include <linux/slab.h>
46 #include <linux/vmalloc.h>
47 #include <linux/regulator/consumer.h>
49 #include <soc/tegra/cpuidle.h>
50 #include <soc/tegra/pmc.h>
52 #include <asm/mach/irq.h>
53 #include <asm/mach/map.h>
54 #include <asm/mach/pci.h>
56 #define INT_PCI_MSI_NR (8 * 32)
58 /* register definitions */
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
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
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
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
86 #define AFI_MSI_BAR_SZ 0x60
87 #define AFI_MSI_FPCI_BAR_ST 0x64
88 #define AFI_MSI_AXI_BAR_ST 0x68
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
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
108 #define AFI_CONFIGURATION 0xac
109 #define AFI_CONFIGURATION_EN_FPCI (1 << 0)
111 #define AFI_FPCI_ERROR_MASKS 0xb0
113 #define AFI_INTR_MASK 0xb4
114 #define AFI_INTR_MASK_INT_MASK (1 << 0)
115 #define AFI_INTR_MASK_MSI_MASK (1 << 8)
117 #define AFI_INTR_CODE 0xb8
118 #define AFI_INTR_CODE_MASK 0xf
119 #define AFI_INTR_INI_SLAVE_ERROR 1
120 #define AFI_INTR_INI_DECODE_ERROR 2
121 #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
126 #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
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)
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)
155 #define AFI_INTR_EN_PRSNT_SENSE (1 << 8)
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)
162 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420 (0x0 << 20)
163 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1 (0x0 << 20)
164 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL (0x1 << 20)
165 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222 (0x1 << 20)
166 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1 (0x1 << 20)
167 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411 (0x2 << 20)
169 #define AFI_FUSE 0x104
170 #define AFI_FUSE_PCIE_T0_GEN2_DIS (1 << 2)
172 #define AFI_PEX0_CTRL 0x110
173 #define AFI_PEX1_CTRL 0x118
174 #define AFI_PEX2_CTRL 0x128
175 #define AFI_PEX_CTRL_RST (1 << 0)
176 #define AFI_PEX_CTRL_CLKREQ_EN (1 << 1)
177 #define AFI_PEX_CTRL_REFCLK_EN (1 << 3)
178 #define AFI_PEX_CTRL_OVERRIDE_EN (1 << 4)
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)
184 #define AFI_PEXBIAS_CTRL_0 0x168
186 #define RP_VEND_XP 0x00000F00
187 #define RP_VEND_XP_DL_UP (1 << 30)
189 #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)
193 #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
197 #define PADS_CTL_SEL 0x0000009C
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)
204 #define PADS_PLL_CTL_TEGRA20 0x000000B8
205 #define PADS_PLL_CTL_TEGRA30 0x000000B4
206 #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)
215 #define PADS_PLL_CTL_TXCLKREF_BUF_EN (1 << 22)
217 #define PADS_REFCLK_CFG0 0x000000C8
218 #define PADS_REFCLK_CFG1 0x000000CC
219 #define PADS_REFCLK_BIAS 0x000000D0
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.
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 */
231 /* Default value provided by HW engineering is 0xfa5c */
232 #define PADS_REFCLK_CFG_VALUE \
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) \
241 struct msi_controller chip
;
242 DECLARE_BITMAP(used
, INT_PCI_MSI_NR
);
243 struct irq_domain
*domain
;
249 /* used to differentiate between Tegra SoC generations */
250 struct tegra_pcie_soc_data
{
251 unsigned int num_ports
;
252 unsigned int msi_base_shift
;
255 bool has_pex_clkreq_en
;
256 bool has_pex_bias_ctrl
;
257 bool has_intr_prsnt_sense
;
262 static inline struct tegra_msi
*to_tegra_msi(struct msi_controller
*chip
)
264 return container_of(chip
, struct tegra_msi
, chip
);
274 struct list_head buses
;
281 struct resource prefetch
;
282 struct resource busn
;
294 struct reset_control
*pex_rst
;
295 struct reset_control
*afi_rst
;
296 struct reset_control
*pcie_xrst
;
301 struct tegra_msi msi
;
303 struct list_head ports
;
306 struct regulator_bulk_data
*supplies
;
307 unsigned int num_supplies
;
309 const struct tegra_pcie_soc_data
*soc_data
;
310 struct dentry
*debugfs
;
313 struct tegra_pcie_port
{
314 struct tegra_pcie
*pcie
;
315 struct device_node
*np
;
316 struct list_head list
;
317 struct resource regs
;
325 struct tegra_pcie_bus
{
326 struct vm_struct
*area
;
327 struct list_head list
;
331 static inline struct tegra_pcie
*sys_to_pcie(struct pci_sys_data
*sys
)
333 return sys
->private_data
;
336 static inline void afi_writel(struct tegra_pcie
*pcie
, u32 value
,
337 unsigned long offset
)
339 writel(value
, pcie
->afi
+ offset
);
342 static inline u32
afi_readl(struct tegra_pcie
*pcie
, unsigned long offset
)
344 return readl(pcie
->afi
+ offset
);
347 static inline void pads_writel(struct tegra_pcie
*pcie
, u32 value
,
348 unsigned long offset
)
350 writel(value
, pcie
->pads
+ offset
);
353 static inline u32
pads_readl(struct tegra_pcie
*pcie
, unsigned long offset
)
355 return readl(pcie
->pads
+ offset
);
359 * The configuration space mapping on Tegra is somewhat similar to the ECAM
360 * defined by PCIe. However it deviates a bit in how the 4 bits for extended
361 * register accesses are mapped:
363 * [27:24] extended register number
365 * [15:11] device number
366 * [10: 8] function number
367 * [ 7: 0] register number
369 * Mapping the whole extended configuration space would require 256 MiB of
370 * virtual address space, only a small part of which will actually be used.
371 * To work around this, a 1 MiB of virtual addresses are allocated per bus
372 * when the bus is first accessed. When the physical range is mapped, the
373 * the bus number bits are hidden so that the extended register number bits
374 * appear as bits [19:16]. Therefore the virtual mapping looks like this:
376 * [19:16] extended register number
377 * [15:11] device number
378 * [10: 8] function number
379 * [ 7: 0] register number
381 * This is achieved by stitching together 16 chunks of 64 KiB of physical
382 * address space via the MMU.
384 static unsigned long tegra_pcie_conf_offset(unsigned int devfn
, int where
)
386 return ((where
& 0xf00) << 8) | (PCI_SLOT(devfn
) << 11) |
387 (PCI_FUNC(devfn
) << 8) | (where
& 0xfc);
390 static struct tegra_pcie_bus
*tegra_pcie_bus_alloc(struct tegra_pcie
*pcie
,
393 pgprot_t prot
= __pgprot(L_PTE_PRESENT
| L_PTE_YOUNG
| L_PTE_DIRTY
|
394 L_PTE_XN
| L_PTE_MT_DEV_SHARED
| L_PTE_SHARED
);
395 phys_addr_t cs
= pcie
->cs
->start
;
396 struct tegra_pcie_bus
*bus
;
400 bus
= kzalloc(sizeof(*bus
), GFP_KERNEL
);
402 return ERR_PTR(-ENOMEM
);
404 INIT_LIST_HEAD(&bus
->list
);
407 /* allocate 1 MiB of virtual addresses */
408 bus
->area
= get_vm_area(SZ_1M
, VM_IOREMAP
);
414 /* map each of the 16 chunks of 64 KiB each */
415 for (i
= 0; i
< 16; i
++) {
416 unsigned long virt
= (unsigned long)bus
->area
->addr
+
418 phys_addr_t phys
= cs
+ i
* SZ_16M
+ busnr
* SZ_64K
;
420 err
= ioremap_page_range(virt
, virt
+ SZ_64K
, phys
, prot
);
422 dev_err(pcie
->dev
, "ioremap_page_range() failed: %d\n",
431 vunmap(bus
->area
->addr
);
437 static int tegra_pcie_add_bus(struct pci_bus
*bus
)
439 struct tegra_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
440 struct tegra_pcie_bus
*b
;
442 b
= tegra_pcie_bus_alloc(pcie
, bus
->number
);
446 list_add_tail(&b
->list
, &pcie
->buses
);
451 static void tegra_pcie_remove_bus(struct pci_bus
*child
)
453 struct tegra_pcie
*pcie
= sys_to_pcie(child
->sysdata
);
454 struct tegra_pcie_bus
*bus
, *tmp
;
456 list_for_each_entry_safe(bus
, tmp
, &pcie
->buses
, list
) {
457 if (bus
->nr
== child
->number
) {
458 vunmap(bus
->area
->addr
);
459 list_del(&bus
->list
);
466 static void __iomem
*tegra_pcie_map_bus(struct pci_bus
*bus
,
470 struct tegra_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
471 void __iomem
*addr
= NULL
;
473 if (bus
->number
== 0) {
474 unsigned int slot
= PCI_SLOT(devfn
);
475 struct tegra_pcie_port
*port
;
477 list_for_each_entry(port
, &pcie
->ports
, list
) {
478 if (port
->index
+ 1 == slot
) {
479 addr
= port
->base
+ (where
& ~3);
484 struct tegra_pcie_bus
*b
;
486 list_for_each_entry(b
, &pcie
->buses
, list
)
487 if (b
->nr
== bus
->number
)
488 addr
= (void __iomem
*)b
->area
->addr
;
492 "failed to map cfg. space for bus %u\n",
497 addr
+= tegra_pcie_conf_offset(devfn
, where
);
503 static struct pci_ops tegra_pcie_ops
= {
504 .add_bus
= tegra_pcie_add_bus
,
505 .remove_bus
= tegra_pcie_remove_bus
,
506 .map_bus
= tegra_pcie_map_bus
,
507 .read
= pci_generic_config_read32
,
508 .write
= pci_generic_config_write32
,
511 static unsigned long tegra_pcie_port_get_pex_ctrl(struct tegra_pcie_port
*port
)
513 unsigned long ret
= 0;
515 switch (port
->index
) {
532 static void tegra_pcie_port_reset(struct tegra_pcie_port
*port
)
534 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
537 /* pulse reset signal */
538 value
= afi_readl(port
->pcie
, ctrl
);
539 value
&= ~AFI_PEX_CTRL_RST
;
540 afi_writel(port
->pcie
, value
, ctrl
);
542 usleep_range(1000, 2000);
544 value
= afi_readl(port
->pcie
, ctrl
);
545 value
|= AFI_PEX_CTRL_RST
;
546 afi_writel(port
->pcie
, value
, ctrl
);
549 static void tegra_pcie_port_enable(struct tegra_pcie_port
*port
)
551 const struct tegra_pcie_soc_data
*soc
= port
->pcie
->soc_data
;
552 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
555 /* enable reference clock */
556 value
= afi_readl(port
->pcie
, ctrl
);
557 value
|= AFI_PEX_CTRL_REFCLK_EN
;
559 if (soc
->has_pex_clkreq_en
)
560 value
|= AFI_PEX_CTRL_CLKREQ_EN
;
562 value
|= AFI_PEX_CTRL_OVERRIDE_EN
;
564 afi_writel(port
->pcie
, value
, ctrl
);
566 tegra_pcie_port_reset(port
);
569 static void tegra_pcie_port_disable(struct tegra_pcie_port
*port
)
571 const struct tegra_pcie_soc_data
*soc
= port
->pcie
->soc_data
;
572 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
575 /* assert port reset */
576 value
= afi_readl(port
->pcie
, ctrl
);
577 value
&= ~AFI_PEX_CTRL_RST
;
578 afi_writel(port
->pcie
, value
, ctrl
);
580 /* disable reference clock */
581 value
= afi_readl(port
->pcie
, ctrl
);
583 if (soc
->has_pex_clkreq_en
)
584 value
&= ~AFI_PEX_CTRL_CLKREQ_EN
;
586 value
&= ~AFI_PEX_CTRL_REFCLK_EN
;
587 afi_writel(port
->pcie
, value
, ctrl
);
590 static void tegra_pcie_port_free(struct tegra_pcie_port
*port
)
592 struct tegra_pcie
*pcie
= port
->pcie
;
594 devm_iounmap(pcie
->dev
, port
->base
);
595 devm_release_mem_region(pcie
->dev
, port
->regs
.start
,
596 resource_size(&port
->regs
));
597 list_del(&port
->list
);
598 devm_kfree(pcie
->dev
, port
);
601 /* Tegra PCIE root complex wrongly reports device class */
602 static void tegra_pcie_fixup_class(struct pci_dev
*dev
)
604 dev
->class = PCI_CLASS_BRIDGE_PCI
<< 8;
606 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0bf0, tegra_pcie_fixup_class
);
607 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0bf1, tegra_pcie_fixup_class
);
608 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0e1c, tegra_pcie_fixup_class
);
609 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0e1d, tegra_pcie_fixup_class
);
611 /* Tegra PCIE requires relaxed ordering */
612 static void tegra_pcie_relax_enable(struct pci_dev
*dev
)
614 pcie_capability_set_word(dev
, PCI_EXP_DEVCTL
, PCI_EXP_DEVCTL_RELAX_EN
);
616 DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID
, PCI_ANY_ID
, tegra_pcie_relax_enable
);
618 static int tegra_pcie_setup(int nr
, struct pci_sys_data
*sys
)
620 struct tegra_pcie
*pcie
= sys_to_pcie(sys
);
623 sys
->mem_offset
= pcie
->offset
.mem
;
624 sys
->io_offset
= pcie
->offset
.io
;
626 err
= devm_request_resource(pcie
->dev
, &pcie
->all
, &pcie
->io
);
630 err
= devm_request_resource(pcie
->dev
, &ioport_resource
, &pcie
->pio
);
634 err
= devm_request_resource(pcie
->dev
, &pcie
->all
, &pcie
->mem
);
638 err
= devm_request_resource(pcie
->dev
, &pcie
->all
, &pcie
->prefetch
);
642 pci_add_resource_offset(&sys
->resources
, &pcie
->pio
, sys
->io_offset
);
643 pci_add_resource_offset(&sys
->resources
, &pcie
->mem
, sys
->mem_offset
);
644 pci_add_resource_offset(&sys
->resources
, &pcie
->prefetch
,
646 pci_add_resource(&sys
->resources
, &pcie
->busn
);
648 pci_ioremap_io(pcie
->pio
.start
, pcie
->io
.start
);
653 static int tegra_pcie_map_irq(const struct pci_dev
*pdev
, u8 slot
, u8 pin
)
655 struct tegra_pcie
*pcie
= sys_to_pcie(pdev
->bus
->sysdata
);
658 tegra_cpuidle_pcie_irqs_in_use();
660 irq
= of_irq_parse_and_map_pci(pdev
, slot
, pin
);
667 static irqreturn_t
tegra_pcie_isr(int irq
, void *arg
)
669 const char *err_msg
[] = {
677 "Response decoding error",
678 "AXI response decoding error",
679 "Transaction timeout",
680 "Slot present pin change",
681 "Slot clock request change",
682 "TMS clock ramp change",
683 "TMS ready for power down",
686 struct tegra_pcie
*pcie
= arg
;
689 code
= afi_readl(pcie
, AFI_INTR_CODE
) & AFI_INTR_CODE_MASK
;
690 signature
= afi_readl(pcie
, AFI_INTR_SIGNATURE
);
691 afi_writel(pcie
, 0, AFI_INTR_CODE
);
693 if (code
== AFI_INTR_LEGACY
)
696 if (code
>= ARRAY_SIZE(err_msg
))
700 * do not pollute kernel log with master abort reports since they
701 * happen a lot during enumeration
703 if (code
== AFI_INTR_MASTER_ABORT
)
704 dev_dbg(pcie
->dev
, "%s, signature: %08x\n", err_msg
[code
],
707 dev_err(pcie
->dev
, "%s, signature: %08x\n", err_msg
[code
],
710 if (code
== AFI_INTR_TARGET_ABORT
|| code
== AFI_INTR_MASTER_ABORT
||
711 code
== AFI_INTR_FPCI_DECODE_ERROR
) {
712 u32 fpci
= afi_readl(pcie
, AFI_UPPER_FPCI_ADDRESS
) & 0xff;
713 u64 address
= (u64
)fpci
<< 32 | (signature
& 0xfffffffc);
715 if (code
== AFI_INTR_MASTER_ABORT
)
716 dev_dbg(pcie
->dev
, " FPCI address: %10llx\n", address
);
718 dev_err(pcie
->dev
, " FPCI address: %10llx\n", address
);
725 * FPCI map is as follows:
726 * - 0xfdfc000000: I/O space
727 * - 0xfdfe000000: type 0 configuration space
728 * - 0xfdff000000: type 1 configuration space
729 * - 0xfe00000000: type 0 extended configuration space
730 * - 0xfe10000000: type 1 extended configuration space
732 static void tegra_pcie_setup_translations(struct tegra_pcie
*pcie
)
734 u32 fpci_bar
, size
, axi_address
;
736 /* Bar 0: type 1 extended configuration space */
737 fpci_bar
= 0xfe100000;
738 size
= resource_size(pcie
->cs
);
739 axi_address
= pcie
->cs
->start
;
740 afi_writel(pcie
, axi_address
, AFI_AXI_BAR0_START
);
741 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR0_SZ
);
742 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR0
);
744 /* Bar 1: downstream IO bar */
745 fpci_bar
= 0xfdfc0000;
746 size
= resource_size(&pcie
->io
);
747 axi_address
= pcie
->io
.start
;
748 afi_writel(pcie
, axi_address
, AFI_AXI_BAR1_START
);
749 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR1_SZ
);
750 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR1
);
752 /* Bar 2: prefetchable memory BAR */
753 fpci_bar
= (((pcie
->prefetch
.start
>> 12) & 0x0fffffff) << 4) | 0x1;
754 size
= resource_size(&pcie
->prefetch
);
755 axi_address
= pcie
->prefetch
.start
;
756 afi_writel(pcie
, axi_address
, AFI_AXI_BAR2_START
);
757 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR2_SZ
);
758 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR2
);
760 /* Bar 3: non prefetchable memory BAR */
761 fpci_bar
= (((pcie
->mem
.start
>> 12) & 0x0fffffff) << 4) | 0x1;
762 size
= resource_size(&pcie
->mem
);
763 axi_address
= pcie
->mem
.start
;
764 afi_writel(pcie
, axi_address
, AFI_AXI_BAR3_START
);
765 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR3_SZ
);
766 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR3
);
768 /* NULL out the remaining BARs as they are not used */
769 afi_writel(pcie
, 0, AFI_AXI_BAR4_START
);
770 afi_writel(pcie
, 0, AFI_AXI_BAR4_SZ
);
771 afi_writel(pcie
, 0, AFI_FPCI_BAR4
);
773 afi_writel(pcie
, 0, AFI_AXI_BAR5_START
);
774 afi_writel(pcie
, 0, AFI_AXI_BAR5_SZ
);
775 afi_writel(pcie
, 0, AFI_FPCI_BAR5
);
777 /* map all upstream transactions as uncached */
778 afi_writel(pcie
, 0, AFI_CACHE_BAR0_ST
);
779 afi_writel(pcie
, 0, AFI_CACHE_BAR0_SZ
);
780 afi_writel(pcie
, 0, AFI_CACHE_BAR1_ST
);
781 afi_writel(pcie
, 0, AFI_CACHE_BAR1_SZ
);
783 /* MSI translations are setup only when needed */
784 afi_writel(pcie
, 0, AFI_MSI_FPCI_BAR_ST
);
785 afi_writel(pcie
, 0, AFI_MSI_BAR_SZ
);
786 afi_writel(pcie
, 0, AFI_MSI_AXI_BAR_ST
);
787 afi_writel(pcie
, 0, AFI_MSI_BAR_SZ
);
790 static int tegra_pcie_pll_wait(struct tegra_pcie
*pcie
, unsigned long timeout
)
792 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
795 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
797 while (time_before(jiffies
, timeout
)) {
798 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
799 if (value
& PADS_PLL_CTL_LOCKDET
)
806 static int tegra_pcie_phy_enable(struct tegra_pcie
*pcie
)
808 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
812 /* initialize internal PHY, enable up to 16 PCIE lanes */
813 pads_writel(pcie
, 0x0, PADS_CTL_SEL
);
815 /* override IDDQ to 1 on all 4 lanes */
816 value
= pads_readl(pcie
, PADS_CTL
);
817 value
|= PADS_CTL_IDDQ_1L
;
818 pads_writel(pcie
, value
, PADS_CTL
);
821 * Set up PHY PLL inputs select PLLE output as refclock,
822 * set TX ref sel to div10 (not div5).
824 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
825 value
&= ~(PADS_PLL_CTL_REFCLK_MASK
| PADS_PLL_CTL_TXCLKREF_MASK
);
826 value
|= PADS_PLL_CTL_REFCLK_INTERNAL_CML
| soc
->tx_ref_sel
;
827 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
830 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
831 value
&= ~PADS_PLL_CTL_RST_B4SM
;
832 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
834 usleep_range(20, 100);
836 /* take PLL out of reset */
837 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
838 value
|= PADS_PLL_CTL_RST_B4SM
;
839 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
841 /* Configure the reference clock driver */
842 value
= PADS_REFCLK_CFG_VALUE
| (PADS_REFCLK_CFG_VALUE
<< 16);
843 pads_writel(pcie
, value
, PADS_REFCLK_CFG0
);
844 if (soc
->num_ports
> 2)
845 pads_writel(pcie
, PADS_REFCLK_CFG_VALUE
, PADS_REFCLK_CFG1
);
847 /* wait for the PLL to lock */
848 err
= tegra_pcie_pll_wait(pcie
, 500);
850 dev_err(pcie
->dev
, "PLL failed to lock: %d\n", err
);
854 /* turn off IDDQ override */
855 value
= pads_readl(pcie
, PADS_CTL
);
856 value
&= ~PADS_CTL_IDDQ_1L
;
857 pads_writel(pcie
, value
, PADS_CTL
);
859 /* enable TX/RX data */
860 value
= pads_readl(pcie
, PADS_CTL
);
861 value
|= PADS_CTL_TX_DATA_EN_1L
| PADS_CTL_RX_DATA_EN_1L
;
862 pads_writel(pcie
, value
, PADS_CTL
);
867 static int tegra_pcie_phy_disable(struct tegra_pcie
*pcie
)
869 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
872 /* disable TX/RX data */
873 value
= pads_readl(pcie
, PADS_CTL
);
874 value
&= ~(PADS_CTL_TX_DATA_EN_1L
| PADS_CTL_RX_DATA_EN_1L
);
875 pads_writel(pcie
, value
, PADS_CTL
);
878 value
= pads_readl(pcie
, PADS_CTL
);
879 value
|= PADS_CTL_IDDQ_1L
;
880 pads_writel(pcie
, PADS_CTL
, value
);
883 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
884 value
&= ~PADS_PLL_CTL_RST_B4SM
;
885 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
887 usleep_range(20, 100);
892 static int tegra_pcie_port_phy_power_on(struct tegra_pcie_port
*port
)
894 struct device
*dev
= port
->pcie
->dev
;
898 for (i
= 0; i
< port
->lanes
; i
++) {
899 err
= phy_power_on(port
->phys
[i
]);
901 dev_err(dev
, "failed to power on PHY#%u: %d\n", i
,
910 static int tegra_pcie_port_phy_power_off(struct tegra_pcie_port
*port
)
912 struct device
*dev
= port
->pcie
->dev
;
916 for (i
= 0; i
< port
->lanes
; i
++) {
917 err
= phy_power_off(port
->phys
[i
]);
919 dev_err(dev
, "failed to power off PHY#%u: %d\n", i
,
928 static int tegra_pcie_phy_power_on(struct tegra_pcie
*pcie
)
930 struct tegra_pcie_port
*port
;
933 if (pcie
->legacy_phy
) {
935 err
= phy_power_on(pcie
->phy
);
937 err
= tegra_pcie_phy_enable(pcie
);
940 dev_err(pcie
->dev
, "failed to power on PHY: %d\n", err
);
945 list_for_each_entry(port
, &pcie
->ports
, list
) {
946 err
= tegra_pcie_port_phy_power_on(port
);
949 "failed to power on PCIe port %u PHY: %d\n",
958 static int tegra_pcie_phy_power_off(struct tegra_pcie
*pcie
)
960 struct tegra_pcie_port
*port
;
963 if (pcie
->legacy_phy
) {
965 err
= phy_power_off(pcie
->phy
);
967 err
= tegra_pcie_phy_disable(pcie
);
970 dev_err(pcie
->dev
, "failed to power off PHY: %d\n",
976 list_for_each_entry(port
, &pcie
->ports
, list
) {
977 err
= tegra_pcie_port_phy_power_off(port
);
980 "failed to power off PCIe port %u PHY: %d\n",
989 static int tegra_pcie_enable_controller(struct tegra_pcie
*pcie
)
991 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
992 struct tegra_pcie_port
*port
;
996 /* enable PLL power down */
998 value
= afi_readl(pcie
, AFI_PLLE_CONTROL
);
999 value
&= ~AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL
;
1000 value
|= AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN
;
1001 afi_writel(pcie
, value
, AFI_PLLE_CONTROL
);
1004 /* power down PCIe slot clock bias pad */
1005 if (soc
->has_pex_bias_ctrl
)
1006 afi_writel(pcie
, 0, AFI_PEXBIAS_CTRL_0
);
1008 /* configure mode and disable all ports */
1009 value
= afi_readl(pcie
, AFI_PCIE_CONFIG
);
1010 value
&= ~AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK
;
1011 value
|= AFI_PCIE_CONFIG_PCIE_DISABLE_ALL
| pcie
->xbar_config
;
1013 list_for_each_entry(port
, &pcie
->ports
, list
)
1014 value
&= ~AFI_PCIE_CONFIG_PCIE_DISABLE(port
->index
);
1016 afi_writel(pcie
, value
, AFI_PCIE_CONFIG
);
1018 if (soc
->has_gen2
) {
1019 value
= afi_readl(pcie
, AFI_FUSE
);
1020 value
&= ~AFI_FUSE_PCIE_T0_GEN2_DIS
;
1021 afi_writel(pcie
, value
, AFI_FUSE
);
1023 value
= afi_readl(pcie
, AFI_FUSE
);
1024 value
|= AFI_FUSE_PCIE_T0_GEN2_DIS
;
1025 afi_writel(pcie
, value
, AFI_FUSE
);
1028 err
= tegra_pcie_phy_power_on(pcie
);
1030 dev_err(pcie
->dev
, "failed to power on PHY(s): %d\n", err
);
1034 /* take the PCIe interface module out of reset */
1035 reset_control_deassert(pcie
->pcie_xrst
);
1037 /* finally enable PCIe */
1038 value
= afi_readl(pcie
, AFI_CONFIGURATION
);
1039 value
|= AFI_CONFIGURATION_EN_FPCI
;
1040 afi_writel(pcie
, value
, AFI_CONFIGURATION
);
1042 value
= AFI_INTR_EN_INI_SLVERR
| AFI_INTR_EN_INI_DECERR
|
1043 AFI_INTR_EN_TGT_SLVERR
| AFI_INTR_EN_TGT_DECERR
|
1044 AFI_INTR_EN_TGT_WRERR
| AFI_INTR_EN_DFPCI_DECERR
;
1046 if (soc
->has_intr_prsnt_sense
)
1047 value
|= AFI_INTR_EN_PRSNT_SENSE
;
1049 afi_writel(pcie
, value
, AFI_AFI_INTR_ENABLE
);
1050 afi_writel(pcie
, 0xffffffff, AFI_SM_INTR_ENABLE
);
1052 /* don't enable MSI for now, only when needed */
1053 afi_writel(pcie
, AFI_INTR_MASK_INT_MASK
, AFI_INTR_MASK
);
1055 /* disable all exceptions */
1056 afi_writel(pcie
, 0, AFI_FPCI_ERROR_MASKS
);
1061 static void tegra_pcie_power_off(struct tegra_pcie
*pcie
)
1065 /* TODO: disable and unprepare clocks? */
1067 err
= tegra_pcie_phy_power_off(pcie
);
1069 dev_err(pcie
->dev
, "failed to power off PHY(s): %d\n", err
);
1071 reset_control_assert(pcie
->pcie_xrst
);
1072 reset_control_assert(pcie
->afi_rst
);
1073 reset_control_assert(pcie
->pex_rst
);
1075 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE
);
1077 err
= regulator_bulk_disable(pcie
->num_supplies
, pcie
->supplies
);
1079 dev_warn(pcie
->dev
, "failed to disable regulators: %d\n", err
);
1082 static int tegra_pcie_power_on(struct tegra_pcie
*pcie
)
1084 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1087 reset_control_assert(pcie
->pcie_xrst
);
1088 reset_control_assert(pcie
->afi_rst
);
1089 reset_control_assert(pcie
->pex_rst
);
1091 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE
);
1093 /* enable regulators */
1094 err
= regulator_bulk_enable(pcie
->num_supplies
, pcie
->supplies
);
1096 dev_err(pcie
->dev
, "failed to enable regulators: %d\n", err
);
1098 err
= tegra_powergate_sequence_power_up(TEGRA_POWERGATE_PCIE
,
1102 dev_err(pcie
->dev
, "powerup sequence failed: %d\n", err
);
1106 reset_control_deassert(pcie
->afi_rst
);
1108 err
= clk_prepare_enable(pcie
->afi_clk
);
1110 dev_err(pcie
->dev
, "failed to enable AFI clock: %d\n", err
);
1114 if (soc
->has_cml_clk
) {
1115 err
= clk_prepare_enable(pcie
->cml_clk
);
1117 dev_err(pcie
->dev
, "failed to enable CML clock: %d\n",
1123 err
= clk_prepare_enable(pcie
->pll_e
);
1125 dev_err(pcie
->dev
, "failed to enable PLLE clock: %d\n", err
);
1132 static int tegra_pcie_clocks_get(struct tegra_pcie
*pcie
)
1134 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1136 pcie
->pex_clk
= devm_clk_get(pcie
->dev
, "pex");
1137 if (IS_ERR(pcie
->pex_clk
))
1138 return PTR_ERR(pcie
->pex_clk
);
1140 pcie
->afi_clk
= devm_clk_get(pcie
->dev
, "afi");
1141 if (IS_ERR(pcie
->afi_clk
))
1142 return PTR_ERR(pcie
->afi_clk
);
1144 pcie
->pll_e
= devm_clk_get(pcie
->dev
, "pll_e");
1145 if (IS_ERR(pcie
->pll_e
))
1146 return PTR_ERR(pcie
->pll_e
);
1148 if (soc
->has_cml_clk
) {
1149 pcie
->cml_clk
= devm_clk_get(pcie
->dev
, "cml");
1150 if (IS_ERR(pcie
->cml_clk
))
1151 return PTR_ERR(pcie
->cml_clk
);
1157 static int tegra_pcie_resets_get(struct tegra_pcie
*pcie
)
1159 pcie
->pex_rst
= devm_reset_control_get(pcie
->dev
, "pex");
1160 if (IS_ERR(pcie
->pex_rst
))
1161 return PTR_ERR(pcie
->pex_rst
);
1163 pcie
->afi_rst
= devm_reset_control_get(pcie
->dev
, "afi");
1164 if (IS_ERR(pcie
->afi_rst
))
1165 return PTR_ERR(pcie
->afi_rst
);
1167 pcie
->pcie_xrst
= devm_reset_control_get(pcie
->dev
, "pcie_x");
1168 if (IS_ERR(pcie
->pcie_xrst
))
1169 return PTR_ERR(pcie
->pcie_xrst
);
1174 static int tegra_pcie_phys_get_legacy(struct tegra_pcie
*pcie
)
1178 pcie
->phy
= devm_phy_optional_get(pcie
->dev
, "pcie");
1179 if (IS_ERR(pcie
->phy
)) {
1180 err
= PTR_ERR(pcie
->phy
);
1181 dev_err(pcie
->dev
, "failed to get PHY: %d\n", err
);
1185 err
= phy_init(pcie
->phy
);
1187 dev_err(pcie
->dev
, "failed to initialize PHY: %d\n", err
);
1191 pcie
->legacy_phy
= true;
1196 static struct phy
*devm_of_phy_optional_get_index(struct device
*dev
,
1197 struct device_node
*np
,
1198 const char *consumer
,
1204 name
= kasprintf(GFP_KERNEL
, "%s-%u", consumer
, index
);
1206 return ERR_PTR(-ENOMEM
);
1208 phy
= devm_of_phy_get(dev
, np
, name
);
1211 if (IS_ERR(phy
) && PTR_ERR(phy
) == -ENODEV
)
1217 static int tegra_pcie_port_get_phys(struct tegra_pcie_port
*port
)
1219 struct device
*dev
= port
->pcie
->dev
;
1224 port
->phys
= devm_kcalloc(dev
, sizeof(phy
), port
->lanes
, GFP_KERNEL
);
1228 for (i
= 0; i
< port
->lanes
; i
++) {
1229 phy
= devm_of_phy_optional_get_index(dev
, port
->np
, "pcie", i
);
1231 dev_err(dev
, "failed to get PHY#%u: %ld\n", i
,
1233 return PTR_ERR(phy
);
1236 err
= phy_init(phy
);
1238 dev_err(dev
, "failed to initialize PHY#%u: %d\n", i
,
1243 port
->phys
[i
] = phy
;
1249 static int tegra_pcie_phys_get(struct tegra_pcie
*pcie
)
1251 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1252 struct device_node
*np
= pcie
->dev
->of_node
;
1253 struct tegra_pcie_port
*port
;
1256 if (!soc
->has_gen2
|| of_find_property(np
, "phys", NULL
) != NULL
)
1257 return tegra_pcie_phys_get_legacy(pcie
);
1259 list_for_each_entry(port
, &pcie
->ports
, list
) {
1260 err
= tegra_pcie_port_get_phys(port
);
1268 static int tegra_pcie_get_resources(struct tegra_pcie
*pcie
)
1270 struct platform_device
*pdev
= to_platform_device(pcie
->dev
);
1271 struct resource
*pads
, *afi
, *res
;
1274 err
= tegra_pcie_clocks_get(pcie
);
1276 dev_err(&pdev
->dev
, "failed to get clocks: %d\n", err
);
1280 err
= tegra_pcie_resets_get(pcie
);
1282 dev_err(&pdev
->dev
, "failed to get resets: %d\n", err
);
1286 err
= tegra_pcie_phys_get(pcie
);
1288 dev_err(&pdev
->dev
, "failed to get PHYs: %d\n", err
);
1292 err
= tegra_pcie_power_on(pcie
);
1294 dev_err(&pdev
->dev
, "failed to power up: %d\n", err
);
1298 pads
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pads");
1299 pcie
->pads
= devm_ioremap_resource(&pdev
->dev
, pads
);
1300 if (IS_ERR(pcie
->pads
)) {
1301 err
= PTR_ERR(pcie
->pads
);
1305 afi
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "afi");
1306 pcie
->afi
= devm_ioremap_resource(&pdev
->dev
, afi
);
1307 if (IS_ERR(pcie
->afi
)) {
1308 err
= PTR_ERR(pcie
->afi
);
1312 /* request configuration space, but remap later, on demand */
1313 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "cs");
1315 err
= -EADDRNOTAVAIL
;
1319 pcie
->cs
= devm_request_mem_region(pcie
->dev
, res
->start
,
1320 resource_size(res
), res
->name
);
1322 err
= -EADDRNOTAVAIL
;
1326 /* request interrupt */
1327 err
= platform_get_irq_byname(pdev
, "intr");
1329 dev_err(&pdev
->dev
, "failed to get IRQ: %d\n", err
);
1335 err
= request_irq(pcie
->irq
, tegra_pcie_isr
, IRQF_SHARED
, "PCIE", pcie
);
1337 dev_err(&pdev
->dev
, "failed to register IRQ: %d\n", err
);
1344 tegra_pcie_power_off(pcie
);
1348 static int tegra_pcie_put_resources(struct tegra_pcie
*pcie
)
1353 free_irq(pcie
->irq
, pcie
);
1355 tegra_pcie_power_off(pcie
);
1357 err
= phy_exit(pcie
->phy
);
1359 dev_err(pcie
->dev
, "failed to teardown PHY: %d\n", err
);
1364 static int tegra_msi_alloc(struct tegra_msi
*chip
)
1368 mutex_lock(&chip
->lock
);
1370 msi
= find_first_zero_bit(chip
->used
, INT_PCI_MSI_NR
);
1371 if (msi
< INT_PCI_MSI_NR
)
1372 set_bit(msi
, chip
->used
);
1376 mutex_unlock(&chip
->lock
);
1381 static void tegra_msi_free(struct tegra_msi
*chip
, unsigned long irq
)
1383 struct device
*dev
= chip
->chip
.dev
;
1385 mutex_lock(&chip
->lock
);
1387 if (!test_bit(irq
, chip
->used
))
1388 dev_err(dev
, "trying to free unused MSI#%lu\n", irq
);
1390 clear_bit(irq
, chip
->used
);
1392 mutex_unlock(&chip
->lock
);
1395 static irqreturn_t
tegra_pcie_msi_irq(int irq
, void *data
)
1397 struct tegra_pcie
*pcie
= data
;
1398 struct tegra_msi
*msi
= &pcie
->msi
;
1399 unsigned int i
, processed
= 0;
1401 for (i
= 0; i
< 8; i
++) {
1402 unsigned long reg
= afi_readl(pcie
, AFI_MSI_VEC0
+ i
* 4);
1405 unsigned int offset
= find_first_bit(®
, 32);
1406 unsigned int index
= i
* 32 + offset
;
1409 /* clear the interrupt */
1410 afi_writel(pcie
, 1 << offset
, AFI_MSI_VEC0
+ i
* 4);
1412 irq
= irq_find_mapping(msi
->domain
, index
);
1414 if (test_bit(index
, msi
->used
))
1415 generic_handle_irq(irq
);
1417 dev_info(pcie
->dev
, "unhandled MSI\n");
1420 * that's weird who triggered this?
1423 dev_info(pcie
->dev
, "unexpected MSI\n");
1426 /* see if there's any more pending in this vector */
1427 reg
= afi_readl(pcie
, AFI_MSI_VEC0
+ i
* 4);
1433 return processed
> 0 ? IRQ_HANDLED
: IRQ_NONE
;
1436 static int tegra_msi_setup_irq(struct msi_controller
*chip
,
1437 struct pci_dev
*pdev
, struct msi_desc
*desc
)
1439 struct tegra_msi
*msi
= to_tegra_msi(chip
);
1444 hwirq
= tegra_msi_alloc(msi
);
1448 irq
= irq_create_mapping(msi
->domain
, hwirq
);
1450 tegra_msi_free(msi
, hwirq
);
1454 irq_set_msi_desc(irq
, desc
);
1456 msg
.address_lo
= virt_to_phys((void *)msi
->pages
);
1457 /* 32 bit address only */
1461 pci_write_msi_msg(irq
, &msg
);
1466 static void tegra_msi_teardown_irq(struct msi_controller
*chip
,
1469 struct tegra_msi
*msi
= to_tegra_msi(chip
);
1470 struct irq_data
*d
= irq_get_irq_data(irq
);
1471 irq_hw_number_t hwirq
= irqd_to_hwirq(d
);
1473 irq_dispose_mapping(irq
);
1474 tegra_msi_free(msi
, hwirq
);
1477 static struct irq_chip tegra_msi_irq_chip
= {
1478 .name
= "Tegra PCIe MSI",
1479 .irq_enable
= pci_msi_unmask_irq
,
1480 .irq_disable
= pci_msi_mask_irq
,
1481 .irq_mask
= pci_msi_mask_irq
,
1482 .irq_unmask
= pci_msi_unmask_irq
,
1485 static int tegra_msi_map(struct irq_domain
*domain
, unsigned int irq
,
1486 irq_hw_number_t hwirq
)
1488 irq_set_chip_and_handler(irq
, &tegra_msi_irq_chip
, handle_simple_irq
);
1489 irq_set_chip_data(irq
, domain
->host_data
);
1491 tegra_cpuidle_pcie_irqs_in_use();
1496 static const struct irq_domain_ops msi_domain_ops
= {
1497 .map
= tegra_msi_map
,
1500 static int tegra_pcie_enable_msi(struct tegra_pcie
*pcie
)
1502 struct platform_device
*pdev
= to_platform_device(pcie
->dev
);
1503 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1504 struct tegra_msi
*msi
= &pcie
->msi
;
1509 mutex_init(&msi
->lock
);
1511 msi
->chip
.dev
= pcie
->dev
;
1512 msi
->chip
.setup_irq
= tegra_msi_setup_irq
;
1513 msi
->chip
.teardown_irq
= tegra_msi_teardown_irq
;
1515 msi
->domain
= irq_domain_add_linear(pcie
->dev
->of_node
, INT_PCI_MSI_NR
,
1516 &msi_domain_ops
, &msi
->chip
);
1518 dev_err(&pdev
->dev
, "failed to create IRQ domain\n");
1522 err
= platform_get_irq_byname(pdev
, "msi");
1524 dev_err(&pdev
->dev
, "failed to get IRQ: %d\n", err
);
1530 err
= request_irq(msi
->irq
, tegra_pcie_msi_irq
, IRQF_NO_THREAD
,
1531 tegra_msi_irq_chip
.name
, pcie
);
1533 dev_err(&pdev
->dev
, "failed to request IRQ: %d\n", err
);
1537 /* setup AFI/FPCI range */
1538 msi
->pages
= __get_free_pages(GFP_KERNEL
, 0);
1539 base
= virt_to_phys((void *)msi
->pages
);
1541 afi_writel(pcie
, base
>> soc
->msi_base_shift
, AFI_MSI_FPCI_BAR_ST
);
1542 afi_writel(pcie
, base
, AFI_MSI_AXI_BAR_ST
);
1543 /* this register is in 4K increments */
1544 afi_writel(pcie
, 1, AFI_MSI_BAR_SZ
);
1546 /* enable all MSI vectors */
1547 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC0
);
1548 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC1
);
1549 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC2
);
1550 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC3
);
1551 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC4
);
1552 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC5
);
1553 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC6
);
1554 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC7
);
1556 /* and unmask the MSI interrupt */
1557 reg
= afi_readl(pcie
, AFI_INTR_MASK
);
1558 reg
|= AFI_INTR_MASK_MSI_MASK
;
1559 afi_writel(pcie
, reg
, AFI_INTR_MASK
);
1564 irq_domain_remove(msi
->domain
);
1568 static int tegra_pcie_disable_msi(struct tegra_pcie
*pcie
)
1570 struct tegra_msi
*msi
= &pcie
->msi
;
1571 unsigned int i
, irq
;
1574 /* mask the MSI interrupt */
1575 value
= afi_readl(pcie
, AFI_INTR_MASK
);
1576 value
&= ~AFI_INTR_MASK_MSI_MASK
;
1577 afi_writel(pcie
, value
, AFI_INTR_MASK
);
1579 /* disable all MSI vectors */
1580 afi_writel(pcie
, 0, AFI_MSI_EN_VEC0
);
1581 afi_writel(pcie
, 0, AFI_MSI_EN_VEC1
);
1582 afi_writel(pcie
, 0, AFI_MSI_EN_VEC2
);
1583 afi_writel(pcie
, 0, AFI_MSI_EN_VEC3
);
1584 afi_writel(pcie
, 0, AFI_MSI_EN_VEC4
);
1585 afi_writel(pcie
, 0, AFI_MSI_EN_VEC5
);
1586 afi_writel(pcie
, 0, AFI_MSI_EN_VEC6
);
1587 afi_writel(pcie
, 0, AFI_MSI_EN_VEC7
);
1589 free_pages(msi
->pages
, 0);
1592 free_irq(msi
->irq
, pcie
);
1594 for (i
= 0; i
< INT_PCI_MSI_NR
; i
++) {
1595 irq
= irq_find_mapping(msi
->domain
, i
);
1597 irq_dispose_mapping(irq
);
1600 irq_domain_remove(msi
->domain
);
1605 static int tegra_pcie_get_xbar_config(struct tegra_pcie
*pcie
, u32 lanes
,
1608 struct device_node
*np
= pcie
->dev
->of_node
;
1610 if (of_device_is_compatible(np
, "nvidia,tegra124-pcie")) {
1613 dev_info(pcie
->dev
, "4x1, 1x1 configuration\n");
1614 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1
;
1618 dev_info(pcie
->dev
, "2x1, 1x1 configuration\n");
1619 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1
;
1622 } else if (of_device_is_compatible(np
, "nvidia,tegra30-pcie")) {
1625 dev_info(pcie
->dev
, "4x1, 2x1 configuration\n");
1626 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420
;
1630 dev_info(pcie
->dev
, "2x3 configuration\n");
1631 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222
;
1635 dev_info(pcie
->dev
, "4x1, 1x2 configuration\n");
1636 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411
;
1639 } else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie")) {
1642 dev_info(pcie
->dev
, "single-mode configuration\n");
1643 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE
;
1647 dev_info(pcie
->dev
, "dual-mode configuration\n");
1648 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL
;
1657 * Check whether a given set of supplies is available in a device tree node.
1658 * This is used to check whether the new or the legacy device tree bindings
1661 static bool of_regulator_bulk_available(struct device_node
*np
,
1662 struct regulator_bulk_data
*supplies
,
1663 unsigned int num_supplies
)
1668 for (i
= 0; i
< num_supplies
; i
++) {
1669 snprintf(property
, 32, "%s-supply", supplies
[i
].supply
);
1671 if (of_find_property(np
, property
, NULL
) == NULL
)
1679 * Old versions of the device tree binding for this device used a set of power
1680 * supplies that didn't match the hardware inputs. This happened to work for a
1681 * number of cases but is not future proof. However to preserve backwards-
1682 * compatibility with old device trees, this function will try to use the old
1685 static int tegra_pcie_get_legacy_regulators(struct tegra_pcie
*pcie
)
1687 struct device_node
*np
= pcie
->dev
->of_node
;
1689 if (of_device_is_compatible(np
, "nvidia,tegra30-pcie"))
1690 pcie
->num_supplies
= 3;
1691 else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie"))
1692 pcie
->num_supplies
= 2;
1694 if (pcie
->num_supplies
== 0) {
1695 dev_err(pcie
->dev
, "device %s not supported in legacy mode\n",
1700 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1701 sizeof(*pcie
->supplies
),
1703 if (!pcie
->supplies
)
1706 pcie
->supplies
[0].supply
= "pex-clk";
1707 pcie
->supplies
[1].supply
= "vdd";
1709 if (pcie
->num_supplies
> 2)
1710 pcie
->supplies
[2].supply
= "avdd";
1712 return devm_regulator_bulk_get(pcie
->dev
, pcie
->num_supplies
,
1717 * Obtains the list of regulators required for a particular generation of the
1720 * This would've been nice to do simply by providing static tables for use
1721 * with the regulator_bulk_*() API, but unfortunately Tegra30 is a bit quirky
1722 * in that it has two pairs or AVDD_PEX and VDD_PEX supplies (PEXA and PEXB)
1723 * and either seems to be optional depending on which ports are being used.
1725 static int tegra_pcie_get_regulators(struct tegra_pcie
*pcie
, u32 lane_mask
)
1727 struct device_node
*np
= pcie
->dev
->of_node
;
1730 if (of_device_is_compatible(np
, "nvidia,tegra124-pcie")) {
1731 pcie
->num_supplies
= 7;
1733 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1734 sizeof(*pcie
->supplies
),
1736 if (!pcie
->supplies
)
1739 pcie
->supplies
[i
++].supply
= "avddio-pex";
1740 pcie
->supplies
[i
++].supply
= "dvddio-pex";
1741 pcie
->supplies
[i
++].supply
= "avdd-pex-pll";
1742 pcie
->supplies
[i
++].supply
= "hvdd-pex";
1743 pcie
->supplies
[i
++].supply
= "hvdd-pex-pll-e";
1744 pcie
->supplies
[i
++].supply
= "vddio-pex-ctl";
1745 pcie
->supplies
[i
++].supply
= "avdd-pll-erefe";
1746 } else if (of_device_is_compatible(np
, "nvidia,tegra30-pcie")) {
1747 bool need_pexa
= false, need_pexb
= false;
1749 /* VDD_PEXA and AVDD_PEXA supply lanes 0 to 3 */
1750 if (lane_mask
& 0x0f)
1753 /* VDD_PEXB and AVDD_PEXB supply lanes 4 to 5 */
1754 if (lane_mask
& 0x30)
1757 pcie
->num_supplies
= 4 + (need_pexa
? 2 : 0) +
1758 (need_pexb
? 2 : 0);
1760 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1761 sizeof(*pcie
->supplies
),
1763 if (!pcie
->supplies
)
1766 pcie
->supplies
[i
++].supply
= "avdd-pex-pll";
1767 pcie
->supplies
[i
++].supply
= "hvdd-pex";
1768 pcie
->supplies
[i
++].supply
= "vddio-pex-ctl";
1769 pcie
->supplies
[i
++].supply
= "avdd-plle";
1772 pcie
->supplies
[i
++].supply
= "avdd-pexa";
1773 pcie
->supplies
[i
++].supply
= "vdd-pexa";
1777 pcie
->supplies
[i
++].supply
= "avdd-pexb";
1778 pcie
->supplies
[i
++].supply
= "vdd-pexb";
1780 } else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie")) {
1781 pcie
->num_supplies
= 5;
1783 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1784 sizeof(*pcie
->supplies
),
1786 if (!pcie
->supplies
)
1789 pcie
->supplies
[0].supply
= "avdd-pex";
1790 pcie
->supplies
[1].supply
= "vdd-pex";
1791 pcie
->supplies
[2].supply
= "avdd-pex-pll";
1792 pcie
->supplies
[3].supply
= "avdd-plle";
1793 pcie
->supplies
[4].supply
= "vddio-pex-clk";
1796 if (of_regulator_bulk_available(pcie
->dev
->of_node
, pcie
->supplies
,
1797 pcie
->num_supplies
))
1798 return devm_regulator_bulk_get(pcie
->dev
, pcie
->num_supplies
,
1802 * If not all regulators are available for this new scheme, assume
1803 * that the device tree complies with an older version of the device
1806 dev_info(pcie
->dev
, "using legacy DT binding for power supplies\n");
1808 devm_kfree(pcie
->dev
, pcie
->supplies
);
1809 pcie
->num_supplies
= 0;
1811 return tegra_pcie_get_legacy_regulators(pcie
);
1814 static int tegra_pcie_parse_dt(struct tegra_pcie
*pcie
)
1816 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1817 struct device_node
*np
= pcie
->dev
->of_node
, *port
;
1818 struct of_pci_range_parser parser
;
1819 struct of_pci_range range
;
1820 u32 lanes
= 0, mask
= 0;
1821 unsigned int lane
= 0;
1822 struct resource res
;
1825 memset(&pcie
->all
, 0, sizeof(pcie
->all
));
1826 pcie
->all
.flags
= IORESOURCE_MEM
;
1827 pcie
->all
.name
= np
->full_name
;
1828 pcie
->all
.start
= ~0;
1831 if (of_pci_range_parser_init(&parser
, np
)) {
1832 dev_err(pcie
->dev
, "missing \"ranges\" property\n");
1836 for_each_of_pci_range(&parser
, &range
) {
1837 err
= of_pci_range_to_resource(&range
, np
, &res
);
1841 switch (res
.flags
& IORESOURCE_TYPE_BITS
) {
1843 /* Track the bus -> CPU I/O mapping offset. */
1844 pcie
->offset
.io
= res
.start
- range
.pci_addr
;
1846 memcpy(&pcie
->pio
, &res
, sizeof(res
));
1847 pcie
->pio
.name
= np
->full_name
;
1850 * The Tegra PCIe host bridge uses this to program the
1851 * mapping of the I/O space to the physical address,
1852 * so we override the .start and .end fields here that
1853 * of_pci_range_to_resource() converted to I/O space.
1854 * We also set the IORESOURCE_MEM type to clarify that
1855 * the resource is in the physical memory space.
1857 pcie
->io
.start
= range
.cpu_addr
;
1858 pcie
->io
.end
= range
.cpu_addr
+ range
.size
- 1;
1859 pcie
->io
.flags
= IORESOURCE_MEM
;
1860 pcie
->io
.name
= "I/O";
1862 memcpy(&res
, &pcie
->io
, sizeof(res
));
1865 case IORESOURCE_MEM
:
1867 * Track the bus -> CPU memory mapping offset. This
1868 * assumes that the prefetchable and non-prefetchable
1869 * regions will be the last of type IORESOURCE_MEM in
1870 * the ranges property.
1872 pcie
->offset
.mem
= res
.start
- range
.pci_addr
;
1874 if (res
.flags
& IORESOURCE_PREFETCH
) {
1875 memcpy(&pcie
->prefetch
, &res
, sizeof(res
));
1876 pcie
->prefetch
.name
= "prefetchable";
1878 memcpy(&pcie
->mem
, &res
, sizeof(res
));
1879 pcie
->mem
.name
= "non-prefetchable";
1884 if (res
.start
<= pcie
->all
.start
)
1885 pcie
->all
.start
= res
.start
;
1887 if (res
.end
>= pcie
->all
.end
)
1888 pcie
->all
.end
= res
.end
;
1891 err
= devm_request_resource(pcie
->dev
, &iomem_resource
, &pcie
->all
);
1895 err
= of_pci_parse_bus_range(np
, &pcie
->busn
);
1897 dev_err(pcie
->dev
, "failed to parse ranges property: %d\n",
1899 pcie
->busn
.name
= np
->name
;
1900 pcie
->busn
.start
= 0;
1901 pcie
->busn
.end
= 0xff;
1902 pcie
->busn
.flags
= IORESOURCE_BUS
;
1905 /* parse root ports */
1906 for_each_child_of_node(np
, port
) {
1907 struct tegra_pcie_port
*rp
;
1911 err
= of_pci_get_devfn(port
);
1913 dev_err(pcie
->dev
, "failed to parse address: %d\n",
1918 index
= PCI_SLOT(err
);
1920 if (index
< 1 || index
> soc
->num_ports
) {
1921 dev_err(pcie
->dev
, "invalid port number: %d\n", index
);
1927 err
= of_property_read_u32(port
, "nvidia,num-lanes", &value
);
1929 dev_err(pcie
->dev
, "failed to parse # of lanes: %d\n",
1935 dev_err(pcie
->dev
, "invalid # of lanes: %u\n", value
);
1939 lanes
|= value
<< (index
<< 3);
1941 if (!of_device_is_available(port
)) {
1946 mask
|= ((1 << value
) - 1) << lane
;
1949 rp
= devm_kzalloc(pcie
->dev
, sizeof(*rp
), GFP_KERNEL
);
1953 err
= of_address_to_resource(port
, 0, &rp
->regs
);
1955 dev_err(pcie
->dev
, "failed to parse address: %d\n",
1960 INIT_LIST_HEAD(&rp
->list
);
1966 rp
->base
= devm_ioremap_resource(pcie
->dev
, &rp
->regs
);
1967 if (IS_ERR(rp
->base
))
1968 return PTR_ERR(rp
->base
);
1970 list_add_tail(&rp
->list
, &pcie
->ports
);
1973 err
= tegra_pcie_get_xbar_config(pcie
, lanes
, &pcie
->xbar_config
);
1975 dev_err(pcie
->dev
, "invalid lane configuration\n");
1979 err
= tegra_pcie_get_regulators(pcie
, mask
);
1987 * FIXME: If there are no PCIe cards attached, then calling this function
1988 * can result in the increase of the bootup time as there are big timeout
1991 #define TEGRA_PCIE_LINKUP_TIMEOUT 200 /* up to 1.2 seconds */
1992 static bool tegra_pcie_port_check_link(struct tegra_pcie_port
*port
)
1994 unsigned int retries
= 3;
1995 unsigned long value
;
1997 /* override presence detection */
1998 value
= readl(port
->base
+ RP_PRIV_MISC
);
1999 value
&= ~RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT
;
2000 value
|= RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT
;
2001 writel(value
, port
->base
+ RP_PRIV_MISC
);
2004 unsigned int timeout
= TEGRA_PCIE_LINKUP_TIMEOUT
;
2007 value
= readl(port
->base
+ RP_VEND_XP
);
2009 if (value
& RP_VEND_XP_DL_UP
)
2012 usleep_range(1000, 2000);
2013 } while (--timeout
);
2016 dev_err(port
->pcie
->dev
, "link %u down, retrying\n",
2021 timeout
= TEGRA_PCIE_LINKUP_TIMEOUT
;
2024 value
= readl(port
->base
+ RP_LINK_CONTROL_STATUS
);
2026 if (value
& RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE
)
2029 usleep_range(1000, 2000);
2030 } while (--timeout
);
2033 tegra_pcie_port_reset(port
);
2034 } while (--retries
);
2039 static int tegra_pcie_enable(struct tegra_pcie
*pcie
)
2041 struct tegra_pcie_port
*port
, *tmp
;
2044 list_for_each_entry_safe(port
, tmp
, &pcie
->ports
, list
) {
2045 dev_info(pcie
->dev
, "probing port %u, using %u lanes\n",
2046 port
->index
, port
->lanes
);
2048 tegra_pcie_port_enable(port
);
2050 if (tegra_pcie_port_check_link(port
))
2053 dev_info(pcie
->dev
, "link %u down, ignoring\n", port
->index
);
2055 tegra_pcie_port_disable(port
);
2056 tegra_pcie_port_free(port
);
2059 memset(&hw
, 0, sizeof(hw
));
2061 #ifdef CONFIG_PCI_MSI
2062 hw
.msi_ctrl
= &pcie
->msi
.chip
;
2065 hw
.nr_controllers
= 1;
2066 hw
.private_data
= (void **)&pcie
;
2067 hw
.setup
= tegra_pcie_setup
;
2068 hw
.map_irq
= tegra_pcie_map_irq
;
2069 hw
.ops
= &tegra_pcie_ops
;
2071 pci_common_init_dev(pcie
->dev
, &hw
);
2076 static const struct tegra_pcie_soc_data tegra20_pcie_data
= {
2078 .msi_base_shift
= 0,
2079 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA20
,
2080 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_DIV10
,
2081 .has_pex_clkreq_en
= false,
2082 .has_pex_bias_ctrl
= false,
2083 .has_intr_prsnt_sense
= false,
2084 .has_cml_clk
= false,
2088 static const struct tegra_pcie_soc_data tegra30_pcie_data
= {
2090 .msi_base_shift
= 8,
2091 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA30
,
2092 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_BUF_EN
,
2093 .has_pex_clkreq_en
= true,
2094 .has_pex_bias_ctrl
= true,
2095 .has_intr_prsnt_sense
= true,
2096 .has_cml_clk
= true,
2100 static const struct tegra_pcie_soc_data tegra124_pcie_data
= {
2102 .msi_base_shift
= 8,
2103 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA30
,
2104 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_BUF_EN
,
2105 .has_pex_clkreq_en
= true,
2106 .has_pex_bias_ctrl
= true,
2107 .has_intr_prsnt_sense
= true,
2108 .has_cml_clk
= true,
2112 static const struct of_device_id tegra_pcie_of_match
[] = {
2113 { .compatible
= "nvidia,tegra124-pcie", .data
= &tegra124_pcie_data
},
2114 { .compatible
= "nvidia,tegra30-pcie", .data
= &tegra30_pcie_data
},
2115 { .compatible
= "nvidia,tegra20-pcie", .data
= &tegra20_pcie_data
},
2118 MODULE_DEVICE_TABLE(of
, tegra_pcie_of_match
);
2120 static void *tegra_pcie_ports_seq_start(struct seq_file
*s
, loff_t
*pos
)
2122 struct tegra_pcie
*pcie
= s
->private;
2124 if (list_empty(&pcie
->ports
))
2127 seq_printf(s
, "Index Status\n");
2129 return seq_list_start(&pcie
->ports
, *pos
);
2132 static void *tegra_pcie_ports_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
2134 struct tegra_pcie
*pcie
= s
->private;
2136 return seq_list_next(v
, &pcie
->ports
, pos
);
2139 static void tegra_pcie_ports_seq_stop(struct seq_file
*s
, void *v
)
2143 static int tegra_pcie_ports_seq_show(struct seq_file
*s
, void *v
)
2145 bool up
= false, active
= false;
2146 struct tegra_pcie_port
*port
;
2149 port
= list_entry(v
, struct tegra_pcie_port
, list
);
2151 value
= readl(port
->base
+ RP_VEND_XP
);
2153 if (value
& RP_VEND_XP_DL_UP
)
2156 value
= readl(port
->base
+ RP_LINK_CONTROL_STATUS
);
2158 if (value
& RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE
)
2161 seq_printf(s
, "%2u ", port
->index
);
2164 seq_printf(s
, "up");
2168 seq_printf(s
, ", ");
2170 seq_printf(s
, "active");
2173 seq_printf(s
, "\n");
2177 static const struct seq_operations tegra_pcie_ports_seq_ops
= {
2178 .start
= tegra_pcie_ports_seq_start
,
2179 .next
= tegra_pcie_ports_seq_next
,
2180 .stop
= tegra_pcie_ports_seq_stop
,
2181 .show
= tegra_pcie_ports_seq_show
,
2184 static int tegra_pcie_ports_open(struct inode
*inode
, struct file
*file
)
2186 struct tegra_pcie
*pcie
= inode
->i_private
;
2190 err
= seq_open(file
, &tegra_pcie_ports_seq_ops
);
2194 s
= file
->private_data
;
2200 static const struct file_operations tegra_pcie_ports_ops
= {
2201 .owner
= THIS_MODULE
,
2202 .open
= tegra_pcie_ports_open
,
2204 .llseek
= seq_lseek
,
2205 .release
= seq_release
,
2208 static int tegra_pcie_debugfs_init(struct tegra_pcie
*pcie
)
2210 struct dentry
*file
;
2212 pcie
->debugfs
= debugfs_create_dir("pcie", NULL
);
2216 file
= debugfs_create_file("ports", S_IFREG
| S_IRUGO
, pcie
->debugfs
,
2217 pcie
, &tegra_pcie_ports_ops
);
2224 debugfs_remove_recursive(pcie
->debugfs
);
2225 pcie
->debugfs
= NULL
;
2229 static int tegra_pcie_probe(struct platform_device
*pdev
)
2231 const struct of_device_id
*match
;
2232 struct tegra_pcie
*pcie
;
2235 match
= of_match_device(tegra_pcie_of_match
, &pdev
->dev
);
2239 pcie
= devm_kzalloc(&pdev
->dev
, sizeof(*pcie
), GFP_KERNEL
);
2243 INIT_LIST_HEAD(&pcie
->buses
);
2244 INIT_LIST_HEAD(&pcie
->ports
);
2245 pcie
->soc_data
= match
->data
;
2246 pcie
->dev
= &pdev
->dev
;
2248 err
= tegra_pcie_parse_dt(pcie
);
2252 pcibios_min_mem
= 0;
2254 err
= tegra_pcie_get_resources(pcie
);
2256 dev_err(&pdev
->dev
, "failed to request resources: %d\n", err
);
2260 err
= tegra_pcie_enable_controller(pcie
);
2264 /* setup the AFI address translations */
2265 tegra_pcie_setup_translations(pcie
);
2267 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
2268 err
= tegra_pcie_enable_msi(pcie
);
2271 "failed to enable MSI support: %d\n",
2277 err
= tegra_pcie_enable(pcie
);
2279 dev_err(&pdev
->dev
, "failed to enable PCIe ports: %d\n", err
);
2283 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
2284 err
= tegra_pcie_debugfs_init(pcie
);
2286 dev_err(&pdev
->dev
, "failed to setup debugfs: %d\n",
2290 platform_set_drvdata(pdev
, pcie
);
2294 if (IS_ENABLED(CONFIG_PCI_MSI
))
2295 tegra_pcie_disable_msi(pcie
);
2297 tegra_pcie_put_resources(pcie
);
2301 static struct platform_driver tegra_pcie_driver
= {
2303 .name
= "tegra-pcie",
2304 .of_match_table
= tegra_pcie_of_match
,
2305 .suppress_bind_attrs
= true,
2307 .probe
= tegra_pcie_probe
,
2309 module_platform_driver(tegra_pcie_driver
);
2311 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
2312 MODULE_DESCRIPTION("NVIDIA Tegra PCIe driver");
2313 MODULE_LICENSE("GPL v2");