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 * Author: Thierry Reding <treding@nvidia.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful, but WITHOUT
20 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 #include <linux/clk.h>
30 #include <linux/debugfs.h>
31 #include <linux/delay.h>
32 #include <linux/export.h>
33 #include <linux/interrupt.h>
34 #include <linux/irq.h>
35 #include <linux/irqdomain.h>
36 #include <linux/kernel.h>
37 #include <linux/init.h>
38 #include <linux/msi.h>
39 #include <linux/of_address.h>
40 #include <linux/of_pci.h>
41 #include <linux/of_platform.h>
42 #include <linux/pci.h>
43 #include <linux/phy/phy.h>
44 #include <linux/platform_device.h>
45 #include <linux/reset.h>
46 #include <linux/sizes.h>
47 #include <linux/slab.h>
48 #include <linux/vmalloc.h>
49 #include <linux/regulator/consumer.h>
51 #include <soc/tegra/cpuidle.h>
52 #include <soc/tegra/pmc.h>
54 #include <asm/mach/irq.h>
55 #include <asm/mach/map.h>
56 #include <asm/mach/pci.h>
58 #define INT_PCI_MSI_NR (8 * 32)
60 /* register definitions */
62 #define AFI_AXI_BAR0_SZ 0x00
63 #define AFI_AXI_BAR1_SZ 0x04
64 #define AFI_AXI_BAR2_SZ 0x08
65 #define AFI_AXI_BAR3_SZ 0x0c
66 #define AFI_AXI_BAR4_SZ 0x10
67 #define AFI_AXI_BAR5_SZ 0x14
69 #define AFI_AXI_BAR0_START 0x18
70 #define AFI_AXI_BAR1_START 0x1c
71 #define AFI_AXI_BAR2_START 0x20
72 #define AFI_AXI_BAR3_START 0x24
73 #define AFI_AXI_BAR4_START 0x28
74 #define AFI_AXI_BAR5_START 0x2c
76 #define AFI_FPCI_BAR0 0x30
77 #define AFI_FPCI_BAR1 0x34
78 #define AFI_FPCI_BAR2 0x38
79 #define AFI_FPCI_BAR3 0x3c
80 #define AFI_FPCI_BAR4 0x40
81 #define AFI_FPCI_BAR5 0x44
83 #define AFI_CACHE_BAR0_SZ 0x48
84 #define AFI_CACHE_BAR0_ST 0x4c
85 #define AFI_CACHE_BAR1_SZ 0x50
86 #define AFI_CACHE_BAR1_ST 0x54
88 #define AFI_MSI_BAR_SZ 0x60
89 #define AFI_MSI_FPCI_BAR_ST 0x64
90 #define AFI_MSI_AXI_BAR_ST 0x68
92 #define AFI_MSI_VEC0 0x6c
93 #define AFI_MSI_VEC1 0x70
94 #define AFI_MSI_VEC2 0x74
95 #define AFI_MSI_VEC3 0x78
96 #define AFI_MSI_VEC4 0x7c
97 #define AFI_MSI_VEC5 0x80
98 #define AFI_MSI_VEC6 0x84
99 #define AFI_MSI_VEC7 0x88
101 #define AFI_MSI_EN_VEC0 0x8c
102 #define AFI_MSI_EN_VEC1 0x90
103 #define AFI_MSI_EN_VEC2 0x94
104 #define AFI_MSI_EN_VEC3 0x98
105 #define AFI_MSI_EN_VEC4 0x9c
106 #define AFI_MSI_EN_VEC5 0xa0
107 #define AFI_MSI_EN_VEC6 0xa4
108 #define AFI_MSI_EN_VEC7 0xa8
110 #define AFI_CONFIGURATION 0xac
111 #define AFI_CONFIGURATION_EN_FPCI (1 << 0)
113 #define AFI_FPCI_ERROR_MASKS 0xb0
115 #define AFI_INTR_MASK 0xb4
116 #define AFI_INTR_MASK_INT_MASK (1 << 0)
117 #define AFI_INTR_MASK_MSI_MASK (1 << 8)
119 #define AFI_INTR_CODE 0xb8
120 #define AFI_INTR_CODE_MASK 0xf
121 #define AFI_INTR_INI_SLAVE_ERROR 1
122 #define AFI_INTR_INI_DECODE_ERROR 2
123 #define AFI_INTR_TARGET_ABORT 3
124 #define AFI_INTR_MASTER_ABORT 4
125 #define AFI_INTR_INVALID_WRITE 5
126 #define AFI_INTR_LEGACY 6
127 #define AFI_INTR_FPCI_DECODE_ERROR 7
128 #define AFI_INTR_AXI_DECODE_ERROR 8
129 #define AFI_INTR_FPCI_TIMEOUT 9
130 #define AFI_INTR_PE_PRSNT_SENSE 10
131 #define AFI_INTR_PE_CLKREQ_SENSE 11
132 #define AFI_INTR_CLKCLAMP_SENSE 12
133 #define AFI_INTR_RDY4PD_SENSE 13
134 #define AFI_INTR_P2P_ERROR 14
136 #define AFI_INTR_SIGNATURE 0xbc
137 #define AFI_UPPER_FPCI_ADDRESS 0xc0
138 #define AFI_SM_INTR_ENABLE 0xc4
139 #define AFI_SM_INTR_INTA_ASSERT (1 << 0)
140 #define AFI_SM_INTR_INTB_ASSERT (1 << 1)
141 #define AFI_SM_INTR_INTC_ASSERT (1 << 2)
142 #define AFI_SM_INTR_INTD_ASSERT (1 << 3)
143 #define AFI_SM_INTR_INTA_DEASSERT (1 << 4)
144 #define AFI_SM_INTR_INTB_DEASSERT (1 << 5)
145 #define AFI_SM_INTR_INTC_DEASSERT (1 << 6)
146 #define AFI_SM_INTR_INTD_DEASSERT (1 << 7)
148 #define AFI_AFI_INTR_ENABLE 0xc8
149 #define AFI_INTR_EN_INI_SLVERR (1 << 0)
150 #define AFI_INTR_EN_INI_DECERR (1 << 1)
151 #define AFI_INTR_EN_TGT_SLVERR (1 << 2)
152 #define AFI_INTR_EN_TGT_DECERR (1 << 3)
153 #define AFI_INTR_EN_TGT_WRERR (1 << 4)
154 #define AFI_INTR_EN_DFPCI_DECERR (1 << 5)
155 #define AFI_INTR_EN_AXI_DECERR (1 << 6)
156 #define AFI_INTR_EN_FPCI_TIMEOUT (1 << 7)
157 #define AFI_INTR_EN_PRSNT_SENSE (1 << 8)
159 #define AFI_PCIE_CONFIG 0x0f8
160 #define AFI_PCIE_CONFIG_PCIE_DISABLE(x) (1 << ((x) + 1))
161 #define AFI_PCIE_CONFIG_PCIE_DISABLE_ALL 0xe
162 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK (0xf << 20)
163 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE (0x0 << 20)
164 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420 (0x0 << 20)
165 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1 (0x0 << 20)
166 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL (0x1 << 20)
167 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222 (0x1 << 20)
168 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1 (0x1 << 20)
169 #define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411 (0x2 << 20)
171 #define AFI_FUSE 0x104
172 #define AFI_FUSE_PCIE_T0_GEN2_DIS (1 << 2)
174 #define AFI_PEX0_CTRL 0x110
175 #define AFI_PEX1_CTRL 0x118
176 #define AFI_PEX2_CTRL 0x128
177 #define AFI_PEX_CTRL_RST (1 << 0)
178 #define AFI_PEX_CTRL_CLKREQ_EN (1 << 1)
179 #define AFI_PEX_CTRL_REFCLK_EN (1 << 3)
180 #define AFI_PEX_CTRL_OVERRIDE_EN (1 << 4)
182 #define AFI_PLLE_CONTROL 0x160
183 #define AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL (1 << 9)
184 #define AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN (1 << 1)
186 #define AFI_PEXBIAS_CTRL_0 0x168
188 #define RP_VEND_XP 0x00000f00
189 #define RP_VEND_XP_DL_UP (1 << 30)
191 #define RP_PRIV_MISC 0x00000fe0
192 #define RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT (0xe << 0)
193 #define RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT (0xf << 0)
195 #define RP_LINK_CONTROL_STATUS 0x00000090
196 #define RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE 0x20000000
197 #define RP_LINK_CONTROL_STATUS_LINKSTAT_MASK 0x3fff0000
199 #define PADS_CTL_SEL 0x0000009c
201 #define PADS_CTL 0x000000a0
202 #define PADS_CTL_IDDQ_1L (1 << 0)
203 #define PADS_CTL_TX_DATA_EN_1L (1 << 6)
204 #define PADS_CTL_RX_DATA_EN_1L (1 << 10)
206 #define PADS_PLL_CTL_TEGRA20 0x000000b8
207 #define PADS_PLL_CTL_TEGRA30 0x000000b4
208 #define PADS_PLL_CTL_RST_B4SM (1 << 1)
209 #define PADS_PLL_CTL_LOCKDET (1 << 8)
210 #define PADS_PLL_CTL_REFCLK_MASK (0x3 << 16)
211 #define PADS_PLL_CTL_REFCLK_INTERNAL_CML (0 << 16)
212 #define PADS_PLL_CTL_REFCLK_INTERNAL_CMOS (1 << 16)
213 #define PADS_PLL_CTL_REFCLK_EXTERNAL (2 << 16)
214 #define PADS_PLL_CTL_TXCLKREF_MASK (0x1 << 20)
215 #define PADS_PLL_CTL_TXCLKREF_DIV10 (0 << 20)
216 #define PADS_PLL_CTL_TXCLKREF_DIV5 (1 << 20)
217 #define PADS_PLL_CTL_TXCLKREF_BUF_EN (1 << 22)
219 #define PADS_REFCLK_CFG0 0x000000c8
220 #define PADS_REFCLK_CFG1 0x000000cc
221 #define PADS_REFCLK_BIAS 0x000000d0
224 * Fields in PADS_REFCLK_CFG*. Those registers form an array of 16-bit
225 * entries, one entry per PCIe port. These field definitions and desired
226 * values aren't in the TRM, but do come from NVIDIA.
228 #define PADS_REFCLK_CFG_TERM_SHIFT 2 /* 6:2 */
229 #define PADS_REFCLK_CFG_E_TERM_SHIFT 7
230 #define PADS_REFCLK_CFG_PREDI_SHIFT 8 /* 11:8 */
231 #define PADS_REFCLK_CFG_DRVI_SHIFT 12 /* 15:12 */
234 struct msi_controller chip
;
235 DECLARE_BITMAP(used
, INT_PCI_MSI_NR
);
236 struct irq_domain
*domain
;
242 /* used to differentiate between Tegra SoC generations */
243 struct tegra_pcie_soc_data
{
244 unsigned int num_ports
;
245 unsigned int msi_base_shift
;
248 u32 pads_refclk_cfg0
;
249 u32 pads_refclk_cfg1
;
250 bool has_pex_clkreq_en
;
251 bool has_pex_bias_ctrl
;
252 bool has_intr_prsnt_sense
;
257 static inline struct tegra_msi
*to_tegra_msi(struct msi_controller
*chip
)
259 return container_of(chip
, struct tegra_msi
, chip
);
269 struct list_head buses
;
275 struct resource prefetch
;
276 struct resource busn
;
288 struct reset_control
*pex_rst
;
289 struct reset_control
*afi_rst
;
290 struct reset_control
*pcie_xrst
;
295 struct tegra_msi msi
;
297 struct list_head ports
;
300 struct regulator_bulk_data
*supplies
;
301 unsigned int num_supplies
;
303 const struct tegra_pcie_soc_data
*soc_data
;
304 struct dentry
*debugfs
;
307 struct tegra_pcie_port
{
308 struct tegra_pcie
*pcie
;
309 struct device_node
*np
;
310 struct list_head list
;
311 struct resource regs
;
319 struct tegra_pcie_bus
{
320 struct vm_struct
*area
;
321 struct list_head list
;
325 static inline struct tegra_pcie
*sys_to_pcie(struct pci_sys_data
*sys
)
327 return sys
->private_data
;
330 static inline void afi_writel(struct tegra_pcie
*pcie
, u32 value
,
331 unsigned long offset
)
333 writel(value
, pcie
->afi
+ offset
);
336 static inline u32
afi_readl(struct tegra_pcie
*pcie
, unsigned long offset
)
338 return readl(pcie
->afi
+ offset
);
341 static inline void pads_writel(struct tegra_pcie
*pcie
, u32 value
,
342 unsigned long offset
)
344 writel(value
, pcie
->pads
+ offset
);
347 static inline u32
pads_readl(struct tegra_pcie
*pcie
, unsigned long offset
)
349 return readl(pcie
->pads
+ offset
);
353 * The configuration space mapping on Tegra is somewhat similar to the ECAM
354 * defined by PCIe. However it deviates a bit in how the 4 bits for extended
355 * register accesses are mapped:
357 * [27:24] extended register number
359 * [15:11] device number
360 * [10: 8] function number
361 * [ 7: 0] register number
363 * Mapping the whole extended configuration space would require 256 MiB of
364 * virtual address space, only a small part of which will actually be used.
365 * To work around this, a 1 MiB of virtual addresses are allocated per bus
366 * when the bus is first accessed. When the physical range is mapped, the
367 * the bus number bits are hidden so that the extended register number bits
368 * appear as bits [19:16]. Therefore the virtual mapping looks like this:
370 * [19:16] extended register number
371 * [15:11] device number
372 * [10: 8] function number
373 * [ 7: 0] register number
375 * This is achieved by stitching together 16 chunks of 64 KiB of physical
376 * address space via the MMU.
378 static unsigned long tegra_pcie_conf_offset(unsigned int devfn
, int where
)
380 return ((where
& 0xf00) << 8) | (PCI_SLOT(devfn
) << 11) |
381 (PCI_FUNC(devfn
) << 8) | (where
& 0xfc);
384 static struct tegra_pcie_bus
*tegra_pcie_bus_alloc(struct tegra_pcie
*pcie
,
387 pgprot_t prot
= __pgprot(L_PTE_PRESENT
| L_PTE_YOUNG
| L_PTE_DIRTY
|
388 L_PTE_XN
| L_PTE_MT_DEV_SHARED
| L_PTE_SHARED
);
389 phys_addr_t cs
= pcie
->cs
->start
;
390 struct tegra_pcie_bus
*bus
;
394 bus
= kzalloc(sizeof(*bus
), GFP_KERNEL
);
396 return ERR_PTR(-ENOMEM
);
398 INIT_LIST_HEAD(&bus
->list
);
401 /* allocate 1 MiB of virtual addresses */
402 bus
->area
= get_vm_area(SZ_1M
, VM_IOREMAP
);
408 /* map each of the 16 chunks of 64 KiB each */
409 for (i
= 0; i
< 16; i
++) {
410 unsigned long virt
= (unsigned long)bus
->area
->addr
+
412 phys_addr_t phys
= cs
+ i
* SZ_16M
+ busnr
* SZ_64K
;
414 err
= ioremap_page_range(virt
, virt
+ SZ_64K
, phys
, prot
);
416 dev_err(pcie
->dev
, "ioremap_page_range() failed: %d\n",
425 vunmap(bus
->area
->addr
);
431 static int tegra_pcie_add_bus(struct pci_bus
*bus
)
433 struct tegra_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
434 struct tegra_pcie_bus
*b
;
436 b
= tegra_pcie_bus_alloc(pcie
, bus
->number
);
440 list_add_tail(&b
->list
, &pcie
->buses
);
445 static void tegra_pcie_remove_bus(struct pci_bus
*child
)
447 struct tegra_pcie
*pcie
= sys_to_pcie(child
->sysdata
);
448 struct tegra_pcie_bus
*bus
, *tmp
;
450 list_for_each_entry_safe(bus
, tmp
, &pcie
->buses
, list
) {
451 if (bus
->nr
== child
->number
) {
452 vunmap(bus
->area
->addr
);
453 list_del(&bus
->list
);
460 static void __iomem
*tegra_pcie_map_bus(struct pci_bus
*bus
,
464 struct tegra_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
465 void __iomem
*addr
= NULL
;
467 if (bus
->number
== 0) {
468 unsigned int slot
= PCI_SLOT(devfn
);
469 struct tegra_pcie_port
*port
;
471 list_for_each_entry(port
, &pcie
->ports
, list
) {
472 if (port
->index
+ 1 == slot
) {
473 addr
= port
->base
+ (where
& ~3);
478 struct tegra_pcie_bus
*b
;
480 list_for_each_entry(b
, &pcie
->buses
, list
)
481 if (b
->nr
== bus
->number
)
482 addr
= (void __iomem
*)b
->area
->addr
;
486 "failed to map cfg. space for bus %u\n",
491 addr
+= tegra_pcie_conf_offset(devfn
, where
);
497 static struct pci_ops tegra_pcie_ops
= {
498 .add_bus
= tegra_pcie_add_bus
,
499 .remove_bus
= tegra_pcie_remove_bus
,
500 .map_bus
= tegra_pcie_map_bus
,
501 .read
= pci_generic_config_read32
,
502 .write
= pci_generic_config_write32
,
505 static unsigned long tegra_pcie_port_get_pex_ctrl(struct tegra_pcie_port
*port
)
507 unsigned long ret
= 0;
509 switch (port
->index
) {
526 static void tegra_pcie_port_reset(struct tegra_pcie_port
*port
)
528 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
531 /* pulse reset signal */
532 value
= afi_readl(port
->pcie
, ctrl
);
533 value
&= ~AFI_PEX_CTRL_RST
;
534 afi_writel(port
->pcie
, value
, ctrl
);
536 usleep_range(1000, 2000);
538 value
= afi_readl(port
->pcie
, ctrl
);
539 value
|= AFI_PEX_CTRL_RST
;
540 afi_writel(port
->pcie
, value
, ctrl
);
543 static void tegra_pcie_port_enable(struct tegra_pcie_port
*port
)
545 const struct tegra_pcie_soc_data
*soc
= port
->pcie
->soc_data
;
546 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
549 /* enable reference clock */
550 value
= afi_readl(port
->pcie
, ctrl
);
551 value
|= AFI_PEX_CTRL_REFCLK_EN
;
553 if (soc
->has_pex_clkreq_en
)
554 value
|= AFI_PEX_CTRL_CLKREQ_EN
;
556 value
|= AFI_PEX_CTRL_OVERRIDE_EN
;
558 afi_writel(port
->pcie
, value
, ctrl
);
560 tegra_pcie_port_reset(port
);
563 static void tegra_pcie_port_disable(struct tegra_pcie_port
*port
)
565 const struct tegra_pcie_soc_data
*soc
= port
->pcie
->soc_data
;
566 unsigned long ctrl
= tegra_pcie_port_get_pex_ctrl(port
);
569 /* assert port reset */
570 value
= afi_readl(port
->pcie
, ctrl
);
571 value
&= ~AFI_PEX_CTRL_RST
;
572 afi_writel(port
->pcie
, value
, ctrl
);
574 /* disable reference clock */
575 value
= afi_readl(port
->pcie
, ctrl
);
577 if (soc
->has_pex_clkreq_en
)
578 value
&= ~AFI_PEX_CTRL_CLKREQ_EN
;
580 value
&= ~AFI_PEX_CTRL_REFCLK_EN
;
581 afi_writel(port
->pcie
, value
, ctrl
);
584 static void tegra_pcie_port_free(struct tegra_pcie_port
*port
)
586 struct tegra_pcie
*pcie
= port
->pcie
;
588 devm_iounmap(pcie
->dev
, port
->base
);
589 devm_release_mem_region(pcie
->dev
, port
->regs
.start
,
590 resource_size(&port
->regs
));
591 list_del(&port
->list
);
592 devm_kfree(pcie
->dev
, port
);
595 /* Tegra PCIE root complex wrongly reports device class */
596 static void tegra_pcie_fixup_class(struct pci_dev
*dev
)
598 dev
->class = PCI_CLASS_BRIDGE_PCI
<< 8;
600 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0bf0, tegra_pcie_fixup_class
);
601 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0bf1, tegra_pcie_fixup_class
);
602 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0e1c, tegra_pcie_fixup_class
);
603 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA
, 0x0e1d, tegra_pcie_fixup_class
);
605 /* Tegra PCIE requires relaxed ordering */
606 static void tegra_pcie_relax_enable(struct pci_dev
*dev
)
608 pcie_capability_set_word(dev
, PCI_EXP_DEVCTL
, PCI_EXP_DEVCTL_RELAX_EN
);
610 DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID
, PCI_ANY_ID
, tegra_pcie_relax_enable
);
612 static int tegra_pcie_setup(int nr
, struct pci_sys_data
*sys
)
614 struct tegra_pcie
*pcie
= sys_to_pcie(sys
);
617 sys
->mem_offset
= pcie
->offset
.mem
;
618 sys
->io_offset
= pcie
->offset
.io
;
620 err
= devm_request_resource(pcie
->dev
, &iomem_resource
, &pcie
->io
);
624 pci_add_resource_offset(&sys
->resources
, &pcie
->pio
, sys
->io_offset
);
625 pci_add_resource_offset(&sys
->resources
, &pcie
->mem
, sys
->mem_offset
);
626 pci_add_resource_offset(&sys
->resources
, &pcie
->prefetch
,
628 pci_add_resource(&sys
->resources
, &pcie
->busn
);
630 err
= devm_request_pci_bus_resources(pcie
->dev
, &sys
->resources
);
634 pci_remap_iospace(&pcie
->pio
, pcie
->io
.start
);
638 static int tegra_pcie_map_irq(const struct pci_dev
*pdev
, u8 slot
, u8 pin
)
640 struct tegra_pcie
*pcie
= sys_to_pcie(pdev
->bus
->sysdata
);
643 tegra_cpuidle_pcie_irqs_in_use();
645 irq
= of_irq_parse_and_map_pci(pdev
, slot
, pin
);
652 static irqreturn_t
tegra_pcie_isr(int irq
, void *arg
)
654 const char *err_msg
[] = {
662 "Response decoding error",
663 "AXI response decoding error",
664 "Transaction timeout",
665 "Slot present pin change",
666 "Slot clock request change",
667 "TMS clock ramp change",
668 "TMS ready for power down",
671 struct tegra_pcie
*pcie
= arg
;
674 code
= afi_readl(pcie
, AFI_INTR_CODE
) & AFI_INTR_CODE_MASK
;
675 signature
= afi_readl(pcie
, AFI_INTR_SIGNATURE
);
676 afi_writel(pcie
, 0, AFI_INTR_CODE
);
678 if (code
== AFI_INTR_LEGACY
)
681 if (code
>= ARRAY_SIZE(err_msg
))
685 * do not pollute kernel log with master abort reports since they
686 * happen a lot during enumeration
688 if (code
== AFI_INTR_MASTER_ABORT
)
689 dev_dbg(pcie
->dev
, "%s, signature: %08x\n", err_msg
[code
],
692 dev_err(pcie
->dev
, "%s, signature: %08x\n", err_msg
[code
],
695 if (code
== AFI_INTR_TARGET_ABORT
|| code
== AFI_INTR_MASTER_ABORT
||
696 code
== AFI_INTR_FPCI_DECODE_ERROR
) {
697 u32 fpci
= afi_readl(pcie
, AFI_UPPER_FPCI_ADDRESS
) & 0xff;
698 u64 address
= (u64
)fpci
<< 32 | (signature
& 0xfffffffc);
700 if (code
== AFI_INTR_MASTER_ABORT
)
701 dev_dbg(pcie
->dev
, " FPCI address: %10llx\n", address
);
703 dev_err(pcie
->dev
, " FPCI address: %10llx\n", address
);
710 * FPCI map is as follows:
711 * - 0xfdfc000000: I/O space
712 * - 0xfdfe000000: type 0 configuration space
713 * - 0xfdff000000: type 1 configuration space
714 * - 0xfe00000000: type 0 extended configuration space
715 * - 0xfe10000000: type 1 extended configuration space
717 static void tegra_pcie_setup_translations(struct tegra_pcie
*pcie
)
719 u32 fpci_bar
, size
, axi_address
;
721 /* Bar 0: type 1 extended configuration space */
722 fpci_bar
= 0xfe100000;
723 size
= resource_size(pcie
->cs
);
724 axi_address
= pcie
->cs
->start
;
725 afi_writel(pcie
, axi_address
, AFI_AXI_BAR0_START
);
726 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR0_SZ
);
727 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR0
);
729 /* Bar 1: downstream IO bar */
730 fpci_bar
= 0xfdfc0000;
731 size
= resource_size(&pcie
->io
);
732 axi_address
= pcie
->io
.start
;
733 afi_writel(pcie
, axi_address
, AFI_AXI_BAR1_START
);
734 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR1_SZ
);
735 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR1
);
737 /* Bar 2: prefetchable memory BAR */
738 fpci_bar
= (((pcie
->prefetch
.start
>> 12) & 0x0fffffff) << 4) | 0x1;
739 size
= resource_size(&pcie
->prefetch
);
740 axi_address
= pcie
->prefetch
.start
;
741 afi_writel(pcie
, axi_address
, AFI_AXI_BAR2_START
);
742 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR2_SZ
);
743 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR2
);
745 /* Bar 3: non prefetchable memory BAR */
746 fpci_bar
= (((pcie
->mem
.start
>> 12) & 0x0fffffff) << 4) | 0x1;
747 size
= resource_size(&pcie
->mem
);
748 axi_address
= pcie
->mem
.start
;
749 afi_writel(pcie
, axi_address
, AFI_AXI_BAR3_START
);
750 afi_writel(pcie
, size
>> 12, AFI_AXI_BAR3_SZ
);
751 afi_writel(pcie
, fpci_bar
, AFI_FPCI_BAR3
);
753 /* NULL out the remaining BARs as they are not used */
754 afi_writel(pcie
, 0, AFI_AXI_BAR4_START
);
755 afi_writel(pcie
, 0, AFI_AXI_BAR4_SZ
);
756 afi_writel(pcie
, 0, AFI_FPCI_BAR4
);
758 afi_writel(pcie
, 0, AFI_AXI_BAR5_START
);
759 afi_writel(pcie
, 0, AFI_AXI_BAR5_SZ
);
760 afi_writel(pcie
, 0, AFI_FPCI_BAR5
);
762 /* map all upstream transactions as uncached */
763 afi_writel(pcie
, 0, AFI_CACHE_BAR0_ST
);
764 afi_writel(pcie
, 0, AFI_CACHE_BAR0_SZ
);
765 afi_writel(pcie
, 0, AFI_CACHE_BAR1_ST
);
766 afi_writel(pcie
, 0, AFI_CACHE_BAR1_SZ
);
768 /* MSI translations are setup only when needed */
769 afi_writel(pcie
, 0, AFI_MSI_FPCI_BAR_ST
);
770 afi_writel(pcie
, 0, AFI_MSI_BAR_SZ
);
771 afi_writel(pcie
, 0, AFI_MSI_AXI_BAR_ST
);
772 afi_writel(pcie
, 0, AFI_MSI_BAR_SZ
);
775 static int tegra_pcie_pll_wait(struct tegra_pcie
*pcie
, unsigned long timeout
)
777 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
780 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
782 while (time_before(jiffies
, timeout
)) {
783 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
784 if (value
& PADS_PLL_CTL_LOCKDET
)
791 static int tegra_pcie_phy_enable(struct tegra_pcie
*pcie
)
793 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
797 /* initialize internal PHY, enable up to 16 PCIE lanes */
798 pads_writel(pcie
, 0x0, PADS_CTL_SEL
);
800 /* override IDDQ to 1 on all 4 lanes */
801 value
= pads_readl(pcie
, PADS_CTL
);
802 value
|= PADS_CTL_IDDQ_1L
;
803 pads_writel(pcie
, value
, PADS_CTL
);
806 * Set up PHY PLL inputs select PLLE output as refclock,
807 * set TX ref sel to div10 (not div5).
809 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
810 value
&= ~(PADS_PLL_CTL_REFCLK_MASK
| PADS_PLL_CTL_TXCLKREF_MASK
);
811 value
|= PADS_PLL_CTL_REFCLK_INTERNAL_CML
| soc
->tx_ref_sel
;
812 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
815 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
816 value
&= ~PADS_PLL_CTL_RST_B4SM
;
817 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
819 usleep_range(20, 100);
821 /* take PLL out of reset */
822 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
823 value
|= PADS_PLL_CTL_RST_B4SM
;
824 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
826 /* wait for the PLL to lock */
827 err
= tegra_pcie_pll_wait(pcie
, 500);
829 dev_err(pcie
->dev
, "PLL failed to lock: %d\n", err
);
833 /* turn off IDDQ override */
834 value
= pads_readl(pcie
, PADS_CTL
);
835 value
&= ~PADS_CTL_IDDQ_1L
;
836 pads_writel(pcie
, value
, PADS_CTL
);
838 /* enable TX/RX data */
839 value
= pads_readl(pcie
, PADS_CTL
);
840 value
|= PADS_CTL_TX_DATA_EN_1L
| PADS_CTL_RX_DATA_EN_1L
;
841 pads_writel(pcie
, value
, PADS_CTL
);
846 static int tegra_pcie_phy_disable(struct tegra_pcie
*pcie
)
848 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
851 /* disable TX/RX data */
852 value
= pads_readl(pcie
, PADS_CTL
);
853 value
&= ~(PADS_CTL_TX_DATA_EN_1L
| PADS_CTL_RX_DATA_EN_1L
);
854 pads_writel(pcie
, value
, PADS_CTL
);
857 value
= pads_readl(pcie
, PADS_CTL
);
858 value
|= PADS_CTL_IDDQ_1L
;
859 pads_writel(pcie
, PADS_CTL
, value
);
862 value
= pads_readl(pcie
, soc
->pads_pll_ctl
);
863 value
&= ~PADS_PLL_CTL_RST_B4SM
;
864 pads_writel(pcie
, value
, soc
->pads_pll_ctl
);
866 usleep_range(20, 100);
871 static int tegra_pcie_port_phy_power_on(struct tegra_pcie_port
*port
)
873 struct device
*dev
= port
->pcie
->dev
;
877 for (i
= 0; i
< port
->lanes
; i
++) {
878 err
= phy_power_on(port
->phys
[i
]);
880 dev_err(dev
, "failed to power on PHY#%u: %d\n", i
,
889 static int tegra_pcie_port_phy_power_off(struct tegra_pcie_port
*port
)
891 struct device
*dev
= port
->pcie
->dev
;
895 for (i
= 0; i
< port
->lanes
; i
++) {
896 err
= phy_power_off(port
->phys
[i
]);
898 dev_err(dev
, "failed to power off PHY#%u: %d\n", i
,
907 static int tegra_pcie_phy_power_on(struct tegra_pcie
*pcie
)
909 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
910 struct tegra_pcie_port
*port
;
913 if (pcie
->legacy_phy
) {
915 err
= phy_power_on(pcie
->phy
);
917 err
= tegra_pcie_phy_enable(pcie
);
920 dev_err(pcie
->dev
, "failed to power on PHY: %d\n", err
);
925 list_for_each_entry(port
, &pcie
->ports
, list
) {
926 err
= tegra_pcie_port_phy_power_on(port
);
929 "failed to power on PCIe port %u PHY: %d\n",
935 /* Configure the reference clock driver */
936 pads_writel(pcie
, soc
->pads_refclk_cfg0
, PADS_REFCLK_CFG0
);
938 if (soc
->num_ports
> 2)
939 pads_writel(pcie
, soc
->pads_refclk_cfg1
, PADS_REFCLK_CFG1
);
944 static int tegra_pcie_phy_power_off(struct tegra_pcie
*pcie
)
946 struct tegra_pcie_port
*port
;
949 if (pcie
->legacy_phy
) {
951 err
= phy_power_off(pcie
->phy
);
953 err
= tegra_pcie_phy_disable(pcie
);
956 dev_err(pcie
->dev
, "failed to power off PHY: %d\n",
962 list_for_each_entry(port
, &pcie
->ports
, list
) {
963 err
= tegra_pcie_port_phy_power_off(port
);
966 "failed to power off PCIe port %u PHY: %d\n",
975 static int tegra_pcie_enable_controller(struct tegra_pcie
*pcie
)
977 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
978 struct tegra_pcie_port
*port
;
982 /* enable PLL power down */
984 value
= afi_readl(pcie
, AFI_PLLE_CONTROL
);
985 value
&= ~AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL
;
986 value
|= AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN
;
987 afi_writel(pcie
, value
, AFI_PLLE_CONTROL
);
990 /* power down PCIe slot clock bias pad */
991 if (soc
->has_pex_bias_ctrl
)
992 afi_writel(pcie
, 0, AFI_PEXBIAS_CTRL_0
);
994 /* configure mode and disable all ports */
995 value
= afi_readl(pcie
, AFI_PCIE_CONFIG
);
996 value
&= ~AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK
;
997 value
|= AFI_PCIE_CONFIG_PCIE_DISABLE_ALL
| pcie
->xbar_config
;
999 list_for_each_entry(port
, &pcie
->ports
, list
)
1000 value
&= ~AFI_PCIE_CONFIG_PCIE_DISABLE(port
->index
);
1002 afi_writel(pcie
, value
, AFI_PCIE_CONFIG
);
1004 if (soc
->has_gen2
) {
1005 value
= afi_readl(pcie
, AFI_FUSE
);
1006 value
&= ~AFI_FUSE_PCIE_T0_GEN2_DIS
;
1007 afi_writel(pcie
, value
, AFI_FUSE
);
1009 value
= afi_readl(pcie
, AFI_FUSE
);
1010 value
|= AFI_FUSE_PCIE_T0_GEN2_DIS
;
1011 afi_writel(pcie
, value
, AFI_FUSE
);
1014 err
= tegra_pcie_phy_power_on(pcie
);
1016 dev_err(pcie
->dev
, "failed to power on PHY(s): %d\n", err
);
1020 /* take the PCIe interface module out of reset */
1021 reset_control_deassert(pcie
->pcie_xrst
);
1023 /* finally enable PCIe */
1024 value
= afi_readl(pcie
, AFI_CONFIGURATION
);
1025 value
|= AFI_CONFIGURATION_EN_FPCI
;
1026 afi_writel(pcie
, value
, AFI_CONFIGURATION
);
1028 value
= AFI_INTR_EN_INI_SLVERR
| AFI_INTR_EN_INI_DECERR
|
1029 AFI_INTR_EN_TGT_SLVERR
| AFI_INTR_EN_TGT_DECERR
|
1030 AFI_INTR_EN_TGT_WRERR
| AFI_INTR_EN_DFPCI_DECERR
;
1032 if (soc
->has_intr_prsnt_sense
)
1033 value
|= AFI_INTR_EN_PRSNT_SENSE
;
1035 afi_writel(pcie
, value
, AFI_AFI_INTR_ENABLE
);
1036 afi_writel(pcie
, 0xffffffff, AFI_SM_INTR_ENABLE
);
1038 /* don't enable MSI for now, only when needed */
1039 afi_writel(pcie
, AFI_INTR_MASK_INT_MASK
, AFI_INTR_MASK
);
1041 /* disable all exceptions */
1042 afi_writel(pcie
, 0, AFI_FPCI_ERROR_MASKS
);
1047 static void tegra_pcie_power_off(struct tegra_pcie
*pcie
)
1051 /* TODO: disable and unprepare clocks? */
1053 err
= tegra_pcie_phy_power_off(pcie
);
1055 dev_err(pcie
->dev
, "failed to power off PHY(s): %d\n", err
);
1057 reset_control_assert(pcie
->pcie_xrst
);
1058 reset_control_assert(pcie
->afi_rst
);
1059 reset_control_assert(pcie
->pex_rst
);
1061 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE
);
1063 err
= regulator_bulk_disable(pcie
->num_supplies
, pcie
->supplies
);
1065 dev_warn(pcie
->dev
, "failed to disable regulators: %d\n", err
);
1068 static int tegra_pcie_power_on(struct tegra_pcie
*pcie
)
1070 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1073 reset_control_assert(pcie
->pcie_xrst
);
1074 reset_control_assert(pcie
->afi_rst
);
1075 reset_control_assert(pcie
->pex_rst
);
1077 tegra_powergate_power_off(TEGRA_POWERGATE_PCIE
);
1079 /* enable regulators */
1080 err
= regulator_bulk_enable(pcie
->num_supplies
, pcie
->supplies
);
1082 dev_err(pcie
->dev
, "failed to enable regulators: %d\n", err
);
1084 err
= tegra_powergate_sequence_power_up(TEGRA_POWERGATE_PCIE
,
1088 dev_err(pcie
->dev
, "powerup sequence failed: %d\n", err
);
1092 reset_control_deassert(pcie
->afi_rst
);
1094 err
= clk_prepare_enable(pcie
->afi_clk
);
1096 dev_err(pcie
->dev
, "failed to enable AFI clock: %d\n", err
);
1100 if (soc
->has_cml_clk
) {
1101 err
= clk_prepare_enable(pcie
->cml_clk
);
1103 dev_err(pcie
->dev
, "failed to enable CML clock: %d\n",
1109 err
= clk_prepare_enable(pcie
->pll_e
);
1111 dev_err(pcie
->dev
, "failed to enable PLLE clock: %d\n", err
);
1118 static int tegra_pcie_clocks_get(struct tegra_pcie
*pcie
)
1120 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1122 pcie
->pex_clk
= devm_clk_get(pcie
->dev
, "pex");
1123 if (IS_ERR(pcie
->pex_clk
))
1124 return PTR_ERR(pcie
->pex_clk
);
1126 pcie
->afi_clk
= devm_clk_get(pcie
->dev
, "afi");
1127 if (IS_ERR(pcie
->afi_clk
))
1128 return PTR_ERR(pcie
->afi_clk
);
1130 pcie
->pll_e
= devm_clk_get(pcie
->dev
, "pll_e");
1131 if (IS_ERR(pcie
->pll_e
))
1132 return PTR_ERR(pcie
->pll_e
);
1134 if (soc
->has_cml_clk
) {
1135 pcie
->cml_clk
= devm_clk_get(pcie
->dev
, "cml");
1136 if (IS_ERR(pcie
->cml_clk
))
1137 return PTR_ERR(pcie
->cml_clk
);
1143 static int tegra_pcie_resets_get(struct tegra_pcie
*pcie
)
1145 pcie
->pex_rst
= devm_reset_control_get(pcie
->dev
, "pex");
1146 if (IS_ERR(pcie
->pex_rst
))
1147 return PTR_ERR(pcie
->pex_rst
);
1149 pcie
->afi_rst
= devm_reset_control_get(pcie
->dev
, "afi");
1150 if (IS_ERR(pcie
->afi_rst
))
1151 return PTR_ERR(pcie
->afi_rst
);
1153 pcie
->pcie_xrst
= devm_reset_control_get(pcie
->dev
, "pcie_x");
1154 if (IS_ERR(pcie
->pcie_xrst
))
1155 return PTR_ERR(pcie
->pcie_xrst
);
1160 static int tegra_pcie_phys_get_legacy(struct tegra_pcie
*pcie
)
1164 pcie
->phy
= devm_phy_optional_get(pcie
->dev
, "pcie");
1165 if (IS_ERR(pcie
->phy
)) {
1166 err
= PTR_ERR(pcie
->phy
);
1167 dev_err(pcie
->dev
, "failed to get PHY: %d\n", err
);
1171 err
= phy_init(pcie
->phy
);
1173 dev_err(pcie
->dev
, "failed to initialize PHY: %d\n", err
);
1177 pcie
->legacy_phy
= true;
1182 static struct phy
*devm_of_phy_optional_get_index(struct device
*dev
,
1183 struct device_node
*np
,
1184 const char *consumer
,
1190 name
= kasprintf(GFP_KERNEL
, "%s-%u", consumer
, index
);
1192 return ERR_PTR(-ENOMEM
);
1194 phy
= devm_of_phy_get(dev
, np
, name
);
1197 if (IS_ERR(phy
) && PTR_ERR(phy
) == -ENODEV
)
1203 static int tegra_pcie_port_get_phys(struct tegra_pcie_port
*port
)
1205 struct device
*dev
= port
->pcie
->dev
;
1210 port
->phys
= devm_kcalloc(dev
, sizeof(phy
), port
->lanes
, GFP_KERNEL
);
1214 for (i
= 0; i
< port
->lanes
; i
++) {
1215 phy
= devm_of_phy_optional_get_index(dev
, port
->np
, "pcie", i
);
1217 dev_err(dev
, "failed to get PHY#%u: %ld\n", i
,
1219 return PTR_ERR(phy
);
1222 err
= phy_init(phy
);
1224 dev_err(dev
, "failed to initialize PHY#%u: %d\n", i
,
1229 port
->phys
[i
] = phy
;
1235 static int tegra_pcie_phys_get(struct tegra_pcie
*pcie
)
1237 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1238 struct device_node
*np
= pcie
->dev
->of_node
;
1239 struct tegra_pcie_port
*port
;
1242 if (!soc
->has_gen2
|| of_find_property(np
, "phys", NULL
) != NULL
)
1243 return tegra_pcie_phys_get_legacy(pcie
);
1245 list_for_each_entry(port
, &pcie
->ports
, list
) {
1246 err
= tegra_pcie_port_get_phys(port
);
1254 static int tegra_pcie_get_resources(struct tegra_pcie
*pcie
)
1256 struct platform_device
*pdev
= to_platform_device(pcie
->dev
);
1257 struct resource
*pads
, *afi
, *res
;
1260 err
= tegra_pcie_clocks_get(pcie
);
1262 dev_err(&pdev
->dev
, "failed to get clocks: %d\n", err
);
1266 err
= tegra_pcie_resets_get(pcie
);
1268 dev_err(&pdev
->dev
, "failed to get resets: %d\n", err
);
1272 err
= tegra_pcie_phys_get(pcie
);
1274 dev_err(&pdev
->dev
, "failed to get PHYs: %d\n", err
);
1278 err
= tegra_pcie_power_on(pcie
);
1280 dev_err(&pdev
->dev
, "failed to power up: %d\n", err
);
1284 pads
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pads");
1285 pcie
->pads
= devm_ioremap_resource(&pdev
->dev
, pads
);
1286 if (IS_ERR(pcie
->pads
)) {
1287 err
= PTR_ERR(pcie
->pads
);
1291 afi
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "afi");
1292 pcie
->afi
= devm_ioremap_resource(&pdev
->dev
, afi
);
1293 if (IS_ERR(pcie
->afi
)) {
1294 err
= PTR_ERR(pcie
->afi
);
1298 /* request configuration space, but remap later, on demand */
1299 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "cs");
1301 err
= -EADDRNOTAVAIL
;
1305 pcie
->cs
= devm_request_mem_region(pcie
->dev
, res
->start
,
1306 resource_size(res
), res
->name
);
1308 err
= -EADDRNOTAVAIL
;
1312 /* request interrupt */
1313 err
= platform_get_irq_byname(pdev
, "intr");
1315 dev_err(&pdev
->dev
, "failed to get IRQ: %d\n", err
);
1321 err
= request_irq(pcie
->irq
, tegra_pcie_isr
, IRQF_SHARED
, "PCIE", pcie
);
1323 dev_err(&pdev
->dev
, "failed to register IRQ: %d\n", err
);
1330 tegra_pcie_power_off(pcie
);
1334 static int tegra_pcie_put_resources(struct tegra_pcie
*pcie
)
1339 free_irq(pcie
->irq
, pcie
);
1341 tegra_pcie_power_off(pcie
);
1343 err
= phy_exit(pcie
->phy
);
1345 dev_err(pcie
->dev
, "failed to teardown PHY: %d\n", err
);
1350 static int tegra_msi_alloc(struct tegra_msi
*chip
)
1354 mutex_lock(&chip
->lock
);
1356 msi
= find_first_zero_bit(chip
->used
, INT_PCI_MSI_NR
);
1357 if (msi
< INT_PCI_MSI_NR
)
1358 set_bit(msi
, chip
->used
);
1362 mutex_unlock(&chip
->lock
);
1367 static void tegra_msi_free(struct tegra_msi
*chip
, unsigned long irq
)
1369 struct device
*dev
= chip
->chip
.dev
;
1371 mutex_lock(&chip
->lock
);
1373 if (!test_bit(irq
, chip
->used
))
1374 dev_err(dev
, "trying to free unused MSI#%lu\n", irq
);
1376 clear_bit(irq
, chip
->used
);
1378 mutex_unlock(&chip
->lock
);
1381 static irqreturn_t
tegra_pcie_msi_irq(int irq
, void *data
)
1383 struct tegra_pcie
*pcie
= data
;
1384 struct tegra_msi
*msi
= &pcie
->msi
;
1385 unsigned int i
, processed
= 0;
1387 for (i
= 0; i
< 8; i
++) {
1388 unsigned long reg
= afi_readl(pcie
, AFI_MSI_VEC0
+ i
* 4);
1391 unsigned int offset
= find_first_bit(®
, 32);
1392 unsigned int index
= i
* 32 + offset
;
1395 /* clear the interrupt */
1396 afi_writel(pcie
, 1 << offset
, AFI_MSI_VEC0
+ i
* 4);
1398 irq
= irq_find_mapping(msi
->domain
, index
);
1400 if (test_bit(index
, msi
->used
))
1401 generic_handle_irq(irq
);
1403 dev_info(pcie
->dev
, "unhandled MSI\n");
1406 * that's weird who triggered this?
1409 dev_info(pcie
->dev
, "unexpected MSI\n");
1412 /* see if there's any more pending in this vector */
1413 reg
= afi_readl(pcie
, AFI_MSI_VEC0
+ i
* 4);
1419 return processed
> 0 ? IRQ_HANDLED
: IRQ_NONE
;
1422 static int tegra_msi_setup_irq(struct msi_controller
*chip
,
1423 struct pci_dev
*pdev
, struct msi_desc
*desc
)
1425 struct tegra_msi
*msi
= to_tegra_msi(chip
);
1430 hwirq
= tegra_msi_alloc(msi
);
1434 irq
= irq_create_mapping(msi
->domain
, hwirq
);
1436 tegra_msi_free(msi
, hwirq
);
1440 irq_set_msi_desc(irq
, desc
);
1442 msg
.address_lo
= virt_to_phys((void *)msi
->pages
);
1443 /* 32 bit address only */
1447 pci_write_msi_msg(irq
, &msg
);
1452 static void tegra_msi_teardown_irq(struct msi_controller
*chip
,
1455 struct tegra_msi
*msi
= to_tegra_msi(chip
);
1456 struct irq_data
*d
= irq_get_irq_data(irq
);
1457 irq_hw_number_t hwirq
= irqd_to_hwirq(d
);
1459 irq_dispose_mapping(irq
);
1460 tegra_msi_free(msi
, hwirq
);
1463 static struct irq_chip tegra_msi_irq_chip
= {
1464 .name
= "Tegra PCIe MSI",
1465 .irq_enable
= pci_msi_unmask_irq
,
1466 .irq_disable
= pci_msi_mask_irq
,
1467 .irq_mask
= pci_msi_mask_irq
,
1468 .irq_unmask
= pci_msi_unmask_irq
,
1471 static int tegra_msi_map(struct irq_domain
*domain
, unsigned int irq
,
1472 irq_hw_number_t hwirq
)
1474 irq_set_chip_and_handler(irq
, &tegra_msi_irq_chip
, handle_simple_irq
);
1475 irq_set_chip_data(irq
, domain
->host_data
);
1477 tegra_cpuidle_pcie_irqs_in_use();
1482 static const struct irq_domain_ops msi_domain_ops
= {
1483 .map
= tegra_msi_map
,
1486 static int tegra_pcie_enable_msi(struct tegra_pcie
*pcie
)
1488 struct platform_device
*pdev
= to_platform_device(pcie
->dev
);
1489 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1490 struct tegra_msi
*msi
= &pcie
->msi
;
1495 mutex_init(&msi
->lock
);
1497 msi
->chip
.dev
= pcie
->dev
;
1498 msi
->chip
.setup_irq
= tegra_msi_setup_irq
;
1499 msi
->chip
.teardown_irq
= tegra_msi_teardown_irq
;
1501 msi
->domain
= irq_domain_add_linear(pcie
->dev
->of_node
, INT_PCI_MSI_NR
,
1502 &msi_domain_ops
, &msi
->chip
);
1504 dev_err(&pdev
->dev
, "failed to create IRQ domain\n");
1508 err
= platform_get_irq_byname(pdev
, "msi");
1510 dev_err(&pdev
->dev
, "failed to get IRQ: %d\n", err
);
1516 err
= request_irq(msi
->irq
, tegra_pcie_msi_irq
, IRQF_NO_THREAD
,
1517 tegra_msi_irq_chip
.name
, pcie
);
1519 dev_err(&pdev
->dev
, "failed to request IRQ: %d\n", err
);
1523 /* setup AFI/FPCI range */
1524 msi
->pages
= __get_free_pages(GFP_KERNEL
, 0);
1525 base
= virt_to_phys((void *)msi
->pages
);
1527 afi_writel(pcie
, base
>> soc
->msi_base_shift
, AFI_MSI_FPCI_BAR_ST
);
1528 afi_writel(pcie
, base
, AFI_MSI_AXI_BAR_ST
);
1529 /* this register is in 4K increments */
1530 afi_writel(pcie
, 1, AFI_MSI_BAR_SZ
);
1532 /* enable all MSI vectors */
1533 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC0
);
1534 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC1
);
1535 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC2
);
1536 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC3
);
1537 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC4
);
1538 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC5
);
1539 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC6
);
1540 afi_writel(pcie
, 0xffffffff, AFI_MSI_EN_VEC7
);
1542 /* and unmask the MSI interrupt */
1543 reg
= afi_readl(pcie
, AFI_INTR_MASK
);
1544 reg
|= AFI_INTR_MASK_MSI_MASK
;
1545 afi_writel(pcie
, reg
, AFI_INTR_MASK
);
1550 irq_domain_remove(msi
->domain
);
1554 static int tegra_pcie_disable_msi(struct tegra_pcie
*pcie
)
1556 struct tegra_msi
*msi
= &pcie
->msi
;
1557 unsigned int i
, irq
;
1560 /* mask the MSI interrupt */
1561 value
= afi_readl(pcie
, AFI_INTR_MASK
);
1562 value
&= ~AFI_INTR_MASK_MSI_MASK
;
1563 afi_writel(pcie
, value
, AFI_INTR_MASK
);
1565 /* disable all MSI vectors */
1566 afi_writel(pcie
, 0, AFI_MSI_EN_VEC0
);
1567 afi_writel(pcie
, 0, AFI_MSI_EN_VEC1
);
1568 afi_writel(pcie
, 0, AFI_MSI_EN_VEC2
);
1569 afi_writel(pcie
, 0, AFI_MSI_EN_VEC3
);
1570 afi_writel(pcie
, 0, AFI_MSI_EN_VEC4
);
1571 afi_writel(pcie
, 0, AFI_MSI_EN_VEC5
);
1572 afi_writel(pcie
, 0, AFI_MSI_EN_VEC6
);
1573 afi_writel(pcie
, 0, AFI_MSI_EN_VEC7
);
1575 free_pages(msi
->pages
, 0);
1578 free_irq(msi
->irq
, pcie
);
1580 for (i
= 0; i
< INT_PCI_MSI_NR
; i
++) {
1581 irq
= irq_find_mapping(msi
->domain
, i
);
1583 irq_dispose_mapping(irq
);
1586 irq_domain_remove(msi
->domain
);
1591 static int tegra_pcie_get_xbar_config(struct tegra_pcie
*pcie
, u32 lanes
,
1594 struct device_node
*np
= pcie
->dev
->of_node
;
1596 if (of_device_is_compatible(np
, "nvidia,tegra124-pcie")) {
1599 dev_info(pcie
->dev
, "4x1, 1x1 configuration\n");
1600 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1
;
1604 dev_info(pcie
->dev
, "2x1, 1x1 configuration\n");
1605 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1
;
1608 } else if (of_device_is_compatible(np
, "nvidia,tegra30-pcie")) {
1611 dev_info(pcie
->dev
, "4x1, 2x1 configuration\n");
1612 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420
;
1616 dev_info(pcie
->dev
, "2x3 configuration\n");
1617 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222
;
1621 dev_info(pcie
->dev
, "4x1, 1x2 configuration\n");
1622 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411
;
1625 } else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie")) {
1628 dev_info(pcie
->dev
, "single-mode configuration\n");
1629 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE
;
1633 dev_info(pcie
->dev
, "dual-mode configuration\n");
1634 *xbar
= AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL
;
1643 * Check whether a given set of supplies is available in a device tree node.
1644 * This is used to check whether the new or the legacy device tree bindings
1647 static bool of_regulator_bulk_available(struct device_node
*np
,
1648 struct regulator_bulk_data
*supplies
,
1649 unsigned int num_supplies
)
1654 for (i
= 0; i
< num_supplies
; i
++) {
1655 snprintf(property
, 32, "%s-supply", supplies
[i
].supply
);
1657 if (of_find_property(np
, property
, NULL
) == NULL
)
1665 * Old versions of the device tree binding for this device used a set of power
1666 * supplies that didn't match the hardware inputs. This happened to work for a
1667 * number of cases but is not future proof. However to preserve backwards-
1668 * compatibility with old device trees, this function will try to use the old
1671 static int tegra_pcie_get_legacy_regulators(struct tegra_pcie
*pcie
)
1673 struct device_node
*np
= pcie
->dev
->of_node
;
1675 if (of_device_is_compatible(np
, "nvidia,tegra30-pcie"))
1676 pcie
->num_supplies
= 3;
1677 else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie"))
1678 pcie
->num_supplies
= 2;
1680 if (pcie
->num_supplies
== 0) {
1681 dev_err(pcie
->dev
, "device %s not supported in legacy mode\n",
1686 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1687 sizeof(*pcie
->supplies
),
1689 if (!pcie
->supplies
)
1692 pcie
->supplies
[0].supply
= "pex-clk";
1693 pcie
->supplies
[1].supply
= "vdd";
1695 if (pcie
->num_supplies
> 2)
1696 pcie
->supplies
[2].supply
= "avdd";
1698 return devm_regulator_bulk_get(pcie
->dev
, pcie
->num_supplies
,
1703 * Obtains the list of regulators required for a particular generation of the
1706 * This would've been nice to do simply by providing static tables for use
1707 * with the regulator_bulk_*() API, but unfortunately Tegra30 is a bit quirky
1708 * in that it has two pairs or AVDD_PEX and VDD_PEX supplies (PEXA and PEXB)
1709 * and either seems to be optional depending on which ports are being used.
1711 static int tegra_pcie_get_regulators(struct tegra_pcie
*pcie
, u32 lane_mask
)
1713 struct device_node
*np
= pcie
->dev
->of_node
;
1716 if (of_device_is_compatible(np
, "nvidia,tegra124-pcie")) {
1717 pcie
->num_supplies
= 7;
1719 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1720 sizeof(*pcie
->supplies
),
1722 if (!pcie
->supplies
)
1725 pcie
->supplies
[i
++].supply
= "avddio-pex";
1726 pcie
->supplies
[i
++].supply
= "dvddio-pex";
1727 pcie
->supplies
[i
++].supply
= "avdd-pex-pll";
1728 pcie
->supplies
[i
++].supply
= "hvdd-pex";
1729 pcie
->supplies
[i
++].supply
= "hvdd-pex-pll-e";
1730 pcie
->supplies
[i
++].supply
= "vddio-pex-ctl";
1731 pcie
->supplies
[i
++].supply
= "avdd-pll-erefe";
1732 } else if (of_device_is_compatible(np
, "nvidia,tegra30-pcie")) {
1733 bool need_pexa
= false, need_pexb
= false;
1735 /* VDD_PEXA and AVDD_PEXA supply lanes 0 to 3 */
1736 if (lane_mask
& 0x0f)
1739 /* VDD_PEXB and AVDD_PEXB supply lanes 4 to 5 */
1740 if (lane_mask
& 0x30)
1743 pcie
->num_supplies
= 4 + (need_pexa
? 2 : 0) +
1744 (need_pexb
? 2 : 0);
1746 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1747 sizeof(*pcie
->supplies
),
1749 if (!pcie
->supplies
)
1752 pcie
->supplies
[i
++].supply
= "avdd-pex-pll";
1753 pcie
->supplies
[i
++].supply
= "hvdd-pex";
1754 pcie
->supplies
[i
++].supply
= "vddio-pex-ctl";
1755 pcie
->supplies
[i
++].supply
= "avdd-plle";
1758 pcie
->supplies
[i
++].supply
= "avdd-pexa";
1759 pcie
->supplies
[i
++].supply
= "vdd-pexa";
1763 pcie
->supplies
[i
++].supply
= "avdd-pexb";
1764 pcie
->supplies
[i
++].supply
= "vdd-pexb";
1766 } else if (of_device_is_compatible(np
, "nvidia,tegra20-pcie")) {
1767 pcie
->num_supplies
= 5;
1769 pcie
->supplies
= devm_kcalloc(pcie
->dev
, pcie
->num_supplies
,
1770 sizeof(*pcie
->supplies
),
1772 if (!pcie
->supplies
)
1775 pcie
->supplies
[0].supply
= "avdd-pex";
1776 pcie
->supplies
[1].supply
= "vdd-pex";
1777 pcie
->supplies
[2].supply
= "avdd-pex-pll";
1778 pcie
->supplies
[3].supply
= "avdd-plle";
1779 pcie
->supplies
[4].supply
= "vddio-pex-clk";
1782 if (of_regulator_bulk_available(pcie
->dev
->of_node
, pcie
->supplies
,
1783 pcie
->num_supplies
))
1784 return devm_regulator_bulk_get(pcie
->dev
, pcie
->num_supplies
,
1788 * If not all regulators are available for this new scheme, assume
1789 * that the device tree complies with an older version of the device
1792 dev_info(pcie
->dev
, "using legacy DT binding for power supplies\n");
1794 devm_kfree(pcie
->dev
, pcie
->supplies
);
1795 pcie
->num_supplies
= 0;
1797 return tegra_pcie_get_legacy_regulators(pcie
);
1800 static int tegra_pcie_parse_dt(struct tegra_pcie
*pcie
)
1802 const struct tegra_pcie_soc_data
*soc
= pcie
->soc_data
;
1803 struct device_node
*np
= pcie
->dev
->of_node
, *port
;
1804 struct of_pci_range_parser parser
;
1805 struct of_pci_range range
;
1806 u32 lanes
= 0, mask
= 0;
1807 unsigned int lane
= 0;
1808 struct resource res
;
1811 if (of_pci_range_parser_init(&parser
, np
)) {
1812 dev_err(pcie
->dev
, "missing \"ranges\" property\n");
1816 for_each_of_pci_range(&parser
, &range
) {
1817 err
= of_pci_range_to_resource(&range
, np
, &res
);
1821 switch (res
.flags
& IORESOURCE_TYPE_BITS
) {
1823 /* Track the bus -> CPU I/O mapping offset. */
1824 pcie
->offset
.io
= res
.start
- range
.pci_addr
;
1826 memcpy(&pcie
->pio
, &res
, sizeof(res
));
1827 pcie
->pio
.name
= np
->full_name
;
1830 * The Tegra PCIe host bridge uses this to program the
1831 * mapping of the I/O space to the physical address,
1832 * so we override the .start and .end fields here that
1833 * of_pci_range_to_resource() converted to I/O space.
1834 * We also set the IORESOURCE_MEM type to clarify that
1835 * the resource is in the physical memory space.
1837 pcie
->io
.start
= range
.cpu_addr
;
1838 pcie
->io
.end
= range
.cpu_addr
+ range
.size
- 1;
1839 pcie
->io
.flags
= IORESOURCE_MEM
;
1840 pcie
->io
.name
= "I/O";
1842 memcpy(&res
, &pcie
->io
, sizeof(res
));
1845 case IORESOURCE_MEM
:
1847 * Track the bus -> CPU memory mapping offset. This
1848 * assumes that the prefetchable and non-prefetchable
1849 * regions will be the last of type IORESOURCE_MEM in
1850 * the ranges property.
1852 pcie
->offset
.mem
= res
.start
- range
.pci_addr
;
1854 if (res
.flags
& IORESOURCE_PREFETCH
) {
1855 memcpy(&pcie
->prefetch
, &res
, sizeof(res
));
1856 pcie
->prefetch
.name
= "prefetchable";
1858 memcpy(&pcie
->mem
, &res
, sizeof(res
));
1859 pcie
->mem
.name
= "non-prefetchable";
1865 err
= of_pci_parse_bus_range(np
, &pcie
->busn
);
1867 dev_err(pcie
->dev
, "failed to parse ranges property: %d\n",
1869 pcie
->busn
.name
= np
->name
;
1870 pcie
->busn
.start
= 0;
1871 pcie
->busn
.end
= 0xff;
1872 pcie
->busn
.flags
= IORESOURCE_BUS
;
1875 /* parse root ports */
1876 for_each_child_of_node(np
, port
) {
1877 struct tegra_pcie_port
*rp
;
1881 err
= of_pci_get_devfn(port
);
1883 dev_err(pcie
->dev
, "failed to parse address: %d\n",
1888 index
= PCI_SLOT(err
);
1890 if (index
< 1 || index
> soc
->num_ports
) {
1891 dev_err(pcie
->dev
, "invalid port number: %d\n", index
);
1897 err
= of_property_read_u32(port
, "nvidia,num-lanes", &value
);
1899 dev_err(pcie
->dev
, "failed to parse # of lanes: %d\n",
1905 dev_err(pcie
->dev
, "invalid # of lanes: %u\n", value
);
1909 lanes
|= value
<< (index
<< 3);
1911 if (!of_device_is_available(port
)) {
1916 mask
|= ((1 << value
) - 1) << lane
;
1919 rp
= devm_kzalloc(pcie
->dev
, sizeof(*rp
), GFP_KERNEL
);
1923 err
= of_address_to_resource(port
, 0, &rp
->regs
);
1925 dev_err(pcie
->dev
, "failed to parse address: %d\n",
1930 INIT_LIST_HEAD(&rp
->list
);
1936 rp
->base
= devm_ioremap_resource(pcie
->dev
, &rp
->regs
);
1937 if (IS_ERR(rp
->base
))
1938 return PTR_ERR(rp
->base
);
1940 list_add_tail(&rp
->list
, &pcie
->ports
);
1943 err
= tegra_pcie_get_xbar_config(pcie
, lanes
, &pcie
->xbar_config
);
1945 dev_err(pcie
->dev
, "invalid lane configuration\n");
1949 err
= tegra_pcie_get_regulators(pcie
, mask
);
1957 * FIXME: If there are no PCIe cards attached, then calling this function
1958 * can result in the increase of the bootup time as there are big timeout
1961 #define TEGRA_PCIE_LINKUP_TIMEOUT 200 /* up to 1.2 seconds */
1962 static bool tegra_pcie_port_check_link(struct tegra_pcie_port
*port
)
1964 unsigned int retries
= 3;
1965 unsigned long value
;
1967 /* override presence detection */
1968 value
= readl(port
->base
+ RP_PRIV_MISC
);
1969 value
&= ~RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT
;
1970 value
|= RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT
;
1971 writel(value
, port
->base
+ RP_PRIV_MISC
);
1974 unsigned int timeout
= TEGRA_PCIE_LINKUP_TIMEOUT
;
1977 value
= readl(port
->base
+ RP_VEND_XP
);
1979 if (value
& RP_VEND_XP_DL_UP
)
1982 usleep_range(1000, 2000);
1983 } while (--timeout
);
1986 dev_err(port
->pcie
->dev
, "link %u down, retrying\n",
1991 timeout
= TEGRA_PCIE_LINKUP_TIMEOUT
;
1994 value
= readl(port
->base
+ RP_LINK_CONTROL_STATUS
);
1996 if (value
& RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE
)
1999 usleep_range(1000, 2000);
2000 } while (--timeout
);
2003 tegra_pcie_port_reset(port
);
2004 } while (--retries
);
2009 static int tegra_pcie_enable(struct tegra_pcie
*pcie
)
2011 struct tegra_pcie_port
*port
, *tmp
;
2014 list_for_each_entry_safe(port
, tmp
, &pcie
->ports
, list
) {
2015 dev_info(pcie
->dev
, "probing port %u, using %u lanes\n",
2016 port
->index
, port
->lanes
);
2018 tegra_pcie_port_enable(port
);
2020 if (tegra_pcie_port_check_link(port
))
2023 dev_info(pcie
->dev
, "link %u down, ignoring\n", port
->index
);
2025 tegra_pcie_port_disable(port
);
2026 tegra_pcie_port_free(port
);
2029 memset(&hw
, 0, sizeof(hw
));
2031 #ifdef CONFIG_PCI_MSI
2032 hw
.msi_ctrl
= &pcie
->msi
.chip
;
2035 hw
.nr_controllers
= 1;
2036 hw
.private_data
= (void **)&pcie
;
2037 hw
.setup
= tegra_pcie_setup
;
2038 hw
.map_irq
= tegra_pcie_map_irq
;
2039 hw
.ops
= &tegra_pcie_ops
;
2041 pci_common_init_dev(pcie
->dev
, &hw
);
2046 static const struct tegra_pcie_soc_data tegra20_pcie_data
= {
2048 .msi_base_shift
= 0,
2049 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA20
,
2050 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_DIV10
,
2051 .pads_refclk_cfg0
= 0xfa5cfa5c,
2052 .has_pex_clkreq_en
= false,
2053 .has_pex_bias_ctrl
= false,
2054 .has_intr_prsnt_sense
= false,
2055 .has_cml_clk
= false,
2059 static const struct tegra_pcie_soc_data tegra30_pcie_data
= {
2061 .msi_base_shift
= 8,
2062 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA30
,
2063 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_BUF_EN
,
2064 .pads_refclk_cfg0
= 0xfa5cfa5c,
2065 .pads_refclk_cfg1
= 0xfa5cfa5c,
2066 .has_pex_clkreq_en
= true,
2067 .has_pex_bias_ctrl
= true,
2068 .has_intr_prsnt_sense
= true,
2069 .has_cml_clk
= true,
2073 static const struct tegra_pcie_soc_data tegra124_pcie_data
= {
2075 .msi_base_shift
= 8,
2076 .pads_pll_ctl
= PADS_PLL_CTL_TEGRA30
,
2077 .tx_ref_sel
= PADS_PLL_CTL_TXCLKREF_BUF_EN
,
2078 .pads_refclk_cfg0
= 0x44ac44ac,
2079 .has_pex_clkreq_en
= true,
2080 .has_pex_bias_ctrl
= true,
2081 .has_intr_prsnt_sense
= true,
2082 .has_cml_clk
= true,
2086 static const struct of_device_id tegra_pcie_of_match
[] = {
2087 { .compatible
= "nvidia,tegra124-pcie", .data
= &tegra124_pcie_data
},
2088 { .compatible
= "nvidia,tegra30-pcie", .data
= &tegra30_pcie_data
},
2089 { .compatible
= "nvidia,tegra20-pcie", .data
= &tegra20_pcie_data
},
2093 static void *tegra_pcie_ports_seq_start(struct seq_file
*s
, loff_t
*pos
)
2095 struct tegra_pcie
*pcie
= s
->private;
2097 if (list_empty(&pcie
->ports
))
2100 seq_printf(s
, "Index Status\n");
2102 return seq_list_start(&pcie
->ports
, *pos
);
2105 static void *tegra_pcie_ports_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
2107 struct tegra_pcie
*pcie
= s
->private;
2109 return seq_list_next(v
, &pcie
->ports
, pos
);
2112 static void tegra_pcie_ports_seq_stop(struct seq_file
*s
, void *v
)
2116 static int tegra_pcie_ports_seq_show(struct seq_file
*s
, void *v
)
2118 bool up
= false, active
= false;
2119 struct tegra_pcie_port
*port
;
2122 port
= list_entry(v
, struct tegra_pcie_port
, list
);
2124 value
= readl(port
->base
+ RP_VEND_XP
);
2126 if (value
& RP_VEND_XP_DL_UP
)
2129 value
= readl(port
->base
+ RP_LINK_CONTROL_STATUS
);
2131 if (value
& RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE
)
2134 seq_printf(s
, "%2u ", port
->index
);
2137 seq_printf(s
, "up");
2141 seq_printf(s
, ", ");
2143 seq_printf(s
, "active");
2146 seq_printf(s
, "\n");
2150 static const struct seq_operations tegra_pcie_ports_seq_ops
= {
2151 .start
= tegra_pcie_ports_seq_start
,
2152 .next
= tegra_pcie_ports_seq_next
,
2153 .stop
= tegra_pcie_ports_seq_stop
,
2154 .show
= tegra_pcie_ports_seq_show
,
2157 static int tegra_pcie_ports_open(struct inode
*inode
, struct file
*file
)
2159 struct tegra_pcie
*pcie
= inode
->i_private
;
2163 err
= seq_open(file
, &tegra_pcie_ports_seq_ops
);
2167 s
= file
->private_data
;
2173 static const struct file_operations tegra_pcie_ports_ops
= {
2174 .owner
= THIS_MODULE
,
2175 .open
= tegra_pcie_ports_open
,
2177 .llseek
= seq_lseek
,
2178 .release
= seq_release
,
2181 static int tegra_pcie_debugfs_init(struct tegra_pcie
*pcie
)
2183 struct dentry
*file
;
2185 pcie
->debugfs
= debugfs_create_dir("pcie", NULL
);
2189 file
= debugfs_create_file("ports", S_IFREG
| S_IRUGO
, pcie
->debugfs
,
2190 pcie
, &tegra_pcie_ports_ops
);
2197 debugfs_remove_recursive(pcie
->debugfs
);
2198 pcie
->debugfs
= NULL
;
2202 static int tegra_pcie_probe(struct platform_device
*pdev
)
2204 const struct of_device_id
*match
;
2205 struct tegra_pcie
*pcie
;
2208 match
= of_match_device(tegra_pcie_of_match
, &pdev
->dev
);
2212 pcie
= devm_kzalloc(&pdev
->dev
, sizeof(*pcie
), GFP_KERNEL
);
2216 INIT_LIST_HEAD(&pcie
->buses
);
2217 INIT_LIST_HEAD(&pcie
->ports
);
2218 pcie
->soc_data
= match
->data
;
2219 pcie
->dev
= &pdev
->dev
;
2221 err
= tegra_pcie_parse_dt(pcie
);
2225 err
= tegra_pcie_get_resources(pcie
);
2227 dev_err(&pdev
->dev
, "failed to request resources: %d\n", err
);
2231 err
= tegra_pcie_enable_controller(pcie
);
2235 /* setup the AFI address translations */
2236 tegra_pcie_setup_translations(pcie
);
2238 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
2239 err
= tegra_pcie_enable_msi(pcie
);
2242 "failed to enable MSI support: %d\n",
2248 err
= tegra_pcie_enable(pcie
);
2250 dev_err(&pdev
->dev
, "failed to enable PCIe ports: %d\n", err
);
2254 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
2255 err
= tegra_pcie_debugfs_init(pcie
);
2257 dev_err(&pdev
->dev
, "failed to setup debugfs: %d\n",
2261 platform_set_drvdata(pdev
, pcie
);
2265 if (IS_ENABLED(CONFIG_PCI_MSI
))
2266 tegra_pcie_disable_msi(pcie
);
2268 tegra_pcie_put_resources(pcie
);
2272 static struct platform_driver tegra_pcie_driver
= {
2274 .name
= "tegra-pcie",
2275 .of_match_table
= tegra_pcie_of_match
,
2276 .suppress_bind_attrs
= true,
2278 .probe
= tegra_pcie_probe
,
2280 builtin_platform_driver(tegra_pcie_driver
);