blob: 11892075390480257013d210c1731c22662ac895 [file] [log] [blame]
Angel Ponsc74dae92020-04-02 23:48:16 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00002
3#include <console/console.h>
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +02004#include <commonlib/helpers.h>
Duncan Laurie90dcdd42011-10-25 14:15:11 -07005#include <delay.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00006#include <device/device.h>
7#include <device/pci.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +02008#include <device/pci_ops.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00009#include <device/pciexp.h>
10
Elyes HAOUASb1fa2872018-05-02 21:11:38 +020011unsigned int pciexp_find_extended_cap(struct device *dev, unsigned int cap)
Kenji Chen31c6e632014-10-04 01:14:44 +080012{
13 unsigned int this_cap_offset, next_cap_offset;
14 unsigned int this_cap, cafe;
15
16 this_cap_offset = PCIE_EXT_CAP_OFFSET;
17 do {
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +020018 this_cap = pci_read_config32(dev, this_cap_offset);
Kenji Chen31c6e632014-10-04 01:14:44 +080019 next_cap_offset = this_cap >> 20;
20 this_cap &= 0xffff;
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +020021 cafe = pci_read_config32(dev, this_cap_offset + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +080022 cafe &= 0xffff;
23 if (this_cap == cap)
24 return this_cap_offset;
25 else if (cafe == cap)
26 return this_cap_offset + 4;
27 else
28 this_cap_offset = next_cap_offset;
29 } while (next_cap_offset != 0);
30
31 return 0;
32}
Kenji Chen31c6e632014-10-04 01:14:44 +080033
Duncan Laurie90dcdd42011-10-25 14:15:11 -070034/*
35 * Re-train a PCIe link
36 */
37#define PCIE_TRAIN_RETRY 10000
Martin Roth38ddbfb2019-10-23 21:41:00 -060038static int pciexp_retrain_link(struct device *dev, unsigned int cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -070039{
Youness Alaouibb5fb642017-05-03 17:57:13 -040040 unsigned int try;
Duncan Laurie90dcdd42011-10-25 14:15:11 -070041 u16 lnk;
42
Youness Alaouibb5fb642017-05-03 17:57:13 -040043 /*
44 * Implementation note (page 633) in PCIe Specification 3.0 suggests
45 * polling the Link Training bit in the Link Status register until the
46 * value returned is 0 before setting the Retrain Link bit to 1.
47 * This is meant to avoid a race condition when using the
48 * Retrain Link mechanism.
49 */
50 for (try = PCIE_TRAIN_RETRY; try > 0; try--) {
51 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKSTA);
52 if (!(lnk & PCI_EXP_LNKSTA_LT))
53 break;
54 udelay(100);
55 }
56 if (try == 0) {
57 printk(BIOS_ERR, "%s: Link Retrain timeout\n", dev_path(dev));
58 return -1;
59 }
60
Duncan Laurie90dcdd42011-10-25 14:15:11 -070061 /* Start link retraining */
62 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKCTL);
63 lnk |= PCI_EXP_LNKCTL_RL;
64 pci_write_config16(dev, cap + PCI_EXP_LNKCTL, lnk);
65
66 /* Wait for training to complete */
Youness Alaouibb5fb642017-05-03 17:57:13 -040067 for (try = PCIE_TRAIN_RETRY; try > 0; try--) {
Duncan Laurie90dcdd42011-10-25 14:15:11 -070068 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKSTA);
69 if (!(lnk & PCI_EXP_LNKSTA_LT))
70 return 0;
71 udelay(100);
72 }
73
74 printk(BIOS_ERR, "%s: Link Retrain timeout\n", dev_path(dev));
75 return -1;
76}
77
78/*
79 * Check the Slot Clock Configuration for root port and endpoint
80 * and enable Common Clock Configuration if possible. If CCC is
81 * enabled the link must be retrained.
82 */
Martin Roth38ddbfb2019-10-23 21:41:00 -060083static void pciexp_enable_common_clock(struct device *root, unsigned int root_cap,
84 struct device *endp, unsigned int endp_cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -070085{
86 u16 root_scc, endp_scc, lnkctl;
87
88 /* Get Slot Clock Configuration for root port */
89 root_scc = pci_read_config16(root, root_cap + PCI_EXP_LNKSTA);
90 root_scc &= PCI_EXP_LNKSTA_SLC;
91
92 /* Get Slot Clock Configuration for endpoint */
93 endp_scc = pci_read_config16(endp, endp_cap + PCI_EXP_LNKSTA);
94 endp_scc &= PCI_EXP_LNKSTA_SLC;
95
96 /* Enable Common Clock Configuration and retrain */
97 if (root_scc && endp_scc) {
98 printk(BIOS_INFO, "Enabling Common Clock Configuration\n");
99
100 /* Set in endpoint */
101 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
102 lnkctl |= PCI_EXP_LNKCTL_CCC;
103 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
104
105 /* Set in root port */
106 lnkctl = pci_read_config16(root, root_cap + PCI_EXP_LNKCTL);
107 lnkctl |= PCI_EXP_LNKCTL_CCC;
108 pci_write_config16(root, root_cap + PCI_EXP_LNKCTL, lnkctl);
109
110 /* Retrain link if CCC was enabled */
111 pciexp_retrain_link(root, root_cap);
112 }
113}
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700114
Martin Roth38ddbfb2019-10-23 21:41:00 -0600115static void pciexp_enable_clock_power_pm(struct device *endp, unsigned int endp_cap)
Kane Chen18cb1342014-10-01 11:13:54 +0800116{
117 /* check if per port clk req is supported in device */
118 u32 endp_ca;
119 u16 lnkctl;
120 endp_ca = pci_read_config32(endp, endp_cap + PCI_EXP_LNKCAP);
121 if ((endp_ca & PCI_EXP_CLK_PM) == 0) {
Arthur Heymans330c46b2017-07-12 19:17:56 +0200122 printk(BIOS_INFO, "PCIE CLK PM is not supported by endpoint\n");
Kane Chen18cb1342014-10-01 11:13:54 +0800123 return;
124 }
125 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
126 lnkctl = lnkctl | PCI_EXP_EN_CLK_PM;
127 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
128}
Kane Chen18cb1342014-10-01 11:13:54 +0800129
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200130static void pciexp_config_max_latency(struct device *root, struct device *dev)
Kenji Chen31c6e632014-10-04 01:14:44 +0800131{
132 unsigned int cap;
133 cap = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_LTR_ID);
Pratik Prajapati0cd0d282015-06-09 12:06:20 -0700134 if ((cap) && (root->ops->ops_pci != NULL) &&
135 (root->ops->ops_pci->set_L1_ss_latency != NULL))
136 root->ops->ops_pci->set_L1_ss_latency(dev, cap + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +0800137}
138
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200139static bool pciexp_is_ltr_supported(struct device *dev, unsigned int cap)
Aamir Bohra2188f572017-09-22 19:07:21 +0530140{
141 unsigned int val;
142
143 val = pci_read_config16(dev, cap + PCI_EXP_DEV_CAP2_OFFSET);
144
145 if (val & LTR_MECHANISM_SUPPORT)
146 return true;
147
148 return false;
149}
150
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200151static void pciexp_configure_ltr(struct device *dev)
Kenji Chen31c6e632014-10-04 01:14:44 +0800152{
153 unsigned int cap;
Aamir Bohra2188f572017-09-22 19:07:21 +0530154
Kenji Chen31c6e632014-10-04 01:14:44 +0800155 cap = pci_find_capability(dev, PCI_CAP_ID_PCIE);
Aamir Bohra2188f572017-09-22 19:07:21 +0530156
157 /*
Elyes HAOUASaeff5122019-12-07 11:57:35 +0100158 * Check if capability pointer is valid and
Aamir Bohra2188f572017-09-22 19:07:21 +0530159 * device supports LTR mechanism.
160 */
161 if (!cap || !pciexp_is_ltr_supported(dev, cap)) {
Pratik Prajapati0cd0d282015-06-09 12:06:20 -0700162 printk(BIOS_INFO, "Failed to enable LTR for dev = %s\n",
Aamir Bohra2188f572017-09-22 19:07:21 +0530163 dev_path(dev));
Pratik Prajapati0cd0d282015-06-09 12:06:20 -0700164 return;
165 }
Aamir Bohra2188f572017-09-22 19:07:21 +0530166
167 cap += PCI_EXP_DEV_CTL_STS2_CAP_OFFSET;
168
169 /* Enable LTR for device */
170 pci_update_config32(dev, cap, ~LTR_MECHANISM_EN, LTR_MECHANISM_EN);
171
172 /* Configure Max Snoop Latency */
173 pciexp_config_max_latency(dev->bus->dev, dev);
174}
175
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200176static void pciexp_enable_ltr(struct device *dev)
Aamir Bohra2188f572017-09-22 19:07:21 +0530177{
178 struct bus *bus;
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200179 struct device *child;
Aamir Bohra2188f572017-09-22 19:07:21 +0530180
181 for (bus = dev->link_list ; bus ; bus = bus->next) {
182 for (child = bus->children; child; child = child->sibling) {
183 pciexp_configure_ltr(child);
184 if (child->ops && child->ops->scan_bus)
185 pciexp_enable_ltr(child);
186 }
187 }
Kenji Chen31c6e632014-10-04 01:14:44 +0800188}
189
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200190static unsigned char pciexp_L1_substate_cal(struct device *dev, unsigned int endp_cap,
Kenji Chen31c6e632014-10-04 01:14:44 +0800191 unsigned int *data)
192{
193 unsigned char mult[4] = {2, 10, 100, 0};
194
195 unsigned int L1SubStateSupport = *data & 0xf;
196 unsigned int comm_mode_rst_time = (*data >> 8) & 0xff;
197 unsigned int power_on_scale = (*data >> 16) & 0x3;
198 unsigned int power_on_value = (*data >> 19) & 0x1f;
199
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200200 unsigned int endp_data = pci_read_config32(dev, endp_cap + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +0800201 unsigned int endp_L1SubStateSupport = endp_data & 0xf;
202 unsigned int endp_comm_mode_restore_time = (endp_data >> 8) & 0xff;
203 unsigned int endp_power_on_scale = (endp_data >> 16) & 0x3;
204 unsigned int endp_power_on_value = (endp_data >> 19) & 0x1f;
205
206 L1SubStateSupport &= endp_L1SubStateSupport;
207
208 if (L1SubStateSupport == 0)
209 return 0;
210
211 if (power_on_value * mult[power_on_scale] <
212 endp_power_on_value * mult[endp_power_on_scale]) {
213 power_on_value = endp_power_on_value;
214 power_on_scale = endp_power_on_scale;
215 }
216 if (comm_mode_rst_time < endp_comm_mode_restore_time)
217 comm_mode_rst_time = endp_comm_mode_restore_time;
218
219 *data = (comm_mode_rst_time << 8) | (power_on_scale << 16)
220 | (power_on_value << 19) | L1SubStateSupport;
221
222 return 1;
223}
224
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200225static void pciexp_L1_substate_commit(struct device *root, struct device *dev,
Kenji Chen31c6e632014-10-04 01:14:44 +0800226 unsigned int root_cap, unsigned int end_cap)
227{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200228 struct device *dev_t;
Kenji Chen31c6e632014-10-04 01:14:44 +0800229 unsigned char L1_ss_ok;
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200230 unsigned int rp_L1_support = pci_read_config32(root, root_cap + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +0800231 unsigned int L1SubStateSupport;
232 unsigned int comm_mode_rst_time;
233 unsigned int power_on_scale;
234 unsigned int endp_power_on_value;
235
236 for (dev_t = dev; dev_t; dev_t = dev_t->sibling) {
237 /*
238 * rp_L1_support is init'd above from root port.
239 * it needs coordination with endpoints to reach in common.
240 * if certain endpoint doesn't support L1 Sub-State, abort
241 * this feature enabling.
242 */
243 L1_ss_ok = pciexp_L1_substate_cal(dev_t, end_cap,
244 &rp_L1_support);
245 if (!L1_ss_ok)
246 return;
247 }
248
249 L1SubStateSupport = rp_L1_support & 0xf;
250 comm_mode_rst_time = (rp_L1_support >> 8) & 0xff;
251 power_on_scale = (rp_L1_support >> 16) & 0x3;
252 endp_power_on_value = (rp_L1_support >> 19) & 0x1f;
253
254 printk(BIOS_INFO, "L1 Sub-State supported from root port %d\n",
255 root->path.pci.devfn >> 3);
256 printk(BIOS_INFO, "L1 Sub-State Support = 0x%x\n", L1SubStateSupport);
257 printk(BIOS_INFO, "CommonModeRestoreTime = 0x%x\n", comm_mode_rst_time);
258 printk(BIOS_INFO, "Power On Value = 0x%x, Power On Scale = 0x%x\n",
259 endp_power_on_value, power_on_scale);
260
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300261 pci_update_config32(root, root_cap + 0x08, ~0xff00,
Kenji Chen31c6e632014-10-04 01:14:44 +0800262 (comm_mode_rst_time << 8));
263
Elyes HAOUASa342f392018-10-17 10:56:26 +0200264 pci_update_config32(root, root_cap + 0x0c, 0xffffff04,
Kenji Chen31c6e632014-10-04 01:14:44 +0800265 (endp_power_on_value << 3) | (power_on_scale));
266
Patrick Georgi9adcbfe2017-12-05 16:36:30 -0500267 /* TODO: 0xa0, 2 are values that work on some chipsets but really
268 * should be determined dynamically by looking at downstream devices.
269 */
270 pci_update_config32(root, root_cap + 0x08,
271 ~(ASPM_LTR_L12_THRESHOLD_VALUE_MASK |
272 ASPM_LTR_L12_THRESHOLD_SCALE_MASK),
273 (0xa0 << ASPM_LTR_L12_THRESHOLD_VALUE_OFFSET) |
274 (2 << ASPM_LTR_L12_THRESHOLD_SCALE_OFFSET));
Kenji Chen31c6e632014-10-04 01:14:44 +0800275
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300276 pci_update_config32(root, root_cap + 0x08, ~0x1f,
Kenji Chen31c6e632014-10-04 01:14:44 +0800277 L1SubStateSupport);
278
279 for (dev_t = dev; dev_t; dev_t = dev_t->sibling) {
Elyes HAOUASa342f392018-10-17 10:56:26 +0200280 pci_update_config32(dev_t, end_cap + 0x0c, 0xffffff04,
Kenji Chen31c6e632014-10-04 01:14:44 +0800281 (endp_power_on_value << 3) | (power_on_scale));
282
Patrick Georgi9adcbfe2017-12-05 16:36:30 -0500283 pci_update_config32(dev_t, end_cap + 0x08,
284 ~(ASPM_LTR_L12_THRESHOLD_VALUE_MASK |
285 ASPM_LTR_L12_THRESHOLD_SCALE_MASK),
286 (0xa0 << ASPM_LTR_L12_THRESHOLD_VALUE_OFFSET) |
287 (2 << ASPM_LTR_L12_THRESHOLD_SCALE_OFFSET));
Kenji Chen31c6e632014-10-04 01:14:44 +0800288
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300289 pci_update_config32(dev_t, end_cap + 0x08, ~0x1f,
Kenji Chen31c6e632014-10-04 01:14:44 +0800290 L1SubStateSupport);
Kenji Chen31c6e632014-10-04 01:14:44 +0800291 }
292}
293
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200294static void pciexp_config_L1_sub_state(struct device *root, struct device *dev)
Kenji Chen31c6e632014-10-04 01:14:44 +0800295{
296 unsigned int root_cap, end_cap;
297
298 /* Do it for function 0 only */
299 if (dev->path.pci.devfn & 0x7)
300 return;
301
302 root_cap = pciexp_find_extended_cap(root, PCIE_EXT_CAP_L1SS_ID);
303 if (!root_cap)
304 return;
305
306 end_cap = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_L1SS_ID);
307 if (!end_cap) {
308 end_cap = pciexp_find_extended_cap(dev, 0xcafe);
309 if (!end_cap)
310 return;
311 }
312
313 pciexp_L1_substate_commit(root, dev, root_cap, end_cap);
314}
Kenji Chen31c6e632014-10-04 01:14:44 +0800315
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700316/*
317 * Determine the ASPM L0s or L1 exit latency for a link
318 * by checking both root port and endpoint and returning
319 * the highest latency value.
320 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600321static int pciexp_aspm_latency(struct device *root, unsigned int root_cap,
322 struct device *endp, unsigned int endp_cap,
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700323 enum aspm_type type)
324{
325 int root_lat = 0, endp_lat = 0;
326 u32 root_lnkcap, endp_lnkcap;
327
328 root_lnkcap = pci_read_config32(root, root_cap + PCI_EXP_LNKCAP);
329 endp_lnkcap = pci_read_config32(endp, endp_cap + PCI_EXP_LNKCAP);
330
331 /* Make sure the link supports this ASPM type by checking
332 * capability bits 11:10 with aspm_type offset by 1 */
333 if (!(root_lnkcap & (1 << (type + 9))) ||
334 !(endp_lnkcap & (1 << (type + 9))))
335 return -1;
336
337 /* Find the one with higher latency */
338 switch (type) {
339 case PCIE_ASPM_L0S:
340 root_lat = (root_lnkcap & PCI_EXP_LNKCAP_L0SEL) >> 12;
341 endp_lat = (endp_lnkcap & PCI_EXP_LNKCAP_L0SEL) >> 12;
342 break;
343 case PCIE_ASPM_L1:
344 root_lat = (root_lnkcap & PCI_EXP_LNKCAP_L1EL) >> 15;
345 endp_lat = (endp_lnkcap & PCI_EXP_LNKCAP_L1EL) >> 15;
346 break;
347 default:
348 return -1;
349 }
350
351 return (endp_lat > root_lat) ? endp_lat : root_lat;
352}
353
354/*
355 * Enable ASPM on PCIe root port and endpoint.
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700356 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600357static void pciexp_enable_aspm(struct device *root, unsigned int root_cap,
358 struct device *endp, unsigned int endp_cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700359{
360 const char *aspm_type_str[] = { "None", "L0s", "L1", "L0s and L1" };
361 enum aspm_type apmc = PCIE_ASPM_NONE;
362 int exit_latency, ok_latency;
363 u16 lnkctl;
364 u32 devcap;
365
Nico Huber570b1832017-08-30 13:38:50 +0200366 if (endp->disable_pcie_aspm)
367 return;
368
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700369 /* Get endpoint device capabilities for acceptable limits */
370 devcap = pci_read_config32(endp, endp_cap + PCI_EXP_DEVCAP);
371
372 /* Enable L0s if it is within endpoint acceptable limit */
373 ok_latency = (devcap & PCI_EXP_DEVCAP_L0S) >> 6;
374 exit_latency = pciexp_aspm_latency(root, root_cap, endp, endp_cap,
375 PCIE_ASPM_L0S);
376 if (exit_latency >= 0 && exit_latency <= ok_latency)
377 apmc |= PCIE_ASPM_L0S;
378
379 /* Enable L1 if it is within endpoint acceptable limit */
380 ok_latency = (devcap & PCI_EXP_DEVCAP_L1) >> 9;
381 exit_latency = pciexp_aspm_latency(root, root_cap, endp, endp_cap,
382 PCIE_ASPM_L1);
383 if (exit_latency >= 0 && exit_latency <= ok_latency)
384 apmc |= PCIE_ASPM_L1;
385
386 if (apmc != PCIE_ASPM_NONE) {
387 /* Set APMC in root port first */
388 lnkctl = pci_read_config16(root, root_cap + PCI_EXP_LNKCTL);
389 lnkctl |= apmc;
390 pci_write_config16(root, root_cap + PCI_EXP_LNKCTL, lnkctl);
391
392 /* Set APMC in endpoint device next */
393 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
394 lnkctl |= apmc;
395 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
396 }
397
398 printk(BIOS_INFO, "ASPM: Enabled %s\n", aspm_type_str[apmc]);
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700399}
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700400
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +0200401/*
402 * Set max payload size of endpoint in accordance with max payload size of root port.
403 */
404static void pciexp_set_max_payload_size(struct device *root, unsigned int root_cap,
405 struct device *endp, unsigned int endp_cap)
406{
407 unsigned int endp_max_payload, root_max_payload, max_payload;
408 u16 endp_devctl, root_devctl;
409 u32 endp_devcap, root_devcap;
410
411 /* Get max payload size supported by endpoint */
412 endp_devcap = pci_read_config32(endp, endp_cap + PCI_EXP_DEVCAP);
413 endp_max_payload = endp_devcap & PCI_EXP_DEVCAP_PAYLOAD;
414
415 /* Get max payload size supported by root port */
416 root_devcap = pci_read_config32(root, root_cap + PCI_EXP_DEVCAP);
417 root_max_payload = root_devcap & PCI_EXP_DEVCAP_PAYLOAD;
418
419 /* Set max payload to smaller of the reported device capability. */
420 max_payload = MIN(endp_max_payload, root_max_payload);
421 if (max_payload > 5) {
422 /* Values 6 and 7 are reserved in PCIe 3.0 specs. */
423 printk(BIOS_ERR, "PCIe: Max_Payload_Size field restricted from %d to 5\n",
424 max_payload);
425 max_payload = 5;
426 }
427
428 endp_devctl = pci_read_config16(endp, endp_cap + PCI_EXP_DEVCTL);
429 endp_devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
430 endp_devctl |= max_payload << 5;
431 pci_write_config16(endp, endp_cap + PCI_EXP_DEVCTL, endp_devctl);
432
433 root_devctl = pci_read_config16(root, root_cap + PCI_EXP_DEVCTL);
434 root_devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
435 root_devctl |= max_payload << 5;
436 pci_write_config16(root, root_cap + PCI_EXP_DEVCTL, root_devctl);
437
438 printk(BIOS_INFO, "PCIe: Max_Payload_Size adjusted to %d\n", (1 << (max_payload + 7)));
439}
440
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200441static void pciexp_tune_dev(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000442{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200443 struct device *root = dev->bus->dev;
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700444 unsigned int root_cap, cap;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000445
446 cap = pci_find_capability(dev, PCI_CAP_ID_PCIE);
Uwe Hermannd453dd02010-10-18 00:00:57 +0000447 if (!cap)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000448 return;
Uwe Hermannd453dd02010-10-18 00:00:57 +0000449
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700450 root_cap = pci_find_capability(root, PCI_CAP_ID_PCIE);
451 if (!root_cap)
452 return;
Stefan Reinauerf6eb88a2010-01-17 13:54:08 +0000453
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700454 /* Check for and enable Common Clock */
Julius Wernercd49cce2019-03-05 16:53:33 -0800455 if (CONFIG(PCIEXP_COMMON_CLOCK))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200456 pciexp_enable_common_clock(root, root_cap, dev, cap);
Uwe Hermanne4870472010-11-04 23:23:47 +0000457
Kane Chen18cb1342014-10-01 11:13:54 +0800458 /* Check if per port CLK req is supported by endpoint*/
Julius Wernercd49cce2019-03-05 16:53:33 -0800459 if (CONFIG(PCIEXP_CLK_PM))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200460 pciexp_enable_clock_power_pm(dev, cap);
Kane Chen18cb1342014-10-01 11:13:54 +0800461
Kenji Chen31c6e632014-10-04 01:14:44 +0800462 /* Enable L1 Sub-State when both root port and endpoint support */
Julius Wernercd49cce2019-03-05 16:53:33 -0800463 if (CONFIG(PCIEXP_L1_SUB_STATE))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200464 pciexp_config_L1_sub_state(root, dev);
Kenji Chen31c6e632014-10-04 01:14:44 +0800465
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700466 /* Check for and enable ASPM */
Julius Wernercd49cce2019-03-05 16:53:33 -0800467 if (CONFIG(PCIEXP_ASPM))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200468 pciexp_enable_aspm(root, root_cap, dev, cap);
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +0200469
470 /* Adjust Max_Payload_Size of link ends. */
471 pciexp_set_max_payload_size(root, root_cap, dev, cap);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000472}
473
Kyösti Mälkkide271a82015-03-18 13:09:47 +0200474void pciexp_scan_bus(struct bus *bus, unsigned int min_devfn,
475 unsigned int max_devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000476{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200477 struct device *child;
Kyösti Mälkkide271a82015-03-18 13:09:47 +0200478 pci_scan_bus(bus, min_devfn, max_devfn);
Uwe Hermannd453dd02010-10-18 00:00:57 +0000479
480 for (child = bus->children; child; child = child->sibling) {
481 if ((child->path.pci.devfn < min_devfn) ||
482 (child->path.pci.devfn > max_devfn)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000483 continue;
484 }
485 pciexp_tune_dev(child);
486 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000487}
488
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200489void pciexp_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000490{
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200491 do_pci_scan_bridge(dev, pciexp_scan_bus);
Aamir Bohra2188f572017-09-22 19:07:21 +0530492 pciexp_enable_ltr(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000493}
494
495/** Default device operations for PCI Express bridges */
496static struct pci_operations pciexp_bus_ops_pci = {
497 .set_subsystem = 0,
498};
499
500struct device_operations default_pciexp_ops_bus = {
501 .read_resources = pci_bus_read_resources,
502 .set_resources = pci_dev_set_resources,
503 .enable_resources = pci_bus_enable_resources,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000504 .scan_bus = pciexp_scan_bridge,
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000505 .reset_bus = pci_bus_reset,
506 .ops_pci = &pciexp_bus_ops_pci,
507};
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600508
509#if CONFIG(PCIEXP_HOTPLUG)
510
511static void pciexp_hotplug_dummy_read_resources(struct device *dev)
512{
513 struct resource *resource;
514
515 // Add extra memory space
516 resource = new_resource(dev, 0x10);
517 resource->size = CONFIG_PCIEXP_HOTPLUG_MEM;
518 resource->align = 12;
519 resource->gran = 12;
520 resource->limit = 0xffffffff;
521 resource->flags |= IORESOURCE_MEM;
522
523 // Add extra prefetchable memory space
524 resource = new_resource(dev, 0x14);
525 resource->size = CONFIG_PCIEXP_HOTPLUG_PREFETCH_MEM;
526 resource->align = 12;
527 resource->gran = 12;
528 resource->limit = 0xffffffffffffffff;
529 resource->flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
530
531 // Add extra I/O space
532 resource = new_resource(dev, 0x18);
533 resource->size = CONFIG_PCIEXP_HOTPLUG_IO;
534 resource->align = 12;
535 resource->gran = 12;
536 resource->limit = 0xffff;
537 resource->flags |= IORESOURCE_IO;
538}
539
540static struct device_operations pciexp_hotplug_dummy_ops = {
541 .read_resources = pciexp_hotplug_dummy_read_resources,
542};
543
544void pciexp_hotplug_scan_bridge(struct device *dev)
545{
546 dev->hotplug_buses = CONFIG_PCIEXP_HOTPLUG_BUSES;
547
548 /* Normal PCIe Scan */
549 pciexp_scan_bridge(dev);
550
551 /* Add dummy slot to preserve resources, must happen after bus scan */
552 struct device *dummy;
553 struct device_path dummy_path = { .type = DEVICE_PATH_NONE };
554 dummy = alloc_dev(dev->link_list, &dummy_path);
555 dummy->ops = &pciexp_hotplug_dummy_ops;
556}
557
558struct device_operations default_pciexp_hotplug_ops_bus = {
559 .read_resources = pci_bus_read_resources,
560 .set_resources = pci_dev_set_resources,
561 .enable_resources = pci_bus_enable_resources,
562 .scan_bus = pciexp_hotplug_scan_bridge,
563 .reset_bus = pci_bus_reset,
564 .ops_pci = &pciexp_bus_ops_pci,
565};
566#endif /* CONFIG(PCIEXP_HOTPLUG) */