blob: c9441fb22e8652d1bee6b7ee88da7b7b5694cd95 [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>
Nico Huberbba97352022-08-05 13:09:25 +02008#include <device/pci_ids.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +02009#include <device/pci_ops.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000010#include <device/pciexp.h>
11
Nico Huber077dc2e2022-08-05 14:47:35 +020012static unsigned int ext_cap_id(unsigned int cap)
13{
14 return cap & 0xffff;
15}
16
17static unsigned int ext_cap_next_offset(unsigned int cap)
18{
Nico Huber5f7cfb32022-08-05 14:50:06 +020019 return cap >> 20 & 0xffc;
Nico Huber077dc2e2022-08-05 14:47:35 +020020}
21
22static unsigned int find_ext_cap_offset(const struct device *dev, unsigned int cap_id,
23 unsigned int offset)
Kenji Chen31c6e632014-10-04 01:14:44 +080024{
Tim Wawrzynczak3d121ae12021-09-16 20:18:16 -060025 unsigned int this_cap_offset = offset;
Nico Huber077dc2e2022-08-05 14:47:35 +020026
Nico Huber5f7cfb32022-08-05 14:50:06 +020027 while (this_cap_offset >= PCIE_EXT_CAP_OFFSET) {
Nico Huber077dc2e2022-08-05 14:47:35 +020028 const unsigned int this_cap = pci_read_config32(dev, this_cap_offset);
29
Bill XIE385e4322022-08-04 21:52:05 +080030 /* Bail out when this request is unsupported */
31 if (this_cap == 0xffffffff)
32 break;
Nico Huber077dc2e2022-08-05 14:47:35 +020033
34 if (ext_cap_id(this_cap) == cap_id)
Kenji Chen31c6e632014-10-04 01:14:44 +080035 return this_cap_offset;
Nico Huber077dc2e2022-08-05 14:47:35 +020036
37 this_cap_offset = ext_cap_next_offset(this_cap);
Nico Huber4b864e52022-08-05 12:44:11 +020038 }
Kenji Chen31c6e632014-10-04 01:14:44 +080039
40 return 0;
41}
Kenji Chen31c6e632014-10-04 01:14:44 +080042
Nico Huber5ffc2c82022-08-05 12:58:18 +020043/*
44 * Search for an extended capability with the ID `cap`.
45 *
46 * Returns the offset of the first matching extended
47 * capability if found, or 0 otherwise.
48 *
49 * A new search is started with `offset == 0`.
50 * To continue a search, the prior return value
51 * should be passed as `offset`.
52 */
53unsigned int pciexp_find_extended_cap(const struct device *dev, unsigned int cap,
54 unsigned int offset)
Tim Wawrzynczak3d121ae12021-09-16 20:18:16 -060055{
Nico Huber5ffc2c82022-08-05 12:58:18 +020056 unsigned int next_cap_offset;
57
58 if (offset)
Nico Huber077dc2e2022-08-05 14:47:35 +020059 next_cap_offset = ext_cap_next_offset(pci_read_config32(dev, offset));
Nico Huber5ffc2c82022-08-05 12:58:18 +020060 else
61 next_cap_offset = PCIE_EXT_CAP_OFFSET;
62
Nico Huber077dc2e2022-08-05 14:47:35 +020063 return find_ext_cap_offset(dev, cap, next_cap_offset);
Tim Wawrzynczak3d121ae12021-09-16 20:18:16 -060064}
65
Nico Huber9099fea2022-08-05 13:02:52 +020066/*
67 * Search for a vendor-specific extended capability,
68 * with the vendor-specific ID `cap`.
69 *
70 * Returns the offset of the vendor-specific header,
71 * i.e. the offset of the extended capability + 4,
72 * or 0 if none is found.
73 *
74 * A new search is started with `offset == 0`.
75 * To continue a search, the prior return value
76 * should be passed as `offset`.
77 */
78unsigned int pciexp_find_ext_vendor_cap(const struct device *dev, unsigned int cap,
79 unsigned int offset)
80{
81 /* Reconstruct capability offset from vendor-specific header offset. */
82 if (offset >= 4)
83 offset -= 4;
84
85 for (;;) {
86 offset = pciexp_find_extended_cap(dev, PCI_EXT_CAP_ID_VNDR, offset);
87 if (!offset)
88 return 0;
89
90 const unsigned int vndr_cap = pci_read_config32(dev, offset + 4);
91 if ((vndr_cap & 0xffff) == cap)
92 return offset + 4;
93 }
94}
Tim Wawrzynczak3d121ae12021-09-16 20:18:16 -060095
Jonathan Zhang1864f122022-10-10 16:27:48 -070096/**
97 * Find a PCIe device with a given serial number, and a given VID if applicable
98 *
99 * @param serial The serial number of the device.
100 * @param vid Vendor ID of the device, may be 0 if not applicable.
101 * @param from Pointer to the device structure, used as a starting point in
102 * the linked list of all_devices, which can be 0 to start at the
103 * head of the list (i.e. all_devices).
104 * @return Pointer to the device struct.
105 */
106struct device *pcie_find_dsn(const uint64_t serial, const uint16_t vid,
107 struct device *from)
108{
109 union dsn {
110 struct {
111 uint32_t dsn_low;
112 uint32_t dsn_high;
113 };
114 uint64_t dsn;
115 } dsn;
116 unsigned int cap;
117 uint16_t vendor_id;
118
119 if (!from)
120 from = all_devices;
121 else
122 from = from->next;
123
124 while (from) {
125 if (from->path.type == DEVICE_PATH_PCI) {
126 cap = pciexp_find_extended_cap(from, PCI_EXT_CAP_ID_DSN, 0);
127 /*
128 * For PCIe device, find extended capability for serial number.
129 * The capability header is 4 bytes, followed by lower 4 bytes
130 * of serial number, then higher 4 byes of serial number.
131 */
132 if (cap != 0) {
133 dsn.dsn_low = pci_read_config32(from, cap + 4);
134 dsn.dsn_high = pci_read_config32(from, cap + 8);
135 vendor_id = pci_read_config16(from, PCI_VENDOR_ID);
136 if ((dsn.dsn == serial) && (vid == 0 || vendor_id == vid))
137 return from;
138 }
139 }
140
141 from = from->next;
142 }
143
144 return from;
145}
146
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700147/*
148 * Re-train a PCIe link
149 */
150#define PCIE_TRAIN_RETRY 10000
Martin Roth38ddbfb2019-10-23 21:41:00 -0600151static int pciexp_retrain_link(struct device *dev, unsigned int cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700152{
Youness Alaouibb5fb642017-05-03 17:57:13 -0400153 unsigned int try;
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700154 u16 lnk;
155
Youness Alaouibb5fb642017-05-03 17:57:13 -0400156 /*
157 * Implementation note (page 633) in PCIe Specification 3.0 suggests
158 * polling the Link Training bit in the Link Status register until the
159 * value returned is 0 before setting the Retrain Link bit to 1.
160 * This is meant to avoid a race condition when using the
161 * Retrain Link mechanism.
162 */
163 for (try = PCIE_TRAIN_RETRY; try > 0; try--) {
164 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKSTA);
165 if (!(lnk & PCI_EXP_LNKSTA_LT))
166 break;
167 udelay(100);
168 }
169 if (try == 0) {
170 printk(BIOS_ERR, "%s: Link Retrain timeout\n", dev_path(dev));
171 return -1;
172 }
173
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700174 /* Start link retraining */
175 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKCTL);
176 lnk |= PCI_EXP_LNKCTL_RL;
177 pci_write_config16(dev, cap + PCI_EXP_LNKCTL, lnk);
178
179 /* Wait for training to complete */
Youness Alaouibb5fb642017-05-03 17:57:13 -0400180 for (try = PCIE_TRAIN_RETRY; try > 0; try--) {
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700181 lnk = pci_read_config16(dev, cap + PCI_EXP_LNKSTA);
182 if (!(lnk & PCI_EXP_LNKSTA_LT))
183 return 0;
184 udelay(100);
185 }
186
187 printk(BIOS_ERR, "%s: Link Retrain timeout\n", dev_path(dev));
188 return -1;
189}
190
191/*
192 * Check the Slot Clock Configuration for root port and endpoint
193 * and enable Common Clock Configuration if possible. If CCC is
194 * enabled the link must be retrained.
195 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600196static void pciexp_enable_common_clock(struct device *root, unsigned int root_cap,
197 struct device *endp, unsigned int endp_cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700198{
199 u16 root_scc, endp_scc, lnkctl;
200
201 /* Get Slot Clock Configuration for root port */
202 root_scc = pci_read_config16(root, root_cap + PCI_EXP_LNKSTA);
203 root_scc &= PCI_EXP_LNKSTA_SLC;
204
205 /* Get Slot Clock Configuration for endpoint */
206 endp_scc = pci_read_config16(endp, endp_cap + PCI_EXP_LNKSTA);
207 endp_scc &= PCI_EXP_LNKSTA_SLC;
208
209 /* Enable Common Clock Configuration and retrain */
210 if (root_scc && endp_scc) {
211 printk(BIOS_INFO, "Enabling Common Clock Configuration\n");
212
213 /* Set in endpoint */
214 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
215 lnkctl |= PCI_EXP_LNKCTL_CCC;
216 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
217
218 /* Set in root port */
219 lnkctl = pci_read_config16(root, root_cap + PCI_EXP_LNKCTL);
220 lnkctl |= PCI_EXP_LNKCTL_CCC;
221 pci_write_config16(root, root_cap + PCI_EXP_LNKCTL, lnkctl);
222
223 /* Retrain link if CCC was enabled */
224 pciexp_retrain_link(root, root_cap);
225 }
226}
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700227
Martin Roth38ddbfb2019-10-23 21:41:00 -0600228static void pciexp_enable_clock_power_pm(struct device *endp, unsigned int endp_cap)
Kane Chen18cb1342014-10-01 11:13:54 +0800229{
230 /* check if per port clk req is supported in device */
231 u32 endp_ca;
232 u16 lnkctl;
233 endp_ca = pci_read_config32(endp, endp_cap + PCI_EXP_LNKCAP);
234 if ((endp_ca & PCI_EXP_CLK_PM) == 0) {
Arthur Heymans330c46b2017-07-12 19:17:56 +0200235 printk(BIOS_INFO, "PCIE CLK PM is not supported by endpoint\n");
Kane Chen18cb1342014-10-01 11:13:54 +0800236 return;
237 }
238 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
239 lnkctl = lnkctl | PCI_EXP_EN_CLK_PM;
240 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
241}
Kane Chen18cb1342014-10-01 11:13:54 +0800242
Nico Huber968ef752021-03-07 01:39:18 +0100243static bool _pciexp_ltr_supported(struct device *dev, unsigned int cap)
Kenji Chen31c6e632014-10-04 01:14:44 +0800244{
Nico Huber968ef752021-03-07 01:39:18 +0100245 return pci_read_config16(dev, cap + PCI_EXP_DEVCAP2) & PCI_EXP_DEVCAP2_LTR;
Kenji Chen31c6e632014-10-04 01:14:44 +0800246}
247
Nico Huber968ef752021-03-07 01:39:18 +0100248static bool _pciexp_ltr_enabled(struct device *dev, unsigned int cap)
Aamir Bohra2188f572017-09-22 19:07:21 +0530249{
Nico Huber968ef752021-03-07 01:39:18 +0100250 return pci_read_config16(dev, cap + PCI_EXP_DEVCTL2) & PCI_EXP_DEV2_LTR;
Aamir Bohra2188f572017-09-22 19:07:21 +0530251}
252
Nico Huber968ef752021-03-07 01:39:18 +0100253static bool _pciexp_enable_ltr(struct device *parent, unsigned int parent_cap,
254 struct device *dev, unsigned int cap)
Kenji Chen31c6e632014-10-04 01:14:44 +0800255{
Nico Huber968ef752021-03-07 01:39:18 +0100256 if (!_pciexp_ltr_supported(dev, cap)) {
257 printk(BIOS_DEBUG, "%s: No LTR support\n", dev_path(dev));
258 return false;
Pratik Prajapati0cd0d282015-06-09 12:06:20 -0700259 }
Aamir Bohra2188f572017-09-22 19:07:21 +0530260
Nico Huber968ef752021-03-07 01:39:18 +0100261 if (_pciexp_ltr_enabled(dev, cap))
262 return true;
Aamir Bohra2188f572017-09-22 19:07:21 +0530263
Nico Huber968ef752021-03-07 01:39:18 +0100264 if (parent &&
Nico Huber49fc4e32022-08-17 21:57:46 +0200265 (!_pciexp_ltr_supported(parent, parent_cap) ||
Nico Huber968ef752021-03-07 01:39:18 +0100266 !_pciexp_ltr_enabled(parent, parent_cap)))
267 return false;
Aamir Bohra2188f572017-09-22 19:07:21 +0530268
Nico Huber968ef752021-03-07 01:39:18 +0100269 pci_or_config16(dev, cap + PCI_EXP_DEVCTL2, PCI_EXP_DEV2_LTR);
270 printk(BIOS_INFO, "%s: Enabled LTR\n", dev_path(dev));
271 return true;
Aamir Bohra2188f572017-09-22 19:07:21 +0530272}
273
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200274static void pciexp_enable_ltr(struct device *dev)
Aamir Bohra2188f572017-09-22 19:07:21 +0530275{
Nico Huber968ef752021-03-07 01:39:18 +0100276 const unsigned int cap = pci_find_capability(dev, PCI_CAP_ID_PCIE);
277 if (!cap)
278 return;
Aamir Bohra2188f572017-09-22 19:07:21 +0530279
Nico Huber968ef752021-03-07 01:39:18 +0100280 /*
281 * If we have get_ltr_max_latencies(), treat `dev` as the root.
282 * If not, let _pciexp_enable_ltr() query the parent's state.
283 */
284 struct device *parent = NULL;
285 unsigned int parent_cap = 0;
286 if (!dev->ops->ops_pci || !dev->ops->ops_pci->get_ltr_max_latencies) {
287 parent = dev->bus->dev;
Nico Huber49fc4e32022-08-17 21:57:46 +0200288 if (parent->path.type != DEVICE_PATH_PCI)
289 return;
Bill XIEa43380e2022-08-03 00:18:14 +0800290 parent_cap = pci_find_capability(parent, PCI_CAP_ID_PCIE);
Nico Huber968ef752021-03-07 01:39:18 +0100291 if (!parent_cap)
292 return;
Aamir Bohra2188f572017-09-22 19:07:21 +0530293 }
Nico Huber968ef752021-03-07 01:39:18 +0100294
295 (void)_pciexp_enable_ltr(parent, parent_cap, dev, cap);
296}
297
Tim Wawrzynczaka62cb562021-12-08 21:16:43 -0700298bool pciexp_get_ltr_max_latencies(struct device *dev, u16 *max_snoop, u16 *max_nosnoop)
Nico Huber968ef752021-03-07 01:39:18 +0100299{
300 /* Walk the hierarchy up to find get_ltr_max_latencies(). */
301 do {
302 if (dev->ops->ops_pci && dev->ops->ops_pci->get_ltr_max_latencies)
303 break;
304 if (dev->bus->dev == dev || dev->bus->dev->path.type != DEVICE_PATH_PCI)
305 return false;
306 dev = dev->bus->dev;
307 } while (true);
308
309 dev->ops->ops_pci->get_ltr_max_latencies(max_snoop, max_nosnoop);
310 return true;
311}
312
313static void pciexp_configure_ltr(struct device *parent, unsigned int parent_cap,
314 struct device *dev, unsigned int cap)
315{
316 if (!_pciexp_enable_ltr(parent, parent_cap, dev, cap))
317 return;
318
Nico Huber5ffc2c82022-08-05 12:58:18 +0200319 const unsigned int ltr_cap = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_LTR_ID, 0);
Nico Huber968ef752021-03-07 01:39:18 +0100320 if (!ltr_cap)
321 return;
322
323 u16 max_snoop, max_nosnoop;
324 if (!pciexp_get_ltr_max_latencies(dev, &max_snoop, &max_nosnoop))
325 return;
326
327 pci_write_config16(dev, ltr_cap + PCI_LTR_MAX_SNOOP, max_snoop);
328 pci_write_config16(dev, ltr_cap + PCI_LTR_MAX_NOSNOOP, max_nosnoop);
329 printk(BIOS_INFO, "%s: Programmed LTR max latencies\n", dev_path(dev));
Kenji Chen31c6e632014-10-04 01:14:44 +0800330}
331
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200332static unsigned char pciexp_L1_substate_cal(struct device *dev, unsigned int endp_cap,
Kenji Chen31c6e632014-10-04 01:14:44 +0800333 unsigned int *data)
334{
335 unsigned char mult[4] = {2, 10, 100, 0};
336
337 unsigned int L1SubStateSupport = *data & 0xf;
338 unsigned int comm_mode_rst_time = (*data >> 8) & 0xff;
339 unsigned int power_on_scale = (*data >> 16) & 0x3;
340 unsigned int power_on_value = (*data >> 19) & 0x1f;
341
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200342 unsigned int endp_data = pci_read_config32(dev, endp_cap + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +0800343 unsigned int endp_L1SubStateSupport = endp_data & 0xf;
344 unsigned int endp_comm_mode_restore_time = (endp_data >> 8) & 0xff;
345 unsigned int endp_power_on_scale = (endp_data >> 16) & 0x3;
346 unsigned int endp_power_on_value = (endp_data >> 19) & 0x1f;
347
348 L1SubStateSupport &= endp_L1SubStateSupport;
349
350 if (L1SubStateSupport == 0)
351 return 0;
352
353 if (power_on_value * mult[power_on_scale] <
354 endp_power_on_value * mult[endp_power_on_scale]) {
355 power_on_value = endp_power_on_value;
356 power_on_scale = endp_power_on_scale;
357 }
358 if (comm_mode_rst_time < endp_comm_mode_restore_time)
359 comm_mode_rst_time = endp_comm_mode_restore_time;
360
361 *data = (comm_mode_rst_time << 8) | (power_on_scale << 16)
362 | (power_on_value << 19) | L1SubStateSupport;
363
364 return 1;
365}
366
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200367static void pciexp_L1_substate_commit(struct device *root, struct device *dev,
Kenji Chen31c6e632014-10-04 01:14:44 +0800368 unsigned int root_cap, unsigned int end_cap)
369{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200370 struct device *dev_t;
Kenji Chen31c6e632014-10-04 01:14:44 +0800371 unsigned char L1_ss_ok;
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200372 unsigned int rp_L1_support = pci_read_config32(root, root_cap + 4);
Kenji Chen31c6e632014-10-04 01:14:44 +0800373 unsigned int L1SubStateSupport;
374 unsigned int comm_mode_rst_time;
375 unsigned int power_on_scale;
376 unsigned int endp_power_on_value;
377
378 for (dev_t = dev; dev_t; dev_t = dev_t->sibling) {
379 /*
380 * rp_L1_support is init'd above from root port.
381 * it needs coordination with endpoints to reach in common.
382 * if certain endpoint doesn't support L1 Sub-State, abort
383 * this feature enabling.
384 */
385 L1_ss_ok = pciexp_L1_substate_cal(dev_t, end_cap,
386 &rp_L1_support);
387 if (!L1_ss_ok)
388 return;
389 }
390
391 L1SubStateSupport = rp_L1_support & 0xf;
392 comm_mode_rst_time = (rp_L1_support >> 8) & 0xff;
393 power_on_scale = (rp_L1_support >> 16) & 0x3;
394 endp_power_on_value = (rp_L1_support >> 19) & 0x1f;
395
396 printk(BIOS_INFO, "L1 Sub-State supported from root port %d\n",
397 root->path.pci.devfn >> 3);
398 printk(BIOS_INFO, "L1 Sub-State Support = 0x%x\n", L1SubStateSupport);
399 printk(BIOS_INFO, "CommonModeRestoreTime = 0x%x\n", comm_mode_rst_time);
400 printk(BIOS_INFO, "Power On Value = 0x%x, Power On Scale = 0x%x\n",
401 endp_power_on_value, power_on_scale);
402
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300403 pci_update_config32(root, root_cap + 0x08, ~0xff00,
Kenji Chen31c6e632014-10-04 01:14:44 +0800404 (comm_mode_rst_time << 8));
405
Elyes HAOUASa342f392018-10-17 10:56:26 +0200406 pci_update_config32(root, root_cap + 0x0c, 0xffffff04,
Kenji Chen31c6e632014-10-04 01:14:44 +0800407 (endp_power_on_value << 3) | (power_on_scale));
408
Patrick Georgi9adcbfe2017-12-05 16:36:30 -0500409 /* TODO: 0xa0, 2 are values that work on some chipsets but really
410 * should be determined dynamically by looking at downstream devices.
411 */
412 pci_update_config32(root, root_cap + 0x08,
413 ~(ASPM_LTR_L12_THRESHOLD_VALUE_MASK |
414 ASPM_LTR_L12_THRESHOLD_SCALE_MASK),
415 (0xa0 << ASPM_LTR_L12_THRESHOLD_VALUE_OFFSET) |
416 (2 << ASPM_LTR_L12_THRESHOLD_SCALE_OFFSET));
Kenji Chen31c6e632014-10-04 01:14:44 +0800417
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300418 pci_update_config32(root, root_cap + 0x08, ~0x1f,
Kenji Chen31c6e632014-10-04 01:14:44 +0800419 L1SubStateSupport);
420
421 for (dev_t = dev; dev_t; dev_t = dev_t->sibling) {
Elyes HAOUASa342f392018-10-17 10:56:26 +0200422 pci_update_config32(dev_t, end_cap + 0x0c, 0xffffff04,
Kenji Chen31c6e632014-10-04 01:14:44 +0800423 (endp_power_on_value << 3) | (power_on_scale));
424
Patrick Georgi9adcbfe2017-12-05 16:36:30 -0500425 pci_update_config32(dev_t, end_cap + 0x08,
426 ~(ASPM_LTR_L12_THRESHOLD_VALUE_MASK |
427 ASPM_LTR_L12_THRESHOLD_SCALE_MASK),
428 (0xa0 << ASPM_LTR_L12_THRESHOLD_VALUE_OFFSET) |
429 (2 << ASPM_LTR_L12_THRESHOLD_SCALE_OFFSET));
Kenji Chen31c6e632014-10-04 01:14:44 +0800430
Kyösti Mälkki48c389e2013-07-26 08:53:59 +0300431 pci_update_config32(dev_t, end_cap + 0x08, ~0x1f,
Kenji Chen31c6e632014-10-04 01:14:44 +0800432 L1SubStateSupport);
Kenji Chen31c6e632014-10-04 01:14:44 +0800433 }
434}
435
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200436static void pciexp_config_L1_sub_state(struct device *root, struct device *dev)
Kenji Chen31c6e632014-10-04 01:14:44 +0800437{
438 unsigned int root_cap, end_cap;
439
440 /* Do it for function 0 only */
441 if (dev->path.pci.devfn & 0x7)
442 return;
443
Nico Huber5ffc2c82022-08-05 12:58:18 +0200444 root_cap = pciexp_find_extended_cap(root, PCIE_EXT_CAP_L1SS_ID, 0);
Kenji Chen31c6e632014-10-04 01:14:44 +0800445 if (!root_cap)
446 return;
447
Nico Huber5ffc2c82022-08-05 12:58:18 +0200448 end_cap = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_L1SS_ID, 0);
Kenji Chen31c6e632014-10-04 01:14:44 +0800449 if (!end_cap) {
Nico Huberbba97352022-08-05 13:09:25 +0200450 if (dev->vendor != PCI_VID_INTEL)
451 return;
452
453 end_cap = pciexp_find_ext_vendor_cap(dev, 0xcafe, 0);
Kenji Chen31c6e632014-10-04 01:14:44 +0800454 if (!end_cap)
455 return;
456 }
457
458 pciexp_L1_substate_commit(root, dev, root_cap, end_cap);
459}
Kenji Chen31c6e632014-10-04 01:14:44 +0800460
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700461/*
462 * Determine the ASPM L0s or L1 exit latency for a link
463 * by checking both root port and endpoint and returning
464 * the highest latency value.
465 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600466static int pciexp_aspm_latency(struct device *root, unsigned int root_cap,
467 struct device *endp, unsigned int endp_cap,
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700468 enum aspm_type type)
469{
470 int root_lat = 0, endp_lat = 0;
471 u32 root_lnkcap, endp_lnkcap;
472
473 root_lnkcap = pci_read_config32(root, root_cap + PCI_EXP_LNKCAP);
474 endp_lnkcap = pci_read_config32(endp, endp_cap + PCI_EXP_LNKCAP);
475
476 /* Make sure the link supports this ASPM type by checking
477 * capability bits 11:10 with aspm_type offset by 1 */
478 if (!(root_lnkcap & (1 << (type + 9))) ||
479 !(endp_lnkcap & (1 << (type + 9))))
480 return -1;
481
482 /* Find the one with higher latency */
483 switch (type) {
484 case PCIE_ASPM_L0S:
485 root_lat = (root_lnkcap & PCI_EXP_LNKCAP_L0SEL) >> 12;
486 endp_lat = (endp_lnkcap & PCI_EXP_LNKCAP_L0SEL) >> 12;
487 break;
488 case PCIE_ASPM_L1:
489 root_lat = (root_lnkcap & PCI_EXP_LNKCAP_L1EL) >> 15;
490 endp_lat = (endp_lnkcap & PCI_EXP_LNKCAP_L1EL) >> 15;
491 break;
492 default:
493 return -1;
494 }
495
496 return (endp_lat > root_lat) ? endp_lat : root_lat;
497}
498
499/*
500 * Enable ASPM on PCIe root port and endpoint.
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700501 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600502static void pciexp_enable_aspm(struct device *root, unsigned int root_cap,
503 struct device *endp, unsigned int endp_cap)
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700504{
505 const char *aspm_type_str[] = { "None", "L0s", "L1", "L0s and L1" };
506 enum aspm_type apmc = PCIE_ASPM_NONE;
507 int exit_latency, ok_latency;
508 u16 lnkctl;
509 u32 devcap;
510
Nico Huber570b1832017-08-30 13:38:50 +0200511 if (endp->disable_pcie_aspm)
512 return;
513
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700514 /* Get endpoint device capabilities for acceptable limits */
515 devcap = pci_read_config32(endp, endp_cap + PCI_EXP_DEVCAP);
516
517 /* Enable L0s if it is within endpoint acceptable limit */
518 ok_latency = (devcap & PCI_EXP_DEVCAP_L0S) >> 6;
519 exit_latency = pciexp_aspm_latency(root, root_cap, endp, endp_cap,
520 PCIE_ASPM_L0S);
521 if (exit_latency >= 0 && exit_latency <= ok_latency)
522 apmc |= PCIE_ASPM_L0S;
523
524 /* Enable L1 if it is within endpoint acceptable limit */
525 ok_latency = (devcap & PCI_EXP_DEVCAP_L1) >> 9;
526 exit_latency = pciexp_aspm_latency(root, root_cap, endp, endp_cap,
527 PCIE_ASPM_L1);
528 if (exit_latency >= 0 && exit_latency <= ok_latency)
529 apmc |= PCIE_ASPM_L1;
530
531 if (apmc != PCIE_ASPM_NONE) {
532 /* Set APMC in root port first */
533 lnkctl = pci_read_config16(root, root_cap + PCI_EXP_LNKCTL);
534 lnkctl |= apmc;
535 pci_write_config16(root, root_cap + PCI_EXP_LNKCTL, lnkctl);
536
537 /* Set APMC in endpoint device next */
538 lnkctl = pci_read_config16(endp, endp_cap + PCI_EXP_LNKCTL);
539 lnkctl |= apmc;
540 pci_write_config16(endp, endp_cap + PCI_EXP_LNKCTL, lnkctl);
541 }
542
543 printk(BIOS_INFO, "ASPM: Enabled %s\n", aspm_type_str[apmc]);
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700544}
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700545
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +0200546/*
547 * Set max payload size of endpoint in accordance with max payload size of root port.
548 */
549static void pciexp_set_max_payload_size(struct device *root, unsigned int root_cap,
550 struct device *endp, unsigned int endp_cap)
551{
552 unsigned int endp_max_payload, root_max_payload, max_payload;
553 u16 endp_devctl, root_devctl;
554 u32 endp_devcap, root_devcap;
555
556 /* Get max payload size supported by endpoint */
557 endp_devcap = pci_read_config32(endp, endp_cap + PCI_EXP_DEVCAP);
558 endp_max_payload = endp_devcap & PCI_EXP_DEVCAP_PAYLOAD;
559
560 /* Get max payload size supported by root port */
561 root_devcap = pci_read_config32(root, root_cap + PCI_EXP_DEVCAP);
562 root_max_payload = root_devcap & PCI_EXP_DEVCAP_PAYLOAD;
563
564 /* Set max payload to smaller of the reported device capability. */
565 max_payload = MIN(endp_max_payload, root_max_payload);
566 if (max_payload > 5) {
567 /* Values 6 and 7 are reserved in PCIe 3.0 specs. */
568 printk(BIOS_ERR, "PCIe: Max_Payload_Size field restricted from %d to 5\n",
569 max_payload);
570 max_payload = 5;
571 }
572
573 endp_devctl = pci_read_config16(endp, endp_cap + PCI_EXP_DEVCTL);
574 endp_devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
575 endp_devctl |= max_payload << 5;
576 pci_write_config16(endp, endp_cap + PCI_EXP_DEVCTL, endp_devctl);
577
578 root_devctl = pci_read_config16(root, root_cap + PCI_EXP_DEVCTL);
579 root_devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
580 root_devctl |= max_payload << 5;
581 pci_write_config16(root, root_cap + PCI_EXP_DEVCTL, root_devctl);
582
583 printk(BIOS_INFO, "PCIe: Max_Payload_Size adjusted to %d\n", (1 << (max_payload + 7)));
584}
585
Wilson Chouc8a86952022-08-29 02:08:24 +0000586/*
587 * Clear Lane Error State at the end of PCIe link training.
588 * Lane error status is cleared if PCIEXP_LANE_ERR_STAT_CLEAR is set.
589 * Lane error is normal during link training, so we need to clear it.
590 * At this moment, link has been used, but for a very short duration.
591 */
592static void clear_lane_error_status(struct device *dev)
593{
594 u32 reg32;
595 u16 pos;
596
597 pos = pciexp_find_extended_cap(dev, PCI_EXP_SEC_CAP_ID, 0);
598 if (pos == 0)
599 return;
600
601 reg32 = pci_read_config32(dev, pos + PCI_EXP_SEC_LANE_ERR_STATUS);
602 if (reg32 == 0)
603 return;
604
605 printk(BIOS_DEBUG, "%s: Clear Lane Error Status.\n", dev_path(dev));
606 printk(BIOS_DEBUG, "LaneErrStat:0x%x\n", reg32);
607 pci_write_config32(dev, pos + PCI_EXP_SEC_LANE_ERR_STATUS, reg32);
608}
609
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200610static void pciexp_tune_dev(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000611{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200612 struct device *root = dev->bus->dev;
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700613 unsigned int root_cap, cap;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000614
615 cap = pci_find_capability(dev, PCI_CAP_ID_PCIE);
Uwe Hermannd453dd02010-10-18 00:00:57 +0000616 if (!cap)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000617 return;
Uwe Hermannd453dd02010-10-18 00:00:57 +0000618
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700619 root_cap = pci_find_capability(root, PCI_CAP_ID_PCIE);
620 if (!root_cap)
621 return;
Stefan Reinauerf6eb88a2010-01-17 13:54:08 +0000622
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700623 /* Check for and enable Common Clock */
Julius Wernercd49cce2019-03-05 16:53:33 -0800624 if (CONFIG(PCIEXP_COMMON_CLOCK))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200625 pciexp_enable_common_clock(root, root_cap, dev, cap);
Uwe Hermanne4870472010-11-04 23:23:47 +0000626
Kane Chen18cb1342014-10-01 11:13:54 +0800627 /* Check if per port CLK req is supported by endpoint*/
Julius Wernercd49cce2019-03-05 16:53:33 -0800628 if (CONFIG(PCIEXP_CLK_PM))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200629 pciexp_enable_clock_power_pm(dev, cap);
Kane Chen18cb1342014-10-01 11:13:54 +0800630
Kenji Chen31c6e632014-10-04 01:14:44 +0800631 /* Enable L1 Sub-State when both root port and endpoint support */
Julius Wernercd49cce2019-03-05 16:53:33 -0800632 if (CONFIG(PCIEXP_L1_SUB_STATE))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200633 pciexp_config_L1_sub_state(root, dev);
Kenji Chen31c6e632014-10-04 01:14:44 +0800634
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700635 /* Check for and enable ASPM */
Julius Wernercd49cce2019-03-05 16:53:33 -0800636 if (CONFIG(PCIEXP_ASPM))
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200637 pciexp_enable_aspm(root, root_cap, dev, cap);
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +0200638
Wilson Chouc8a86952022-08-29 02:08:24 +0000639 /* Clear PCIe Lane Error Status */
640 if (CONFIG(PCIEXP_LANE_ERR_STAT_CLEAR))
641 clear_lane_error_status(root);
642
Kyösti Mälkki94ce79d2019-12-16 17:21:13 +0200643 /* Adjust Max_Payload_Size of link ends. */
644 pciexp_set_max_payload_size(root, root_cap, dev, cap);
Nico Huber968ef752021-03-07 01:39:18 +0100645
646 pciexp_configure_ltr(root, root_cap, dev, cap);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000647}
648
Kyösti Mälkkide271a82015-03-18 13:09:47 +0200649void pciexp_scan_bus(struct bus *bus, unsigned int min_devfn,
650 unsigned int max_devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000651{
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200652 struct device *child;
Nico Huber968ef752021-03-07 01:39:18 +0100653
654 pciexp_enable_ltr(bus->dev);
655
Kyösti Mälkkide271a82015-03-18 13:09:47 +0200656 pci_scan_bus(bus, min_devfn, max_devfn);
Uwe Hermannd453dd02010-10-18 00:00:57 +0000657
658 for (child = bus->children; child; child = child->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -0700659 if (child->path.type != DEVICE_PATH_PCI)
660 continue;
Uwe Hermannd453dd02010-10-18 00:00:57 +0000661 if ((child->path.pci.devfn < min_devfn) ||
662 (child->path.pci.devfn > max_devfn)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000663 continue;
664 }
665 pciexp_tune_dev(child);
666 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000667}
668
Elyes HAOUASb1fa2872018-05-02 21:11:38 +0200669void pciexp_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000670{
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200671 do_pci_scan_bridge(dev, pciexp_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000672}
673
674/** Default device operations for PCI Express bridges */
675static struct pci_operations pciexp_bus_ops_pci = {
676 .set_subsystem = 0,
677};
678
679struct device_operations default_pciexp_ops_bus = {
680 .read_resources = pci_bus_read_resources,
681 .set_resources = pci_dev_set_resources,
682 .enable_resources = pci_bus_enable_resources,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000683 .scan_bus = pciexp_scan_bridge,
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000684 .reset_bus = pci_bus_reset,
685 .ops_pci = &pciexp_bus_ops_pci,
686};
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600687
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600688static void pciexp_hotplug_dummy_read_resources(struct device *dev)
689{
690 struct resource *resource;
691
Furquan Shaikh32f385e2020-05-15 23:35:00 -0700692 /* Add extra memory space */
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600693 resource = new_resource(dev, 0x10);
694 resource->size = CONFIG_PCIEXP_HOTPLUG_MEM;
695 resource->align = 12;
696 resource->gran = 12;
697 resource->limit = 0xffffffff;
698 resource->flags |= IORESOURCE_MEM;
699
Furquan Shaikh32f385e2020-05-15 23:35:00 -0700700 /* Add extra prefetchable memory space */
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600701 resource = new_resource(dev, 0x14);
702 resource->size = CONFIG_PCIEXP_HOTPLUG_PREFETCH_MEM;
703 resource->align = 12;
704 resource->gran = 12;
705 resource->limit = 0xffffffffffffffff;
706 resource->flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
707
Furquan Shaikh32f385e2020-05-15 23:35:00 -0700708 /* Set resource flag requesting allocation above 4G boundary. */
709 if (CONFIG(PCIEXP_HOTPLUG_PREFETCH_MEM_ABOVE_4G))
710 resource->flags |= IORESOURCE_ABOVE_4G;
711
712 /* Add extra I/O space */
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600713 resource = new_resource(dev, 0x18);
714 resource->size = CONFIG_PCIEXP_HOTPLUG_IO;
715 resource->align = 12;
716 resource->gran = 12;
717 resource->limit = 0xffff;
718 resource->flags |= IORESOURCE_IO;
719}
720
721static struct device_operations pciexp_hotplug_dummy_ops = {
722 .read_resources = pciexp_hotplug_dummy_read_resources,
John Su3ecc7772022-03-25 10:37:52 +0800723 .set_resources = noop_set_resources,
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600724};
725
726void pciexp_hotplug_scan_bridge(struct device *dev)
727{
Nico Huber577c6b92022-08-15 00:08:58 +0200728 dev->hotplug_port = 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600729 dev->hotplug_buses = CONFIG_PCIEXP_HOTPLUG_BUSES;
730
731 /* Normal PCIe Scan */
732 pciexp_scan_bridge(dev);
733
734 /* Add dummy slot to preserve resources, must happen after bus scan */
735 struct device *dummy;
736 struct device_path dummy_path = { .type = DEVICE_PATH_NONE };
737 dummy = alloc_dev(dev->link_list, &dummy_path);
738 dummy->ops = &pciexp_hotplug_dummy_ops;
739}
740
741struct device_operations default_pciexp_hotplug_ops_bus = {
742 .read_resources = pci_bus_read_resources,
743 .set_resources = pci_dev_set_resources,
744 .enable_resources = pci_bus_enable_resources,
745 .scan_bus = pciexp_hotplug_scan_bridge,
746 .reset_bus = pci_bus_reset,
747 .ops_pci = &pciexp_bus_ops_pci,
748};