1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <device/device.h>
5 #include <device/pci.h>
6 #include <device/pci_ops.h>
7 #include <device/pciexp.h>
8 #include <device/pci_ids.h>
9 #include <southbridge/intel/common/pciehp.h>
15 static const char *pch_pcie_acpi_name(const struct device
*dev
)
19 if (PCI_SLOT(dev
->path
.pci
.devfn
) == 0x1c) {
20 static const char *names
[] = { "RP01",
29 return names
[PCI_FUNC(dev
->path
.pci
.devfn
)];
35 static bool pci_is_hotplugable(struct device
*dev
)
37 struct southbridge_intel_bd82x6x_config
*config
= dev
->chip_info
;
39 return config
&& config
->pcie_hotplug_map
[PCI_FUNC(dev
->path
.pci
.devfn
)];
42 static void pch_pcie_pm_early(struct device
*dev
)
44 u16 link_width_p0
, link_width_p4
;
45 struct device
*child
= NULL
;
46 u8 slot_power_limit
= 10; /* 10W for x1 */
47 static u8 slot_number
= 1;
53 /* Port 0-3 link aggregation from PCIEPCS1[1:0] soft strap */
67 /* Port 4-7 link aggregation from PCIEPCS2[1:0] soft strap */
68 switch ((reg32
>> 2) & 3) {
81 /* Enable dynamic clock gating where needed */
82 reg8
= pci_read_config8(dev
, 0xe1);
83 switch (PCI_FUNC(dev
->path
.pci
.devfn
)) {
85 if (link_width_p0
== 4)
86 slot_power_limit
= 40; /* 40W for x4 */
87 else if (link_width_p0
== 2)
88 slot_power_limit
= 20; /* 20W for x2 */
92 if (link_width_p4
== 4)
93 slot_power_limit
= 40; /* 40W for x4 */
94 else if (link_width_p4
== 2)
95 slot_power_limit
= 20; /* 20W for x2 */
98 case 1: /* Port 1 only if Port 0 is x1 */
99 if (link_width_p0
== 1)
102 case 2: /* Port 2 only if Port 0 is x1 or x2 */
103 case 3: /* Port 3 only if Port 0 is x1 or x2 */
104 if (link_width_p0
<= 2)
107 case 5: /* Port 5 only if Port 4 is x1 */
108 if (link_width_p4
== 1)
111 case 6: /* Port 7 only if Port 4 is x1 or x2 */
112 case 7: /* Port 7 only if Port 4 is x1 or x2 */
113 if (link_width_p4
<= 2)
117 pci_write_config8(dev
, 0xe1, reg8
);
119 /* Set 0xE8[0] = 1 */
120 pci_or_config32(dev
, 0xe8, 1);
122 /* Adjust Common Clock exit latency */
123 reg32
= pci_read_config32(dev
, 0xd8);
125 reg32
|= (1 << 16) | (1 << 15);
126 reg32
&= ~(1 << 31); /* Disable PME# SCI for native PME handling */
127 pci_write_config32(dev
, 0xd8, reg32
);
129 cap
= pci_find_capability(dev
, PCI_CAP_ID_PCIE
);
131 /* Adjust ASPM L1 exit latency */
132 reg32
= pci_read_config32(dev
, cap
+ PCI_EXP_LNKCAP
);
133 reg32
&= ~PCI_EXP_LNKCAP_L1EL
;
134 if (RCBA32(CIR9
) & (1 << 16)) {
135 /* If RCBA+2320[15]=1 set ASPM L1 to 8-16us */
138 /* Else set ASPM L1 to 2-4us */
141 pci_write_config32(dev
, cap
+ PCI_EXP_LNKCAP
, reg32
);
144 * PCI device enumeration hasn't started yet, thus any downstream device here
145 * must be a static device from devicetree.cb.
146 * If one is found assume it's an integrated device and not a PCIe slot.
149 child
= pcidev_path_behind(dev
->downstream
, PCI_DEVFN(0, 0));
151 /* Set slot power limit as configured above */
152 reg32
= pci_read_config32(dev
, cap
+ PCI_EXP_SLTCAP
);
153 if (pci_is_hotplugable(dev
))
154 reg32
|= (PCI_EXP_SLTCAP_HPS
| PCI_EXP_SLTCAP_HPC
);
156 reg32
&= ~(PCI_EXP_SLTCAP_HPS
| PCI_EXP_SLTCAP_HPC
);
157 reg32
&= ~PCI_EXP_SLTCAP_SPLS
; /* 16:15 = Slot power scale */
158 reg32
&= ~PCI_EXP_SLTCAP_SPLV
; /* 14:7 = Slot power limit */
159 reg32
&= ~PCI_EXP_SLTCAP_PSN
;
160 if (!child
|| !child
->on_mainboard
) {
161 /* Only PCIe slots have a power limit and slot number */
162 reg32
|= (slot_power_limit
<< 7);
163 reg32
|= (slot_number
++ << 19);
165 pci_write_config32(dev
, cap
+ PCI_EXP_SLTCAP
, reg32
);
168 static void pch_pcie_pm_late(struct device
*dev
)
170 struct southbridge_intel_bd82x6x_config
*config
= dev
->chip_info
;
171 enum aspm_type apmc
= 0;
173 /* Set 0x314 = 0x743a361b */
174 pci_write_config32(dev
, 0x314, 0x743a361b);
176 /* Set 0x318[31:16] = 0x1414 */
177 pci_update_config32(dev
, 0x318, 0x0000ffff, 0x14140000);
179 /* Set 0x324[5] = 1 */
180 pci_or_config32(dev
, 0x324, 1 << 5);
182 /* Set 0x330[7:0] = 0x40 */
183 pci_update_config32(dev
, 0x330, ~0xff, 0x40);
185 /* Set 0x33C[24:0] = 0x854c74 */
186 pci_update_config32(dev
, 0x33c, 0xff000000, 0x00854c74);
188 /* No IO-APIC, Disable EOI forwarding */
189 pci_or_config32(dev
, 0xd4, 1 << 1);
191 /* Check for a rootport ASPM override */
192 apmc
= config
->pcie_aspm
[PCI_FUNC(dev
->path
.pci
.devfn
)];
194 /* Setup the override or get the real ASPM setting */
196 pci_or_config32(dev
, 0xd4, (apmc
<< 2) | (1 << 4));
199 apmc
= pci_read_config32(dev
, 0x50) & 3;
202 /* If both L0s and L1 enabled then set root port 0xE8[1]=1 */
203 if (apmc
== PCIE_ASPM_BOTH
)
204 pci_or_config32(dev
, 0xe8, 1 << 1);
207 static void pci_init(struct device
*dev
)
211 printk(BIOS_DEBUG
, "Initializing PCH PCIe bridge.\n");
213 /* Enable Bus Master */
214 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
216 /* Set Cache Line Size to 0x10 */
217 // This has no effect but the OS might expect it
218 pci_write_config8(dev
, 0x0c, 0x10);
220 pci_and_config16(dev
, PCI_BRIDGE_CONTROL
, ~PCI_BRIDGE_CTL_PARITY
);
222 /* Clear errors in status registers. FIXME: Do something? */
223 reg16
= pci_read_config16(dev
, 0x06);
225 pci_write_config16(dev
, 0x06, reg16
);
227 reg16
= pci_read_config16(dev
, 0x1e);
229 pci_write_config16(dev
, 0x1e, reg16
);
231 /* Enable expresscard hotplug events. */
232 if (pci_is_hotplugable(dev
))
233 pci_or_config32(dev
, 0xd8, 1 << 30);
236 static void pch_pcie_enable(struct device
*dev
)
238 /* Power Management init before enumeration */
239 pch_pcie_pm_early(dev
);
242 static void pch_pciexp_scan_bridge(struct device
*dev
)
244 uint32_t cap
= pci_find_capability(dev
, PCI_CAP_ID_PCIE
);
246 if (CONFIG(PCIEXP_HOTPLUG
) && pci_is_hotplugable(dev
)) {
247 pciexp_hotplug_scan_bridge(dev
);
249 /* Normal PCIe Scan */
250 pciexp_scan_bridge(dev
);
252 if ((pci_read_config16(dev
, cap
+ PCI_EXP_SLTSTA
) & PCI_EXP_SLTSTA_PDS
) &&
253 !dev_is_active_bridge(dev
))
254 printk(BIOS_WARNING
, "%s: Has a slow downstream device. Enumeration failed.\n",
257 /* Late Power Management init after bridge device enumeration */
258 pch_pcie_pm_late(dev
);
261 struct device_operations bd82x6x_pcie_rp_ops
= {
262 .read_resources
= pci_bus_read_resources
,
263 .set_resources
= pci_dev_set_resources
,
264 .enable_resources
= pci_bus_enable_resources
,
266 .enable
= pch_pcie_enable
,
267 .scan_bus
= pch_pciexp_scan_bridge
,
268 .acpi_name
= pch_pcie_acpi_name
,
269 .ops_pci
= &pci_dev_ops_pci
,