blob: 7baf67d3c76983d2a8cf81318bad25e86ff52b97 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauer8e073822012-04-04 00:07:22 +02003
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
Kyösti Mälkkidf128a52019-09-21 18:35:37 +03007#include <device/pci_def.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +02009#include <device/pciexp.h>
10#include <device/pci_ids.h>
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010011#include <southbridge/intel/common/pciehp.h>
Patrick Rudolph604f6982017-06-07 09:46:52 +020012#include <assert.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030013
14#include "chip.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020015#include "pch.h"
16
Stefan Reinauer8e073822012-04-04 00:07:22 +020017static void pch_pcie_pm_early(struct device *dev)
18{
19 u16 link_width_p0, link_width_p4;
20 u8 slot_power_limit = 10; /* 10W for x1 */
21 u32 reg32;
22 u8 reg8;
23
Duncan Laurie4aca5d72012-04-27 10:58:22 -070024 reg32 = RCBA32(RPC);
25
26 /* Port 0-3 link aggregation from PCIEPCS1[1:0] soft strap */
27 switch (reg32 & 3) {
28 case 3:
29 link_width_p0 = 4;
30 break;
31 case 1:
32 case 2:
33 link_width_p0 = 2;
34 break;
35 case 0:
36 default:
37 link_width_p0 = 1;
38 }
39
40 /* Port 4-7 link aggregation from PCIEPCS2[1:0] soft strap */
41 switch ((reg32 >> 2) & 3) {
42 case 3:
43 link_width_p4 = 4;
44 break;
45 case 1:
46 case 2:
47 link_width_p4 = 2;
48 break;
49 case 0:
50 default:
51 link_width_p4 = 1;
52 }
Stefan Reinauer8e073822012-04-04 00:07:22 +020053
54 /* Enable dynamic clock gating where needed */
55 reg8 = pci_read_config8(dev, 0xe1);
56 switch (PCI_FUNC(dev->path.pci.devfn)) {
57 case 0: /* Port 0 */
58 if (link_width_p0 == 4)
59 slot_power_limit = 40; /* 40W for x4 */
60 else if (link_width_p0 == 2)
61 slot_power_limit = 20; /* 20W for x2 */
Duncan Laurie4aca5d72012-04-27 10:58:22 -070062 reg8 |= 0x3f;
63 break;
Stefan Reinauer8e073822012-04-04 00:07:22 +020064 case 4: /* Port 4 */
65 if (link_width_p4 == 4)
66 slot_power_limit = 40; /* 40W for x4 */
67 else if (link_width_p4 == 2)
68 slot_power_limit = 20; /* 20W for x2 */
69 reg8 |= 0x3f;
70 break;
71 case 1: /* Port 1 only if Port 0 is x1 */
72 if (link_width_p0 == 1)
73 reg8 |= 0x3;
74 break;
75 case 2: /* Port 2 only if Port 0 is x1 or x2 */
76 case 3: /* Port 3 only if Port 0 is x1 or x2 */
77 if (link_width_p0 <= 2)
78 reg8 |= 0x3;
79 break;
80 case 5: /* Port 5 only if Port 4 is x1 */
81 if (link_width_p4 == 1)
82 reg8 |= 0x3;
83 break;
84 case 6: /* Port 7 only if Port 4 is x1 or x2 */
85 case 7: /* Port 7 only if Port 4 is x1 or x2 */
86 if (link_width_p4 <= 2)
87 reg8 |= 0x3;
88 break;
89 }
90 pci_write_config8(dev, 0xe1, reg8);
91
92 /* Set 0xE8[0] = 1 */
93 reg32 = pci_read_config32(dev, 0xe8);
94 reg32 |= 1;
95 pci_write_config32(dev, 0xe8, reg32);
96
97 /* Adjust Common Clock exit latency */
98 reg32 = pci_read_config32(dev, 0xd8);
99 reg32 &= ~(1 << 17);
100 reg32 |= (1 << 16) | (1 << 15);
101 reg32 &= ~(1 << 31); /* Disable PME# SCI for native PME handling */
102 pci_write_config32(dev, 0xd8, reg32);
103
104 /* Adjust ASPM L1 exit latency */
105 reg32 = pci_read_config32(dev, 0x4c);
106 reg32 &= ~((1 << 17) | (1 << 16) | (1 << 15));
Patrick Rudolph4f8b1082019-07-14 11:54:58 +0200107 if (RCBA32(CIR9) & (1 << 16)) {
Stefan Reinauer8e073822012-04-04 00:07:22 +0200108 /* If RCBA+2320[15]=1 set ASPM L1 to 8-16us */
109 reg32 |= (1 << 17);
110 } else {
111 /* Else set ASPM L1 to 2-4us */
112 reg32 |= (1 << 16);
113 }
114 pci_write_config32(dev, 0x4c, reg32);
115
116 /* Set slot power limit as configured above */
117 reg32 = pci_read_config32(dev, 0x54);
118 reg32 &= ~((1 << 15) | (1 << 16)); /* 16:15 = Slot power scale */
119 reg32 &= ~(0xff << 7); /* 14:7 = Slot power limit */
120 reg32 |= (slot_power_limit << 7);
121 pci_write_config32(dev, 0x54, reg32);
122}
123
124static void pch_pcie_pm_late(struct device *dev)
125{
Marc Jones4adc8cd2012-10-31 16:24:37 -0600126 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
127 enum aspm_type apmc = 0;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200128 u32 reg32;
129
130 /* Set 0x314 = 0x743a361b */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300131 pci_write_config32(dev, 0x314, 0x743a361b);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200132
133 /* Set 0x318[31:16] = 0x1414 */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300134 reg32 = pci_read_config32(dev, 0x318);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200135 reg32 &= 0x0000ffff;
136 reg32 |= 0x14140000;
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300137 pci_write_config32(dev, 0x318, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200138
139 /* Set 0x324[5] = 1 */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300140 reg32 = pci_read_config32(dev, 0x324);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200141 reg32 |= (1 << 5);
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300142 pci_write_config32(dev, 0x324, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200143
144 /* Set 0x330[7:0] = 0x40 */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300145 reg32 = pci_read_config32(dev, 0x330);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200146 reg32 &= ~(0xff);
147 reg32 |= 0x40;
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300148 pci_write_config32(dev, 0x330, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200149
150 /* Set 0x33C[24:0] = 0x854c74 */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300151 reg32 = pci_read_config32(dev, 0x33c);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200152 reg32 &= 0xff000000;
153 reg32 |= 0x00854c74;
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300154 pci_write_config32(dev, 0x33c, reg32);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200155
156 /* No IO-APIC, Disable EOI forwarding */
157 reg32 = pci_read_config32(dev, 0xd4);
158 reg32 |= (1 << 1);
159 pci_write_config32(dev, 0xd4, reg32);
160
Marc Jones4adc8cd2012-10-31 16:24:37 -0600161 /* Check for a rootport ASPM override */
162 switch (PCI_FUNC(dev->path.pci.devfn)) {
163 case 0:
164 apmc = config->pcie_aspm_f0;
165 break;
166 case 1:
167 apmc = config->pcie_aspm_f1;
168 break;
169 case 2:
170 apmc = config->pcie_aspm_f2;
171 break;
172 case 3:
173 apmc = config->pcie_aspm_f3;
174 break;
175 case 4:
176 apmc = config->pcie_aspm_f4;
177 break;
178 case 5:
179 apmc = config->pcie_aspm_f5;
180 break;
181 case 6:
182 apmc = config->pcie_aspm_f6;
183 break;
184 case 7:
185 apmc = config->pcie_aspm_f7;
186 break;
187 }
188
189 /* Setup the override or get the real ASPM setting */
190 if (apmc) {
191 reg32 = pci_read_config32(dev, 0xd4);
192 reg32 |= (apmc << 2) | (1 << 4);
193 pci_write_config32(dev, 0xd4, reg32);
194 } else {
195 apmc = pci_read_config32(dev, 0x50) & 3;
196 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200197
198 /* If both L0s and L1 enabled then set root port 0xE8[1]=1 */
199 if (apmc == PCIE_ASPM_BOTH) {
200 reg32 = pci_read_config32(dev, 0xe8);
201 reg32 |= (1 << 1);
202 pci_write_config32(dev, 0xe8, reg32);
203 }
204}
205
206static void pci_init(struct device *dev)
207{
208 u16 reg16;
209 u32 reg32;
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100210 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200211
212 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
213
214 /* Enable Bus Master */
215 reg32 = pci_read_config32(dev, PCI_COMMAND);
216 reg32 |= PCI_COMMAND_MASTER;
217 pci_write_config32(dev, PCI_COMMAND, reg32);
218
219 /* Set Cache Line Size to 0x10 */
220 // This has no effect but the OS might expect it
221 pci_write_config8(dev, 0x0c, 0x10);
222
Kyösti Mälkkidf128a52019-09-21 18:35:37 +0300223 reg16 = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
224 reg16 &= ~PCI_BRIDGE_CTL_PARITY;
225 reg16 |= PCI_BRIDGE_CTL_NO_ISA;
226 pci_write_config16(dev, PCI_BRIDGE_CONTROL, reg16);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200227
228#ifdef EVEN_MORE_DEBUG
229 reg32 = pci_read_config32(dev, 0x20);
230 printk(BIOS_SPEW, " MBL = 0x%08x\n", reg32);
231 reg32 = pci_read_config32(dev, 0x24);
232 printk(BIOS_SPEW, " PMBL = 0x%08x\n", reg32);
233 reg32 = pci_read_config32(dev, 0x28);
234 printk(BIOS_SPEW, " PMBU32 = 0x%08x\n", reg32);
235 reg32 = pci_read_config32(dev, 0x2c);
236 printk(BIOS_SPEW, " PMLU32 = 0x%08x\n", reg32);
237#endif
238
239 /* Clear errors in status registers */
240 reg16 = pci_read_config16(dev, 0x06);
241 //reg16 |= 0xf900;
242 pci_write_config16(dev, 0x06, reg16);
243
244 reg16 = pci_read_config16(dev, 0x1e);
245 //reg16 |= 0xf900;
246 pci_write_config16(dev, 0x1e, reg16);
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100247
248 /* Enable expresscard hotplug events. */
249 if (config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
250 pci_write_config32(dev, 0xd8,
251 pci_read_config32(dev, 0xd8)
252 | (1 << 30));
253 pci_write_config16(dev, 0x42, 0x142);
254 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200255}
256
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200257static void pch_pcie_enable(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +0200258{
259 /* Power Management init before enumeration */
260 pch_pcie_pm_early(dev);
261}
262
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200263static void pch_pciexp_scan_bridge(struct device *dev)
Marc Jones4adc8cd2012-10-31 16:24:37 -0600264{
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100265 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
Marc Jones4adc8cd2012-10-31 16:24:37 -0600266
267 /* Normal PCIe Scan */
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200268 pciexp_scan_bridge(dev);
Marc Jones4adc8cd2012-10-31 16:24:37 -0600269
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100270 if (config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
271 intel_acpi_pcie_hotplug_scan_slot(dev->link_list);
272 }
273
Marc Jones4adc8cd2012-10-31 16:24:37 -0600274 /* Late Power Management init after bridge device enumeration */
275 pch_pcie_pm_late(dev);
Marc Jones4adc8cd2012-10-31 16:24:37 -0600276}
277
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600278static const char *pch_pcie_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +0200279{
280 ASSERT(dev);
281
282 if (PCI_SLOT(dev->path.pci.devfn) == 0x1c) {
283 static const char *names[] = { "RP01",
284 "RP02",
285 "RP03",
286 "RP04",
287 "RP05",
288 "RP06",
289 "RP07",
290 "RP08"};
291
292 return names[PCI_FUNC(dev->path.pci.devfn)];
293 }
294
295 return NULL;
296}
297
Stefan Reinauer8e073822012-04-04 00:07:22 +0200298static struct pci_operations pci_ops = {
Subrata Banik15ccbf02019-03-20 15:09:44 +0530299 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200300};
301
302static struct device_operations device_ops = {
303 .read_resources = pci_bus_read_resources,
304 .set_resources = pci_dev_set_resources,
305 .enable_resources = pci_bus_enable_resources,
306 .init = pci_init,
307 .enable = pch_pcie_enable,
Marc Jones4adc8cd2012-10-31 16:24:37 -0600308 .scan_bus = pch_pciexp_scan_bridge,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200309 .acpi_name = pch_pcie_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200310 .ops_pci = &pci_ops,
311};
312
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700313static const unsigned short pci_device_ids[] = { 0x1c10, 0x1c12, 0x1c14, 0x1c16,
314 0x1c18, 0x1c1a, 0x1c1c, 0x1c1e,
315 0x1e10, 0x1e12, 0x1e14, 0x1e16,
316 0x1e18, 0x1e1a, 0x1e1c, 0x1e1e,
317 0 };
Stefan Reinauer8e073822012-04-04 00:07:22 +0200318
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700319static const struct pci_driver pch_pcie __pci_driver = {
320 .ops = &device_ops,
321 .vendor = PCI_VENDOR_ID_INTEL,
322 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200323};