blob: a85b2619ad980147cb3d0f8f3d42ea597532be0e [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer8e073822012-04-04 00:07:22 +02002
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
Kyösti Mälkkidf128a52019-09-21 18:35:37 +03006#include <device/pci_def.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +02008#include <device/pciexp.h>
9#include <device/pci_ids.h>
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010010#include <southbridge/intel/common/pciehp.h>
Patrick Rudolph604f6982017-06-07 09:46:52 +020011#include <assert.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030012
13#include "chip.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020014#include "pch.h"
15
Angel Pons7333ea92020-06-08 15:24:32 +020016static const char *pch_pcie_acpi_name(const struct device *dev)
17{
18 ASSERT(dev);
19
20 if (PCI_SLOT(dev->path.pci.devfn) == 0x1c) {
21 static const char *names[] = { "RP01",
22 "RP02",
23 "RP03",
24 "RP04",
25 "RP05",
26 "RP06",
27 "RP07",
28 "RP08"};
29
30 return names[PCI_FUNC(dev->path.pci.devfn)];
31 }
32
33 return NULL;
34}
35
Stefan Reinauer8e073822012-04-04 00:07:22 +020036static void pch_pcie_pm_early(struct device *dev)
37{
38 u16 link_width_p0, link_width_p4;
39 u8 slot_power_limit = 10; /* 10W for x1 */
40 u32 reg32;
41 u8 reg8;
42
Duncan Laurie4aca5d72012-04-27 10:58:22 -070043 reg32 = RCBA32(RPC);
44
45 /* Port 0-3 link aggregation from PCIEPCS1[1:0] soft strap */
46 switch (reg32 & 3) {
47 case 3:
48 link_width_p0 = 4;
49 break;
50 case 1:
51 case 2:
52 link_width_p0 = 2;
53 break;
54 case 0:
55 default:
56 link_width_p0 = 1;
57 }
58
59 /* Port 4-7 link aggregation from PCIEPCS2[1:0] soft strap */
60 switch ((reg32 >> 2) & 3) {
61 case 3:
62 link_width_p4 = 4;
63 break;
64 case 1:
65 case 2:
66 link_width_p4 = 2;
67 break;
68 case 0:
69 default:
70 link_width_p4 = 1;
71 }
Stefan Reinauer8e073822012-04-04 00:07:22 +020072
73 /* Enable dynamic clock gating where needed */
74 reg8 = pci_read_config8(dev, 0xe1);
75 switch (PCI_FUNC(dev->path.pci.devfn)) {
76 case 0: /* Port 0 */
77 if (link_width_p0 == 4)
78 slot_power_limit = 40; /* 40W for x4 */
79 else if (link_width_p0 == 2)
80 slot_power_limit = 20; /* 20W for x2 */
Duncan Laurie4aca5d72012-04-27 10:58:22 -070081 reg8 |= 0x3f;
82 break;
Stefan Reinauer8e073822012-04-04 00:07:22 +020083 case 4: /* Port 4 */
84 if (link_width_p4 == 4)
85 slot_power_limit = 40; /* 40W for x4 */
86 else if (link_width_p4 == 2)
87 slot_power_limit = 20; /* 20W for x2 */
88 reg8 |= 0x3f;
89 break;
90 case 1: /* Port 1 only if Port 0 is x1 */
91 if (link_width_p0 == 1)
92 reg8 |= 0x3;
93 break;
94 case 2: /* Port 2 only if Port 0 is x1 or x2 */
95 case 3: /* Port 3 only if Port 0 is x1 or x2 */
96 if (link_width_p0 <= 2)
97 reg8 |= 0x3;
98 break;
99 case 5: /* Port 5 only if Port 4 is x1 */
100 if (link_width_p4 == 1)
101 reg8 |= 0x3;
102 break;
103 case 6: /* Port 7 only if Port 4 is x1 or x2 */
104 case 7: /* Port 7 only if Port 4 is x1 or x2 */
105 if (link_width_p4 <= 2)
106 reg8 |= 0x3;
107 break;
108 }
109 pci_write_config8(dev, 0xe1, reg8);
110
111 /* Set 0xE8[0] = 1 */
Angel Ponsc803f652020-06-07 22:09:01 +0200112 pci_or_config32(dev, 0xe8, 1);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200113
114 /* Adjust Common Clock exit latency */
115 reg32 = pci_read_config32(dev, 0xd8);
116 reg32 &= ~(1 << 17);
117 reg32 |= (1 << 16) | (1 << 15);
118 reg32 &= ~(1 << 31); /* Disable PME# SCI for native PME handling */
119 pci_write_config32(dev, 0xd8, reg32);
120
121 /* Adjust ASPM L1 exit latency */
122 reg32 = pci_read_config32(dev, 0x4c);
123 reg32 &= ~((1 << 17) | (1 << 16) | (1 << 15));
Patrick Rudolph4f8b1082019-07-14 11:54:58 +0200124 if (RCBA32(CIR9) & (1 << 16)) {
Stefan Reinauer8e073822012-04-04 00:07:22 +0200125 /* If RCBA+2320[15]=1 set ASPM L1 to 8-16us */
126 reg32 |= (1 << 17);
127 } else {
128 /* Else set ASPM L1 to 2-4us */
129 reg32 |= (1 << 16);
130 }
131 pci_write_config32(dev, 0x4c, reg32);
132
133 /* Set slot power limit as configured above */
134 reg32 = pci_read_config32(dev, 0x54);
135 reg32 &= ~((1 << 15) | (1 << 16)); /* 16:15 = Slot power scale */
136 reg32 &= ~(0xff << 7); /* 14:7 = Slot power limit */
137 reg32 |= (slot_power_limit << 7);
138 pci_write_config32(dev, 0x54, reg32);
139}
140
141static void pch_pcie_pm_late(struct device *dev)
142{
Marc Jones4adc8cd2012-10-31 16:24:37 -0600143 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
144 enum aspm_type apmc = 0;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200145
146 /* Set 0x314 = 0x743a361b */
Kyösti Mälkkifd98c652013-07-26 08:50:53 +0300147 pci_write_config32(dev, 0x314, 0x743a361b);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200148
149 /* Set 0x318[31:16] = 0x1414 */
Angel Ponsc803f652020-06-07 22:09:01 +0200150 pci_update_config32(dev, 0x318, 0x0000ffff, 0x14140000);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200151
152 /* Set 0x324[5] = 1 */
Angel Ponsc803f652020-06-07 22:09:01 +0200153 pci_or_config32(dev, 0x324, 1 << 5);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200154
155 /* Set 0x330[7:0] = 0x40 */
Angel Ponsc803f652020-06-07 22:09:01 +0200156 pci_update_config32(dev, 0x330, ~0xff, 0x40);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200157
158 /* Set 0x33C[24:0] = 0x854c74 */
Angel Ponsc803f652020-06-07 22:09:01 +0200159 pci_update_config32(dev, 0x33c, 0xff000000, 0x00854c74);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200160
161 /* No IO-APIC, Disable EOI forwarding */
Angel Ponsc803f652020-06-07 22:09:01 +0200162 pci_or_config32(dev, 0xd4, 1 << 1);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200163
Marc Jones4adc8cd2012-10-31 16:24:37 -0600164 /* Check for a rootport ASPM override */
Angel Pons02396842021-06-05 12:34:23 +0200165 apmc = config->pcie_aspm[PCI_FUNC(dev->path.pci.devfn)];
Marc Jones4adc8cd2012-10-31 16:24:37 -0600166
167 /* Setup the override or get the real ASPM setting */
168 if (apmc) {
Angel Ponsc803f652020-06-07 22:09:01 +0200169 pci_or_config32(dev, 0xd4, (apmc << 2) | (1 << 4));
170
Marc Jones4adc8cd2012-10-31 16:24:37 -0600171 } else {
172 apmc = pci_read_config32(dev, 0x50) & 3;
173 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200174
175 /* If both L0s and L1 enabled then set root port 0xE8[1]=1 */
Angel Ponsc803f652020-06-07 22:09:01 +0200176 if (apmc == PCIE_ASPM_BOTH)
177 pci_or_config32(dev, 0xe8, 1 << 1);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200178}
179
180static void pci_init(struct device *dev)
181{
182 u16 reg16;
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100183 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
Stefan Reinauer8e073822012-04-04 00:07:22 +0200184
185 printk(BIOS_DEBUG, "Initializing PCH PCIe bridge.\n");
186
187 /* Enable Bus Master */
Elyes HAOUAS729c0692020-04-28 19:50:44 +0200188 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200189
190 /* Set Cache Line Size to 0x10 */
191 // This has no effect but the OS might expect it
192 pci_write_config8(dev, 0x0c, 0x10);
193
Angel Ponsb82b4312020-07-23 23:32:46 +0200194 pci_and_config16(dev, PCI_BRIDGE_CONTROL, ~PCI_BRIDGE_CTL_PARITY);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200195
Angel Ponsc803f652020-06-07 22:09:01 +0200196 /* Clear errors in status registers. FIXME: Do something? */
Stefan Reinauer8e073822012-04-04 00:07:22 +0200197 reg16 = pci_read_config16(dev, 0x06);
198 //reg16 |= 0xf900;
199 pci_write_config16(dev, 0x06, reg16);
200
201 reg16 = pci_read_config16(dev, 0x1e);
202 //reg16 |= 0xf900;
203 pci_write_config16(dev, 0x1e, reg16);
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100204
205 /* Enable expresscard hotplug events. */
206 if (config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
Angel Ponsc803f652020-06-07 22:09:01 +0200207 pci_or_config32(dev, 0xd8, 1 << 30);
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100208 pci_write_config16(dev, 0x42, 0x142);
209 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200210}
211
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200212static void pch_pcie_enable(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +0200213{
214 /* Power Management init before enumeration */
215 pch_pcie_pm_early(dev);
216}
217
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200218static void pch_pciexp_scan_bridge(struct device *dev)
Marc Jones4adc8cd2012-10-31 16:24:37 -0600219{
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100220 struct southbridge_intel_bd82x6x_config *config = dev->chip_info;
Marc Jones4adc8cd2012-10-31 16:24:37 -0600221
Arthur Heymansa560c712021-02-24 22:27:44 +0100222 if (CONFIG(PCIEXP_HOTPLUG) && config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
223 pciexp_hotplug_scan_bridge(dev);
224 } else {
225 /* Normal PCIe Scan */
226 pciexp_scan_bridge(dev);
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100227 }
228
Marc Jones4adc8cd2012-10-31 16:24:37 -0600229 /* Late Power Management init after bridge device enumeration */
230 pch_pcie_pm_late(dev);
Marc Jones4adc8cd2012-10-31 16:24:37 -0600231}
232
Stefan Reinauer8e073822012-04-04 00:07:22 +0200233static struct device_operations device_ops = {
234 .read_resources = pci_bus_read_resources,
235 .set_resources = pci_dev_set_resources,
236 .enable_resources = pci_bus_enable_resources,
237 .init = pci_init,
238 .enable = pch_pcie_enable,
Marc Jones4adc8cd2012-10-31 16:24:37 -0600239 .scan_bus = pch_pciexp_scan_bridge,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200240 .acpi_name = pch_pcie_acpi_name,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200241 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200242};
243
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700244static const unsigned short pci_device_ids[] = { 0x1c10, 0x1c12, 0x1c14, 0x1c16,
245 0x1c18, 0x1c1a, 0x1c1c, 0x1c1e,
246 0x1e10, 0x1e12, 0x1e14, 0x1e16,
247 0x1e18, 0x1e1a, 0x1e1c, 0x1e1e,
248 0 };
Stefan Reinauer8e073822012-04-04 00:07:22 +0200249
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700250static const struct pci_driver pch_pcie __pci_driver = {
251 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100252 .vendor = PCI_VID_INTEL,
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700253 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200254};