blob: b37f256069e8a277c3321f1bef8e37feef241c5b [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
3#include <console/console.h>
Angel Pons9d733de2020-11-23 13:15:19 +01004#include <cpu/intel/haswell/haswell.h>
Angel Ponsaf4bd562021-12-28 13:05:56 +01005#include <delay.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07006#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>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020011#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070012#include <soc/lpc.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070013#include <soc/pch.h>
14#include <soc/pci_devs.h>
15#include <soc/rcba.h>
Angel Pons3cc2c382020-10-23 20:38:23 +020016#include <soc/intel/broadwell/pch/chip.h>
Angel Ponsc423ce22021-04-19 16:13:31 +020017#include <southbridge/intel/lynxpoint/iobp.h>
Angel Pons733f03d2021-01-28 16:59:04 +010018#include <southbridge/intel/lynxpoint/lp_gpio.h>
Angel Ponsaf4bd562021-12-28 13:05:56 +010019#include <types.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070020
Duncan Lauriec88c54c2014-04-30 16:36:13 -070021/* Low Power variant has 6 root ports. */
Angel Pons2ead3632020-09-24 16:50:05 +020022#define MAX_NUM_ROOT_PORTS 6
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023
24struct root_port_config {
25 /* RPFN is a write-once register so keep a copy until it is written */
26 u32 orig_rpfn;
27 u32 new_rpfn;
28 u32 pin_ownership;
29 u32 strpfusecfg1;
30 u32 strpfusecfg2;
31 u32 strpfusecfg3;
32 u32 b0d28f0_32c;
33 u32 b0d28f4_32c;
34 u32 b0d28f5_32c;
Angel Ponsaf4bd562021-12-28 13:05:56 +010035 bool coalesce;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070036 int gbe_port;
37 int num_ports;
Angel Pons2ead3632020-09-24 16:50:05 +020038 struct device *ports[MAX_NUM_ROOT_PORTS];
Duncan Lauriec88c54c2014-04-30 16:36:13 -070039};
40
41static struct root_port_config rpc;
42
Elyes HAOUAS040aff22018-05-27 16:30:36 +020043static inline int root_port_is_first(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070044{
45 return PCI_FUNC(dev->path.pci.devfn) == 0;
46}
47
Elyes HAOUAS040aff22018-05-27 16:30:36 +020048static inline int root_port_is_last(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070049{
50 return PCI_FUNC(dev->path.pci.devfn) == (rpc.num_ports - 1);
51}
52
53/* Root ports are numbered 1..N in the documentation. */
Elyes HAOUAS040aff22018-05-27 16:30:36 +020054static inline int root_port_number(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070055{
56 return PCI_FUNC(dev->path.pci.devfn) + 1;
57}
58
59static void root_port_config_update_gbe_port(void)
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
Elyes HAOUAS040aff22018-05-27 16:30:36 +020084static void pcie_iosf_port_grant_count(struct device *dev)
Kenji Chen87d4a202014-09-24 01:18:26 +080085{
86 u8 update_val;
Patrick Georgie8f2ef52016-07-29 18:53:34 +020087 u32 rpcd = (pci_read_config32(dev, 0xfc) >> 14) & 0x3;
Kenji Chen87d4a202014-09-24 01:18:26 +080088
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
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200105static void root_port_init_config(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700106{
107 int rp;
Martin Roth2b2ff7f2015-12-18 10:46:59 -0700108 u32 data = 0;
Kenji Chene383feb2014-09-26 03:14:57 +0800109 u8 resp, id;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700110
111 if (root_port_is_first(dev)) {
112 rpc.orig_rpfn = RCBA32(RPFN);
113 rpc.new_rpfn = rpc.orig_rpfn;
Angel Pons2ead3632020-09-24 16:50:05 +0200114 rpc.num_ports = MAX_NUM_ROOT_PORTS;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700115 rpc.gbe_port = -1;
Kenji Chen87d4a202014-09-24 01:18:26 +0800116 /* RP0 f5[3:0] = 0101b*/
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300117 pci_update_config8(dev, 0xf5, ~0xa, 0x5);
Kenji Chen87d4a202014-09-24 01:18:26 +0800118
119 pcie_iosf_port_grant_count(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700120
121 rpc.pin_ownership = pci_read_config32(dev, 0x410);
122 root_port_config_update_gbe_port();
123
Angel Pons6b486e12020-10-28 14:16:06 +0100124 pci_or_config8(dev, 0xe2, 3 << 4);
Angel Pons3cc2c382020-10-23 20:38:23 +0200125 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300126 rpc.coalesce = config->pcie_port_coalesce;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700127 }
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
Angel Pons6b486e12020-10-28 14:16:06 +0100154 pci_write_config32(dev, 0x418, 0x02000430);
Kenji Chene383feb2014-09-26 03:14:57 +0800155
Kenji Chene383feb2014-09-26 03:14:57 +0800156 if (root_port_is_first(dev)) {
Kenji Chene8f36642014-10-04 02:59:06 +0800157 /*
158 * set RP0 PCICFG E2h[5:4] = 11b and E1h[6] = 1
159 * before configuring ASPM
160 */
Kenji Chene383feb2014-09-26 03:14:57 +0800161 id = 0xe0 + (u8)(RCBA32(RPFN) & 0x07);
162 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_READ, id, &data, &resp);
Kenji Chene8f36642014-10-04 02:59:06 +0800163 data |= ((0x30 << 16) | (0x40 << 8));
Kenji Chene383feb2014-09-26 03:14:57 +0800164 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_WRITE, id, &data, &resp);
165 }
166
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700167 /* Cache pci device. */
168 rpc.ports[rp - 1] = dev;
169}
170
171/* Update devicetree with new Root Port function number assignment */
172static void pch_pcie_device_set_func(int index, int pci_func)
173{
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200174 struct device *dev;
Lee Leahy23602df2017-03-16 19:00:37 -0700175 unsigned int new_devfn;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700176
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
Angel Ponsd5689dd2020-09-25 00:32:44 +0200186 if (dev && dev->path.pci.devfn != new_devfn) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700187 printk(BIOS_DEBUG,
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
197static void pcie_enable_clock_gating(void)
198{
199 int i;
200 int enabled_ports = 0;
Kane Chen4fef5a22014-08-27 15:21:32 -0700201 int is_broadwell = !!(cpu_family_model() == BROADWELL_FAMILY_ULT);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700202
203 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200204 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700205 int rp;
206
207 dev = rpc.ports[i];
Angel Ponsd5689dd2020-09-25 00:32:44 +0200208 if (!dev)
209 continue;
210
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700211 rp = root_port_number(dev);
212
213 if (!dev->enabled) {
214 /* Configure shared resource clock gating. */
215 if (rp == 1 || rp == 5 || rp == 6)
Angel Pons6b486e12020-10-28 14:16:06 +0100216 pci_or_config8(dev, 0xe1, 0x3c);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700217
Angel Pons6b486e12020-10-28 14:16:06 +0100218 pci_or_config8(dev, 0xe2, 3 << 4);
219 pci_or_config32(dev, 0x420, 1 << 31);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700220
221 /* Per-Port CLKREQ# handling. */
222 if (gpio_is_native(18 + rp - 1))
Angel Pons6b486e12020-10-28 14:16:06 +0100223 pci_or_config32(dev, 0x420, 3 << 29);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700224
225 /* Enable static clock gating. */
226 if (rp == 1 && !rpc.ports[1]->enabled &&
227 !rpc.ports[2]->enabled && !rpc.ports[3]->enabled) {
Angel Pons6b486e12020-10-28 14:16:06 +0100228 pci_or_config8(dev, 0xe2, 1);
229 pci_or_config8(dev, 0xe1, 1 << 7);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700230 } else if (rp == 5 || rp == 6) {
Angel Pons6b486e12020-10-28 14:16:06 +0100231 pci_or_config8(dev, 0xe2, 1);
232 pci_or_config8(dev, 0xe1, 1 << 7);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700233 }
234 continue;
235 }
236
237 enabled_ports++;
238
239 /* Enable dynamic clock gating. */
Angel Pons6b486e12020-10-28 14:16:06 +0100240 pci_or_config8(dev, 0xe1, 0x03);
241 pci_or_config8(dev, 0xe2, 1 << 6);
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300242 pci_update_config8(dev, 0xe8, ~(3 << 2), (2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700243
244 /* Update PECR1 register. */
Angel Pons6b486e12020-10-28 14:16:06 +0100245 pci_or_config8(dev, 0xe8, 3);
246
Kane Chen4fef5a22014-08-27 15:21:32 -0700247 if (is_broadwell) {
Angel Pons6b486e12020-10-28 14:16:06 +0100248 pci_or_config32(dev, 0x324, (1 << 5) | (1 << 14));
Kane Chen4fef5a22014-08-27 15:21:32 -0700249 } else {
Angel Pons6b486e12020-10-28 14:16:06 +0100250 pci_or_config32(dev, 0x324, 1 << 5);
Kane Chen4fef5a22014-08-27 15:21:32 -0700251 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700252 /* Per-Port CLKREQ# handling. */
253 if (gpio_is_native(18 + rp - 1))
Kenji Chene8f36642014-10-04 02:59:06 +0800254 /*
255 * In addition to D28Fx PCICFG 420h[30:29] = 11b,
256 * set 420h[17] = 0b and 420[0] = 1b for L1 SubState.
257 */
Angel Pons6b486e12020-10-28 14:16:06 +0100258 pci_update_config32(dev, 0x420, ~(1 << 17), (3 << 29) | 1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700259
260 /* Configure shared resource clock gating. */
261 if (rp == 1 || rp == 5 || rp == 6)
Angel Pons6b486e12020-10-28 14:16:06 +0100262 pci_or_config8(dev, 0xe1, 0x3c);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700263
264 /* CLKREQ# VR Idle Enable */
265 RCBA32_OR(0x2b1c, (1 << (16 + i)));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700266 }
267
268 if (!enabled_ports)
Angel Pons6b486e12020-10-28 14:16:06 +0100269 pci_or_config8(rpc.ports[0], 0xe1, 1 << 6);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700270}
271
272static 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)
Angel Ponsaf4bd562021-12-28 13:05:56 +0100278 rpc.coalesce = true;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700279
280 /* Perform clock gating configuration. */
281 pcie_enable_clock_gating();
282
283 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200284 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700285 u32 reg32;
Wenkai Du83067612014-12-05 14:00:26 -0800286 int n = 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700287
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
Wenkai Du83067612014-12-05 14:00:26 -0800300 /* 8.2 Configuration of PCI Express Root Ports */
Angel Pons6b486e12020-10-28 14:16:06 +0100301 pci_or_config32(dev, 0x338, 1 << 26);
Wenkai Du83067612014-12-05 14:00:26 -0800302
303 do {
304 reg32 = pci_read_config32(dev, 0x328);
305 n++;
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800306 if (((reg32 & 0xff000000) == 0x01000000) || (n > 50))
Wenkai Du83067612014-12-05 14:00:26 -0800307 break;
308 udelay(100);
309 } while (1);
310
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800311 if (n > 50)
Wenkai Du83067612014-12-05 14:00:26 -0800312 printk(BIOS_DEBUG, "%s: Timeout waiting for 328h\n",
313 dev_path(dev));
314
Angel Pons6b486e12020-10-28 14:16:06 +0100315 pci_or_config32(dev, 0x408, 1 << 27);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700316
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",
345 rpc.orig_rpfn, rpc.new_rpfn);
346 RCBA32(RPFN) = rpc.new_rpfn;
347}
348
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200349static void root_port_mark_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700350{
351 /* Mark device as disabled. */
352 dev->enabled = 0;
353 /* Mark device to be hidden. */
354 rpc.new_rpfn |= RPFN_HIDE(PCI_FUNC(dev->path.pci.devfn));
355}
356
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200357static void root_port_check_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700358{
359 int rp;
360
361 /* Device already disabled. */
362 if (!dev->enabled) {
363 root_port_mark_disable(dev);
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) {
371 root_port_mark_disable(dev);
372 return;
373 }
374
375 /* Check Root Port Configuration. */
376 switch (rp) {
Lee Leahy6ef51922017-03-17 10:56:08 -0700377 case 2:
378 /* Root Port 2 is disabled for all lane configurations
379 * but config 00b (4x1 links). */
380 if ((rpc.strpfusecfg1 >> 14) & 0x3) {
381 root_port_mark_disable(dev);
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) {
388 root_port_mark_disable(dev);
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) {
396 root_port_mark_disable(dev);
397 return;
398 }
399 break;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700400 }
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) {
407 root_port_mark_disable(dev);
408 return;
409 }
410 break;
411 case 2:
412 /* Bit 2 is Root Port 2 ownership. */
413 if ((rpc.pin_ownership & 0x4) == 0) {
414 root_port_mark_disable(dev);
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) {
421 root_port_mark_disable(dev);
422 return;
423 }
424 break;
425 }
426}
427
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700428static 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
437static void pch_pcie_early(struct device *dev)
438{
Angel Pons3cc2c382020-10-23 20:38:23 +0200439 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700440 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 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700449 * Bits 31:28 of b0d28f0 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700450 * Root Ports 4:1.
451 */
452 do_aspm = !!(rpc.b0d28f0_32c & (1 << (28 + rp - 1)));
453 break;
454 case 5:
455 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700456 * Bit 28 of b0d28f4 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700457 * Root Ports 4:1.
458 */
459 do_aspm = !!(rpc.b0d28f4_32c & (1 << 28));
460 break;
461 case 6:
462 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700463 * Bit 28 of b0d28f5 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700464 * 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 */
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300471 if ((config->pcie_port_force_aspm & (1 << (rp - 1))))
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700472 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. */
Angel Pons2ead3632020-09-24 16:50:05 +0200479 pci_update_config32(dev, 0xd4, ~(0x3 << 2), (1 << 4) | (0x2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700480
481 /* Set unique clock exit latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300482 pci_update_config32(dev, 0xd8, ~(0x7 << 18), (0x7 << 18));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700483
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700484 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
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300516 pci_update_config32(dev, 0x338, ~(1 << 26), 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700517 }
518
Kenji Chenc373f502014-09-26 02:48:16 +0800519 /* Enable LTR in Root Port. Disable OBFF. */
Angel Ponsc7ca0f22021-09-08 14:22:12 +0200520 pci_update_config32(dev, 0x64, ~(3 << 18), (1 << 11));
521 pci_or_config32(dev, 0x68, 1 << 10);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700522
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300523 pci_update_config32(dev, 0x318, ~(0xffff << 16), (0x1414 << 16));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700524
525 /* Set L1 exit latency in LCAP register. */
526 if (!do_aspm && (pci_read_config8(dev, 0xf5) & 0x1))
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300527 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x4 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700528 else
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300529 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x2 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700530
Angel Pons2ead3632020-09-24 16:50:05 +0200531 pci_update_config32(dev, 0x314, 0, 0x743a361b);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700532
533 /* Set Common Clock Exit Latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300534 pci_update_config32(dev, 0xd8, ~(0x7 << 15), (0x3 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700535
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300536 pci_update_config32(dev, 0x33c, ~0x00ffffff, 0x854d74);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700537
Martin Rothde7ed6f2014-12-07 14:58:18 -0700538 /* Set Invalid Receive Range Check Enable in MPC register. */
Angel Pons6b486e12020-10-28 14:16:06 +0100539 pci_or_config32(dev, 0xd8, 1 << 25);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700540
Angel Pons6b486e12020-10-28 14:16:06 +0100541 pci_and_config8(dev, 0xf5, 0x0f);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700542
Kenji Chen94fea492014-09-30 14:17:35 +0800543 /* Set AER Extended Cap ID to 01h and Next Cap Pointer to 200h. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800544 if (CONFIG(PCIEXP_AER))
Angel Pons6b486e12020-10-28 14:16:06 +0100545 pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29) | 0x10001);
Youness Alaoui71616782018-05-04 15:34:06 -0400546 else
Angel Pons6b486e12020-10-28 14:16:06 +0100547 pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29));
Kenji Chen8ef55ee2014-09-25 21:34:42 +0800548
Kenji Chen94fea492014-09-30 14:17:35 +0800549 /* Set L1 Sub-State Cap ID to 1Eh and Next Cap Pointer to None. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800550 if (CONFIG(PCIEXP_L1_SUB_STATE))
Youness Alaoui1f64b012018-05-04 15:33:54 -0400551 pci_update_config32(dev, 0x200, ~0xfffff, 0x001e);
552 else
553 pci_update_config32(dev, 0x200, ~0xfffff, 0);
Kenji Chen94fea492014-09-30 14:17:35 +0800554
Angel Pons6b486e12020-10-28 14:16:06 +0100555 pci_update_config32(dev, 0x320, ~(3 << 20) & ~(7 << 6), (1 << 20) | (3 << 6));
556
Kenji Chenc373f502014-09-26 02:48:16 +0800557 /* Enable Relaxed Order from Root Port. */
Angel Pons6b486e12020-10-28 14:16:06 +0100558 pci_or_config32(dev, 0x320, 3 << 23);
Kenji Chenc373f502014-09-26 02:48:16 +0800559
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700560 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300561 pci_update_config8(dev, 0xf7, ~0xc, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700562
563 /* Set EOI forwarding disable. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300564 pci_update_config32(dev, 0xd4, ~0, (1 << 1));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700565
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700566 /* Read and write back write-once capability registers. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300567 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);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700571}
572
573static void pch_pcie_init(struct device *dev)
574{
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700575 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
576
577 /* Enable SERR */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200578 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700579
580 /* Enable Bus Master */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200581 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700582
583 /* Set Cache Line Size to 0x10 */
584 pci_write_config8(dev, 0x0c, 0x10);
585
Angel Pons2ead3632020-09-24 16:50:05 +0200586 pci_and_config16(dev, PCI_BRIDGE_CONTROL, ~PCI_BRIDGE_CTL_PARITY);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700587
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700588 /* Clear errors in status registers */
Angel Pons2ead3632020-09-24 16:50:05 +0200589 pci_update_config16(dev, 0x06, ~0, 0);
590 pci_update_config16(dev, 0x1e, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700591}
592
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200593static void pch_pcie_enable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700594{
595 /* Add this device to the root port config structure. */
596 root_port_init_config(dev);
597
598 /* Check to see if this Root Port should be disabled. */
599 root_port_check_disable(dev);
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))
610 root_port_commit_config();
611}
612
Nico Huber968ef752021-03-07 01:39:18 +0100613static void pcie_get_ltr_max_latencies(u16 *max_snoop, u16 *max_nosnoop)
Kenji Chenb71d9b82014-10-10 03:08:15 +0800614{
Nico Huber968ef752021-03-07 01:39:18 +0100615 *max_snoop = PCIE_LTR_MAX_SNOOP_LATENCY_3146US;
616 *max_nosnoop = PCIE_LTR_MAX_NO_SNOOP_LATENCY_3146US;
Kenji Chenb71d9b82014-10-10 03:08:15 +0800617}
618
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700619static struct pci_operations pcie_ops = {
Subrata Banik15ccbf02019-03-20 15:09:44 +0530620 .set_subsystem = pci_dev_set_subsystem,
Nico Huber968ef752021-03-07 01:39:18 +0100621 .get_ltr_max_latencies = pcie_get_ltr_max_latencies,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700622};
623
624static struct device_operations device_ops = {
625 .read_resources = pci_bus_read_resources,
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
634static 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
642static const struct pci_driver pch_pcie __pci_driver = {
643 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100644 .vendor = PCI_VID_INTEL,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700645 .devices = pcie_device_ids,
646};