coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pcie.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
5 #include <delay.h>
6 #include <device/device.h>
7 #include <device/pci.h>
8 #include <device/pciexp.h>
9 #include <device/pci_def.h>
10 #include <device/pci_ids.h>
11 #include <device/pci_ops.h>
12 #include <soc/lpc.h>
13 #include <soc/pch.h>
14 #include <soc/pci_devs.h>
15 #include <soc/rcba.h>
19 #include <types.h>
20 
21 /* Low Power variant has 6 root ports. */
22 #define MAX_NUM_ROOT_PORTS 6
23 
25  /* RPFN is a write-once register so keep a copy until it is written */
35  bool coalesce;
36  int gbe_port;
37  int num_ports;
39 };
40 
41 static struct root_port_config rpc;
42 
43 static inline int root_port_is_first(struct device *dev)
44 {
45  return PCI_FUNC(dev->path.pci.devfn) == 0;
46 }
47 
48 static inline int root_port_is_last(struct device *dev)
49 {
50  return PCI_FUNC(dev->path.pci.devfn) == (rpc.num_ports - 1);
51 }
52 
53 /* Root ports are numbered 1..N in the documentation. */
54 static inline int root_port_number(struct device *dev)
55 {
56  return PCI_FUNC(dev->path.pci.devfn) + 1;
57 }
58 
60 {
61  /* Is the Gbe Port enabled? */
62  if (!((rpc.strpfusecfg1 >> 19) & 1))
63  return;
64 
65  switch ((rpc.strpfusecfg1 >> 16) & 0x7) {
66  case 0:
67  rpc.gbe_port = 3;
68  break;
69  case 1:
70  rpc.gbe_port = 4;
71  break;
72  case 2:
73  case 3:
74  case 4:
75  case 5:
76  /* Lanes 0-4 of Root Port 5. */
77  rpc.gbe_port = 5;
78  break;
79  default:
80  printk(BIOS_DEBUG, "Invalid GbE Port Selection.\n");
81  }
82 }
83 
84 static void pcie_iosf_port_grant_count(struct device *dev)
85 {
86  u8 update_val;
87  u32 rpcd = (pci_read_config32(dev, 0xfc) >> 14) & 0x3;
88 
89  switch (rpcd) {
90  case 1:
91  case 3:
92  update_val = 0x02;
93  break;
94  case 2:
95  update_val = 0x22;
96  break;
97  default:
98  update_val = 0x00;
99  break;
100  }
101 
102  RCBA32(0x103C) = (RCBA32(0x103C) & (~0xff)) | update_val;
103 }
104 
105 static void root_port_init_config(struct device *dev)
106 {
107  int rp;
108  u32 data = 0;
109  u8 resp, id;
110 
111  if (root_port_is_first(dev)) {
115  rpc.gbe_port = -1;
116  /* RP0 f5[3:0] = 0101b*/
117  pci_update_config8(dev, 0xf5, ~0xa, 0x5);
118 
120 
121  rpc.pin_ownership = pci_read_config32(dev, 0x410);
123 
124  pci_or_config8(dev, 0xe2, 3 << 4);
125  const struct soc_intel_broadwell_pch_config *config = config_of(dev);
126  rpc.coalesce = config->pcie_port_coalesce;
127  }
128 
129  rp = root_port_number(dev);
130  if (rp > rpc.num_ports) {
131  printk(BIOS_ERR, "Found Root Port %d, expecting %d\n",
132  rp, rpc.num_ports);
133  return;
134  }
135 
136  /* Read the fuse configuration and pin ownership. */
137  switch (rp) {
138  case 1:
139  rpc.strpfusecfg1 = pci_read_config32(dev, 0xfc);
140  rpc.b0d28f0_32c = pci_read_config32(dev, 0x32c);
141  break;
142  case 5:
143  rpc.strpfusecfg2 = pci_read_config32(dev, 0xfc);
144  rpc.b0d28f4_32c = pci_read_config32(dev, 0x32c);
145  break;
146  case 6:
147  rpc.b0d28f5_32c = pci_read_config32(dev, 0x32c);
148  rpc.strpfusecfg3 = pci_read_config32(dev, 0xfc);
149  break;
150  default:
151  break;
152  }
153 
154  pci_write_config32(dev, 0x418, 0x02000430);
155 
156  if (root_port_is_first(dev)) {
157  /*
158  * set RP0 PCICFG E2h[5:4] = 11b and E1h[6] = 1
159  * before configuring ASPM
160  */
161  id = 0xe0 + (u8)(RCBA32(RPFN) & 0x07);
162  pch_iobp_exec(0xE00000E0, IOBP_PCICFG_READ, id, &data, &resp);
163  data |= ((0x30 << 16) | (0x40 << 8));
164  pch_iobp_exec(0xE00000E0, IOBP_PCICFG_WRITE, id, &data, &resp);
165  }
166 
167  /* Cache pci device. */
168  rpc.ports[rp - 1] = dev;
169 }
170 
171 /* Update devicetree with new Root Port function number assignment */
172 static void pch_pcie_device_set_func(int index, int pci_func)
173 {
174  struct device *dev;
175  unsigned int new_devfn;
176 
177  dev = rpc.ports[index];
178 
179  /* Set the new PCI function field for this Root Port. */
180  rpc.new_rpfn &= ~RPFN_FNMASK(index);
181  rpc.new_rpfn |= RPFN_FNSET(index, pci_func);
182 
183  /* Determine the new devfn for this port */
184  new_devfn = PCI_DEVFN(PCH_DEV_SLOT_PCIE, pci_func);
185 
186  if (dev && dev->path.pci.devfn != new_devfn) {
188  "PCH: PCIe map %02x.%1x -> %02x.%1x\n",
189  PCI_SLOT(dev->path.pci.devfn),
190  PCI_FUNC(dev->path.pci.devfn),
191  PCI_SLOT(new_devfn), PCI_FUNC(new_devfn));
192 
193  dev->path.pci.devfn = new_devfn;
194  }
195 }
196 
197 static void pcie_enable_clock_gating(void)
198 {
199  int i;
200  int enabled_ports = 0;
201  int is_broadwell = !!(cpu_family_model() == BROADWELL_FAMILY_ULT);
202 
203  for (i = 0; i < rpc.num_ports; i++) {
204  struct device *dev;
205  int rp;
206 
207  dev = rpc.ports[i];
208  if (!dev)
209  continue;
210 
211  rp = root_port_number(dev);
212 
213  if (!dev->enabled) {
214  /* Configure shared resource clock gating. */
215  if (rp == 1 || rp == 5 || rp == 6)
216  pci_or_config8(dev, 0xe1, 0x3c);
217 
218  pci_or_config8(dev, 0xe2, 3 << 4);
219  pci_or_config32(dev, 0x420, 1 << 31);
220 
221  /* Per-Port CLKREQ# handling. */
222  if (gpio_is_native(18 + rp - 1))
223  pci_or_config32(dev, 0x420, 3 << 29);
224 
225  /* Enable static clock gating. */
226  if (rp == 1 && !rpc.ports[1]->enabled &&
227  !rpc.ports[2]->enabled && !rpc.ports[3]->enabled) {
228  pci_or_config8(dev, 0xe2, 1);
229  pci_or_config8(dev, 0xe1, 1 << 7);
230  } else if (rp == 5 || rp == 6) {
231  pci_or_config8(dev, 0xe2, 1);
232  pci_or_config8(dev, 0xe1, 1 << 7);
233  }
234  continue;
235  }
236 
237  enabled_ports++;
238 
239  /* Enable dynamic clock gating. */
240  pci_or_config8(dev, 0xe1, 0x03);
241  pci_or_config8(dev, 0xe2, 1 << 6);
242  pci_update_config8(dev, 0xe8, ~(3 << 2), (2 << 2));
243 
244  /* Update PECR1 register. */
245  pci_or_config8(dev, 0xe8, 3);
246 
247  if (is_broadwell) {
248  pci_or_config32(dev, 0x324, (1 << 5) | (1 << 14));
249  } else {
250  pci_or_config32(dev, 0x324, 1 << 5);
251  }
252  /* Per-Port CLKREQ# handling. */
253  if (gpio_is_native(18 + rp - 1))
254  /*
255  * In addition to D28Fx PCICFG 420h[30:29] = 11b,
256  * set 420h[17] = 0b and 420[0] = 1b for L1 SubState.
257  */
258  pci_update_config32(dev, 0x420, ~(1 << 17), (3 << 29) | 1);
259 
260  /* Configure shared resource clock gating. */
261  if (rp == 1 || rp == 5 || rp == 6)
262  pci_or_config8(dev, 0xe1, 0x3c);
263 
264  /* CLKREQ# VR Idle Enable */
265  RCBA32_OR(0x2b1c, (1 << (16 + i)));
266  }
267 
268  if (!enabled_ports)
269  pci_or_config8(rpc.ports[0], 0xe1, 1 << 6);
270 }
271 
272 static void root_port_commit_config(void)
273 {
274  int i;
275 
276  /* If the first root port is disabled the coalesce ports. */
277  if (!rpc.ports[0]->enabled)
278  rpc.coalesce = true;
279 
280  /* Perform clock gating configuration. */
282 
283  for (i = 0; i < rpc.num_ports; i++) {
284  struct device *dev;
285  u32 reg32;
286  int n = 0;
287 
288  dev = rpc.ports[i];
289 
290  if (dev == NULL) {
291  printk(BIOS_ERR, "Root Port %d device is NULL?\n", i+1);
292  continue;
293  }
294 
295  if (dev->enabled)
296  continue;
297 
298  printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
299 
300  /* 8.2 Configuration of PCI Express Root Ports */
301  pci_or_config32(dev, 0x338, 1 << 26);
302 
303  do {
304  reg32 = pci_read_config32(dev, 0x328);
305  n++;
306  if (((reg32 & 0xff000000) == 0x01000000) || (n > 50))
307  break;
308  udelay(100);
309  } while (1);
310 
311  if (n > 50)
312  printk(BIOS_DEBUG, "%s: Timeout waiting for 328h\n",
313  dev_path(dev));
314 
315  pci_or_config32(dev, 0x408, 1 << 27);
316 
317  /* Disable this device if possible */
318  pch_disable_devfn(dev);
319  }
320 
321  if (rpc.coalesce) {
322  int current_func;
323 
324  /* For all Root Ports N enabled ports get assigned the lower
325  * PCI function number. The disabled ones get upper PCI
326  * function numbers. */
327  current_func = 0;
328  for (i = 0; i < rpc.num_ports; i++) {
329  if (!rpc.ports[i]->enabled)
330  continue;
331  pch_pcie_device_set_func(i, current_func);
332  current_func++;
333  }
334 
335  /* Allocate the disabled devices' PCI function number. */
336  for (i = 0; i < rpc.num_ports; i++) {
337  if (rpc.ports[i]->enabled)
338  continue;
339  pch_pcie_device_set_func(i, current_func);
340  current_func++;
341  }
342  }
343 
344  printk(BIOS_SPEW, "PCH: RPFN 0x%08x -> 0x%08x\n",
346  RCBA32(RPFN) = rpc.new_rpfn;
347 }
348 
349 static void root_port_mark_disable(struct device *dev)
350 {
351  /* Mark device as disabled. */
352  dev->enabled = 0;
353  /* Mark device to be hidden. */
355 }
356 
357 static void root_port_check_disable(struct device *dev)
358 {
359  int rp;
360 
361  /* Device already disabled. */
362  if (!dev->enabled) {
364  return;
365  }
366 
367  rp = root_port_number(dev);
368 
369  /* Is the GbE port mapped to this Root Port? */
370  if (rp == rpc.gbe_port) {
372  return;
373  }
374 
375  /* Check Root Port Configuration. */
376  switch (rp) {
377  case 2:
378  /* Root Port 2 is disabled for all lane configurations
379  * but config 00b (4x1 links). */
380  if ((rpc.strpfusecfg1 >> 14) & 0x3) {
382  return;
383  }
384  break;
385  case 3:
386  /* Root Port 3 is disabled in config 11b (1x4 links). */
387  if (((rpc.strpfusecfg1 >> 14) & 0x3) == 0x3) {
389  return;
390  }
391  break;
392  case 4:
393  /* Root Port 4 is disabled in configs 11b (1x4 links)
394  * and 10b (2x2 links). */
395  if ((rpc.strpfusecfg1 >> 14) & 0x2) {
397  return;
398  }
399  break;
400  }
401 
402  /* Check Pin Ownership. */
403  switch (rp) {
404  case 1:
405  /* Bit 0 is Root Port 1 ownership. */
406  if ((rpc.pin_ownership & 0x1) == 0) {
408  return;
409  }
410  break;
411  case 2:
412  /* Bit 2 is Root Port 2 ownership. */
413  if ((rpc.pin_ownership & 0x4) == 0) {
415  return;
416  }
417  break;
418  case 6:
419  /* Bits 7:4 are Root Port 6 pin-lane ownership. */
420  if ((rpc.pin_ownership & 0xf0) == 0) {
422  return;
423  }
424  break;
425  }
426 }
427 
428 static void pcie_add_0x0202000_iobp(u32 reg)
429 {
430  u32 reg32;
431 
432  reg32 = pch_iobp_read(reg);
433  reg32 += (0x2 << 16) | (0x2 << 8);
434  pch_iobp_write(reg, reg32);
435 }
436 
437 static void pch_pcie_early(struct device *dev)
438 {
439  const struct soc_intel_broadwell_pch_config *config = config_of(dev);
440  int do_aspm = 0;
441  int rp = root_port_number(dev);
442 
443  switch (rp) {
444  case 1:
445  case 2:
446  case 3:
447  case 4:
448  /*
449  * Bits 31:28 of b0d28f0 0x32c register correspond to
450  * Root Ports 4:1.
451  */
452  do_aspm = !!(rpc.b0d28f0_32c & (1 << (28 + rp - 1)));
453  break;
454  case 5:
455  /*
456  * Bit 28 of b0d28f4 0x32c register correspond to
457  * Root Ports 4:1.
458  */
459  do_aspm = !!(rpc.b0d28f4_32c & (1 << 28));
460  break;
461  case 6:
462  /*
463  * Bit 28 of b0d28f5 0x32c register correspond to
464  * Root Ports 4:1.
465  */
466  do_aspm = !!(rpc.b0d28f5_32c & (1 << 28));
467  break;
468  }
469 
470  /* Allow ASPM to be forced on in devicetree */
471  if ((config->pcie_port_force_aspm & (1 << (rp - 1))))
472  do_aspm = 1;
473 
474  printk(BIOS_DEBUG, "PCIe Root Port %d ASPM is %sabled\n",
475  rp, do_aspm ? "en" : "dis");
476 
477  if (do_aspm) {
478  /* Set ASPM bits in MPC2 register. */
479  pci_update_config32(dev, 0xd4, ~(0x3 << 2), (1 << 4) | (0x2 << 2));
480 
481  /* Set unique clock exit latency in MPC register. */
482  pci_update_config32(dev, 0xd8, ~(0x7 << 18), (0x7 << 18));
483 
484  switch (rp) {
485  case 1:
486  pcie_add_0x0202000_iobp(0xe9002440);
487  break;
488  case 2:
489  pcie_add_0x0202000_iobp(0xe9002640);
490  break;
491  case 3:
492  pcie_add_0x0202000_iobp(0xe9000840);
493  break;
494  case 4:
495  pcie_add_0x0202000_iobp(0xe9000a40);
496  break;
497  case 5:
498  pcie_add_0x0202000_iobp(0xe9000c40);
499  pcie_add_0x0202000_iobp(0xe9000e40);
500  pcie_add_0x0202000_iobp(0xe9001040);
501  pcie_add_0x0202000_iobp(0xe9001240);
502  break;
503  case 6:
504  /* Update IOBP based on lane ownership. */
505  if (rpc.pin_ownership & (1 << 4))
506  pcie_add_0x0202000_iobp(0xea002040);
507  if (rpc.pin_ownership & (1 << 5))
508  pcie_add_0x0202000_iobp(0xea002240);
509  if (rpc.pin_ownership & (1 << 6))
510  pcie_add_0x0202000_iobp(0xea002440);
511  if (rpc.pin_ownership & (1 << 7))
512  pcie_add_0x0202000_iobp(0xea002640);
513  break;
514  }
515 
516  pci_update_config32(dev, 0x338, ~(1 << 26), 0);
517  }
518 
519  /* Enable LTR in Root Port. Disable OBFF. */
520  pci_update_config32(dev, 0x64, ~(3 << 18), (1 << 11));
521  pci_or_config32(dev, 0x68, 1 << 10);
522 
523  pci_update_config32(dev, 0x318, ~(0xffff << 16), (0x1414 << 16));
524 
525  /* Set L1 exit latency in LCAP register. */
526  if (!do_aspm && (pci_read_config8(dev, 0xf5) & 0x1))
527  pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x4 << 15));
528  else
529  pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x2 << 15));
530 
531  pci_update_config32(dev, 0x314, 0, 0x743a361b);
532 
533  /* Set Common Clock Exit Latency in MPC register. */
534  pci_update_config32(dev, 0xd8, ~(0x7 << 15), (0x3 << 15));
535 
536  pci_update_config32(dev, 0x33c, ~0x00ffffff, 0x854d74);
537 
538  /* Set Invalid Receive Range Check Enable in MPC register. */
539  pci_or_config32(dev, 0xd8, 1 << 25);
540 
541  pci_and_config8(dev, 0xf5, 0x0f);
542 
543  /* Set AER Extended Cap ID to 01h and Next Cap Pointer to 200h. */
544  if (CONFIG(PCIEXP_AER))
545  pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29) | 0x10001);
546  else
547  pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29));
548 
549  /* Set L1 Sub-State Cap ID to 1Eh and Next Cap Pointer to None. */
550  if (CONFIG(PCIEXP_L1_SUB_STATE))
551  pci_update_config32(dev, 0x200, ~0xfffff, 0x001e);
552  else
553  pci_update_config32(dev, 0x200, ~0xfffff, 0);
554 
555  pci_update_config32(dev, 0x320, ~(3 << 20) & ~(7 << 6), (1 << 20) | (3 << 6));
556 
557  /* Enable Relaxed Order from Root Port. */
558  pci_or_config32(dev, 0x320, 3 << 23);
559 
560  if (rp == 1 || rp == 5 || rp == 6)
561  pci_update_config8(dev, 0xf7, ~0xc, 0);
562 
563  /* Set EOI forwarding disable. */
564  pci_update_config32(dev, 0xd4, ~0, (1 << 1));
565 
566  /* Read and write back write-once capability registers. */
567  pci_update_config32(dev, 0x34, ~0, 0);
568  pci_update_config32(dev, 0x40, ~0, 0);
569  pci_update_config32(dev, 0x80, ~0, 0);
570  pci_update_config32(dev, 0x90, ~0, 0);
571 }
572 
573 static void pch_pcie_init(struct device *dev)
574 {
575  printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
576 
577  /* Enable SERR */
579 
580  /* Enable Bus Master */
582 
583  /* Set Cache Line Size to 0x10 */
584  pci_write_config8(dev, 0x0c, 0x10);
585 
587 
588  /* Clear errors in status registers */
589  pci_update_config16(dev, 0x06, ~0, 0);
590  pci_update_config16(dev, 0x1e, ~0, 0);
591 }
592 
593 static void pch_pcie_enable(struct device *dev)
594 {
595  /* Add this device to the root port config structure. */
597 
598  /* Check to see if this Root Port should be disabled. */
600 
601  /* Power Management init before enumeration */
602  if (dev->enabled)
603  pch_pcie_early(dev);
604 
605  /*
606  * When processing the last PCIe root port we can now
607  * update the Root Port Function Number and Hide register.
608  */
609  if (root_port_is_last(dev))
611 }
612 
613 static void pcie_get_ltr_max_latencies(u16 *max_snoop, u16 *max_nosnoop)
614 {
617 }
618 
619 static struct pci_operations pcie_ops = {
620  .set_subsystem = pci_dev_set_subsystem,
621  .get_ltr_max_latencies = pcie_get_ltr_max_latencies,
622 };
623 
624 static struct device_operations device_ops = {
626  .set_resources = pci_dev_set_resources,
627  .enable_resources = pci_bus_enable_resources,
628  .init = pch_pcie_init,
629  .enable = pch_pcie_enable,
630  .scan_bus = pciexp_scan_bridge,
631  .ops_pci = &pcie_ops,
632 };
633 
634 static const unsigned short pcie_device_ids[] = {
635  /* Lynxpoint-LP */
636  0x9c10, 0x9c12, 0x9c14, 0x9c16, 0x9c18, 0x9c1a,
637  /* WildcatPoint */
638  0x9c90, 0x9c92, 0x9c94, 0x9c96, 0x9c98, 0x9c9a, 0x2448,
639  0
640 };
641 
642 static const struct pci_driver pch_pcie __pci_driver = {
643  .ops = &device_ops,
644  .vendor = PCI_VID_INTEL,
645  .devices = pcie_device_ids,
646 };
#define printk(level,...)
Definition: stdlib.h:16
#define BROADWELL_FAMILY_ULT
Definition: haswell.h:13
const char * dev_path(const struct device *dev)
Definition: device_util.c:149
@ CONFIG
Definition: dsi_common.h:201
static DEVTREE_CONST void * config_of(const struct device *dev)
Definition: device.h:382
static __always_inline void pci_or_config32(const struct device *dev, u16 reg, u32 ormask)
Definition: pci_ops.h:191
static __always_inline void pci_write_config32(const struct device *dev, u16 reg, u32 val)
Definition: pci_ops.h:76
static __always_inline void pci_and_config16(const struct device *dev, u16 reg, u16 andmask)
Definition: pci_ops.h:147
static __always_inline void pci_and_config8(const struct device *dev, u16 reg, u8 andmask)
Definition: pci_ops.h:136
static __always_inline void pci_update_config32(const struct device *dev, u16 reg, u32 mask, u32 or)
Definition: pci_ops.h:120
static __always_inline void pci_update_config8(const struct device *dev, u16 reg, u8 mask, u8 or)
Definition: pci_ops.h:88
static __always_inline void pci_or_config16(const struct device *dev, u16 reg, u16 ormask)
Definition: pci_ops.h:180
static __always_inline void pci_or_config8(const struct device *dev, u16 reg, u8 ormask)
Definition: pci_ops.h:169
static __always_inline u32 pci_read_config32(const struct device *dev, u16 reg)
Definition: pci_ops.h:58
static __always_inline u8 pci_read_config8(const struct device *dev, u16 reg)
Definition: pci_ops.h:46
static __always_inline void pci_update_config16(const struct device *dev, u16 reg, u16 mask, u16 or)
Definition: pci_ops.h:104
static __always_inline void pci_write_config8(const struct device *dev, u16 reg, u8 val)
Definition: pci_ops.h:64
void pch_iobp_exec(u32 addr, u16 op_code, u8 route_id, u32 *data, u8 *resp)
Definition: iobp.c:113
void pch_iobp_write(u32 address, u32 data)
Definition: iobp.c:63
u32 pch_iobp_read(u32 address)
Definition: iobp.c:25
#define BIOS_DEBUG
BIOS_DEBUG - Verbose output.
Definition: loglevel.h:128
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
#define BIOS_SPEW
BIOS_SPEW - Excessively verbose output.
Definition: loglevel.h:142
enum board_config config
Definition: memory.c:448
#define PCI_BRIDGE_CTL_PARITY
Definition: pci_def.h:136
#define PCI_COMMAND_SERR
Definition: pci_def.h:19
#define PCI_DEVFN(slot, func)
Definition: pci_def.h:548
#define PCI_BRIDGE_CONTROL
Definition: pci_def.h:134
#define PCI_COMMAND_MASTER
Definition: pci_def.h:13
#define PCI_FUNC(devfn)
Definition: pci_def.h:550
#define PCI_COMMAND
Definition: pci_def.h:10
#define PCI_SLOT(devfn)
Definition: pci_def.h:549
void pci_bus_enable_resources(struct device *dev)
Definition: pci_device.c:758
void pci_dev_set_subsystem(struct device *dev, unsigned int vendor, unsigned int device)
Definition: pci_device.c:791
void pci_bus_read_resources(struct device *dev)
Definition: pci_device.c:540
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
#define PCI_VID_INTEL
Definition: pci_ids.h:2157
#define PCIE_LTR_MAX_NO_SNOOP_LATENCY_3146US
Definition: pciexp.h:18
#define PCIE_LTR_MAX_SNOOP_LATENCY_3146US
Definition: pciexp.h:20
void pciexp_scan_bridge(struct device *dev)
#define PCH_DEV_SLOT_PCIE
Definition: pci_devs.h:175
void pch_disable_devfn(struct device *dev)
Definition: pch.c:77
#define RPFN_FNSET(port, func)
Definition: rcba.h:16
#define IOBP_PCICFG_READ
Definition: rcba.h:53
#define RPFN_HIDE(port)
Definition: rcba.h:12
#define RPFN
Definition: rcba.h:9
#define IOBP_PCICFG_WRITE
Definition: rcba.h:54
#define RPFN_FNMASK(port)
Definition: rcba.h:18
static struct device_operations device_ops
Definition: pcie.c:624
#define MAX_NUM_ROOT_PORTS
Definition: pcie.c:22
static struct root_port_config rpc
Definition: pcie.c:41
static void root_port_config_update_gbe_port(void)
Definition: pcie.c:59
static void pch_pcie_early(struct device *dev)
Definition: pcie.c:437
static void root_port_init_config(struct device *dev)
Definition: pcie.c:105
static void pch_pcie_enable(struct device *dev)
Definition: pcie.c:593
static int root_port_is_first(struct device *dev)
Definition: pcie.c:43
static void pch_pcie_device_set_func(int index, int pci_func)
Definition: pcie.c:172
static void root_port_check_disable(struct device *dev)
Definition: pcie.c:357
static void pch_pcie_init(struct device *dev)
Definition: pcie.c:573
static void pcie_add_0x0202000_iobp(u32 reg)
Definition: pcie.c:428
static void pcie_get_ltr_max_latencies(u16 *max_snoop, u16 *max_nosnoop)
Definition: pcie.c:613
static void pcie_iosf_port_grant_count(struct device *dev)
Definition: pcie.c:84
static void root_port_mark_disable(struct device *dev)
Definition: pcie.c:349
static void pcie_enable_clock_gating(void)
Definition: pcie.c:197
static const struct pci_driver pch_pcie __pci_driver
Definition: pcie.c:642
static void root_port_commit_config(void)
Definition: pcie.c:272
static const unsigned short pcie_device_ids[]
Definition: pcie.c:634
static int root_port_number(struct device *dev)
Definition: pcie.c:54
static struct pci_operations pcie_ops
Definition: pcie.c:619
static int root_port_is_last(struct device *dev)
Definition: pcie.c:48
u32 cpu_family_model(void)
int gpio_is_native(int gpio_num)
Definition: gpio.c:147
#define RCBA32_OR(x, or)
Definition: rcba.h:22
#define RCBA32(x)
Definition: rcba.h:14
#define NULL
Definition: stddef.h:19
uint32_t u32
Definition: stdint.h:51
uint16_t u16
Definition: stdint.h:48
uint8_t u8
Definition: stdint.h:45
void(* read_resources)(struct device *dev)
Definition: device.h:39
struct pci_path pci
Definition: path.h:116
Definition: device.h:107
struct device_path path
Definition: device.h:115
unsigned int enabled
Definition: device.h:122
unsigned int devfn
Definition: path.h:54
u32 orig_rpfn
Definition: pcie.c:26
u32 new_rpfn
Definition: pcie.c:27
u32 strpfusecfg3
Definition: pcie.c:31
bool coalesce
Definition: pcie.c:35
u32 b0d28f0_32c
Definition: pcie.c:32
struct device * ports[MAX_NUM_ROOT_PORTS]
Definition: pcie.c:38
u32 b0d28f4_32c
Definition: pcie.c:33
u32 strpfusecfg2
Definition: pcie.c:30
int num_ports
Definition: pcie.c:37
u32 pin_ownership
Definition: pcie.c:28
u32 b0d28f5_32c
Definition: pcie.c:34
u32 strpfusecfg1
Definition: pcie.c:29
int gbe_port
Definition: pcie.c:36
void udelay(uint32_t us)
Definition: udelay.c:15