blob: c98201e5ab40a19aeeeb496c910fbf46d7ce74bc [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>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pciexp.h>
7#include <device/pci_def.h>
8#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +02009#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070010#include <soc/gpio.h>
11#include <soc/lpc.h>
12#include <soc/iobp.h>
13#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>
Julius Werner4ee4bd52014-10-20 13:46:39 -070017#include <soc/cpu.h>
Wenkai Du83067612014-12-05 14:00:26 -080018#include <delay.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;
34 int coalesce;
35 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
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300123 pci_update_config8(dev, 0xe2, ~(3 << 4), (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
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300153 pci_update_config32(dev, 0x418, 0, 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)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300215 pci_update_config8(dev, 0xe1, 0xc3, 0x3c);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700216
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300217 pci_update_config8(dev, 0xe2, ~(3 << 4), (3 << 4));
218 pci_update_config32(dev, 0x420, ~(1 << 31), (1 << 31));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700219
220 /* Per-Port CLKREQ# handling. */
221 if (gpio_is_native(18 + rp - 1))
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300222 pci_update_config32(dev, 0x420, ~0, (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) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300227 pci_update_config8(dev, 0xe2, ~1, 1);
228 pci_update_config8(dev, 0xe1, 0x7f, 0x80);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700229 } else if (rp == 5 || rp == 6) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300230 pci_update_config8(dev, 0xe2, ~1, 1);
231 pci_update_config8(dev, 0xe1, 0x7f, 0x80);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700232 }
233 continue;
234 }
235
236 enabled_ports++;
237
238 /* Enable dynamic clock gating. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300239 pci_update_config8(dev, 0xe1, 0xfc, 0x03);
240 pci_update_config8(dev, 0xe2, ~(1 << 6), (1 << 6));
241 pci_update_config8(dev, 0xe8, ~(3 << 2), (2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700242
243 /* Update PECR1 register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300244 pci_update_config8(dev, 0xe8, ~0, 3);
Kane Chen4fef5a22014-08-27 15:21:32 -0700245 if (is_broadwell) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300246 pci_update_config32(dev, 0x324, ~((1 << 5) | (1 << 14)),
Kane Chen4fef5a22014-08-27 15:21:32 -0700247 ((1 << 5) | (1 << 14)));
248 } else {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300249 pci_update_config32(dev, 0x324, ~(1 << 5), (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 */
Lee Leahy6ef51922017-03-17 10:56:08 -0700257 pci_update_config32(dev, 0x420, ~0x20000,
258 (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)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300262 pci_update_config8(dev, 0xe1, 0xc3, 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)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300269 pci_update_config8(rpc.ports[0], 0xe1, ~(1 << 6), (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)
278 rpc.coalesce = 1;
279
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 */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300301 pci_update_config32(dev, 0x338, ~(1 << 26), 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
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300315 pci_update_config32(dev, 0x408, ~(1 << 27), 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. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300520 pci_update_config32(dev, 0x64, ~(1 << 11) & ~(3 << 18), (1 << 11));
521 pci_update_config32(dev, 0x68, ~(1 << 10), (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. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300539 pci_update_config32(dev, 0xd8, ~0, (1 << 25));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700540
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300541 pci_update_config8(dev, 0xf5, 0x0f, 0);
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))
Youness Alaoui71616782018-05-04 15:34:06 -0400545 pci_update_config32(dev, 0x100, ~(1 << 29) & ~0xfffff,
546 (1 << 29) | 0x10001);
547 else
548 pci_update_config32(dev, 0x100, ~(1 << 29) & ~0xfffff,
549 (1 << 29));
Kenji Chen8ef55ee2014-09-25 21:34:42 +0800550
Kenji Chen94fea492014-09-30 14:17:35 +0800551 /* Set L1 Sub-State Cap ID to 1Eh and Next Cap Pointer to None. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800552 if (CONFIG(PCIEXP_L1_SUB_STATE))
Youness Alaoui1f64b012018-05-04 15:33:54 -0400553 pci_update_config32(dev, 0x200, ~0xfffff, 0x001e);
554 else
555 pci_update_config32(dev, 0x200, ~0xfffff, 0);
Kenji Chen94fea492014-09-30 14:17:35 +0800556
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300557 pci_update_config32(dev, 0x320, ~(3 << 20) & ~(7 << 6),
Kenji Chenc373f502014-09-26 02:48:16 +0800558 (1 << 20) | (3 << 6));
559 /* Enable Relaxed Order from Root Port. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300560 pci_update_config32(dev, 0x320, ~(3 << 23), (3 << 23));
Kenji Chenc373f502014-09-26 02:48:16 +0800561
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700562 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300563 pci_update_config8(dev, 0xf7, ~0xc, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700564
565 /* Set EOI forwarding disable. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300566 pci_update_config32(dev, 0xd4, ~0, (1 << 1));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700567
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700568 /* Read and write back write-once capability registers. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300569 pci_update_config32(dev, 0x34, ~0, 0);
570 pci_update_config32(dev, 0x40, ~0, 0);
571 pci_update_config32(dev, 0x80, ~0, 0);
572 pci_update_config32(dev, 0x90, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700573}
574
575static void pch_pcie_init(struct device *dev)
576{
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700577 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
578
579 /* Enable SERR */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200580 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700581
582 /* Enable Bus Master */
Elyes HAOUASb887adf2020-04-29 10:42:34 +0200583 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700584
585 /* Set Cache Line Size to 0x10 */
586 pci_write_config8(dev, 0x0c, 0x10);
587
Angel Pons2ead3632020-09-24 16:50:05 +0200588 pci_and_config16(dev, PCI_BRIDGE_CONTROL, ~PCI_BRIDGE_CTL_PARITY);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700589
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700590 /* Clear errors in status registers */
Angel Pons2ead3632020-09-24 16:50:05 +0200591 pci_update_config16(dev, 0x06, ~0, 0);
592 pci_update_config16(dev, 0x1e, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700593}
594
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200595static void pch_pcie_enable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700596{
597 /* Add this device to the root port config structure. */
598 root_port_init_config(dev);
599
600 /* Check to see if this Root Port should be disabled. */
601 root_port_check_disable(dev);
602
603 /* Power Management init before enumeration */
604 if (dev->enabled)
605 pch_pcie_early(dev);
606
607 /*
608 * When processing the last PCIe root port we can now
609 * update the Root Port Function Number and Hide register.
610 */
611 if (root_port_is_last(dev))
612 root_port_commit_config();
613}
614
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200615static void pcie_set_L1_ss_max_latency(struct device *dev, unsigned int off)
Kenji Chenb71d9b82014-10-10 03:08:15 +0800616{
617 /* Set max snoop and non-snoop latency for Broadwell */
Subrata Baniked6996f2019-03-25 21:49:39 +0530618 pci_write_config32(dev, off,
619 PCIE_LTR_MAX_NO_SNOOP_LATENCY_3146US << 16 |
620 PCIE_LTR_MAX_SNOOP_LATENCY_3146US);
Kenji Chenb71d9b82014-10-10 03:08:15 +0800621}
622
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700623static struct pci_operations pcie_ops = {
Subrata Banik15ccbf02019-03-20 15:09:44 +0530624 .set_subsystem = pci_dev_set_subsystem,
Kenji Chenb71d9b82014-10-10 03:08:15 +0800625 .set_L1_ss_latency = pcie_set_L1_ss_max_latency,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700626};
627
628static struct device_operations device_ops = {
629 .read_resources = pci_bus_read_resources,
630 .set_resources = pci_dev_set_resources,
631 .enable_resources = pci_bus_enable_resources,
632 .init = pch_pcie_init,
633 .enable = pch_pcie_enable,
634 .scan_bus = pciexp_scan_bridge,
635 .ops_pci = &pcie_ops,
636};
637
638static const unsigned short pcie_device_ids[] = {
639 /* Lynxpoint-LP */
640 0x9c10, 0x9c12, 0x9c14, 0x9c16, 0x9c18, 0x9c1a,
641 /* WildcatPoint */
642 0x9c90, 0x9c92, 0x9c94, 0x9c96, 0x9c98, 0x9c9a, 0x2448,
643 0
644};
645
646static const struct pci_driver pch_pcie __pci_driver = {
647 .ops = &device_ops,
648 .vendor = PCI_VENDOR_ID_INTEL,
649 .devices = pcie_device_ids,
650};