]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/pci/pci_tegra.c
net: designware: Pad small packets
[people/ms/u-boot.git] / drivers / pci / pci_tegra.c
CommitLineData
f315828b
TR
1/*
2 * Copyright (c) 2010, CompuLab, Ltd.
3 * Author: Mike Rapoport <mike@compulab.co.il>
4 *
5 * Based on NVIDIA PCIe driver
6 * Copyright (c) 2008-2009, NVIDIA Corporation.
7 *
8 * Copyright (c) 2013-2014, NVIDIA Corporation.
9 *
10 * SPDX-License-Identifier: GPL-2.0
11 */
12
f315828b
TR
13#define pr_fmt(fmt) "tegra-pcie: " fmt
14
15#include <common.h>
bbc5b36b 16#include <clk.h>
e81ca884 17#include <dm.h>
f315828b 18#include <errno.h>
f315828b
TR
19#include <malloc.h>
20#include <pci.h>
bbc5b36b
SW
21#include <power-domain.h>
22#include <reset.h>
f315828b
TR
23
24#include <asm/io.h>
25#include <asm/gpio.h>
26
68f00811 27#include <linux/ioport.h>
bbc5b36b
SW
28#include <linux/list.h>
29
30#ifndef CONFIG_TEGRA186
f315828b
TR
31#include <asm/arch/clock.h>
32#include <asm/arch/powergate.h>
33#include <asm/arch-tegra/xusb-padctl.h>
f315828b 34#include <dt-bindings/pinctrl/pinctrl-tegra-xusb.h>
bbc5b36b
SW
35#endif
36
37/*
38 * FIXME: TODO: This driver contains a number of ifdef CONFIG_TEGRA186 that
39 * should not be present. These are needed because newer Tegra SoCs support
40 * only the standard clock/reset APIs, whereas older Tegra SoCs support only
41 * a custom Tegra-specific API. ASAP the older Tegra SoCs' code should be
42 * fixed to implement the standard APIs, and all drivers converted to solely
43 * use the new standard APIs, with no ifdefs.
44 */
f315828b
TR
45
46DECLARE_GLOBAL_DATA_PTR;
47
48#define AFI_AXI_BAR0_SZ 0x00
49#define AFI_AXI_BAR1_SZ 0x04
50#define AFI_AXI_BAR2_SZ 0x08
51#define AFI_AXI_BAR3_SZ 0x0c
52#define AFI_AXI_BAR4_SZ 0x10
53#define AFI_AXI_BAR5_SZ 0x14
54
55#define AFI_AXI_BAR0_START 0x18
56#define AFI_AXI_BAR1_START 0x1c
57#define AFI_AXI_BAR2_START 0x20
58#define AFI_AXI_BAR3_START 0x24
59#define AFI_AXI_BAR4_START 0x28
60#define AFI_AXI_BAR5_START 0x2c
61
62#define AFI_FPCI_BAR0 0x30
63#define AFI_FPCI_BAR1 0x34
64#define AFI_FPCI_BAR2 0x38
65#define AFI_FPCI_BAR3 0x3c
66#define AFI_FPCI_BAR4 0x40
67#define AFI_FPCI_BAR5 0x44
68
69#define AFI_CACHE_BAR0_SZ 0x48
70#define AFI_CACHE_BAR0_ST 0x4c
71#define AFI_CACHE_BAR1_SZ 0x50
72#define AFI_CACHE_BAR1_ST 0x54
73
74#define AFI_MSI_BAR_SZ 0x60
75#define AFI_MSI_FPCI_BAR_ST 0x64
76#define AFI_MSI_AXI_BAR_ST 0x68
77
78#define AFI_CONFIGURATION 0xac
79#define AFI_CONFIGURATION_EN_FPCI (1 << 0)
80
81#define AFI_FPCI_ERROR_MASKS 0xb0
82
83#define AFI_INTR_MASK 0xb4
84#define AFI_INTR_MASK_INT_MASK (1 << 0)
85#define AFI_INTR_MASK_MSI_MASK (1 << 8)
86
87#define AFI_SM_INTR_ENABLE 0xc4
88#define AFI_SM_INTR_INTA_ASSERT (1 << 0)
89#define AFI_SM_INTR_INTB_ASSERT (1 << 1)
90#define AFI_SM_INTR_INTC_ASSERT (1 << 2)
91#define AFI_SM_INTR_INTD_ASSERT (1 << 3)
92#define AFI_SM_INTR_INTA_DEASSERT (1 << 4)
93#define AFI_SM_INTR_INTB_DEASSERT (1 << 5)
94#define AFI_SM_INTR_INTC_DEASSERT (1 << 6)
95#define AFI_SM_INTR_INTD_DEASSERT (1 << 7)
96
97#define AFI_AFI_INTR_ENABLE 0xc8
98#define AFI_INTR_EN_INI_SLVERR (1 << 0)
99#define AFI_INTR_EN_INI_DECERR (1 << 1)
100#define AFI_INTR_EN_TGT_SLVERR (1 << 2)
101#define AFI_INTR_EN_TGT_DECERR (1 << 3)
102#define AFI_INTR_EN_TGT_WRERR (1 << 4)
103#define AFI_INTR_EN_DFPCI_DECERR (1 << 5)
104#define AFI_INTR_EN_AXI_DECERR (1 << 6)
105#define AFI_INTR_EN_FPCI_TIMEOUT (1 << 7)
106#define AFI_INTR_EN_PRSNT_SENSE (1 << 8)
107
108#define AFI_PCIE_CONFIG 0x0f8
109#define AFI_PCIE_CONFIG_PCIE_DISABLE(x) (1 << ((x) + 1))
110#define AFI_PCIE_CONFIG_PCIE_DISABLE_ALL 0xe
111#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK (0xf << 20)
112#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE (0x0 << 20)
113#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420 (0x0 << 20)
114#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1 (0x0 << 20)
115#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL (0x1 << 20)
116#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222 (0x1 << 20)
117#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1 (0x1 << 20)
118#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411 (0x2 << 20)
bbc5b36b
SW
119#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_401 (0x0 << 20)
120#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_211 (0x1 << 20)
121#define AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_111 (0x2 << 20)
f315828b
TR
122
123#define AFI_FUSE 0x104
124#define AFI_FUSE_PCIE_T0_GEN2_DIS (1 << 2)
125
126#define AFI_PEX0_CTRL 0x110
127#define AFI_PEX1_CTRL 0x118
128#define AFI_PEX2_CTRL 0x128
bbc5b36b 129#define AFI_PEX2_CTRL_T186 0x19c
f315828b
TR
130#define AFI_PEX_CTRL_RST (1 << 0)
131#define AFI_PEX_CTRL_CLKREQ_EN (1 << 1)
132#define AFI_PEX_CTRL_REFCLK_EN (1 << 3)
133#define AFI_PEX_CTRL_OVERRIDE_EN (1 << 4)
134
135#define AFI_PLLE_CONTROL 0x160
136#define AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL (1 << 9)
137#define AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN (1 << 1)
138
139#define AFI_PEXBIAS_CTRL_0 0x168
140
141#define PADS_CTL_SEL 0x0000009C
142
143#define PADS_CTL 0x000000A0
144#define PADS_CTL_IDDQ_1L (1 << 0)
145#define PADS_CTL_TX_DATA_EN_1L (1 << 6)
146#define PADS_CTL_RX_DATA_EN_1L (1 << 10)
147
148#define PADS_PLL_CTL_TEGRA20 0x000000B8
149#define PADS_PLL_CTL_TEGRA30 0x000000B4
150#define PADS_PLL_CTL_RST_B4SM (0x1 << 1)
151#define PADS_PLL_CTL_LOCKDET (0x1 << 8)
152#define PADS_PLL_CTL_REFCLK_MASK (0x3 << 16)
153#define PADS_PLL_CTL_REFCLK_INTERNAL_CML (0x0 << 16)
154#define PADS_PLL_CTL_REFCLK_INTERNAL_CMOS (0x1 << 16)
155#define PADS_PLL_CTL_REFCLK_EXTERNAL (0x2 << 16)
156#define PADS_PLL_CTL_TXCLKREF_MASK (0x1 << 20)
157#define PADS_PLL_CTL_TXCLKREF_DIV10 (0x0 << 20)
158#define PADS_PLL_CTL_TXCLKREF_DIV5 (0x1 << 20)
159#define PADS_PLL_CTL_TXCLKREF_BUF_EN (0x1 << 22)
160
161#define PADS_REFCLK_CFG0 0x000000C8
162#define PADS_REFCLK_CFG1 0x000000CC
163
164/*
165 * Fields in PADS_REFCLK_CFG*. Those registers form an array of 16-bit
166 * entries, one entry per PCIe port. These field definitions and desired
167 * values aren't in the TRM, but do come from NVIDIA.
168 */
169#define PADS_REFCLK_CFG_TERM_SHIFT 2 /* 6:2 */
170#define PADS_REFCLK_CFG_E_TERM_SHIFT 7
171#define PADS_REFCLK_CFG_PREDI_SHIFT 8 /* 11:8 */
172#define PADS_REFCLK_CFG_DRVI_SHIFT 12 /* 15:12 */
173
f315828b
TR
174#define RP_VEND_XP 0x00000F00
175#define RP_VEND_XP_DL_UP (1 << 30)
176
514e1913
SW
177#define RP_VEND_CTL2 0x00000FA8
178#define RP_VEND_CTL2_PCA_ENABLE (1 << 7)
179
f315828b
TR
180#define RP_PRIV_MISC 0x00000FE0
181#define RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT (0xE << 0)
182#define RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT (0xF << 0)
183
184#define RP_LINK_CONTROL_STATUS 0x00000090
185#define RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE 0x20000000
186#define RP_LINK_CONTROL_STATUS_LINKSTAT_MASK 0x3fff0000
187
e81ca884
SG
188enum tegra_pci_id {
189 TEGRA20_PCIE,
190 TEGRA30_PCIE,
191 TEGRA124_PCIE,
192 TEGRA210_PCIE,
bbc5b36b 193 TEGRA186_PCIE,
e81ca884 194};
f315828b
TR
195
196struct tegra_pcie_port {
197 struct tegra_pcie *pcie;
198
199 struct fdt_resource regs;
200 unsigned int num_lanes;
201 unsigned int index;
202
203 struct list_head list;
204};
205
206struct tegra_pcie_soc {
207 unsigned int num_ports;
208 unsigned long pads_pll_ctl;
209 unsigned long tx_ref_sel;
bbc5b36b 210 unsigned long afi_pex2_ctrl;
3cfc6be4
SW
211 u32 pads_refclk_cfg0;
212 u32 pads_refclk_cfg1;
f315828b
TR
213 bool has_pex_clkreq_en;
214 bool has_pex_bias_ctrl;
215 bool has_cml_clk;
216 bool has_gen2;
514e1913 217 bool force_pca_enable;
f315828b
TR
218};
219
220struct tegra_pcie {
68f00811
SG
221 struct resource pads;
222 struct resource afi;
223 struct resource cs;
f315828b 224
f315828b
TR
225 struct list_head ports;
226 unsigned long xbar;
227
228 const struct tegra_pcie_soc *soc;
bbc5b36b
SW
229
230#ifdef CONFIG_TEGRA186
231 struct clk clk_afi;
232 struct clk clk_pex;
233 struct reset_ctl reset_afi;
234 struct reset_ctl reset_pex;
235 struct reset_ctl reset_pcie_x;
236 struct power_domain pwrdom;
237#else
f315828b 238 struct tegra_xusb_phy *phy;
bbc5b36b 239#endif
f315828b
TR
240};
241
f315828b
TR
242static void afi_writel(struct tegra_pcie *pcie, unsigned long value,
243 unsigned long offset)
244{
245 writel(value, pcie->afi.start + offset);
246}
247
248static unsigned long afi_readl(struct tegra_pcie *pcie, unsigned long offset)
249{
250 return readl(pcie->afi.start + offset);
251}
252
253static void pads_writel(struct tegra_pcie *pcie, unsigned long value,
254 unsigned long offset)
255{
256 writel(value, pcie->pads.start + offset);
257}
258
bbc5b36b 259#ifndef CONFIG_TEGRA186
f315828b
TR
260static unsigned long pads_readl(struct tegra_pcie *pcie, unsigned long offset)
261{
262 return readl(pcie->pads.start + offset);
263}
bbc5b36b 264#endif
f315828b
TR
265
266static unsigned long rp_readl(struct tegra_pcie_port *port,
267 unsigned long offset)
268{
269 return readl(port->regs.start + offset);
270}
271
272static void rp_writel(struct tegra_pcie_port *port, unsigned long value,
273 unsigned long offset)
274{
275 writel(value, port->regs.start + offset);
276}
277
278static unsigned long tegra_pcie_conf_offset(pci_dev_t bdf, int where)
279{
280 return ((where & 0xf00) << 16) | (PCI_BUS(bdf) << 16) |
281 (PCI_DEV(bdf) << 11) | (PCI_FUNC(bdf) << 8) |
282 (where & 0xfc);
283}
284
285static int tegra_pcie_conf_address(struct tegra_pcie *pcie, pci_dev_t bdf,
286 int where, unsigned long *address)
287{
288 unsigned int bus = PCI_BUS(bdf);
289
290 if (bus == 0) {
291 unsigned int dev = PCI_DEV(bdf);
292 struct tegra_pcie_port *port;
293
294 list_for_each_entry(port, &pcie->ports, list) {
295 if (port->index + 1 == dev) {
296 *address = port->regs.start + (where & ~3);
297 return 0;
298 }
299 }
f5c6db84 300 return -EFAULT;
f315828b 301 } else {
f5c6db84
SW
302#ifdef CONFIG_TEGRA20
303 unsigned int dev = PCI_DEV(bdf);
304 if (dev != 0)
305 return -EFAULT;
306#endif
307
f315828b
TR
308 *address = pcie->cs.start + tegra_pcie_conf_offset(bdf, where);
309 return 0;
310 }
f315828b
TR
311}
312
e81ca884
SG
313static int pci_tegra_read_config(struct udevice *bus, pci_dev_t bdf,
314 uint offset, ulong *valuep,
315 enum pci_size_t size)
f315828b 316{
e81ca884
SG
317 struct tegra_pcie *pcie = dev_get_priv(bus);
318 unsigned long address, value;
f315828b
TR
319 int err;
320
e81ca884 321 err = tegra_pcie_conf_address(pcie, bdf, offset, &address);
f315828b 322 if (err < 0) {
e81ca884
SG
323 value = 0xffffffff;
324 goto done;
f315828b
TR
325 }
326
e81ca884 327 value = readl(address);
f315828b 328
f5c6db84 329#ifdef CONFIG_TEGRA20
f315828b
TR
330 /* fixup root port class */
331 if (PCI_BUS(bdf) == 0) {
f5c6db84 332 if ((offset & ~3) == PCI_CLASS_REVISION) {
e81ca884
SG
333 value &= ~0x00ff0000;
334 value |= PCI_CLASS_BRIDGE_PCI << 16;
f315828b
TR
335 }
336 }
f5c6db84 337#endif
f315828b 338
e81ca884
SG
339done:
340 *valuep = pci_conv_32_to_size(value, offset, size);
341
f315828b
TR
342 return 0;
343}
344
e81ca884
SG
345static int pci_tegra_write_config(struct udevice *bus, pci_dev_t bdf,
346 uint offset, ulong value,
347 enum pci_size_t size)
f315828b 348{
e81ca884 349 struct tegra_pcie *pcie = dev_get_priv(bus);
f315828b 350 unsigned long address;
e81ca884 351 ulong old;
f315828b
TR
352 int err;
353
e81ca884 354 err = tegra_pcie_conf_address(pcie, bdf, offset, &address);
f315828b 355 if (err < 0)
e81ca884 356 return 0;
f315828b 357
e81ca884
SG
358 old = readl(address);
359 value = pci_conv_size_to_32(old, value, offset, size);
f315828b
TR
360 writel(value, address);
361
362 return 0;
363}
364
68f00811 365static int tegra_pcie_port_parse_dt(ofnode node, struct tegra_pcie_port *port)
f315828b
TR
366{
367 const u32 *addr;
368 int len;
369
68f00811 370 addr = ofnode_get_property(node, "assigned-addresses", &len);
f315828b 371 if (!addr) {
9b643e31 372 pr_err("property \"assigned-addresses\" not found");
f315828b
TR
373 return -FDT_ERR_NOTFOUND;
374 }
375
376 port->regs.start = fdt32_to_cpu(addr[2]);
377 port->regs.end = port->regs.start + fdt32_to_cpu(addr[4]);
378
379 return 0;
380}
381
68f00811 382static int tegra_pcie_get_xbar_config(ofnode node, u32 lanes,
e81ca884 383 enum tegra_pci_id id, unsigned long *xbar)
f315828b 384{
f315828b 385 switch (id) {
e81ca884 386 case TEGRA20_PCIE:
f315828b
TR
387 switch (lanes) {
388 case 0x00000004:
389 debug("single-mode configuration\n");
390 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_SINGLE;
391 return 0;
392
393 case 0x00000202:
394 debug("dual-mode configuration\n");
395 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_DUAL;
396 return 0;
397 }
398 break;
e81ca884 399 case TEGRA30_PCIE:
f315828b
TR
400 switch (lanes) {
401 case 0x00000204:
402 debug("4x1, 2x1 configuration\n");
403 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_420;
404 return 0;
405
406 case 0x00020202:
407 debug("2x3 configuration\n");
408 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_222;
409 return 0;
410
411 case 0x00010104:
412 debug("4x1, 1x2 configuration\n");
413 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411;
414 return 0;
415 }
416 break;
e81ca884
SG
417 case TEGRA124_PCIE:
418 case TEGRA210_PCIE:
f315828b
TR
419 switch (lanes) {
420 case 0x0000104:
421 debug("4x1, 1x1 configuration\n");
422 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X4_X1;
423 return 0;
424
425 case 0x0000102:
426 debug("2x1, 1x1 configuration\n");
427 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_X2_X1;
428 return 0;
429 }
430 break;
bbc5b36b
SW
431 case TEGRA186_PCIE:
432 switch (lanes) {
433 case 0x0010004:
434 debug("x4 x1 configuration\n");
435 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_401;
436 return 0;
437
438 case 0x0010102:
439 debug("x2 x1 x1 configuration\n");
440 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_211;
441 return 0;
442
443 case 0x0010101:
444 debug("x1 x1 x1 configuration\n");
445 *xbar = AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_T186_111;
446 return 0;
447 }
448 break;
f315828b
TR
449 default:
450 break;
451 }
452
453 return -FDT_ERR_NOTFOUND;
454}
455
68f00811 456static int tegra_pcie_parse_port_info(ofnode node, uint *index, uint *lanes)
f315828b 457{
a62e84d7 458 struct fdt_pci_addr addr;
f315828b
TR
459 int err;
460
68f00811 461 err = ofnode_read_u32_default(node, "nvidia,num-lanes", -1);
f315828b 462 if (err < 0) {
9b643e31 463 pr_err("failed to parse \"nvidia,num-lanes\" property");
f315828b
TR
464 return err;
465 }
466
467 *lanes = err;
468
68f00811 469 err = ofnode_read_pci_addr(node, 0, "reg", &addr);
f315828b 470 if (err < 0) {
9b643e31 471 pr_err("failed to parse \"reg\" property");
f315828b
TR
472 return err;
473 }
474
053b86e6 475 *index = PCI_DEV(addr.phys_hi) - 1;
f315828b
TR
476
477 return 0;
478}
479
e81ca884
SG
480int __weak tegra_pcie_board_init(void)
481{
482 return 0;
483}
484
68f00811 485static int tegra_pcie_parse_dt(struct udevice *dev, enum tegra_pci_id id,
f315828b
TR
486 struct tegra_pcie *pcie)
487{
68f00811 488 ofnode subnode;
f315828b 489 u32 lanes = 0;
68f00811 490 int err;
f315828b 491
68f00811 492 err = dev_read_resource(dev, 0, &pcie->pads);
f315828b 493 if (err < 0) {
9b643e31 494 pr_err("resource \"pads\" not found");
f315828b
TR
495 return err;
496 }
497
68f00811 498 err = dev_read_resource(dev, 1, &pcie->afi);
f315828b 499 if (err < 0) {
9b643e31 500 pr_err("resource \"afi\" not found");
f315828b
TR
501 return err;
502 }
503
68f00811 504 err = dev_read_resource(dev, 2, &pcie->cs);
f315828b 505 if (err < 0) {
9b643e31 506 pr_err("resource \"cs\" not found");
f315828b
TR
507 return err;
508 }
509
dfa71e9f
SG
510 err = tegra_pcie_board_init();
511 if (err < 0) {
9b643e31 512 pr_err("tegra_pcie_board_init() failed: err=%d", err);
dfa71e9f
SG
513 return err;
514 }
e81ca884 515
bbc5b36b 516#ifndef CONFIG_TEGRA186
f315828b
TR
517 pcie->phy = tegra_xusb_phy_get(TEGRA_XUSB_PADCTL_PCIE);
518 if (pcie->phy) {
519 err = tegra_xusb_phy_prepare(pcie->phy);
520 if (err < 0) {
9b643e31 521 pr_err("failed to prepare PHY: %d", err);
f315828b
TR
522 return err;
523 }
524 }
bbc5b36b 525#endif
f315828b 526
68f00811 527 dev_for_each_subnode(subnode, dev) {
f315828b
TR
528 unsigned int index = 0, num_lanes = 0;
529 struct tegra_pcie_port *port;
530
68f00811 531 err = tegra_pcie_parse_port_info(subnode, &index, &num_lanes);
f315828b 532 if (err < 0) {
9b643e31 533 pr_err("failed to obtain root port info");
f315828b
TR
534 continue;
535 }
536
537 lanes |= num_lanes << (index << 3);
538
68f00811 539 if (!ofnode_is_available(subnode))
f315828b
TR
540 continue;
541
542 port = malloc(sizeof(*port));
543 if (!port)
544 continue;
545
546 memset(port, 0, sizeof(*port));
547 port->num_lanes = num_lanes;
548 port->index = index;
549
68f00811 550 err = tegra_pcie_port_parse_dt(subnode, port);
f315828b
TR
551 if (err < 0) {
552 free(port);
553 continue;
554 }
555
556 list_add_tail(&port->list, &pcie->ports);
557 port->pcie = pcie;
558 }
559
68f00811
SG
560 err = tegra_pcie_get_xbar_config(dev_ofnode(dev), lanes, id,
561 &pcie->xbar);
f315828b 562 if (err < 0) {
9b643e31 563 pr_err("invalid lane configuration");
f315828b
TR
564 return err;
565 }
566
567 return 0;
568}
569
bbc5b36b
SW
570#ifdef CONFIG_TEGRA186
571static int tegra_pcie_power_on(struct tegra_pcie *pcie)
572{
573 int ret;
574
575 ret = power_domain_on(&pcie->pwrdom);
576 if (ret) {
9b643e31 577 pr_err("power_domain_on() failed: %d\n", ret);
bbc5b36b
SW
578 return ret;
579 }
580
581 ret = clk_enable(&pcie->clk_afi);
582 if (ret) {
9b643e31 583 pr_err("clk_enable(afi) failed: %d\n", ret);
bbc5b36b
SW
584 return ret;
585 }
586
587 ret = clk_enable(&pcie->clk_pex);
588 if (ret) {
9b643e31 589 pr_err("clk_enable(pex) failed: %d\n", ret);
bbc5b36b
SW
590 return ret;
591 }
592
593 ret = reset_deassert(&pcie->reset_afi);
594 if (ret) {
9b643e31 595 pr_err("reset_deassert(afi) failed: %d\n", ret);
bbc5b36b
SW
596 return ret;
597 }
598
599 ret = reset_deassert(&pcie->reset_pex);
600 if (ret) {
9b643e31 601 pr_err("reset_deassert(pex) failed: %d\n", ret);
bbc5b36b
SW
602 return ret;
603 }
604
605 return 0;
606}
607#else
f315828b
TR
608static int tegra_pcie_power_on(struct tegra_pcie *pcie)
609{
610 const struct tegra_pcie_soc *soc = pcie->soc;
611 unsigned long value;
612 int err;
613
614 /* reset PCIEXCLK logic, AFI controller and PCIe controller */
615 reset_set_enable(PERIPH_ID_PCIEXCLK, 1);
616 reset_set_enable(PERIPH_ID_AFI, 1);
617 reset_set_enable(PERIPH_ID_PCIE, 1);
618
619 err = tegra_powergate_power_off(TEGRA_POWERGATE_PCIE);
620 if (err < 0) {
9b643e31 621 pr_err("failed to power off PCIe partition: %d", err);
f315828b
TR
622 return err;
623 }
624
f315828b
TR
625 err = tegra_powergate_sequence_power_up(TEGRA_POWERGATE_PCIE,
626 PERIPH_ID_PCIE);
627 if (err < 0) {
9b643e31 628 pr_err("failed to power up PCIe partition: %d", err);
f315828b
TR
629 return err;
630 }
631
632 /* take AFI controller out of reset */
633 reset_set_enable(PERIPH_ID_AFI, 0);
634
635 /* enable AFI clock */
636 clock_enable(PERIPH_ID_AFI);
637
638 if (soc->has_cml_clk) {
639 /* enable CML clock */
640 value = readl(NV_PA_CLK_RST_BASE + 0x48c);
641 value |= (1 << 0);
642 value &= ~(1 << 1);
643 writel(value, NV_PA_CLK_RST_BASE + 0x48c);
644 }
645
646 err = tegra_plle_enable();
647 if (err < 0) {
9b643e31 648 pr_err("failed to enable PLLE: %d\n", err);
f315828b
TR
649 return err;
650 }
651
652 return 0;
653}
654
655static int tegra_pcie_pll_wait(struct tegra_pcie *pcie, unsigned long timeout)
656{
657 const struct tegra_pcie_soc *soc = pcie->soc;
658 unsigned long start = get_timer(0);
659 u32 value;
660
661 while (get_timer(start) < timeout) {
662 value = pads_readl(pcie, soc->pads_pll_ctl);
663 if (value & PADS_PLL_CTL_LOCKDET)
664 return 0;
665 }
666
667 return -ETIMEDOUT;
668}
669
670static int tegra_pcie_phy_enable(struct tegra_pcie *pcie)
671{
672 const struct tegra_pcie_soc *soc = pcie->soc;
673 u32 value;
674 int err;
675
676 /* initialize internal PHY, enable up to 16 PCIe lanes */
677 pads_writel(pcie, 0, PADS_CTL_SEL);
678
679 /* override IDDQ to 1 on all 4 lanes */
680 value = pads_readl(pcie, PADS_CTL);
681 value |= PADS_CTL_IDDQ_1L;
682 pads_writel(pcie, value, PADS_CTL);
683
684 /*
685 * Set up PHY PLL inputs select PLLE output as refclock, set TX
686 * ref sel to div10 (not div5).
687 */
688 value = pads_readl(pcie, soc->pads_pll_ctl);
689 value &= ~(PADS_PLL_CTL_REFCLK_MASK | PADS_PLL_CTL_TXCLKREF_MASK);
690 value |= PADS_PLL_CTL_REFCLK_INTERNAL_CML | soc->tx_ref_sel;
691 pads_writel(pcie, value, soc->pads_pll_ctl);
692
693 /* reset PLL */
694 value = pads_readl(pcie, soc->pads_pll_ctl);
695 value &= ~PADS_PLL_CTL_RST_B4SM;
696 pads_writel(pcie, value, soc->pads_pll_ctl);
697
698 udelay(20);
699
700 /* take PLL out of reset */
701 value = pads_readl(pcie, soc->pads_pll_ctl);
702 value |= PADS_PLL_CTL_RST_B4SM;
703 pads_writel(pcie, value, soc->pads_pll_ctl);
704
f315828b
TR
705 /* wait for the PLL to lock */
706 err = tegra_pcie_pll_wait(pcie, 500);
707 if (err < 0) {
9b643e31 708 pr_err("PLL failed to lock: %d", err);
f315828b
TR
709 return err;
710 }
711
712 /* turn off IDDQ override */
713 value = pads_readl(pcie, PADS_CTL);
714 value &= ~PADS_CTL_IDDQ_1L;
715 pads_writel(pcie, value, PADS_CTL);
716
717 /* enable TX/RX data */
718 value = pads_readl(pcie, PADS_CTL);
719 value |= PADS_CTL_TX_DATA_EN_1L | PADS_CTL_RX_DATA_EN_1L;
720 pads_writel(pcie, value, PADS_CTL);
721
722 return 0;
723}
bbc5b36b 724#endif
f315828b
TR
725
726static int tegra_pcie_enable_controller(struct tegra_pcie *pcie)
727{
728 const struct tegra_pcie_soc *soc = pcie->soc;
729 struct tegra_pcie_port *port;
730 u32 value;
731 int err;
732
bbc5b36b
SW
733#ifdef CONFIG_TEGRA186
734 {
735#else
f315828b 736 if (pcie->phy) {
bbc5b36b 737#endif
f315828b
TR
738 value = afi_readl(pcie, AFI_PLLE_CONTROL);
739 value &= ~AFI_PLLE_CONTROL_BYPASS_PADS2PLLE_CONTROL;
740 value |= AFI_PLLE_CONTROL_PADS2PLLE_CONTROL_EN;
741 afi_writel(pcie, value, AFI_PLLE_CONTROL);
742 }
743
744 if (soc->has_pex_bias_ctrl)
745 afi_writel(pcie, 0, AFI_PEXBIAS_CTRL_0);
746
747 value = afi_readl(pcie, AFI_PCIE_CONFIG);
748 value &= ~AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK;
749 value |= AFI_PCIE_CONFIG_PCIE_DISABLE_ALL | pcie->xbar;
750
751 list_for_each_entry(port, &pcie->ports, list)
752 value &= ~AFI_PCIE_CONFIG_PCIE_DISABLE(port->index);
753
754 afi_writel(pcie, value, AFI_PCIE_CONFIG);
755
756 value = afi_readl(pcie, AFI_FUSE);
757
758 if (soc->has_gen2)
759 value &= ~AFI_FUSE_PCIE_T0_GEN2_DIS;
760 else
761 value |= AFI_FUSE_PCIE_T0_GEN2_DIS;
762
763 afi_writel(pcie, value, AFI_FUSE);
764
bbc5b36b 765#ifndef CONFIG_TEGRA186
f315828b
TR
766 if (pcie->phy)
767 err = tegra_xusb_phy_enable(pcie->phy);
768 else
769 err = tegra_pcie_phy_enable(pcie);
770
771 if (err < 0) {
9b643e31 772 pr_err("failed to power on PHY: %d\n", err);
f315828b
TR
773 return err;
774 }
bbc5b36b 775#endif
f315828b
TR
776
777 /* take the PCIEXCLK logic out of reset */
bbc5b36b
SW
778#ifdef CONFIG_TEGRA186
779 err = reset_deassert(&pcie->reset_pcie_x);
780 if (err) {
9b643e31 781 pr_err("reset_deassert(pcie_x) failed: %d\n", err);
bbc5b36b
SW
782 return err;
783 }
784#else
f315828b 785 reset_set_enable(PERIPH_ID_PCIEXCLK, 0);
bbc5b36b 786#endif
f315828b
TR
787
788 /* finally enable PCIe */
789 value = afi_readl(pcie, AFI_CONFIGURATION);
790 value |= AFI_CONFIGURATION_EN_FPCI;
791 afi_writel(pcie, value, AFI_CONFIGURATION);
792
793 /* disable all interrupts */
794 afi_writel(pcie, 0, AFI_AFI_INTR_ENABLE);
795 afi_writel(pcie, 0, AFI_SM_INTR_ENABLE);
796 afi_writel(pcie, 0, AFI_INTR_MASK);
797 afi_writel(pcie, 0, AFI_FPCI_ERROR_MASKS);
798
799 return 0;
800}
801
e81ca884 802static int tegra_pcie_setup_translations(struct udevice *bus)
f315828b 803{
e81ca884 804 struct tegra_pcie *pcie = dev_get_priv(bus);
f315828b 805 unsigned long fpci, axi, size;
e81ca884
SG
806 struct pci_region *io, *mem, *pref;
807 int count;
f315828b
TR
808
809 /* BAR 0: type 1 extended configuration space */
810 fpci = 0xfe100000;
68f00811 811 size = resource_size(&pcie->cs);
f315828b
TR
812 axi = pcie->cs.start;
813
814 afi_writel(pcie, axi, AFI_AXI_BAR0_START);
815 afi_writel(pcie, size >> 12, AFI_AXI_BAR0_SZ);
816 afi_writel(pcie, fpci, AFI_FPCI_BAR0);
817
e81ca884
SG
818 count = pci_get_regions(bus, &io, &mem, &pref);
819 if (count != 3)
820 return -EINVAL;
821
f315828b
TR
822 /* BAR 1: downstream I/O */
823 fpci = 0xfdfc0000;
e81ca884
SG
824 size = io->size;
825 axi = io->phys_start;
f315828b
TR
826
827 afi_writel(pcie, axi, AFI_AXI_BAR1_START);
828 afi_writel(pcie, size >> 12, AFI_AXI_BAR1_SZ);
829 afi_writel(pcie, fpci, AFI_FPCI_BAR1);
830
831 /* BAR 2: prefetchable memory */
e81ca884
SG
832 fpci = (((pref->phys_start >> 12) & 0x0fffffff) << 4) | 0x1;
833 size = pref->size;
834 axi = pref->phys_start;
f315828b
TR
835
836 afi_writel(pcie, axi, AFI_AXI_BAR2_START);
837 afi_writel(pcie, size >> 12, AFI_AXI_BAR2_SZ);
838 afi_writel(pcie, fpci, AFI_FPCI_BAR2);
839
840 /* BAR 3: non-prefetchable memory */
e81ca884
SG
841 fpci = (((mem->phys_start >> 12) & 0x0fffffff) << 4) | 0x1;
842 size = mem->size;
843 axi = mem->phys_start;
f315828b
TR
844
845 afi_writel(pcie, axi, AFI_AXI_BAR3_START);
846 afi_writel(pcie, size >> 12, AFI_AXI_BAR3_SZ);
847 afi_writel(pcie, fpci, AFI_FPCI_BAR3);
848
849 /* NULL out the remaining BARs as they are not used */
850 afi_writel(pcie, 0, AFI_AXI_BAR4_START);
851 afi_writel(pcie, 0, AFI_AXI_BAR4_SZ);
852 afi_writel(pcie, 0, AFI_FPCI_BAR4);
853
854 afi_writel(pcie, 0, AFI_AXI_BAR5_START);
855 afi_writel(pcie, 0, AFI_AXI_BAR5_SZ);
856 afi_writel(pcie, 0, AFI_FPCI_BAR5);
857
858 /* map all upstream transactions as uncached */
859 afi_writel(pcie, NV_PA_SDRAM_BASE, AFI_CACHE_BAR0_ST);
860 afi_writel(pcie, 0, AFI_CACHE_BAR0_SZ);
861 afi_writel(pcie, 0, AFI_CACHE_BAR1_ST);
862 afi_writel(pcie, 0, AFI_CACHE_BAR1_SZ);
863
864 /* MSI translations are setup only when needed */
865 afi_writel(pcie, 0, AFI_MSI_FPCI_BAR_ST);
866 afi_writel(pcie, 0, AFI_MSI_BAR_SZ);
867 afi_writel(pcie, 0, AFI_MSI_AXI_BAR_ST);
868 afi_writel(pcie, 0, AFI_MSI_BAR_SZ);
e81ca884
SG
869
870 return 0;
f315828b
TR
871}
872
873static unsigned long tegra_pcie_port_get_pex_ctrl(struct tegra_pcie_port *port)
874{
875 unsigned long ret = 0;
876
877 switch (port->index) {
878 case 0:
879 ret = AFI_PEX0_CTRL;
880 break;
881
882 case 1:
883 ret = AFI_PEX1_CTRL;
884 break;
885
886 case 2:
bbc5b36b 887 ret = port->pcie->soc->afi_pex2_ctrl;
f315828b
TR
888 break;
889 }
890
891 return ret;
892}
893
894static void tegra_pcie_port_reset(struct tegra_pcie_port *port)
895{
896 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
897 unsigned long value;
898
899 /* pulse reset signel */
900 value = afi_readl(port->pcie, ctrl);
901 value &= ~AFI_PEX_CTRL_RST;
902 afi_writel(port->pcie, value, ctrl);
903
904 udelay(2000);
905
906 value = afi_readl(port->pcie, ctrl);
907 value |= AFI_PEX_CTRL_RST;
908 afi_writel(port->pcie, value, ctrl);
909}
910
911static void tegra_pcie_port_enable(struct tegra_pcie_port *port)
912{
f39a6a32
SW
913 struct tegra_pcie *pcie = port->pcie;
914 const struct tegra_pcie_soc *soc = pcie->soc;
f315828b
TR
915 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
916 unsigned long value;
917
918 /* enable reference clock */
f39a6a32 919 value = afi_readl(pcie, ctrl);
f315828b
TR
920 value |= AFI_PEX_CTRL_REFCLK_EN;
921
f39a6a32 922 if (pcie->soc->has_pex_clkreq_en)
f315828b
TR
923 value |= AFI_PEX_CTRL_CLKREQ_EN;
924
925 value |= AFI_PEX_CTRL_OVERRIDE_EN;
926
f39a6a32 927 afi_writel(pcie, value, ctrl);
f315828b
TR
928
929 tegra_pcie_port_reset(port);
514e1913
SW
930
931 if (soc->force_pca_enable) {
932 value = rp_readl(port, RP_VEND_CTL2);
933 value |= RP_VEND_CTL2_PCA_ENABLE;
934 rp_writel(port, value, RP_VEND_CTL2);
935 }
f39a6a32
SW
936
937 /* configure the reference clock driver */
938 pads_writel(pcie, soc->pads_refclk_cfg0, PADS_REFCLK_CFG0);
939 if (soc->num_ports > 2)
940 pads_writel(pcie, soc->pads_refclk_cfg1, PADS_REFCLK_CFG1);
f315828b
TR
941}
942
943static bool tegra_pcie_port_check_link(struct tegra_pcie_port *port)
944{
945 unsigned int retries = 3;
946 unsigned long value;
947
948 value = rp_readl(port, RP_PRIV_MISC);
949 value &= ~RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT;
950 value |= RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT;
951 rp_writel(port, value, RP_PRIV_MISC);
952
953 do {
954 unsigned int timeout = 200;
955
956 do {
957 value = rp_readl(port, RP_VEND_XP);
958 if (value & RP_VEND_XP_DL_UP)
959 break;
960
961 udelay(2000);
962 } while (--timeout);
963
964 if (!timeout) {
965 debug("link %u down, retrying\n", port->index);
966 goto retry;
967 }
968
969 timeout = 200;
970
971 do {
972 value = rp_readl(port, RP_LINK_CONTROL_STATUS);
973 if (value & RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE)
974 return true;
975
976 udelay(2000);
977 } while (--timeout);
978
979retry:
980 tegra_pcie_port_reset(port);
981 } while (--retries);
982
983 return false;
984}
985
986static void tegra_pcie_port_disable(struct tegra_pcie_port *port)
987{
988 unsigned long ctrl = tegra_pcie_port_get_pex_ctrl(port);
989 unsigned long value;
990
991 /* assert port reset */
992 value = afi_readl(port->pcie, ctrl);
993 value &= ~AFI_PEX_CTRL_RST;
994 afi_writel(port->pcie, value, ctrl);
995
996 /* disable reference clock */
997 value = afi_readl(port->pcie, ctrl);
998 value &= ~AFI_PEX_CTRL_REFCLK_EN;
999 afi_writel(port->pcie, value, ctrl);
1000}
1001
1002static void tegra_pcie_port_free(struct tegra_pcie_port *port)
1003{
1004 list_del(&port->list);
1005 free(port);
1006}
1007
1008static int tegra_pcie_enable(struct tegra_pcie *pcie)
1009{
1010 struct tegra_pcie_port *port, *tmp;
1011
1012 list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
1013 debug("probing port %u, using %u lanes\n", port->index,
1014 port->num_lanes);
1015
1016 tegra_pcie_port_enable(port);
1017
1018 if (tegra_pcie_port_check_link(port))
1019 continue;
1020
1021 debug("link %u down, ignoring\n", port->index);
1022
1023 tegra_pcie_port_disable(port);
1024 tegra_pcie_port_free(port);
1025 }
1026
1027 return 0;
1028}
1029
e81ca884
SG
1030static const struct tegra_pcie_soc pci_tegra_soc[] = {
1031 [TEGRA20_PCIE] = {
1032 .num_ports = 2,
1033 .pads_pll_ctl = PADS_PLL_CTL_TEGRA20,
1034 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_DIV10,
3cfc6be4 1035 .pads_refclk_cfg0 = 0xfa5cfa5c,
e81ca884
SG
1036 .has_pex_clkreq_en = false,
1037 .has_pex_bias_ctrl = false,
1038 .has_cml_clk = false,
1039 .has_gen2 = false,
1040 },
1041 [TEGRA30_PCIE] = {
1042 .num_ports = 3,
1043 .pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
1044 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
bbc5b36b 1045 .afi_pex2_ctrl = AFI_PEX2_CTRL,
3cfc6be4
SW
1046 .pads_refclk_cfg0 = 0xfa5cfa5c,
1047 .pads_refclk_cfg1 = 0xfa5cfa5c,
e81ca884
SG
1048 .has_pex_clkreq_en = true,
1049 .has_pex_bias_ctrl = true,
1050 .has_cml_clk = true,
1051 .has_gen2 = false,
1052 },
1053 [TEGRA124_PCIE] = {
1054 .num_ports = 2,
1055 .pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
1056 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
3cfc6be4 1057 .pads_refclk_cfg0 = 0x44ac44ac,
e81ca884
SG
1058 .has_pex_clkreq_en = true,
1059 .has_pex_bias_ctrl = true,
1060 .has_cml_clk = true,
1061 .has_gen2 = true,
1062 },
1063 [TEGRA210_PCIE] = {
1064 .num_ports = 2,
1065 .pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
1066 .tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
3cfc6be4 1067 .pads_refclk_cfg0 = 0x90b890b8,
e81ca884
SG
1068 .has_pex_clkreq_en = true,
1069 .has_pex_bias_ctrl = true,
1070 .has_cml_clk = true,
1071 .has_gen2 = true,
1072 .force_pca_enable = true,
bbc5b36b
SW
1073 },
1074 [TEGRA186_PCIE] = {
1075 .num_ports = 3,
1076 .afi_pex2_ctrl = AFI_PEX2_CTRL_T186,
1077 .pads_refclk_cfg0 = 0x80b880b8,
1078 .pads_refclk_cfg1 = 0x000480b8,
1079 .has_pex_clkreq_en = true,
1080 .has_pex_bias_ctrl = true,
1081 .has_gen2 = true,
1082 },
d9eda6c4
SW
1083};
1084
e81ca884 1085static int pci_tegra_ofdata_to_platdata(struct udevice *dev)
f315828b 1086{
e81ca884
SG
1087 struct tegra_pcie *pcie = dev_get_priv(dev);
1088 enum tegra_pci_id id;
f315828b 1089
e81ca884
SG
1090 id = dev_get_driver_data(dev);
1091 pcie->soc = &pci_tegra_soc[id];
f315828b 1092
e81ca884 1093 INIT_LIST_HEAD(&pcie->ports);
f315828b 1094
68f00811 1095 if (tegra_pcie_parse_dt(dev, id, pcie))
e81ca884 1096 return -EINVAL;
f315828b 1097
e81ca884
SG
1098 return 0;
1099}
f315828b 1100
e81ca884
SG
1101static int pci_tegra_probe(struct udevice *dev)
1102{
1103 struct tegra_pcie *pcie = dev_get_priv(dev);
1104 int err;
f315828b 1105
bbc5b36b
SW
1106#ifdef CONFIG_TEGRA186
1107 err = clk_get_by_name(dev, "afi", &pcie->clk_afi);
1108 if (err) {
1109 debug("clk_get_by_name(afi) failed: %d\n", err);
1110 return err;
1111 }
1112
1113 err = clk_get_by_name(dev, "pex", &pcie->clk_pex);
1114 if (err) {
1115 debug("clk_get_by_name(pex) failed: %d\n", err);
1116 return err;
1117 }
1118
1119 err = reset_get_by_name(dev, "afi", &pcie->reset_afi);
1120 if (err) {
1121 debug("reset_get_by_name(afi) failed: %d\n", err);
1122 return err;
1123 }
1124
1125 err = reset_get_by_name(dev, "pex", &pcie->reset_pex);
1126 if (err) {
1127 debug("reset_get_by_name(pex) failed: %d\n", err);
1128 return err;
1129 }
1130
1131 err = reset_get_by_name(dev, "pcie_x", &pcie->reset_pcie_x);
1132 if (err) {
1133 debug("reset_get_by_name(pcie_x) failed: %d\n", err);
1134 return err;
1135 }
1136
1137 err = power_domain_get(dev, &pcie->pwrdom);
1138 if (err) {
1139 debug("power_domain_get() failed: %d\n", err);
1140 return err;
1141 }
1142#endif
1143
e81ca884
SG
1144 err = tegra_pcie_power_on(pcie);
1145 if (err < 0) {
9b643e31 1146 pr_err("failed to power on");
e81ca884
SG
1147 return err;
1148 }
f315828b 1149
e81ca884
SG
1150 err = tegra_pcie_enable_controller(pcie);
1151 if (err < 0) {
9b643e31 1152 pr_err("failed to enable controller");
e81ca884
SG
1153 return err;
1154 }
f315828b 1155
e81ca884
SG
1156 err = tegra_pcie_setup_translations(dev);
1157 if (err < 0) {
9b643e31 1158 pr_err("failed to decode ranges");
e81ca884
SG
1159 return err;
1160 }
f315828b 1161
e81ca884
SG
1162 err = tegra_pcie_enable(pcie);
1163 if (err < 0) {
9b643e31 1164 pr_err("failed to enable PCIe");
e81ca884 1165 return err;
f315828b
TR
1166 }
1167
1168 return 0;
1169}
1170
e81ca884
SG
1171static const struct dm_pci_ops pci_tegra_ops = {
1172 .read_config = pci_tegra_read_config,
1173 .write_config = pci_tegra_write_config,
1174};
f315828b 1175
e81ca884
SG
1176static const struct udevice_id pci_tegra_ids[] = {
1177 { .compatible = "nvidia,tegra20-pcie", .data = TEGRA20_PCIE },
1178 { .compatible = "nvidia,tegra30-pcie", .data = TEGRA30_PCIE },
1179 { .compatible = "nvidia,tegra124-pcie", .data = TEGRA124_PCIE },
1180 { .compatible = "nvidia,tegra210-pcie", .data = TEGRA210_PCIE },
bbc5b36b 1181 { .compatible = "nvidia,tegra186-pcie", .data = TEGRA186_PCIE },
e81ca884
SG
1182 { }
1183};
a02e2635 1184
e81ca884
SG
1185U_BOOT_DRIVER(pci_tegra) = {
1186 .name = "pci_tegra",
1187 .id = UCLASS_PCI,
1188 .of_match = pci_tegra_ids,
1189 .ops = &pci_tegra_ops,
1190 .ofdata_to_platdata = pci_tegra_ofdata_to_platdata,
1191 .probe = pci_tegra_probe,
1192 .priv_auto_alloc_size = sizeof(struct tegra_pcie),
1193};