blob: 36523411c3e8d81fa2e88dcb1855be872c33f031 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015 */
16
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include <device/pciexp.h>
21#include <device/pci_def.h>
22#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020023#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070024#include <soc/gpio.h>
25#include <soc/lpc.h>
26#include <soc/iobp.h>
27#include <soc/pch.h>
28#include <soc/pci_devs.h>
29#include <soc/rcba.h>
30#include <soc/intel/broadwell/chip.h>
31#include <soc/cpu.h>
Wenkai Du83067612014-12-05 14:00:26 -080032#include <delay.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070033
Duncan Lauriec88c54c2014-04-30 16:36:13 -070034/* Low Power variant has 6 root ports. */
35#define NUM_ROOT_PORTS 6
36
37struct root_port_config {
38 /* RPFN is a write-once register so keep a copy until it is written */
39 u32 orig_rpfn;
40 u32 new_rpfn;
41 u32 pin_ownership;
42 u32 strpfusecfg1;
43 u32 strpfusecfg2;
44 u32 strpfusecfg3;
45 u32 b0d28f0_32c;
46 u32 b0d28f4_32c;
47 u32 b0d28f5_32c;
48 int coalesce;
49 int gbe_port;
50 int num_ports;
Elyes HAOUAS040aff22018-05-27 16:30:36 +020051 struct device *ports[NUM_ROOT_PORTS];
Duncan Lauriec88c54c2014-04-30 16:36:13 -070052};
53
54static struct root_port_config rpc;
55
Elyes HAOUAS040aff22018-05-27 16:30:36 +020056static inline int root_port_is_first(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070057{
58 return PCI_FUNC(dev->path.pci.devfn) == 0;
59}
60
Elyes HAOUAS040aff22018-05-27 16:30:36 +020061static inline int root_port_is_last(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070062{
63 return PCI_FUNC(dev->path.pci.devfn) == (rpc.num_ports - 1);
64}
65
66/* Root ports are numbered 1..N in the documentation. */
Elyes HAOUAS040aff22018-05-27 16:30:36 +020067static inline int root_port_number(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070068{
69 return PCI_FUNC(dev->path.pci.devfn) + 1;
70}
71
72static void root_port_config_update_gbe_port(void)
73{
74 /* Is the Gbe Port enabled? */
75 if (!((rpc.strpfusecfg1 >> 19) & 1))
76 return;
77
78 switch ((rpc.strpfusecfg1 >> 16) & 0x7) {
79 case 0:
80 rpc.gbe_port = 3;
81 break;
82 case 1:
83 rpc.gbe_port = 4;
84 break;
85 case 2:
86 case 3:
87 case 4:
88 case 5:
89 /* Lanes 0-4 of Root Port 5. */
90 rpc.gbe_port = 5;
91 break;
92 default:
93 printk(BIOS_DEBUG, "Invalid GbE Port Selection.\n");
94 }
95}
96
Elyes HAOUAS040aff22018-05-27 16:30:36 +020097static void pcie_iosf_port_grant_count(struct device *dev)
Kenji Chen87d4a202014-09-24 01:18:26 +080098{
99 u8 update_val;
Patrick Georgie8f2ef52016-07-29 18:53:34 +0200100 u32 rpcd = (pci_read_config32(dev, 0xfc) >> 14) & 0x3;
Kenji Chen87d4a202014-09-24 01:18:26 +0800101
102 switch (rpcd) {
103 case 1:
104 case 3:
105 update_val = 0x02;
106 break;
107 case 2:
108 update_val = 0x22;
109 break;
110 default:
111 update_val = 0x00;
112 break;
113 }
114
115 RCBA32(0x103C) = (RCBA32(0x103C) & (~0xff)) | update_val;
116}
117
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200118static void root_port_init_config(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700119{
120 int rp;
Martin Roth2b2ff7f2015-12-18 10:46:59 -0700121 u32 data = 0;
Kenji Chene383feb2014-09-26 03:14:57 +0800122 u8 resp, id;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700123
124 if (root_port_is_first(dev)) {
125 rpc.orig_rpfn = RCBA32(RPFN);
126 rpc.new_rpfn = rpc.orig_rpfn;
127 rpc.num_ports = NUM_ROOT_PORTS;
128 rpc.gbe_port = -1;
Kenji Chen87d4a202014-09-24 01:18:26 +0800129 /* RP0 f5[3:0] = 0101b*/
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300130 pci_update_config8(dev, 0xf5, ~0xa, 0x5);
Kenji Chen87d4a202014-09-24 01:18:26 +0800131
132 pcie_iosf_port_grant_count(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700133
134 rpc.pin_ownership = pci_read_config32(dev, 0x410);
135 root_port_config_update_gbe_port();
136
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300137 pci_update_config8(dev, 0xe2, ~(3 << 4), (3 << 4));
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300138 config_t *config = config_of(dev);
139 rpc.coalesce = config->pcie_port_coalesce;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700140 }
141
142 rp = root_port_number(dev);
143 if (rp > rpc.num_ports) {
144 printk(BIOS_ERR, "Found Root Port %d, expecting %d\n",
145 rp, rpc.num_ports);
146 return;
147 }
148
149 /* Read the fuse configuration and pin ownership. */
150 switch (rp) {
151 case 1:
152 rpc.strpfusecfg1 = pci_read_config32(dev, 0xfc);
153 rpc.b0d28f0_32c = pci_read_config32(dev, 0x32c);
154 break;
155 case 5:
156 rpc.strpfusecfg2 = pci_read_config32(dev, 0xfc);
157 rpc.b0d28f4_32c = pci_read_config32(dev, 0x32c);
158 break;
159 case 6:
160 rpc.b0d28f5_32c = pci_read_config32(dev, 0x32c);
161 rpc.strpfusecfg3 = pci_read_config32(dev, 0xfc);
162 break;
163 default:
164 break;
165 }
166
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300167 pci_update_config32(dev, 0x418, 0, 0x02000430);
Kenji Chene383feb2014-09-26 03:14:57 +0800168
Kenji Chene383feb2014-09-26 03:14:57 +0800169 if (root_port_is_first(dev)) {
Kenji Chene8f36642014-10-04 02:59:06 +0800170 /*
171 * set RP0 PCICFG E2h[5:4] = 11b and E1h[6] = 1
172 * before configuring ASPM
173 */
Kenji Chene383feb2014-09-26 03:14:57 +0800174 id = 0xe0 + (u8)(RCBA32(RPFN) & 0x07);
175 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_READ, id, &data, &resp);
Kenji Chene8f36642014-10-04 02:59:06 +0800176 data |= ((0x30 << 16) | (0x40 << 8));
Kenji Chene383feb2014-09-26 03:14:57 +0800177 pch_iobp_exec(0xE00000E0, IOBP_PCICFG_WRITE, id, &data, &resp);
178 }
179
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700180 /* Cache pci device. */
181 rpc.ports[rp - 1] = dev;
182}
183
184/* Update devicetree with new Root Port function number assignment */
185static void pch_pcie_device_set_func(int index, int pci_func)
186{
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200187 struct device *dev;
Lee Leahy23602df2017-03-16 19:00:37 -0700188 unsigned int new_devfn;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700189
190 dev = rpc.ports[index];
191
192 /* Set the new PCI function field for this Root Port. */
193 rpc.new_rpfn &= ~RPFN_FNMASK(index);
194 rpc.new_rpfn |= RPFN_FNSET(index, pci_func);
195
196 /* Determine the new devfn for this port */
197 new_devfn = PCI_DEVFN(PCH_DEV_SLOT_PCIE, pci_func);
198
199 if (dev->path.pci.devfn != new_devfn) {
200 printk(BIOS_DEBUG,
201 "PCH: PCIe map %02x.%1x -> %02x.%1x\n",
202 PCI_SLOT(dev->path.pci.devfn),
203 PCI_FUNC(dev->path.pci.devfn),
204 PCI_SLOT(new_devfn), PCI_FUNC(new_devfn));
205
206 dev->path.pci.devfn = new_devfn;
207 }
208}
209
210static void pcie_enable_clock_gating(void)
211{
212 int i;
213 int enabled_ports = 0;
Kane Chen4fef5a22014-08-27 15:21:32 -0700214 int is_broadwell = !!(cpu_family_model() == BROADWELL_FAMILY_ULT);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700215
216 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200217 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700218 int rp;
219
220 dev = rpc.ports[i];
221 rp = root_port_number(dev);
222
223 if (!dev->enabled) {
224 /* Configure shared resource clock gating. */
225 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300226 pci_update_config8(dev, 0xe1, 0xc3, 0x3c);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700227
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300228 pci_update_config8(dev, 0xe2, ~(3 << 4), (3 << 4));
229 pci_update_config32(dev, 0x420, ~(1 << 31), (1 << 31));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700230
231 /* Per-Port CLKREQ# handling. */
232 if (gpio_is_native(18 + rp - 1))
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300233 pci_update_config32(dev, 0x420, ~0, (3 << 29));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700234
235 /* Enable static clock gating. */
236 if (rp == 1 && !rpc.ports[1]->enabled &&
237 !rpc.ports[2]->enabled && !rpc.ports[3]->enabled) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300238 pci_update_config8(dev, 0xe2, ~1, 1);
239 pci_update_config8(dev, 0xe1, 0x7f, 0x80);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700240 } else if (rp == 5 || rp == 6) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300241 pci_update_config8(dev, 0xe2, ~1, 1);
242 pci_update_config8(dev, 0xe1, 0x7f, 0x80);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700243 }
244 continue;
245 }
246
247 enabled_ports++;
248
249 /* Enable dynamic clock gating. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300250 pci_update_config8(dev, 0xe1, 0xfc, 0x03);
251 pci_update_config8(dev, 0xe2, ~(1 << 6), (1 << 6));
252 pci_update_config8(dev, 0xe8, ~(3 << 2), (2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700253
254 /* Update PECR1 register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300255 pci_update_config8(dev, 0xe8, ~0, 3);
Kane Chen4fef5a22014-08-27 15:21:32 -0700256 if (is_broadwell) {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300257 pci_update_config32(dev, 0x324, ~((1 << 5) | (1 << 14)),
Kane Chen4fef5a22014-08-27 15:21:32 -0700258 ((1 << 5) | (1 << 14)));
259 } else {
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300260 pci_update_config32(dev, 0x324, ~(1 << 5), (1 << 5));
Kane Chen4fef5a22014-08-27 15:21:32 -0700261 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700262 /* Per-Port CLKREQ# handling. */
263 if (gpio_is_native(18 + rp - 1))
Kenji Chene8f36642014-10-04 02:59:06 +0800264 /*
265 * In addition to D28Fx PCICFG 420h[30:29] = 11b,
266 * set 420h[17] = 0b and 420[0] = 1b for L1 SubState.
267 */
Lee Leahy6ef51922017-03-17 10:56:08 -0700268 pci_update_config32(dev, 0x420, ~0x20000,
269 (3 << 29) | 1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700270
271 /* Configure shared resource clock gating. */
272 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300273 pci_update_config8(dev, 0xe1, 0xc3, 0x3c);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700274
275 /* CLKREQ# VR Idle Enable */
276 RCBA32_OR(0x2b1c, (1 << (16 + i)));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700277 }
278
279 if (!enabled_ports)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300280 pci_update_config8(rpc.ports[0], 0xe1, ~(1 << 6), (1 << 6));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700281}
282
283static void root_port_commit_config(void)
284{
285 int i;
286
287 /* If the first root port is disabled the coalesce ports. */
288 if (!rpc.ports[0]->enabled)
289 rpc.coalesce = 1;
290
291 /* Perform clock gating configuration. */
292 pcie_enable_clock_gating();
293
294 for (i = 0; i < rpc.num_ports; i++) {
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200295 struct device *dev;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700296 u32 reg32;
Wenkai Du83067612014-12-05 14:00:26 -0800297 int n = 0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700298
299 dev = rpc.ports[i];
300
301 if (dev == NULL) {
302 printk(BIOS_ERR, "Root Port %d device is NULL?\n", i+1);
303 continue;
304 }
305
306 if (dev->enabled)
307 continue;
308
309 printk(BIOS_DEBUG, "%s: Disabling device\n", dev_path(dev));
310
Wenkai Du83067612014-12-05 14:00:26 -0800311 /* 8.2 Configuration of PCI Express Root Ports */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300312 pci_update_config32(dev, 0x338, ~(1 << 26), 1 << 26);
Wenkai Du83067612014-12-05 14:00:26 -0800313
314 do {
315 reg32 = pci_read_config32(dev, 0x328);
316 n++;
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800317 if (((reg32 & 0xff000000) == 0x01000000) || (n > 50))
Wenkai Du83067612014-12-05 14:00:26 -0800318 break;
319 udelay(100);
320 } while (1);
321
Duncan Lauriecad2b7b2015-01-14 17:30:20 -0800322 if (n > 50)
Wenkai Du83067612014-12-05 14:00:26 -0800323 printk(BIOS_DEBUG, "%s: Timeout waiting for 328h\n",
324 dev_path(dev));
325
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300326 pci_update_config32(dev, 0x408, ~(1 << 27), 1 << 27);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700327
328 /* Disable this device if possible */
329 pch_disable_devfn(dev);
330 }
331
332 if (rpc.coalesce) {
333 int current_func;
334
335 /* For all Root Ports N enabled ports get assigned the lower
336 * PCI function number. The disabled ones get upper PCI
337 * function numbers. */
338 current_func = 0;
339 for (i = 0; i < rpc.num_ports; i++) {
340 if (!rpc.ports[i]->enabled)
341 continue;
342 pch_pcie_device_set_func(i, current_func);
343 current_func++;
344 }
345
346 /* Allocate the disabled devices' PCI function number. */
347 for (i = 0; i < rpc.num_ports; i++) {
348 if (rpc.ports[i]->enabled)
349 continue;
350 pch_pcie_device_set_func(i, current_func);
351 current_func++;
352 }
353 }
354
355 printk(BIOS_SPEW, "PCH: RPFN 0x%08x -> 0x%08x\n",
356 rpc.orig_rpfn, rpc.new_rpfn);
357 RCBA32(RPFN) = rpc.new_rpfn;
358}
359
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200360static void root_port_mark_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700361{
362 /* Mark device as disabled. */
363 dev->enabled = 0;
364 /* Mark device to be hidden. */
365 rpc.new_rpfn |= RPFN_HIDE(PCI_FUNC(dev->path.pci.devfn));
366}
367
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200368static void root_port_check_disable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700369{
370 int rp;
371
372 /* Device already disabled. */
373 if (!dev->enabled) {
374 root_port_mark_disable(dev);
375 return;
376 }
377
378 rp = root_port_number(dev);
379
380 /* Is the GbE port mapped to this Root Port? */
381 if (rp == rpc.gbe_port) {
382 root_port_mark_disable(dev);
383 return;
384 }
385
386 /* Check Root Port Configuration. */
387 switch (rp) {
Lee Leahy6ef51922017-03-17 10:56:08 -0700388 case 2:
389 /* Root Port 2 is disabled for all lane configurations
390 * but config 00b (4x1 links). */
391 if ((rpc.strpfusecfg1 >> 14) & 0x3) {
392 root_port_mark_disable(dev);
393 return;
394 }
395 break;
396 case 3:
397 /* Root Port 3 is disabled in config 11b (1x4 links). */
398 if (((rpc.strpfusecfg1 >> 14) & 0x3) == 0x3) {
399 root_port_mark_disable(dev);
400 return;
401 }
402 break;
403 case 4:
404 /* Root Port 4 is disabled in configs 11b (1x4 links)
405 * and 10b (2x2 links). */
406 if ((rpc.strpfusecfg1 >> 14) & 0x2) {
407 root_port_mark_disable(dev);
408 return;
409 }
410 break;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700411 }
412
413 /* Check Pin Ownership. */
414 switch (rp) {
415 case 1:
416 /* Bit 0 is Root Port 1 ownership. */
417 if ((rpc.pin_ownership & 0x1) == 0) {
418 root_port_mark_disable(dev);
419 return;
420 }
421 break;
422 case 2:
423 /* Bit 2 is Root Port 2 ownership. */
424 if ((rpc.pin_ownership & 0x4) == 0) {
425 root_port_mark_disable(dev);
426 return;
427 }
428 break;
429 case 6:
430 /* Bits 7:4 are Root Port 6 pin-lane ownership. */
431 if ((rpc.pin_ownership & 0xf0) == 0) {
432 root_port_mark_disable(dev);
433 return;
434 }
435 break;
436 }
437}
438
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700439static void pcie_add_0x0202000_iobp(u32 reg)
440{
441 u32 reg32;
442
443 reg32 = pch_iobp_read(reg);
444 reg32 += (0x2 << 16) | (0x2 << 8);
445 pch_iobp_write(reg, reg32);
446}
447
448static void pch_pcie_early(struct device *dev)
449{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300450 config_t *config = config_of(dev);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700451 int do_aspm = 0;
452 int rp = root_port_number(dev);
453
454 switch (rp) {
455 case 1:
456 case 2:
457 case 3:
458 case 4:
459 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700460 * Bits 31:28 of b0d28f0 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700461 * Root Ports 4:1.
462 */
463 do_aspm = !!(rpc.b0d28f0_32c & (1 << (28 + rp - 1)));
464 break;
465 case 5:
466 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700467 * Bit 28 of b0d28f4 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700468 * Root Ports 4:1.
469 */
470 do_aspm = !!(rpc.b0d28f4_32c & (1 << 28));
471 break;
472 case 6:
473 /*
Martin Rothde7ed6f2014-12-07 14:58:18 -0700474 * Bit 28 of b0d28f5 0x32c register correspond to
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700475 * Root Ports 4:1.
476 */
477 do_aspm = !!(rpc.b0d28f5_32c & (1 << 28));
478 break;
479 }
480
481 /* Allow ASPM to be forced on in devicetree */
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300482 if ((config->pcie_port_force_aspm & (1 << (rp - 1))))
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700483 do_aspm = 1;
484
485 printk(BIOS_DEBUG, "PCIe Root Port %d ASPM is %sabled\n",
486 rp, do_aspm ? "en" : "dis");
487
488 if (do_aspm) {
489 /* Set ASPM bits in MPC2 register. */
Lee Leahy6ef51922017-03-17 10:56:08 -0700490 pci_update_config32(dev, 0xd4, ~(0x3 << 2),
491 (1 << 4) | (0x2 << 2));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700492
493 /* Set unique clock exit latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300494 pci_update_config32(dev, 0xd8, ~(0x7 << 18), (0x7 << 18));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700495
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700496 switch (rp) {
497 case 1:
498 pcie_add_0x0202000_iobp(0xe9002440);
499 break;
500 case 2:
501 pcie_add_0x0202000_iobp(0xe9002640);
502 break;
503 case 3:
504 pcie_add_0x0202000_iobp(0xe9000840);
505 break;
506 case 4:
507 pcie_add_0x0202000_iobp(0xe9000a40);
508 break;
509 case 5:
510 pcie_add_0x0202000_iobp(0xe9000c40);
511 pcie_add_0x0202000_iobp(0xe9000e40);
512 pcie_add_0x0202000_iobp(0xe9001040);
513 pcie_add_0x0202000_iobp(0xe9001240);
514 break;
515 case 6:
516 /* Update IOBP based on lane ownership. */
517 if (rpc.pin_ownership & (1 << 4))
518 pcie_add_0x0202000_iobp(0xea002040);
519 if (rpc.pin_ownership & (1 << 5))
520 pcie_add_0x0202000_iobp(0xea002240);
521 if (rpc.pin_ownership & (1 << 6))
522 pcie_add_0x0202000_iobp(0xea002440);
523 if (rpc.pin_ownership & (1 << 7))
524 pcie_add_0x0202000_iobp(0xea002640);
525 break;
526 }
527
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300528 pci_update_config32(dev, 0x338, ~(1 << 26), 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700529 }
530
Kenji Chenc373f502014-09-26 02:48:16 +0800531 /* Enable LTR in Root Port. Disable OBFF. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300532 pci_update_config32(dev, 0x64, ~(1 << 11) & ~(3 << 18), (1 << 11));
533 pci_update_config32(dev, 0x68, ~(1 << 10), (1 << 10));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700534
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300535 pci_update_config32(dev, 0x318, ~(0xffff << 16), (0x1414 << 16));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700536
537 /* Set L1 exit latency in LCAP register. */
538 if (!do_aspm && (pci_read_config8(dev, 0xf5) & 0x1))
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300539 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x4 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700540 else
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300541 pci_update_config32(dev, 0x4c, ~(0x7 << 15), (0x2 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700542
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300543 pci_update_config32(dev, 0x314, 0x0, 0x743a361b);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700544
545 /* Set Common Clock Exit Latency in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300546 pci_update_config32(dev, 0xd8, ~(0x7 << 15), (0x3 << 15));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700547
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300548 pci_update_config32(dev, 0x33c, ~0x00ffffff, 0x854d74);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700549
Martin Rothde7ed6f2014-12-07 14:58:18 -0700550 /* Set Invalid Receive Range Check Enable in MPC register. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300551 pci_update_config32(dev, 0xd8, ~0, (1 << 25));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700552
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300553 pci_update_config8(dev, 0xf5, 0x0f, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700554
Kenji Chen94fea492014-09-30 14:17:35 +0800555 /* Set AER Extended Cap ID to 01h and Next Cap Pointer to 200h. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800556 if (CONFIG(PCIEXP_AER))
Youness Alaoui71616782018-05-04 15:34:06 -0400557 pci_update_config32(dev, 0x100, ~(1 << 29) & ~0xfffff,
558 (1 << 29) | 0x10001);
559 else
560 pci_update_config32(dev, 0x100, ~(1 << 29) & ~0xfffff,
561 (1 << 29));
Kenji Chen8ef55ee2014-09-25 21:34:42 +0800562
Kenji Chen94fea492014-09-30 14:17:35 +0800563 /* Set L1 Sub-State Cap ID to 1Eh and Next Cap Pointer to None. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800564 if (CONFIG(PCIEXP_L1_SUB_STATE))
Youness Alaoui1f64b012018-05-04 15:33:54 -0400565 pci_update_config32(dev, 0x200, ~0xfffff, 0x001e);
566 else
567 pci_update_config32(dev, 0x200, ~0xfffff, 0);
Kenji Chen94fea492014-09-30 14:17:35 +0800568
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300569 pci_update_config32(dev, 0x320, ~(3 << 20) & ~(7 << 6),
Kenji Chenc373f502014-09-26 02:48:16 +0800570 (1 << 20) | (3 << 6));
571 /* Enable Relaxed Order from Root Port. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300572 pci_update_config32(dev, 0x320, ~(3 << 23), (3 << 23));
Kenji Chenc373f502014-09-26 02:48:16 +0800573
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700574 if (rp == 1 || rp == 5 || rp == 6)
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300575 pci_update_config8(dev, 0xf7, ~0xc, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700576
577 /* Set EOI forwarding disable. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300578 pci_update_config32(dev, 0xd4, ~0, (1 << 1));
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700579
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700580 /* Read and write back write-once capability registers. */
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300581 pci_update_config32(dev, 0x34, ~0, 0);
582 pci_update_config32(dev, 0x40, ~0, 0);
583 pci_update_config32(dev, 0x80, ~0, 0);
584 pci_update_config32(dev, 0x90, ~0, 0);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700585}
586
587static void pch_pcie_init(struct device *dev)
588{
589 u16 reg16;
590 u32 reg32;
591
592 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
593
594 /* Enable SERR */
595 reg32 = pci_read_config32(dev, PCI_COMMAND);
596 reg32 |= PCI_COMMAND_SERR;
597 pci_write_config32(dev, PCI_COMMAND, reg32);
598
599 /* Enable Bus Master */
600 reg32 = pci_read_config32(dev, PCI_COMMAND);
601 reg32 |= PCI_COMMAND_MASTER;
602 pci_write_config32(dev, PCI_COMMAND, reg32);
603
604 /* Set Cache Line Size to 0x10 */
605 pci_write_config8(dev, 0x0c, 0x10);
606
Kyösti Mälkkidf128a52019-09-21 18:35:37 +0300607 reg16 = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
608 reg16 &= ~PCI_BRIDGE_CTL_PARITY;
609 reg16 |= PCI_BRIDGE_CTL_NO_ISA;
610 pci_write_config16(dev, PCI_BRIDGE_CONTROL, reg16);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700611
612#ifdef EVEN_MORE_DEBUG
613 reg32 = pci_read_config32(dev, 0x20);
614 printk(BIOS_SPEW, " MBL = 0x%08x\n", reg32);
615 reg32 = pci_read_config32(dev, 0x24);
616 printk(BIOS_SPEW, " PMBL = 0x%08x\n", reg32);
617 reg32 = pci_read_config32(dev, 0x28);
618 printk(BIOS_SPEW, " PMBU32 = 0x%08x\n", reg32);
619 reg32 = pci_read_config32(dev, 0x2c);
620 printk(BIOS_SPEW, " PMLU32 = 0x%08x\n", reg32);
621#endif
622
623 /* Clear errors in status registers */
624 reg16 = pci_read_config16(dev, 0x06);
625 pci_write_config16(dev, 0x06, reg16);
626 reg16 = pci_read_config16(dev, 0x1e);
627 pci_write_config16(dev, 0x1e, reg16);
628}
629
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200630static void pch_pcie_enable(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700631{
632 /* Add this device to the root port config structure. */
633 root_port_init_config(dev);
634
635 /* Check to see if this Root Port should be disabled. */
636 root_port_check_disable(dev);
637
638 /* Power Management init before enumeration */
639 if (dev->enabled)
640 pch_pcie_early(dev);
641
642 /*
643 * When processing the last PCIe root port we can now
644 * update the Root Port Function Number and Hide register.
645 */
646 if (root_port_is_last(dev))
647 root_port_commit_config();
648}
649
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200650static void pcie_set_L1_ss_max_latency(struct device *dev, unsigned int off)
Kenji Chenb71d9b82014-10-10 03:08:15 +0800651{
652 /* Set max snoop and non-snoop latency for Broadwell */
Subrata Baniked6996f2019-03-25 21:49:39 +0530653 pci_write_config32(dev, off,
654 PCIE_LTR_MAX_NO_SNOOP_LATENCY_3146US << 16 |
655 PCIE_LTR_MAX_SNOOP_LATENCY_3146US);
Kenji Chenb71d9b82014-10-10 03:08:15 +0800656}
657
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700658static struct pci_operations pcie_ops = {
Subrata Banik15ccbf02019-03-20 15:09:44 +0530659 .set_subsystem = pci_dev_set_subsystem,
Kenji Chenb71d9b82014-10-10 03:08:15 +0800660 .set_L1_ss_latency = pcie_set_L1_ss_max_latency,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700661};
662
663static struct device_operations device_ops = {
664 .read_resources = pci_bus_read_resources,
665 .set_resources = pci_dev_set_resources,
666 .enable_resources = pci_bus_enable_resources,
667 .init = pch_pcie_init,
668 .enable = pch_pcie_enable,
669 .scan_bus = pciexp_scan_bridge,
670 .ops_pci = &pcie_ops,
671};
672
673static const unsigned short pcie_device_ids[] = {
674 /* Lynxpoint-LP */
675 0x9c10, 0x9c12, 0x9c14, 0x9c16, 0x9c18, 0x9c1a,
676 /* WildcatPoint */
677 0x9c90, 0x9c92, 0x9c94, 0x9c96, 0x9c98, 0x9c9a, 0x2448,
678 0
679};
680
681static const struct pci_driver pch_pcie __pci_driver = {
682 .ops = &device_ops,
683 .vendor = PCI_VENDOR_ID_INTEL,
684 .devices = pcie_device_ids,
685};