blob: ef03eee4d3584009443c51b223906a29465adbc1 [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>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07009#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020010#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070011#include <soc/lpc.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070012#include <soc/pch.h>
13#include <soc/pci_devs.h>
14#include <soc/rcba.h>
Angel Pons3cc2c382020-10-23 20:38:23 +020015#include <soc/intel/broadwell/pch/chip.h>
Angel Ponsc423ce22021-04-19 16:13:31 +020016#include <southbridge/intel/lynxpoint/iobp.h>
Angel Pons733f03d2021-01-28 16:59:04 +010017#include <southbridge/intel/lynxpoint/lp_gpio.h>
Angel Ponsaf4bd562021-12-28 13:05:56 +010018#include <types.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019
Duncan Lauriec88c54c2014-04-30 16:36:13 -070020/* Low Power variant has 6 root ports. */
Angel Pons2ead3632020-09-24 16:50:05 +020021#define MAX_NUM_ROOT_PORTS 6
Duncan Lauriec88c54c2014-04-30 16:36:13 -070022
23struct root_port_config {
24 /* RPFN is a write-once register so keep a copy until it is written */
25 u32 orig_rpfn;
26 u32 new_rpfn;
27 u32 pin_ownership;
28 u32 strpfusecfg1;
29 u32 strpfusecfg2;
30 u32 strpfusecfg3;
31 u32 b0d28f0_32c;
32 u32 b0d28f4_32c;
33 u32 b0d28f5_32c;
Angel Ponsaf4bd562021-12-28 13:05:56 +010034 bool coalesce;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070035 int gbe_port;
36 int num_ports;
Angel Pons2ead3632020-09-24 16:50:05 +020037 struct device *ports[MAX_NUM_ROOT_PORTS];
Duncan Lauriec88c54c2014-04-30 16:36:13 -070038};
39
40static struct root_port_config rpc;
41
Elyes HAOUAS040aff22018-05-27 16:30:36 +020042static inline int root_port_is_first(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070043{
44 return PCI_FUNC(dev->path.pci.devfn) == 0;
45}
46
Elyes HAOUAS040aff22018-05-27 16:30:36 +020047static inline int root_port_is_last(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070048{
49 return PCI_FUNC(dev->path.pci.devfn) == (rpc.num_ports - 1);
50}
51
52/* Root ports are numbered 1..N in the documentation. */
Elyes HAOUAS040aff22018-05-27 16:30:36 +020053static inline int root_port_number(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070054{
55 return PCI_FUNC(dev->path.pci.devfn) + 1;
56}
57
58static void root_port_config_update_gbe_port(void)
59{
60 /* Is the Gbe Port enabled? */
61 if (!((rpc.strpfusecfg1 >> 19) & 1))
62 return;
63
64 switch ((rpc.strpfusecfg1 >> 16) & 0x7) {
65 case 0:
66 rpc.gbe_port = 3;
67 break;
68 case 1:
69 rpc.gbe_port = 4;
70 break;
71 case 2:
72 case 3:
73 case 4:
74 case 5:
75 /* Lanes 0-4 of Root Port 5. */
76 rpc.gbe_port = 5;
77 break;
78 default:
79 printk(BIOS_DEBUG, "Invalid GbE Port Selection.\n");
80 }
81}
82
Elyes HAOUAS040aff22018-05-27 16:30:36 +020083static void pcie_iosf_port_grant_count(struct device *dev)
Kenji Chen87d4a202014-09-24 01:18:26 +080084{
85 u8 update_val;
Patrick Georgie8f2ef52016-07-29 18:53:34 +020086 u32 rpcd = (pci_read_config32(dev, 0xfc) >> 14) & 0x3;
Kenji Chen87d4a202014-09-24 01:18:26 +080087
88 switch (rpcd) {
89 case 1:
90 case 3:
91 update_val = 0x02;
92 break;
93 case 2:
94 update_val = 0x22;
95 break;
96 default:
97 update_val = 0x00;
98 break;
99 }
100
101 RCBA32(0x103C) = (RCBA32(0x103C) & (~0xff)) | update_val;
102}
103
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200104static void root_port_init_config(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700105{
106 int rp;
Martin Roth2b2ff7f2015-12-18 10:46:59 -0700107 u32 data = 0;
Kenji Chene383feb2014-09-26 03:14:57 +0800108 u8 resp, id;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700109
110 if (root_port_is_first(dev)) {
111 rpc.orig_rpfn = RCBA32(RPFN);
112 rpc.new_rpfn = rpc.orig_rpfn;
Angel Pons2ead3632020-09-24 16:50:05 +0200113 rpc.num_ports = MAX_NUM_ROOT_PORTS;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700114 rpc.gbe_port = -1;
Kenji Chen87d4a202014-09-24 01:18:26 +0800115 /* RP0 f5[3:0] = 0101b*/
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300116 pci_update_config8(dev, 0xf5, ~0xa, 0x5);
Kenji Chen87d4a202014-09-24 01:18:26 +0800117
118 pcie_iosf_port_grant_count(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700119
120 rpc.pin_ownership = pci_read_config32(dev, 0x410);
121 root_port_config_update_gbe_port();
122
Angel Pons6b486e12020-10-28 14:16:06 +0100123 pci_or_config8(dev, 0xe2, 3 << 4);
Angel Pons3cc2c382020-10-23 20:38:23 +0200124 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300125 rpc.coalesce = config->pcie_port_coalesce;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700126 }
127
128 rp = root_port_number(dev);
129 if (rp > rpc.num_ports) {
130 printk(BIOS_ERR, "Found Root Port %d, expecting %d\n",
131 rp, rpc.num_ports);
132 return;
133 }
134
135 /* Read the fuse configuration and pin ownership. */
136 switch (rp) {
137 case 1:
138 rpc.strpfusecfg1 = pci_read_config32(dev, 0xfc);
139 rpc.b0d28f0_32c = pci_read_config32(dev, 0x32c);
140 break;
141 case 5:
142 rpc.strpfusecfg2 = pci_read_config32(dev, 0xfc);
143 rpc.b0d28f4_32c = pci_read_config32(dev, 0x32c);
144 break;
145 case 6:
146 rpc.b0d28f5_32c = pci_read_config32(dev, 0x32c);
147 rpc.strpfusecfg3 = pci_read_config32(dev, 0xfc);
148 break;
149 default:
150 break;
151 }
152
Angel Pons6b486e12020-10-28 14:16:06 +0100153 pci_write_config32(dev, 0x418, 0x02000430);
Kenji Chene383feb2014-09-26 03:14:57 +0800154
Kenji Chene383feb2014-09-26 03:14:57 +0800155 if (root_port_is_first(dev)) {
Kenji Chene8f36642014-10-04 02:59:06 +0800156 /*
157 * set RP0 PCICFG E2h[5:4] = 11b and E1h[6] = 1
158 * before configuring ASPM
159 */
Kenji Chene383feb2014-09-26 03:14:57 +0800160 id = 0xe0 + (u8)(RCBA32(RPFN) & 0x07);
161 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_READ, id, &data, &resp);
Kenji Chene8f36642014-10-04 02:59:06 +0800162 data |= ((0x30 << 16) | (0x40 << 8));
Kenji Chene383feb2014-09-26 03:14:57 +0800163 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_WRITE, id, &data, &resp);
164 }
165
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700166 /* Cache pci device. */
167 rpc.ports[rp - 1] = dev;
168}
169
170/* Update devicetree with new Root Port function number assignment */
171static void pch_pcie_device_set_func(int index, int pci_func)
172{
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200173 struct device *dev;
Lee Leahy23602df2017-03-16 19:00:37 -0700174 unsigned int new_devfn;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700175
176 dev = rpc.ports[index];
177
178 /* Set the new PCI function field for this Root Port. */
179 rpc.new_rpfn &= ~RPFN_FNMASK(index);
180 rpc.new_rpfn |= RPFN_FNSET(index, pci_func);
181
182 /* Determine the new devfn for this port */
183 new_devfn = PCI_DEVFN(PCH_DEV_SLOT_PCIE, pci_func);
184
Angel Ponsd5689dd2020-09-25 00:32:44 +0200185 if (dev && dev->path.pci.devfn != new_devfn) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700186 printk(BIOS_DEBUG,
187 "PCH: PCIe map %02x.%1x -> %02x.%1x\n",
188 PCI_SLOT(dev->path.pci.devfn),
189 PCI_FUNC(dev->path.pci.devfn),
190 PCI_SLOT(new_devfn), PCI_FUNC(new_devfn));
191
192 dev->path.pci.devfn = new_devfn;
193 }
194}
195
196static void pcie_enable_clock_gating(void)
197{
198 int i;
199 int enabled_ports = 0;
Kane Chen4fef5a22014-08-27 15:21:32 -0700200 int is_broadwell = !!(cpu_family_model() == BROADWELL_FAMILY_ULT);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700201
202 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200203 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700204 int rp;
205
206 dev = rpc.ports[i];
Angel Ponsd5689dd2020-09-25 00:32:44 +0200207 if (!dev)
208 continue;
209
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700210 rp = root_port_number(dev);
211
212 if (!dev->enabled) {
213 /* Configure shared resource clock gating. */
214 if (rp == 1 || rp == 5 || rp == 6)
Angel Pons6b486e12020-10-28 14:16:06 +0100215 pci_or_config8(dev, 0xe1, 0x3c);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700216
Angel Pons6b486e12020-10-28 14:16:06 +0100217 pci_or_config8(dev, 0xe2, 3 << 4);
218 pci_or_config32(dev, 0x420, 1 << 31);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700219
220 /* Per-Port CLKREQ# handling. */
221 if (gpio_is_native(18 + rp - 1))
Angel Pons6b486e12020-10-28 14:16:06 +0100222 pci_or_config32(dev, 0x420, 3 << 29);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700223
224 /* Enable static clock gating. */
225 if (rp == 1 && !rpc.ports[1]->enabled &&
226 !rpc.ports[2]->enabled && !rpc.ports[3]->enabled) {
Angel Pons6b486e12020-10-28 14:16:06 +0100227 pci_or_config8(dev, 0xe2, 1);
228 pci_or_config8(dev, 0xe1, 1 << 7);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700229 } else if (rp == 5 || rp == 6) {
Angel Pons6b486e12020-10-28 14:16:06 +0100230 pci_or_config8(dev, 0xe2, 1);
231 pci_or_config8(dev, 0xe1, 1 << 7);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700232 }
233 continue;
234 }
235
236 enabled_ports++;
237
238 /* Enable dynamic clock gating. */
Angel Pons6b486e12020-10-28 14:16:06 +0100239 pci_or_config8(dev, 0xe1, 0x03);
240 pci_or_config8(dev, 0xe2, 1 << 6);
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300241 pci_update_config8(dev, 0xe8, ~(3 << 2), (2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700242
243 /* Update PECR1 register. */
Angel Pons6b486e12020-10-28 14:16:06 +0100244 pci_or_config8(dev, 0xe8, 3);
245
Kane Chen4fef5a22014-08-27 15:21:32 -0700246 if (is_broadwell) {
Angel Pons6b486e12020-10-28 14:16:06 +0100247 pci_or_config32(dev, 0x324, (1 << 5) | (1 << 14));
Kane Chen4fef5a22014-08-27 15:21:32 -0700248 } else {
Angel Pons6b486e12020-10-28 14:16:06 +0100249 pci_or_config32(dev, 0x324, 1 << 5);
Kane Chen4fef5a22014-08-27 15:21:32 -0700250 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700251 /* Per-Port CLKREQ# handling. */
252 if (gpio_is_native(18 + rp - 1))
Kenji Chene8f36642014-10-04 02:59:06 +0800253 /*
254 * In addition to D28Fx PCICFG 420h[30:29] = 11b,
255 * set 420h[17] = 0b and 420[0] = 1b for L1 SubState.
256 */
Angel Pons6b486e12020-10-28 14:16:06 +0100257 pci_update_config32(dev, 0x420, ~(1 << 17), (3 << 29) | 1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700258
259 /* Configure shared resource clock gating. */
260 if (rp == 1 || rp == 5 || rp == 6)
Angel Pons6b486e12020-10-28 14:16:06 +0100261 pci_or_config8(dev, 0xe1, 0x3c);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700262
263 /* CLKREQ# VR Idle Enable */
264 RCBA32_OR(0x2b1c, (1 << (16 + i)));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700265 }
266
267 if (!enabled_ports)
Angel Pons6b486e12020-10-28 14:16:06 +0100268 pci_or_config8(rpc.ports[0], 0xe1, 1 << 6);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700269}
270
271static void root_port_commit_config(void)
272{
273 int i;
274
275 /* If the first root port is disabled the coalesce ports. */
276 if (!rpc.ports[0]->enabled)
Angel Ponsaf4bd562021-12-28 13:05:56 +0100277 rpc.coalesce = true;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700278
279 /* Perform clock gating configuration. */
280 pcie_enable_clock_gating();
281
282 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200283 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700284 u32 reg32;
Wenkai Du83067612014-12-05 14:00:26 -0800285 int n = 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700286
287 dev = rpc.ports[i];
288
289 if (dev == NULL) {
290 printk(BIOS_ERR, "Root Port %d device is NULL?\n", i+1);
291 continue;
292 }
293
294 if (dev->enabled)
295 continue;
296
Elyes Haouas8b8ada62022-11-22 17:36:02 +0100297 printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700298
Wenkai Du83067612014-12-05 14:00:26 -0800299 /* 8.2 Configuration of PCI Express Root Ports */
Angel Pons6b486e12020-10-28 14:16:06 +0100300 pci_or_config32(dev, 0x338, 1 << 26);
Wenkai Du83067612014-12-05 14:00:26 -0800301
302 do {
303 reg32 = pci_read_config32(dev, 0x328);
304 n++;
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800305 if (((reg32 & 0xff000000) == 0x01000000) || (n > 50))
Wenkai Du83067612014-12-05 14:00:26 -0800306 break;
307 udelay(100);
308 } while (1);
309
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800310 if (n > 50)
Wenkai Du83067612014-12-05 14:00:26 -0800311 printk(BIOS_DEBUG, "%s: Timeout waiting for 328h\n",
312 dev_path(dev));
313
Angel Pons6b486e12020-10-28 14:16:06 +0100314 pci_or_config32(dev, 0x408, 1 << 27);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700315
316 /* Disable this device if possible */
317 pch_disable_devfn(dev);
318 }
319
320 if (rpc.coalesce) {
321 int current_func;
322
323 /* For all Root Ports N enabled ports get assigned the lower
324 * PCI function number. The disabled ones get upper PCI
325 * function numbers. */
326 current_func = 0;
327 for (i = 0; i < rpc.num_ports; i++) {
328 if (!rpc.ports[i]->enabled)
329 continue;
330 pch_pcie_device_set_func(i, current_func);
331 current_func++;
332 }
333
334 /* Allocate the disabled devices' PCI function number. */
335 for (i = 0; i < rpc.num_ports; i++) {
336 if (rpc.ports[i]->enabled)
337 continue;
338 pch_pcie_device_set_func(i, current_func);
339 current_func++;
340 }
341 }
342
343 printk(BIOS_SPEW, "PCH: RPFN 0x%08x -> 0x%08x\n",
344 rpc.orig_rpfn, rpc.new_rpfn);
345 RCBA32(RPFN) = rpc.new_rpfn;
346}
347
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200348static void root_port_mark_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700349{
350 /* Mark device as disabled. */
351 dev->enabled = 0;
352 /* Mark device to be hidden. */
353 rpc.new_rpfn |= RPFN_HIDE(PCI_FUNC(dev->path.pci.devfn));
354}
355
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200356static void root_port_check_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700357{
358 int rp;
359
360 /* Device already disabled. */
361 if (!dev->enabled) {
362 root_port_mark_disable(dev);
363 return;
364 }
365
366 rp = root_port_number(dev);
367
368 /* Is the GbE port mapped to this Root Port? */
369 if (rp == rpc.gbe_port) {
370 root_port_mark_disable(dev);
371 return;
372 }
373
374 /* Check Root Port Configuration. */
375 switch (rp) {
Lee Leahy6ef51922017-03-17 10:56:08 -0700376 case 2:
377 /* Root Port 2 is disabled for all lane configurations
378 * but config 00b (4x1 links). */
379 if ((rpc.strpfusecfg1 >> 14) & 0x3) {
380 root_port_mark_disable(dev);
381 return;
382 }
383 break;
384 case 3:
385 /* Root Port 3 is disabled in config 11b (1x4 links). */
386 if (((rpc.strpfusecfg1 >> 14) & 0x3) == 0x3) {
387 root_port_mark_disable(dev);
388 return;
389 }
390 break;
391 case 4:
392 /* Root Port 4 is disabled in configs 11b (1x4 links)
393 * and 10b (2x2 links). */
394 if ((rpc.strpfusecfg1 >> 14) & 0x2) {
395 root_port_mark_disable(dev);
396 return;
397 }
398 break;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700399 }
400
401 /* Check Pin Ownership. */
402 switch (rp) {
403 case 1:
404 /* Bit 0 is Root Port 1 ownership. */
405 if ((rpc.pin_ownership & 0x1) == 0) {
406 root_port_mark_disable(dev);
407 return;
408 }
409 break;
410 case 2:
411 /* Bit 2 is Root Port 2 ownership. */
412 if ((rpc.pin_ownership & 0x4) == 0) {
413 root_port_mark_disable(dev);
414 return;
415 }
416 break;
417 case 6:
418 /* Bits 7:4 are Root Port 6 pin-lane ownership. */
419 if ((rpc.pin_ownership & 0xf0) == 0) {
420 root_port_mark_disable(dev);
421 return;
422 }
423 break;
424 }
425}
426
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700427static void pcie_add_0x0202000_iobp(u32 reg)
428{
429 u32 reg32;
430
431 reg32 = pch_iobp_read(reg);
432 reg32 += (0x2 << 16) | (0x2 << 8);
433 pch_iobp_write(reg, reg32);
434}
435
436static void pch_pcie_early(struct device *dev)
437{
Angel Pons3cc2c382020-10-23 20:38:23 +0200438 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700439 int do_aspm = 0;
440 int rp = root_port_number(dev);
441
442 switch (rp) {
443 case 1:
444 case 2:
445 case 3:
446 case 4:
447 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700448 * Bits 31:28 of b0d28f0 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700449 * Root Ports 4:1.
450 */
451 do_aspm = !!(rpc.b0d28f0_32c & (1 << (28 + rp - 1)));
452 break;
453 case 5:
454 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700455 * Bit 28 of b0d28f4 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700456 * Root Ports 4:1.
457 */
458 do_aspm = !!(rpc.b0d28f4_32c & (1 << 28));
459 break;
460 case 6:
461 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700462 * Bit 28 of b0d28f5 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700463 * Root Ports 4:1.
464 */
465 do_aspm = !!(rpc.b0d28f5_32c & (1 << 28));
466 break;
467 }
468
469 /* Allow ASPM to be forced on in devicetree */
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300470 if ((config->pcie_port_force_aspm & (1 << (rp - 1))))
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700471 do_aspm = 1;
472
473 printk(BIOS_DEBUG, "PCIe Root Port %d ASPM is %sabled\n",
474 rp, do_aspm ? "en" : "dis");
475
476 if (do_aspm) {
477 /* Set ASPM bits in MPC2 register. */
Angel Pons2ead3632020-09-24 16:50:05 +0200478 pci_update_config32(dev, 0xd4, ~(0x3 << 2), (1 << 4) | (0x2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700479
480 /* Set unique clock exit latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300481 pci_update_config32(dev, 0xd8, ~(0x7 << 18), (0x7 << 18));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700482
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700483 switch (rp) {
484 case 1:
485 pcie_add_0x0202000_iobp(0xe9002440);
486 break;
487 case 2:
488 pcie_add_0x0202000_iobp(0xe9002640);
489 break;
490 case 3:
491 pcie_add_0x0202000_iobp(0xe9000840);
492 break;
493 case 4:
494 pcie_add_0x0202000_iobp(0xe9000a40);
495 break;
496 case 5:
497 pcie_add_0x0202000_iobp(0xe9000c40);
498 pcie_add_0x0202000_iobp(0xe9000e40);
499 pcie_add_0x0202000_iobp(0xe9001040);
500 pcie_add_0x0202000_iobp(0xe9001240);
501 break;
502 case 6:
503 /* Update IOBP based on lane ownership. */
504 if (rpc.pin_ownership & (1 << 4))
505 pcie_add_0x0202000_iobp(0xea002040);
506 if (rpc.pin_ownership & (1 << 5))
507 pcie_add_0x0202000_iobp(0xea002240);
508 if (rpc.pin_ownership & (1 << 6))
509 pcie_add_0x0202000_iobp(0xea002440);
510 if (rpc.pin_ownership & (1 << 7))
511 pcie_add_0x0202000_iobp(0xea002640);
512 break;
513 }
514
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300515 pci_update_config32(dev, 0x338, ~(1 << 26), 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700516 }
517
Kenji Chenc373f502014-09-26 02:48:16 +0800518 /* Enable LTR in Root Port. Disable OBFF. */
Angel Ponsc7ca0f22021-09-08 14:22:12 +0200519 pci_update_config32(dev, 0x64, ~(3 << 18), (1 << 11));
520 pci_or_config32(dev, 0x68, 1 << 10);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700521
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300522 pci_update_config32(dev, 0x318, ~(0xffff << 16), (0x1414 << 16));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700523
524 /* Set L1 exit latency in LCAP register. */
525 if (!do_aspm && (pci_read_config8(dev, 0xf5) & 0x1))
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300526 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x4 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700527 else
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300528 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x2 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700529
Angel Pons2ead3632020-09-24 16:50:05 +0200530 pci_update_config32(dev, 0x314, 0, 0x743a361b);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700531
532 /* Set Common Clock Exit Latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300533 pci_update_config32(dev, 0xd8, ~(0x7 << 15), (0x3 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700534
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300535 pci_update_config32(dev, 0x33c, ~0x00ffffff, 0x854d74);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700536
Martin Rothde7ed6f2014-12-07 14:58:18 -0700537 /* Set Invalid Receive Range Check Enable in MPC register. */
Angel Pons6b486e12020-10-28 14:16:06 +0100538 pci_or_config32(dev, 0xd8, 1 << 25);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700539
Angel Pons6b486e12020-10-28 14:16:06 +0100540 pci_and_config8(dev, 0xf5, 0x0f);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700541
Kenji Chen94fea492014-09-30 14:17:35 +0800542 /* Set AER Extended Cap ID to 01h and Next Cap Pointer to 200h. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800543 if (CONFIG(PCIEXP_AER))
Angel Pons6b486e12020-10-28 14:16:06 +0100544 pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29) | 0x10001);
Youness Alaoui71616782018-05-04 15:34:06 -0400545 else
Angel Pons6b486e12020-10-28 14:16:06 +0100546 pci_update_config32(dev, 0x100, ~0xfffff, (1 << 29));
Kenji Chen8ef55ee2014-09-25 21:34:42 +0800547
Kenji Chen94fea492014-09-30 14:17:35 +0800548 /* Set L1 Sub-State Cap ID to 1Eh and Next Cap Pointer to None. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800549 if (CONFIG(PCIEXP_L1_SUB_STATE))
Youness Alaoui1f64b012018-05-04 15:33:54 -0400550 pci_update_config32(dev, 0x200, ~0xfffff, 0x001e);
551 else
552 pci_update_config32(dev, 0x200, ~0xfffff, 0);
Kenji Chen94fea492014-09-30 14:17:35 +0800553
Angel Pons6b486e12020-10-28 14:16:06 +0100554 pci_update_config32(dev, 0x320, ~(3 << 20) & ~(7 << 6), (1 << 20) | (3 << 6));
555
Kenji Chenc373f502014-09-26 02:48:16 +0800556 /* Enable Relaxed Order from Root Port. */
Angel Pons6b486e12020-10-28 14:16:06 +0100557 pci_or_config32(dev, 0x320, 3 << 23);
Kenji Chenc373f502014-09-26 02:48:16 +0800558
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700559 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300560 pci_update_config8(dev, 0xf7, ~0xc, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700561
562 /* Set EOI forwarding disable. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300563 pci_update_config32(dev, 0xd4, ~0, (1 << 1));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700564
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700565 /* Read and write back write-once capability registers. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300566 pci_update_config32(dev, 0x34, ~0, 0);
567 pci_update_config32(dev, 0x40, ~0, 0);
568 pci_update_config32(dev, 0x80, ~0, 0);
569 pci_update_config32(dev, 0x90, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700570}
571
572static void pch_pcie_init(struct device *dev)
573{
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700574 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
575
576 /* Enable SERR */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200577 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700578
579 /* Enable Bus Master */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200580 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700581
582 /* Set Cache Line Size to 0x10 */
583 pci_write_config8(dev, 0x0c, 0x10);
584
Angel Pons2ead3632020-09-24 16:50:05 +0200585 pci_and_config16(dev, PCI_BRIDGE_CONTROL, ~PCI_BRIDGE_CTL_PARITY);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700586
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700587 /* Clear errors in status registers */
Angel Pons2ead3632020-09-24 16:50:05 +0200588 pci_update_config16(dev, 0x06, ~0, 0);
589 pci_update_config16(dev, 0x1e, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700590}
591
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200592static void pch_pcie_enable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700593{
594 /* Add this device to the root port config structure. */
595 root_port_init_config(dev);
596
597 /* Check to see if this Root Port should be disabled. */
598 root_port_check_disable(dev);
599
600 /* Power Management init before enumeration */
601 if (dev->enabled)
602 pch_pcie_early(dev);
603
604 /*
605 * When processing the last PCIe root port we can now
606 * update the Root Port Function Number and Hide register.
607 */
608 if (root_port_is_last(dev))
609 root_port_commit_config();
610}
611
Nico Huber968ef752021-03-07 01:39:18 +0100612static void pcie_get_ltr_max_latencies(u16 *max_snoop, u16 *max_nosnoop)
Kenji Chenb71d9b82014-10-10 03:08:15 +0800613{
Nico Huber968ef752021-03-07 01:39:18 +0100614 *max_snoop = PCIE_LTR_MAX_SNOOP_LATENCY_3146US;
615 *max_nosnoop = PCIE_LTR_MAX_NO_SNOOP_LATENCY_3146US;
Kenji Chenb71d9b82014-10-10 03:08:15 +0800616}
617
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700618static struct pci_operations pcie_ops = {
Subrata Banik15ccbf02019-03-20 15:09:44 +0530619 .set_subsystem = pci_dev_set_subsystem,
Nico Huber968ef752021-03-07 01:39:18 +0100620 .get_ltr_max_latencies = pcie_get_ltr_max_latencies,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700621};
622
623static struct device_operations device_ops = {
624 .read_resources = pci_bus_read_resources,
625 .set_resources = pci_dev_set_resources,
626 .enable_resources = pci_bus_enable_resources,
627 .init = pch_pcie_init,
628 .enable = pch_pcie_enable,
629 .scan_bus = pciexp_scan_bridge,
630 .ops_pci = &pcie_ops,
631};
632
633static const unsigned short pcie_device_ids[] = {
634 /* Lynxpoint-LP */
635 0x9c10, 0x9c12, 0x9c14, 0x9c16, 0x9c18, 0x9c1a,
636 /* WildcatPoint */
637 0x9c90, 0x9c92, 0x9c94, 0x9c96, 0x9c98, 0x9c9a, 0x2448,
638 0
639};
640
641static const struct pci_driver pch_pcie __pci_driver = {
642 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100643 .vendor = PCI_VID_INTEL,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700644 .devices = pcie_device_ids,
645};