blob: a42dbf448860459ba8e105507ba3bb5cd956f612 [file] [log] [blame]
Bjorn Helgaas7328c8f2018-01-26 11:45:16 -06001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * PCI support in ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
David Shaohua Li84df749f2005-03-18 18:53:36 -05005 * Copyright (C) 2005 David Shaohua Li <shaohua.li@intel.com>
6 * Copyright (C) 2004 Tom Long Nguyen <tom.l.nguyen@intel.com>
7 * Copyright (C) 2004 Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/delay.h>
11#include <linux/init.h>
Suravee Suthikulpanit471036b2015-12-10 08:55:27 -080012#include <linux/irqdomain.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/pci.h>
Suravee Suthikulpanit471036b2015-12-10 08:55:27 -080014#include <linux/msi.h>
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -060015#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/pci-acpi.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010018#include <linux/pm_runtime.h>
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +020019#include <linux/pm_qos.h>
Rafael J. Wysocki59dc3322021-08-24 16:43:55 +020020#include <linux/rwsem.h>
David Shaohua Li0f644742005-03-19 00:15:48 -050021#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Aaron Lu18e94a32015-03-25 14:31:41 +080023/*
Andy Shevchenko94116f82017-06-05 19:40:46 +030024 * The GUID is defined in the PCI Firmware Specification available here:
Aaron Lu18e94a32015-03-25 14:31:41 +080025 * https://www.pcisig.com/members/downloads/pcifw_r3_1_13Dec10.pdf
26 */
Andy Shevchenko94116f82017-06-05 19:40:46 +030027const guid_t pci_acpi_dsm_guid =
28 GUID_INIT(0xe5c937d0, 0x3553, 0x4d7a,
29 0x91, 0x17, 0xea, 0x4d, 0x19, 0xc3, 0x43, 0x4d);
Aaron Lu18e94a32015-03-25 14:31:41 +080030
Dongdong Liu169de962016-12-01 00:33:42 -060031#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
32static int acpi_get_rc_addr(struct acpi_device *adev, struct resource *res)
33{
34 struct device *dev = &adev->dev;
35 struct resource_entry *entry;
36 struct list_head list;
37 unsigned long flags;
38 int ret;
39
40 INIT_LIST_HEAD(&list);
41 flags = IORESOURCE_MEM;
42 ret = acpi_dev_get_resources(adev, &list,
43 acpi_dev_filter_resource_type_cb,
44 (void *) flags);
45 if (ret < 0) {
46 dev_err(dev, "failed to parse _CRS method, error code %d\n",
47 ret);
48 return ret;
49 }
50
51 if (ret == 0) {
52 dev_err(dev, "no IO and memory resources present in _CRS\n");
53 return -EINVAL;
54 }
55
56 entry = list_first_entry(&list, struct resource_entry, node);
57 *res = *entry->res;
58 acpi_dev_free_resource_list(&list);
59 return 0;
60}
61
62static acpi_status acpi_match_rc(acpi_handle handle, u32 lvl, void *context,
63 void **retval)
64{
65 u16 *segment = context;
66 unsigned long long uid;
67 acpi_status status;
68
69 status = acpi_evaluate_integer(handle, "_UID", NULL, &uid);
70 if (ACPI_FAILURE(status) || uid != *segment)
71 return AE_CTRL_DEPTH;
72
73 *(acpi_handle *)retval = handle;
74 return AE_CTRL_TERMINATE;
75}
76
77int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
78 struct resource *res)
79{
80 struct acpi_device *adev;
81 acpi_status status;
82 acpi_handle handle;
83 int ret;
84
85 status = acpi_get_devices(hid, acpi_match_rc, &segment, &handle);
86 if (ACPI_FAILURE(status)) {
87 dev_err(dev, "can't find _HID %s device to locate resources\n",
88 hid);
89 return -ENODEV;
90 }
91
92 ret = acpi_bus_get_device(handle, &adev);
93 if (ret)
94 return ret;
95
96 ret = acpi_get_rc_addr(adev, res);
97 if (ret) {
98 dev_err(dev, "can't get resource from %s\n",
99 dev_name(&adev->dev));
100 return ret;
101 }
102
103 return 0;
104}
105#endif
106
Jiang Liuf4b57a32012-06-22 14:55:16 +0800107phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle)
108{
109 acpi_status status = AE_NOT_EXIST;
110 unsigned long long mcfg_addr;
111
112 if (handle)
113 status = acpi_evaluate_integer(handle, METHOD_NAME__CBA,
114 NULL, &mcfg_addr);
115 if (ACPI_FAILURE(status))
116 return 0;
117
118 return (phys_addr_t)mcfg_addr;
119}
120
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200121/* _HPX PCI Setting Record (Type 0); same as _HPP */
122struct hpx_type0 {
123 u32 revision; /* Not present in _HPP */
124 u8 cache_line_size; /* Not applicable to PCIe */
125 u8 latency_timer; /* Not applicable to PCIe */
126 u8 enable_serr;
127 u8 enable_perr;
128};
129
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200130static struct hpx_type0 pci_default_type0 = {
131 .revision = 1,
132 .cache_line_size = 8,
133 .latency_timer = 0x40,
134 .enable_serr = 0,
135 .enable_perr = 0,
136};
137
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200138static void program_hpx_type0(struct pci_dev *dev, struct hpx_type0 *hpx)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200139{
140 u16 pci_cmd, pci_bctl;
141
142 if (!hpx)
143 hpx = &pci_default_type0;
144
145 if (hpx->revision > 1) {
146 pci_warn(dev, "PCI settings rev %d not supported; using defaults\n",
147 hpx->revision);
148 hpx = &pci_default_type0;
149 }
150
151 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, hpx->cache_line_size);
152 pci_write_config_byte(dev, PCI_LATENCY_TIMER, hpx->latency_timer);
153 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
154 if (hpx->enable_serr)
155 pci_cmd |= PCI_COMMAND_SERR;
156 if (hpx->enable_perr)
157 pci_cmd |= PCI_COMMAND_PARITY;
158 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
159
160 /* Program bridge control value */
161 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
162 pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER,
163 hpx->latency_timer);
164 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &pci_bctl);
165 if (hpx->enable_perr)
166 pci_bctl |= PCI_BRIDGE_CTL_PARITY;
167 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl);
168 }
169}
170
Bjorn Helgaasabbfec32014-09-12 15:29:55 -0600171static acpi_status decode_type0_hpx_record(union acpi_object *record,
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200172 struct hpx_type0 *hpx0)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600173{
174 int i;
175 union acpi_object *fields = record->package.elements;
176 u32 revision = fields[1].integer.value;
177
178 switch (revision) {
179 case 1:
180 if (record->package.count != 6)
181 return AE_ERROR;
182 for (i = 2; i < 6; i++)
183 if (fields[i].type != ACPI_TYPE_INTEGER)
184 return AE_ERROR;
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500185 hpx0->revision = revision;
186 hpx0->cache_line_size = fields[2].integer.value;
187 hpx0->latency_timer = fields[3].integer.value;
188 hpx0->enable_serr = fields[4].integer.value;
189 hpx0->enable_perr = fields[5].integer.value;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600190 break;
191 default:
Mohan Kumar25da8db2019-04-20 07:03:46 +0300192 pr_warn("%s: Type 0 Revision %d record not supported\n",
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600193 __func__, revision);
194 return AE_ERROR;
195 }
196 return AE_OK;
197}
198
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200199/* _HPX PCI-X Setting Record (Type 1) */
200struct hpx_type1 {
201 u32 revision;
202 u8 max_mem_read;
203 u8 avg_max_split;
204 u16 tot_max_split;
205};
206
207static void program_hpx_type1(struct pci_dev *dev, struct hpx_type1 *hpx)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200208{
209 int pos;
210
211 if (!hpx)
212 return;
213
214 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
215 if (!pos)
216 return;
217
218 pci_warn(dev, "PCI-X settings not supported\n");
219}
220
Bjorn Helgaasabbfec32014-09-12 15:29:55 -0600221static acpi_status decode_type1_hpx_record(union acpi_object *record,
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200222 struct hpx_type1 *hpx1)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600223{
224 int i;
225 union acpi_object *fields = record->package.elements;
226 u32 revision = fields[1].integer.value;
227
228 switch (revision) {
229 case 1:
230 if (record->package.count != 5)
231 return AE_ERROR;
232 for (i = 2; i < 5; i++)
233 if (fields[i].type != ACPI_TYPE_INTEGER)
234 return AE_ERROR;
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500235 hpx1->revision = revision;
236 hpx1->max_mem_read = fields[2].integer.value;
237 hpx1->avg_max_split = fields[3].integer.value;
238 hpx1->tot_max_split = fields[4].integer.value;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600239 break;
240 default:
Mohan Kumar25da8db2019-04-20 07:03:46 +0300241 pr_warn("%s: Type 1 Revision %d record not supported\n",
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600242 __func__, revision);
243 return AE_ERROR;
244 }
245 return AE_OK;
246}
247
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200248static bool pcie_root_rcb_set(struct pci_dev *dev)
249{
250 struct pci_dev *rp = pcie_find_root_port(dev);
251 u16 lnkctl;
252
253 if (!rp)
254 return false;
255
256 pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl);
257 if (lnkctl & PCI_EXP_LNKCTL_RCB)
258 return true;
259
260 return false;
261}
262
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200263/* _HPX PCI Express Setting Record (Type 2) */
264struct hpx_type2 {
265 u32 revision;
266 u32 unc_err_mask_and;
267 u32 unc_err_mask_or;
268 u32 unc_err_sever_and;
269 u32 unc_err_sever_or;
270 u32 cor_err_mask_and;
271 u32 cor_err_mask_or;
272 u32 adv_err_cap_and;
273 u32 adv_err_cap_or;
274 u16 pci_exp_devctl_and;
275 u16 pci_exp_devctl_or;
276 u16 pci_exp_lnkctl_and;
277 u16 pci_exp_lnkctl_or;
278 u32 sec_unc_err_sever_and;
279 u32 sec_unc_err_sever_or;
280 u32 sec_unc_err_mask_and;
281 u32 sec_unc_err_mask_or;
282};
283
284static void program_hpx_type2(struct pci_dev *dev, struct hpx_type2 *hpx)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200285{
286 int pos;
287 u32 reg32;
288
289 if (!hpx)
290 return;
291
292 if (!pci_is_pcie(dev))
293 return;
294
295 if (hpx->revision > 1) {
296 pci_warn(dev, "PCIe settings rev %d not supported\n",
297 hpx->revision);
298 return;
299 }
300
301 /*
302 * Don't allow _HPX to change MPS or MRRS settings. We manage
303 * those to make sure they're consistent with the rest of the
304 * platform.
305 */
306 hpx->pci_exp_devctl_and |= PCI_EXP_DEVCTL_PAYLOAD |
307 PCI_EXP_DEVCTL_READRQ;
308 hpx->pci_exp_devctl_or &= ~(PCI_EXP_DEVCTL_PAYLOAD |
309 PCI_EXP_DEVCTL_READRQ);
310
311 /* Initialize Device Control Register */
312 pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
313 ~hpx->pci_exp_devctl_and, hpx->pci_exp_devctl_or);
314
315 /* Initialize Link Control Register */
316 if (pcie_cap_has_lnkctl(dev)) {
317
318 /*
319 * If the Root Port supports Read Completion Boundary of
320 * 128, set RCB to 128. Otherwise, clear it.
321 */
322 hpx->pci_exp_lnkctl_and |= PCI_EXP_LNKCTL_RCB;
323 hpx->pci_exp_lnkctl_or &= ~PCI_EXP_LNKCTL_RCB;
324 if (pcie_root_rcb_set(dev))
325 hpx->pci_exp_lnkctl_or |= PCI_EXP_LNKCTL_RCB;
326
327 pcie_capability_clear_and_set_word(dev, PCI_EXP_LNKCTL,
328 ~hpx->pci_exp_lnkctl_and, hpx->pci_exp_lnkctl_or);
329 }
330
331 /* Find Advanced Error Reporting Enhanced Capability */
332 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
333 if (!pos)
334 return;
335
336 /* Initialize Uncorrectable Error Mask Register */
337 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &reg32);
338 reg32 = (reg32 & hpx->unc_err_mask_and) | hpx->unc_err_mask_or;
339 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, reg32);
340
341 /* Initialize Uncorrectable Error Severity Register */
342 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &reg32);
343 reg32 = (reg32 & hpx->unc_err_sever_and) | hpx->unc_err_sever_or;
344 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, reg32);
345
346 /* Initialize Correctable Error Mask Register */
347 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg32);
348 reg32 = (reg32 & hpx->cor_err_mask_and) | hpx->cor_err_mask_or;
349 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg32);
350
351 /* Initialize Advanced Error Capabilities and Control Register */
352 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &reg32);
353 reg32 = (reg32 & hpx->adv_err_cap_and) | hpx->adv_err_cap_or;
354
355 /* Don't enable ECRC generation or checking if unsupported */
356 if (!(reg32 & PCI_ERR_CAP_ECRC_GENC))
357 reg32 &= ~PCI_ERR_CAP_ECRC_GENE;
358 if (!(reg32 & PCI_ERR_CAP_ECRC_CHKC))
359 reg32 &= ~PCI_ERR_CAP_ECRC_CHKE;
360 pci_write_config_dword(dev, pos + PCI_ERR_CAP, reg32);
361
362 /*
363 * FIXME: The following two registers are not supported yet.
364 *
365 * o Secondary Uncorrectable Error Severity Register
366 * o Secondary Uncorrectable Error Mask Register
367 */
368}
369
Bjorn Helgaasabbfec32014-09-12 15:29:55 -0600370static acpi_status decode_type2_hpx_record(union acpi_object *record,
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200371 struct hpx_type2 *hpx2)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600372{
373 int i;
374 union acpi_object *fields = record->package.elements;
375 u32 revision = fields[1].integer.value;
376
377 switch (revision) {
378 case 1:
379 if (record->package.count != 18)
380 return AE_ERROR;
381 for (i = 2; i < 18; i++)
382 if (fields[i].type != ACPI_TYPE_INTEGER)
383 return AE_ERROR;
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500384 hpx2->revision = revision;
385 hpx2->unc_err_mask_and = fields[2].integer.value;
386 hpx2->unc_err_mask_or = fields[3].integer.value;
387 hpx2->unc_err_sever_and = fields[4].integer.value;
388 hpx2->unc_err_sever_or = fields[5].integer.value;
389 hpx2->cor_err_mask_and = fields[6].integer.value;
390 hpx2->cor_err_mask_or = fields[7].integer.value;
391 hpx2->adv_err_cap_and = fields[8].integer.value;
392 hpx2->adv_err_cap_or = fields[9].integer.value;
393 hpx2->pci_exp_devctl_and = fields[10].integer.value;
394 hpx2->pci_exp_devctl_or = fields[11].integer.value;
395 hpx2->pci_exp_lnkctl_and = fields[12].integer.value;
396 hpx2->pci_exp_lnkctl_or = fields[13].integer.value;
397 hpx2->sec_unc_err_sever_and = fields[14].integer.value;
398 hpx2->sec_unc_err_sever_or = fields[15].integer.value;
399 hpx2->sec_unc_err_mask_and = fields[16].integer.value;
400 hpx2->sec_unc_err_mask_or = fields[17].integer.value;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600401 break;
402 default:
Mohan Kumar25da8db2019-04-20 07:03:46 +0300403 pr_warn("%s: Type 2 Revision %d record not supported\n",
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600404 __func__, revision);
405 return AE_ERROR;
406 }
407 return AE_OK;
408}
409
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200410/* _HPX PCI Express Setting Record (Type 3) */
411struct hpx_type3 {
412 u16 device_type;
413 u16 function_type;
414 u16 config_space_location;
415 u16 pci_exp_cap_id;
416 u16 pci_exp_cap_ver;
417 u16 pci_exp_vendor_id;
418 u16 dvsec_id;
419 u16 dvsec_rev;
420 u16 match_offset;
421 u32 match_mask_and;
422 u32 match_value;
423 u16 reg_offset;
424 u32 reg_mask_and;
425 u32 reg_mask_or;
426};
427
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200428enum hpx_type3_dev_type {
429 HPX_TYPE_ENDPOINT = BIT(0),
430 HPX_TYPE_LEG_END = BIT(1),
431 HPX_TYPE_RC_END = BIT(2),
432 HPX_TYPE_RC_EC = BIT(3),
433 HPX_TYPE_ROOT_PORT = BIT(4),
434 HPX_TYPE_UPSTREAM = BIT(5),
435 HPX_TYPE_DOWNSTREAM = BIT(6),
436 HPX_TYPE_PCI_BRIDGE = BIT(7),
437 HPX_TYPE_PCIE_BRIDGE = BIT(8),
438};
439
440static u16 hpx3_device_type(struct pci_dev *dev)
441{
442 u16 pcie_type = pci_pcie_type(dev);
Colin Ian Kinge3cdcfc2020-02-10 08:52:56 +0000443 static const int pcie_to_hpx3_type[] = {
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200444 [PCI_EXP_TYPE_ENDPOINT] = HPX_TYPE_ENDPOINT,
445 [PCI_EXP_TYPE_LEG_END] = HPX_TYPE_LEG_END,
446 [PCI_EXP_TYPE_RC_END] = HPX_TYPE_RC_END,
447 [PCI_EXP_TYPE_RC_EC] = HPX_TYPE_RC_EC,
448 [PCI_EXP_TYPE_ROOT_PORT] = HPX_TYPE_ROOT_PORT,
449 [PCI_EXP_TYPE_UPSTREAM] = HPX_TYPE_UPSTREAM,
450 [PCI_EXP_TYPE_DOWNSTREAM] = HPX_TYPE_DOWNSTREAM,
451 [PCI_EXP_TYPE_PCI_BRIDGE] = HPX_TYPE_PCI_BRIDGE,
452 [PCI_EXP_TYPE_PCIE_BRIDGE] = HPX_TYPE_PCIE_BRIDGE,
453 };
454
455 if (pcie_type >= ARRAY_SIZE(pcie_to_hpx3_type))
456 return 0;
457
458 return pcie_to_hpx3_type[pcie_type];
459}
460
461enum hpx_type3_fn_type {
462 HPX_FN_NORMAL = BIT(0),
463 HPX_FN_SRIOV_PHYS = BIT(1),
464 HPX_FN_SRIOV_VIRT = BIT(2),
465};
466
467static u8 hpx3_function_type(struct pci_dev *dev)
468{
469 if (dev->is_virtfn)
470 return HPX_FN_SRIOV_VIRT;
471 else if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV) > 0)
472 return HPX_FN_SRIOV_PHYS;
473 else
474 return HPX_FN_NORMAL;
475}
476
477static bool hpx3_cap_ver_matches(u8 pcie_cap_id, u8 hpx3_cap_id)
478{
479 u8 cap_ver = hpx3_cap_id & 0xf;
480
481 if ((hpx3_cap_id & BIT(4)) && cap_ver >= pcie_cap_id)
482 return true;
483 else if (cap_ver == pcie_cap_id)
484 return true;
485
486 return false;
487}
488
489enum hpx_type3_cfg_loc {
490 HPX_CFG_PCICFG = 0,
491 HPX_CFG_PCIE_CAP = 1,
492 HPX_CFG_PCIE_CAP_EXT = 2,
493 HPX_CFG_VEND_CAP = 3,
494 HPX_CFG_DVSEC = 4,
495 HPX_CFG_MAX,
496};
497
498static void program_hpx_type3_register(struct pci_dev *dev,
499 const struct hpx_type3 *reg)
500{
501 u32 match_reg, write_reg, header, orig_value;
502 u16 pos;
503
504 if (!(hpx3_device_type(dev) & reg->device_type))
505 return;
506
507 if (!(hpx3_function_type(dev) & reg->function_type))
508 return;
509
510 switch (reg->config_space_location) {
511 case HPX_CFG_PCICFG:
512 pos = 0;
513 break;
514 case HPX_CFG_PCIE_CAP:
515 pos = pci_find_capability(dev, reg->pci_exp_cap_id);
516 if (pos == 0)
517 return;
518
519 break;
520 case HPX_CFG_PCIE_CAP_EXT:
521 pos = pci_find_ext_capability(dev, reg->pci_exp_cap_id);
522 if (pos == 0)
523 return;
524
525 pci_read_config_dword(dev, pos, &header);
526 if (!hpx3_cap_ver_matches(PCI_EXT_CAP_VER(header),
527 reg->pci_exp_cap_ver))
528 return;
529
530 break;
Gustavo A. R. Silva57d2dd42020-07-07 15:09:37 -0500531 case HPX_CFG_VEND_CAP:
532 case HPX_CFG_DVSEC:
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200533 default:
534 pci_warn(dev, "Encountered _HPX type 3 with unsupported config space location");
535 return;
536 }
537
538 pci_read_config_dword(dev, pos + reg->match_offset, &match_reg);
539
540 if ((match_reg & reg->match_mask_and) != reg->match_value)
541 return;
542
543 pci_read_config_dword(dev, pos + reg->reg_offset, &write_reg);
544 orig_value = write_reg;
545 write_reg &= reg->reg_mask_and;
546 write_reg |= reg->reg_mask_or;
547
548 if (orig_value == write_reg)
549 return;
550
551 pci_write_config_dword(dev, pos + reg->reg_offset, write_reg);
552
553 pci_dbg(dev, "Applied _HPX3 at [0x%x]: 0x%08x -> 0x%08x",
554 pos, orig_value, write_reg);
555}
556
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200557static void program_hpx_type3(struct pci_dev *dev, struct hpx_type3 *hpx)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200558{
559 if (!hpx)
560 return;
561
562 if (!pci_is_pcie(dev))
563 return;
564
565 program_hpx_type3_register(dev, hpx);
566}
567
Alexandru Gagniucf873c512019-02-08 10:24:13 -0600568static void parse_hpx3_register(struct hpx_type3 *hpx3_reg,
569 union acpi_object *reg_fields)
570{
571 hpx3_reg->device_type = reg_fields[0].integer.value;
572 hpx3_reg->function_type = reg_fields[1].integer.value;
573 hpx3_reg->config_space_location = reg_fields[2].integer.value;
574 hpx3_reg->pci_exp_cap_id = reg_fields[3].integer.value;
575 hpx3_reg->pci_exp_cap_ver = reg_fields[4].integer.value;
576 hpx3_reg->pci_exp_vendor_id = reg_fields[5].integer.value;
577 hpx3_reg->dvsec_id = reg_fields[6].integer.value;
578 hpx3_reg->dvsec_rev = reg_fields[7].integer.value;
579 hpx3_reg->match_offset = reg_fields[8].integer.value;
580 hpx3_reg->match_mask_and = reg_fields[9].integer.value;
581 hpx3_reg->match_value = reg_fields[10].integer.value;
582 hpx3_reg->reg_offset = reg_fields[11].integer.value;
583 hpx3_reg->reg_mask_and = reg_fields[12].integer.value;
584 hpx3_reg->reg_mask_or = reg_fields[13].integer.value;
585}
586
587static acpi_status program_type3_hpx_record(struct pci_dev *dev,
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200588 union acpi_object *record)
Alexandru Gagniucf873c512019-02-08 10:24:13 -0600589{
590 union acpi_object *fields = record->package.elements;
591 u32 desc_count, expected_length, revision;
592 union acpi_object *reg_fields;
593 struct hpx_type3 hpx3;
594 int i;
595
596 revision = fields[1].integer.value;
597 switch (revision) {
598 case 1:
599 desc_count = fields[2].integer.value;
600 expected_length = 3 + desc_count * 14;
601
602 if (record->package.count != expected_length)
603 return AE_ERROR;
604
605 for (i = 2; i < expected_length; i++)
606 if (fields[i].type != ACPI_TYPE_INTEGER)
607 return AE_ERROR;
608
609 for (i = 0; i < desc_count; i++) {
610 reg_fields = fields + 3 + i * 14;
611 parse_hpx3_register(&hpx3, reg_fields);
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200612 program_hpx_type3(dev, &hpx3);
Alexandru Gagniucf873c512019-02-08 10:24:13 -0600613 }
614
615 break;
616 default:
617 printk(KERN_WARNING
618 "%s: Type 3 Revision %d record not supported\n",
619 __func__, revision);
620 return AE_ERROR;
621 }
622 return AE_OK;
623}
624
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200625static acpi_status acpi_run_hpx(struct pci_dev *dev, acpi_handle handle)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600626{
627 acpi_status status;
628 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
629 union acpi_object *package, *record, *fields;
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200630 struct hpx_type0 hpx0;
631 struct hpx_type1 hpx1;
632 struct hpx_type2 hpx2;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600633 u32 type;
634 int i;
635
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600636 status = acpi_evaluate_object(handle, "_HPX", NULL, &buffer);
637 if (ACPI_FAILURE(status))
638 return status;
639
640 package = (union acpi_object *)buffer.pointer;
641 if (package->type != ACPI_TYPE_PACKAGE) {
642 status = AE_ERROR;
643 goto exit;
644 }
645
646 for (i = 0; i < package->package.count; i++) {
647 record = &package->package.elements[i];
648 if (record->type != ACPI_TYPE_PACKAGE) {
649 status = AE_ERROR;
650 goto exit;
651 }
652
653 fields = record->package.elements;
654 if (fields[0].type != ACPI_TYPE_INTEGER ||
655 fields[1].type != ACPI_TYPE_INTEGER) {
656 status = AE_ERROR;
657 goto exit;
658 }
659
660 type = fields[0].integer.value;
661 switch (type) {
662 case 0:
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500663 memset(&hpx0, 0, sizeof(hpx0));
664 status = decode_type0_hpx_record(record, &hpx0);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600665 if (ACPI_FAILURE(status))
666 goto exit;
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200667 program_hpx_type0(dev, &hpx0);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600668 break;
669 case 1:
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500670 memset(&hpx1, 0, sizeof(hpx1));
671 status = decode_type1_hpx_record(record, &hpx1);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600672 if (ACPI_FAILURE(status))
673 goto exit;
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200674 program_hpx_type1(dev, &hpx1);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600675 break;
676 case 2:
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500677 memset(&hpx2, 0, sizeof(hpx2));
678 status = decode_type2_hpx_record(record, &hpx2);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600679 if (ACPI_FAILURE(status))
680 goto exit;
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200681 program_hpx_type2(dev, &hpx2);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600682 break;
Alexandru Gagniucf873c512019-02-08 10:24:13 -0600683 case 3:
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200684 status = program_type3_hpx_record(dev, record);
Alexandru Gagniucf873c512019-02-08 10:24:13 -0600685 if (ACPI_FAILURE(status))
686 goto exit;
687 break;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600688 default:
Mohan Kumar25da8db2019-04-20 07:03:46 +0300689 pr_err("%s: Type %d record not supported\n",
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600690 __func__, type);
691 status = AE_ERROR;
692 goto exit;
693 }
694 }
695 exit:
696 kfree(buffer.pointer);
697 return status;
698}
699
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200700static acpi_status acpi_run_hpp(struct pci_dev *dev, acpi_handle handle)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600701{
702 acpi_status status;
703 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
704 union acpi_object *package, *fields;
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200705 struct hpx_type0 hpx0;
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600706 int i;
707
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200708 memset(&hpx0, 0, sizeof(hpx0));
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600709
710 status = acpi_evaluate_object(handle, "_HPP", NULL, &buffer);
711 if (ACPI_FAILURE(status))
712 return status;
713
714 package = (union acpi_object *) buffer.pointer;
715 if (package->type != ACPI_TYPE_PACKAGE ||
716 package->package.count != 4) {
717 status = AE_ERROR;
718 goto exit;
719 }
720
721 fields = package->package.elements;
722 for (i = 0; i < 4; i++) {
723 if (fields[i].type != ACPI_TYPE_INTEGER) {
724 status = AE_ERROR;
725 goto exit;
726 }
727 }
728
Krzysztof Wilczynskie2797ad2019-08-27 11:49:49 +0200729 hpx0.revision = 1;
730 hpx0.cache_line_size = fields[0].integer.value;
731 hpx0.latency_timer = fields[1].integer.value;
732 hpx0.enable_serr = fields[2].integer.value;
733 hpx0.enable_perr = fields[3].integer.value;
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -0500734
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200735 program_hpx_type0(dev, &hpx0);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600736
737exit:
738 kfree(buffer.pointer);
739 return status;
740}
741
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200742/* pci_acpi_program_hp_params
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600743 *
744 * @dev - the pci_dev for which we want parameters
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600745 */
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200746int pci_acpi_program_hp_params(struct pci_dev *dev)
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600747{
748 acpi_status status;
749 acpi_handle handle, phandle;
750 struct pci_bus *pbus;
751
Bjorn Helgaas8647ca9a2015-03-24 11:12:45 -0500752 if (acpi_pci_disabled)
753 return -ENODEV;
754
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600755 handle = NULL;
756 for (pbus = dev->bus; pbus; pbus = pbus->parent) {
757 handle = acpi_pci_get_bridge_handle(pbus);
758 if (handle)
759 break;
760 }
761
762 /*
763 * _HPP settings apply to all child buses, until another _HPP is
764 * encountered. If we don't find an _HPP for the input pci dev,
765 * look for it in the parent device scope since that would apply to
766 * this pci dev.
767 */
768 while (handle) {
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200769 status = acpi_run_hpx(dev, handle);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600770 if (ACPI_SUCCESS(status))
771 return 0;
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200772 status = acpi_run_hpp(dev, handle);
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600773 if (ACPI_SUCCESS(status))
774 return 0;
775 if (acpi_is_root_bridge(handle))
776 break;
777 status = acpi_get_parent(handle, &phandle);
778 if (ACPI_FAILURE(status))
779 break;
780 handle = phandle;
781 }
782 return -ENODEV;
783}
Bjorn Helgaas9ce90ea2014-09-12 15:23:14 -0600784
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600785/**
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200786 * pciehp_is_native - Check whether a hotplug port is handled by the OS
Mika Westerberg5352a442018-05-23 17:24:08 -0500787 * @bridge: Hotplug port to check
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200788 *
Mika Westerberg5352a442018-05-23 17:24:08 -0500789 * Returns true if the given @bridge is handled by the native PCIe hotplug
790 * driver.
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200791 */
Mika Westerberg5352a442018-05-23 17:24:08 -0500792bool pciehp_is_native(struct pci_dev *bridge)
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200793{
Mika Westerberg5352a442018-05-23 17:24:08 -0500794 const struct pci_host_bridge *host;
795 u32 slot_cap;
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200796
Mika Westerberg5352a442018-05-23 17:24:08 -0500797 if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE))
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200798 return false;
799
Mika Westerberg5352a442018-05-23 17:24:08 -0500800 pcie_capability_read_dword(bridge, PCI_EXP_SLTCAP, &slot_cap);
801 if (!(slot_cap & PCI_EXP_SLTCAP_HPC))
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200802 return false;
803
Mika Westerberg5352a442018-05-23 17:24:08 -0500804 if (pcie_ports_native)
805 return true;
806
807 host = pci_find_host_bridge(bridge->bus);
808 return host->native_pcie_hotplug;
Lukas Wunner437eb7b2016-10-28 10:52:06 +0200809}
810
811/**
Mika Westerberg90cc0c32018-05-31 11:42:11 -0500812 * shpchp_is_native - Check whether a hotplug port is handled by the OS
813 * @bridge: Hotplug port to check
814 *
815 * Returns true if the given @bridge is handled by the native SHPC hotplug
816 * driver.
817 */
818bool shpchp_is_native(struct pci_dev *bridge)
819{
Bjorn Helgaasb03799b2018-06-25 16:49:06 -0500820 return bridge->shpc_managed;
Mika Westerberg90cc0c32018-05-31 11:42:11 -0500821}
822
823/**
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600824 * pci_acpi_wake_bus - Root bus wakeup notification fork function.
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200825 * @context: Device wakeup context.
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600826 */
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200827static void pci_acpi_wake_bus(struct acpi_device_wakeup_context *context)
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600828{
829 struct acpi_device *adev;
830 struct acpi_pci_root *root;
831
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200832 adev = container_of(context, struct acpi_device, wakeup.context);
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600833 root = acpi_driver_data(adev);
834 pci_pme_wakeup_bus(root->bus);
835}
836
837/**
838 * pci_acpi_wake_dev - PCI device wakeup notification work function.
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200839 * @context: Device wakeup context.
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600840 */
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200841static void pci_acpi_wake_dev(struct acpi_device_wakeup_context *context)
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600842{
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600843 struct pci_dev *pci_dev;
844
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600845 pci_dev = to_pci_dev(context->dev);
846
847 if (pci_dev->pme_poll)
848 pci_dev->pme_poll = false;
849
850 if (pci_dev->current_state == PCI_D3cold) {
851 pci_wakeup_event(pci_dev);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200852 pm_request_resume(&pci_dev->dev);
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600853 return;
854 }
855
856 /* Clear PME Status if set. */
857 if (pci_dev->pme_support)
858 pci_check_pme_status(pci_dev);
859
860 pci_wakeup_event(pci_dev);
Rafael J. Wysocki64fd1c702017-06-12 22:48:41 +0200861 pm_request_resume(&pci_dev->dev);
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600862
Markus Elfringff0387c2014-11-10 21:02:17 -0700863 pci_pme_wakeup_bus(pci_dev->subordinate);
Bjorn Helgaas5e3d2342014-09-12 15:36:29 -0600864}
865
866/**
867 * pci_acpi_add_bus_pm_notifier - Register PM notifier for root PCI bus.
868 * @dev: PCI root bridge ACPI device.
869 */
870acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev)
871{
872 return acpi_add_pm_notifier(dev, NULL, pci_acpi_wake_bus);
873}
874
875/**
876 * pci_acpi_add_pm_notifier - Register PM notifier for given PCI device.
877 * @dev: ACPI device to add the notifier for.
878 * @pci_dev: PCI device to check for the PME status if an event is signaled.
879 */
880acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
881 struct pci_dev *pci_dev)
882{
883 return acpi_add_pm_notifier(dev, &pci_dev->dev, pci_acpi_wake_dev);
884}
885
David Shaohua Li0f644742005-03-19 00:15:48 -0500886/*
887 * _SxD returns the D-state with the highest power
888 * (lowest D-state number) supported in the S-state "x".
889 *
890 * If the devices does not have a _PRW
891 * (Power Resources for Wake) supporting system wakeup from "x"
892 * then the OS is free to choose a lower power (higher number
893 * D-state) than the return value from _SxD.
894 *
895 * But if _PRW is enabled at S-state "x", the OS
896 * must not choose a power lower than _SxD --
897 * unless the device has an _SxW method specifying
898 * the lowest power (highest D-state number) the device
899 * may enter while still able to wake the system.
900 *
901 * ie. depending on global OS policy:
902 *
903 * if (_PRW at S-state x)
904 * choose from highest power _SxD to lowest power _SxW
905 * else // no _PRW at S-state x
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700906 * choose highest power _SxD or any lower power
David Shaohua Li0f644742005-03-19 00:15:48 -0500907 */
908
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200909pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
David Shaohua Li0f644742005-03-19 00:15:48 -0500910{
Huang Ying448bd852012-06-23 10:23:51 +0800911 int acpi_state, d_max;
David Shaohua Li0f644742005-03-19 00:15:48 -0500912
Huang Ying448bd852012-06-23 10:23:51 +0800913 if (pdev->no_d3cold)
914 d_max = ACPI_STATE_D3_HOT;
915 else
916 d_max = ACPI_STATE_D3_COLD;
917 acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL, d_max);
Shaohua Liab826ca2007-07-20 10:03:22 +0800918 if (acpi_state < 0)
919 return PCI_POWER_ERROR;
920
921 switch (acpi_state) {
922 case ACPI_STATE_D0:
923 return PCI_D0;
924 case ACPI_STATE_D1:
925 return PCI_D1;
926 case ACPI_STATE_D2:
927 return PCI_D2;
Lin Ming1cc0c992012-04-23 09:03:49 +0800928 case ACPI_STATE_D3_HOT:
Shaohua Liab826ca2007-07-20 10:03:22 +0800929 return PCI_D3hot;
Lin Ming28c21032011-05-04 22:56:43 +0800930 case ACPI_STATE_D3_COLD:
931 return PCI_D3cold;
Shaohua Liab826ca2007-07-20 10:03:22 +0800932 }
933 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500934}
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200935
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500936static struct acpi_device *acpi_pci_find_companion(struct device *dev);
937
Shanker Donthineni3a159552021-08-17 23:34:57 +0530938void pci_set_acpi_fwnode(struct pci_dev *dev)
939{
Jean-Philippe Brucker6bd65972021-09-13 18:23:59 +0100940 if (!dev_fwnode(&dev->dev) && !pci_dev_is_added(dev))
Shanker Donthineni3a159552021-08-17 23:34:57 +0530941 ACPI_COMPANION_SET(&dev->dev,
942 acpi_pci_find_companion(&dev->dev));
943}
944
Shanker Donthineni6937b7d2021-08-17 23:34:59 +0530945/**
946 * pci_dev_acpi_reset - do a function level reset using _RST method
947 * @dev: device to reset
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530948 * @probe: if true, return 0 if device supports _RST
Shanker Donthineni6937b7d2021-08-17 23:34:59 +0530949 */
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530950int pci_dev_acpi_reset(struct pci_dev *dev, bool probe)
Shanker Donthineni6937b7d2021-08-17 23:34:59 +0530951{
952 acpi_handle handle = ACPI_HANDLE(&dev->dev);
953
954 if (!handle || !acpi_has_method(handle, "_RST"))
955 return -ENOTTY;
956
957 if (probe)
958 return 0;
959
960 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_RST", NULL, NULL))) {
961 pci_warn(dev, "ACPI _RST failed\n");
962 return -ENOTTY;
963 }
964
965 return 0;
966}
967
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200968bool acpi_pci_power_manageable(struct pci_dev *dev)
Shanker Donthineni4273e642021-08-17 16:09:47 -0500969{
970 struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
971
Rafael J. Wysockif0918372021-09-20 21:17:39 +0200972 return adev && acpi_device_power_manageable(adev);
Shanker Donthineni4273e642021-08-17 16:09:47 -0500973}
974
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200975bool acpi_pci_bridge_d3(struct pci_dev *dev)
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500976{
Shanker Donthineni375553a2021-08-17 23:34:58 +0530977 const union acpi_object *obj;
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500978 struct acpi_device *adev;
Shanker Donthineni375553a2021-08-17 23:34:58 +0530979 struct pci_dev *rpdev;
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500980
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200981 if (acpi_pci_disabled || !dev->is_hotplug_bridge)
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500982 return false;
983
Lukas Wunnerc6e33132020-10-02 07:10:12 +0200984 /* Assume D3 support if the bridge is power-manageable by ACPI. */
Shanker Donthineni4273e642021-08-17 16:09:47 -0500985 if (acpi_pci_power_manageable(dev))
Lukas Wunnerc6e33132020-10-02 07:10:12 +0200986 return true;
987
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500988 /*
Shanker Donthineni375553a2021-08-17 23:34:58 +0530989 * The ACPI firmware will provide the device-specific properties through
990 * _DSD configuration object. Look for the 'HotPlugSupportInD3' property
991 * for the root port and if it is set we know the hierarchy behind it
992 * supports D3 just fine.
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500993 */
Shanker Donthineni375553a2021-08-17 23:34:58 +0530994 rpdev = pcie_find_root_port(dev);
995 if (!rpdev)
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500996 return false;
997
Shanker Donthineni375553a2021-08-17 23:34:58 +0530998 adev = ACPI_COMPANION(&rpdev->dev);
Mika Westerberg26ad34d2018-09-27 16:57:14 -0500999 if (!adev)
1000 return false;
1001
Shanker Donthineni375553a2021-08-17 23:34:58 +05301002 if (acpi_dev_get_property(adev, "HotPlugSupportInD3",
1003 ACPI_TYPE_INTEGER, &obj) < 0)
Mika Westerberg26ad34d2018-09-27 16:57:14 -05001004 return false;
1005
Shanker Donthineni375553a2021-08-17 23:34:58 +05301006 return obj->integer.value == 1;
Mika Westerberg26ad34d2018-09-27 16:57:14 -05001007}
1008
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001009int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
David Shaohua Lib9131002005-03-19 00:16:18 -05001010{
Rafael J. Wysocki85dbb3d2014-07-24 01:18:53 +02001011 struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
David Brownell583c3772008-02-22 21:41:51 -08001012 static const u8 state_conv[] = {
1013 [PCI_D0] = ACPI_STATE_D0,
1014 [PCI_D1] = ACPI_STATE_D1,
1015 [PCI_D2] = ACPI_STATE_D2,
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +02001016 [PCI_D3hot] = ACPI_STATE_D3_HOT,
Rafael J. Wysockifc6504b2013-06-14 00:29:50 +02001017 [PCI_D3cold] = ACPI_STATE_D3_COLD,
David Shaohua Lib9131002005-03-19 00:16:18 -05001018 };
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001019 int error = -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -05001020
Shaohua Li10b3dca2007-07-20 10:03:25 +08001021 /* If the ACPI device has _EJ0, ignore the device */
Rafael J. Wysocki85dbb3d2014-07-24 01:18:53 +02001022 if (!adev || acpi_has_method(adev->handle, "_EJ0"))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001023 return -ENODEV;
David Brownell583c3772008-02-22 21:41:51 -08001024
1025 switch (state) {
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +02001026 case PCI_D3cold:
1027 if (dev_pm_qos_flags(&dev->dev, PM_QOS_FLAG_NO_POWER_OFF) ==
1028 PM_QOS_FLAGS_ALL) {
1029 error = -EBUSY;
1030 break;
1031 }
Gustavo A. R. Silva57d2dd42020-07-07 15:09:37 -05001032 fallthrough;
David Brownell583c3772008-02-22 21:41:51 -08001033 case PCI_D0:
1034 case PCI_D1:
1035 case PCI_D2:
1036 case PCI_D3hot:
Rafael J. Wysocki85dbb3d2014-07-24 01:18:53 +02001037 error = acpi_device_set_power(adev, state_conv[state]);
David Brownell583c3772008-02-22 21:41:51 -08001038 }
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001039
1040 if (!error)
Frederick Lawler7506dc72018-01-18 12:55:24 -06001041 pci_dbg(dev, "power state changed by ACPI to %s\n",
Rafael J. Wysocki69397852021-03-25 19:57:51 +01001042 acpi_power_state_string(adev->power.state));
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001043
1044 return error;
David Shaohua Lib9131002005-03-19 00:16:18 -05001045}
1046
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001047pci_power_t acpi_pci_get_power_state(struct pci_dev *dev)
Lukas Wunnercc7cc022016-09-18 05:39:20 +02001048{
1049 struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
1050 static const pci_power_t state_conv[] = {
1051 [ACPI_STATE_D0] = PCI_D0,
1052 [ACPI_STATE_D1] = PCI_D1,
1053 [ACPI_STATE_D2] = PCI_D2,
1054 [ACPI_STATE_D3_HOT] = PCI_D3hot,
1055 [ACPI_STATE_D3_COLD] = PCI_D3cold,
1056 };
1057 int state;
1058
1059 if (!adev || !acpi_device_power_manageable(adev))
1060 return PCI_UNKNOWN;
1061
Mika Westerberg83a16e32019-06-25 13:29:40 +03001062 state = adev->power.state;
1063 if (state == ACPI_STATE_UNKNOWN)
Lukas Wunnercc7cc022016-09-18 05:39:20 +02001064 return PCI_UNKNOWN;
1065
1066 return state_conv[state];
1067}
1068
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001069void acpi_pci_refresh_power_state(struct pci_dev *dev)
Rafael J. Wysockib51033e2019-06-25 14:09:12 +02001070{
1071 struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
1072
1073 if (adev && acpi_device_power_manageable(adev))
1074 acpi_device_update_power(adev, NULL);
1075}
1076
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001077static int acpi_pci_propagate_wakeup(struct pci_bus *bus, bool enable)
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +02001078{
1079 while (bus->parent) {
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001080 if (acpi_pm_device_can_wakeup(&bus->self->dev))
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +01001081 return acpi_pm_set_device_wakeup(&bus->self->dev, enable);
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001082
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +02001083 bus = bus->parent;
1084 }
1085
1086 /* We have reached the root bus. */
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001087 if (bus->bridge) {
1088 if (acpi_pm_device_can_wakeup(bus->bridge))
Rafael J. Wysocki7482c5c2020-11-24 20:44:00 +01001089 return acpi_pm_set_device_wakeup(bus->bridge, enable);
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001090 }
1091 return 0;
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +02001092}
1093
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001094int acpi_pci_wakeup(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001095{
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001096 if (acpi_pci_disabled)
1097 return 0;
1098
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001099 if (acpi_pm_device_can_wakeup(&dev->dev))
Rafael J. Wysocki4d183d02017-06-24 01:54:39 +02001100 return acpi_pm_set_device_wakeup(&dev->dev, enable);
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +02001101
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001102 return acpi_pci_propagate_wakeup(dev->bus, enable);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001103}
1104
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001105bool acpi_pci_need_resume(struct pci_dev *dev)
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01001106{
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001107 struct acpi_device *adev;
1108
1109 if (acpi_pci_disabled)
1110 return false;
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01001111
Rafael J. Wysocki26112dd2018-06-30 23:19:33 +02001112 /*
1113 * In some cases (eg. Samsung 305V4A) leaving a bridge in suspend over
1114 * system-wide suspend/resume confuses the platform firmware, so avoid
Rafael J. Wysocki9d64b532018-08-16 12:56:46 +02001115 * doing that. According to Section 16.1.6 of ACPI 6.2, endpoint
Rafael J. Wysocki26112dd2018-06-30 23:19:33 +02001116 * devices are expected to be in D3 before invoking the S3 entry path
1117 * from the firmware, so they should not be affected by this issue.
1118 */
Rafael J. Wysocki9d64b532018-08-16 12:56:46 +02001119 if (pci_is_bridge(dev) && acpi_target_system_state() != ACPI_STATE_S0)
Rafael J. Wysocki26112dd2018-06-30 23:19:33 +02001120 return true;
1121
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +02001122 adev = ACPI_COMPANION(&dev->dev);
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01001123 if (!adev || !acpi_device_power_manageable(adev))
1124 return false;
1125
Rafael J. Wysocki9a51c6b2019-05-16 12:42:20 +02001126 if (adev->wakeup.flags.valid &&
1127 device_may_wakeup(&dev->dev) != !!adev->wakeup.prepare_count)
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01001128 return true;
1129
1130 if (acpi_target_system_state() == ACPI_STATE_S0)
1131 return false;
1132
1133 return !!adev->power.flags.dsw_present;
1134}
1135
Jiang Liu5090d4a2013-04-12 05:44:21 +00001136void acpi_pci_add_bus(struct pci_bus *bus)
1137{
Aaron Lue33caa82015-03-25 14:37:06 +08001138 union acpi_object *obj;
1139 struct pci_host_bridge *bridge;
1140
Vitaly Kuznetsova0040c02017-09-14 16:50:14 +02001141 if (acpi_pci_disabled || !bus->bridge || !ACPI_HANDLE(bus->bridge))
Jiang Liu5090d4a2013-04-12 05:44:21 +00001142 return;
1143
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +02001144 acpi_pci_slot_enumerate(bus);
1145 acpiphp_enumerate_slots(bus);
Aaron Lue33caa82015-03-25 14:37:06 +08001146
1147 /*
1148 * For a host bridge, check its _DSM for function 8 and if
1149 * that is available, mark it in pci_host_bridge.
1150 */
1151 if (!pci_is_root_bus(bus))
1152 return;
1153
Andy Shevchenko94116f82017-06-05 19:40:46 +03001154 obj = acpi_evaluate_dsm(ACPI_HANDLE(bus->bridge), &pci_acpi_dsm_guid, 3,
Krzysztof Wilczyński3910eba2020-05-26 21:39:05 +00001155 DSM_PCI_POWER_ON_RESET_DELAY, NULL);
Aaron Lue33caa82015-03-25 14:37:06 +08001156 if (!obj)
1157 return;
1158
1159 if (obj->type == ACPI_TYPE_INTEGER && obj->integer.value == 1) {
1160 bridge = pci_find_host_bridge(bus);
1161 bridge->ignore_reset_delay = 1;
1162 }
1163 ACPI_FREE(obj);
Jiang Liu5090d4a2013-04-12 05:44:21 +00001164}
1165
1166void acpi_pci_remove_bus(struct pci_bus *bus)
1167{
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +02001168 if (acpi_pci_disabled || !bus->bridge)
Jiang Liu5090d4a2013-04-12 05:44:21 +00001169 return;
1170
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001171 acpiphp_remove_slots(bus);
Jiang Liu5c0b04e2013-04-12 05:44:24 +00001172 acpi_pci_slot_remove(bus);
Jiang Liu5090d4a2013-04-12 05:44:21 +00001173}
1174
David Shaohua Li84df749f2005-03-18 18:53:36 -05001175/* ACPI bus type */
Rafael J. Wysocki59dc3322021-08-24 16:43:55 +02001176
1177
1178static DECLARE_RWSEM(pci_acpi_companion_lookup_sem);
1179static struct acpi_device *(*pci_acpi_find_companion_hook)(struct pci_dev *);
1180
1181/**
1182 * pci_acpi_set_companion_lookup_hook - Set ACPI companion lookup callback.
1183 * @func: ACPI companion lookup callback pointer or NULL.
1184 *
1185 * Set a special ACPI companion lookup callback for PCI devices whose companion
1186 * objects in the ACPI namespace have _ADR with non-standard bus-device-function
1187 * encodings.
1188 *
1189 * Return 0 on success or a negative error code on failure (in which case no
1190 * changes are made).
1191 *
1192 * The caller is responsible for the appropriate ordering of the invocations of
1193 * this function with respect to the enumeration of the PCI devices needing the
1194 * callback installed by it.
1195 */
1196int pci_acpi_set_companion_lookup_hook(struct acpi_device *(*func)(struct pci_dev *))
1197{
1198 int ret;
1199
1200 if (!func)
1201 return -EINVAL;
1202
1203 down_write(&pci_acpi_companion_lookup_sem);
1204
1205 if (pci_acpi_find_companion_hook) {
1206 ret = -EBUSY;
1207 } else {
1208 pci_acpi_find_companion_hook = func;
1209 ret = 0;
1210 }
1211
1212 up_write(&pci_acpi_companion_lookup_sem);
1213
1214 return ret;
1215}
1216EXPORT_SYMBOL_GPL(pci_acpi_set_companion_lookup_hook);
1217
1218/**
1219 * pci_acpi_clear_companion_lookup_hook - Clear ACPI companion lookup callback.
1220 *
1221 * Clear the special ACPI companion lookup callback previously set by
1222 * pci_acpi_set_companion_lookup_hook(). Block until the last running instance
1223 * of the callback returns before clearing it.
1224 *
1225 * The caller is responsible for the appropriate ordering of the invocations of
1226 * this function with respect to the enumeration of the PCI devices needing the
1227 * callback cleared by it.
1228 */
1229void pci_acpi_clear_companion_lookup_hook(void)
1230{
1231 down_write(&pci_acpi_companion_lookup_sem);
1232
1233 pci_acpi_find_companion_hook = NULL;
1234
1235 up_write(&pci_acpi_companion_lookup_sem);
1236}
1237EXPORT_SYMBOL_GPL(pci_acpi_clear_companion_lookup_hook);
1238
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +01001239static struct acpi_device *acpi_pci_find_companion(struct device *dev)
David Shaohua Li84df749f2005-03-18 18:53:36 -05001240{
Rafael J. Wysocki60f75b82013-08-07 22:55:00 +02001241 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiaa0b1572020-12-11 21:17:35 +01001242 struct acpi_device *adev;
Rafael J. Wysocki5ce79d22013-11-28 23:58:08 +01001243 bool check_children;
Rafael J. Wysocki60f75b82013-08-07 22:55:00 +02001244 u64 addr;
David Shaohua Li84df749f2005-03-18 18:53:36 -05001245
Rafael J. Wysocki3fb937f2021-10-01 15:58:10 +02001246 if (!dev->parent)
1247 return NULL;
1248
Rafael J. Wysocki59dc3322021-08-24 16:43:55 +02001249 down_read(&pci_acpi_companion_lookup_sem);
1250
1251 adev = pci_acpi_find_companion_hook ?
1252 pci_acpi_find_companion_hook(pci_dev) : NULL;
1253
1254 up_read(&pci_acpi_companion_lookup_sem);
1255
1256 if (adev)
1257 return adev;
1258
Yijing Wang6788a512014-05-04 12:23:38 +08001259 check_children = pci_is_bridge(pci_dev);
David Shaohua Li84df749f2005-03-18 18:53:36 -05001260 /* Please ref to ACPI spec for the syntax of _ADR */
1261 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
Rafael J. Wysockiaa0b1572020-12-11 21:17:35 +01001262 adev = acpi_find_child_device(ACPI_COMPANION(dev->parent), addr,
Rafael J. Wysocki5ce79d22013-11-28 23:58:08 +01001263 check_children);
Rafael J. Wysockiaa0b1572020-12-11 21:17:35 +01001264
1265 /*
1266 * There may be ACPI device objects in the ACPI namespace that are
1267 * children of the device object representing the host bridge, but don't
1268 * represent PCI devices. Both _HID and _ADR may be present for them,
1269 * even though that is against the specification (for example, see
1270 * Section 6.1 of ACPI 6.3), but in many cases the _ADR returns 0 which
1271 * appears to indicate that they should not be taken into consideration
1272 * as potential companions of PCI devices on the root bus.
1273 *
1274 * To catch this special case, disregard the returned device object if
1275 * it has a valid _HID, addr is 0 and the PCI device at hand is on the
1276 * root bus.
1277 */
1278 if (adev && adev->pnp.type.platform_id && !addr &&
1279 pci_is_root_bus(pci_dev->bus))
1280 return NULL;
1281
1282 return adev;
David Shaohua Li84df749f2005-03-18 18:53:36 -05001283}
1284
Aaron Lue33caa82015-03-25 14:37:06 +08001285/**
1286 * pci_acpi_optimize_delay - optimize PCI D3 and D3cold delay from ACPI
1287 * @pdev: the PCI device whose delay is to be updated
Srinidhi Kasagar113e0d12015-07-15 14:59:46 +05301288 * @handle: ACPI handle of this device
Aaron Lue33caa82015-03-25 14:37:06 +08001289 *
Krzysztof Wilczyński3789af92020-07-30 21:08:48 +00001290 * Update the d3hot_delay and d3cold_delay of a PCI device from the ACPI _DSM
Aaron Lue33caa82015-03-25 14:37:06 +08001291 * control method of either the device itself or the PCI host bridge.
1292 *
1293 * Function 8, "Reset Delay," applies to the entire hierarchy below a PCI
1294 * host bridge. If it returns one, the OS may assume that all devices in
1295 * the hierarchy have already completed power-on reset delays.
1296 *
1297 * Function 9, "Device Readiness Durations," applies only to the object
1298 * where it is located. It returns delay durations required after various
1299 * events if the device requires less time than the spec requires. Delays
1300 * from this function take precedence over the Reset Delay function.
1301 *
1302 * These _DSM functions are defined by the draft ECN of January 28, 2014,
1303 * titled "ACPI additions for FW latency optimizations."
1304 */
1305static void pci_acpi_optimize_delay(struct pci_dev *pdev,
1306 acpi_handle handle)
1307{
1308 struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus);
1309 int value;
1310 union acpi_object *obj, *elements;
1311
1312 if (bridge->ignore_reset_delay)
1313 pdev->d3cold_delay = 0;
1314
Andy Shevchenko94116f82017-06-05 19:40:46 +03001315 obj = acpi_evaluate_dsm(handle, &pci_acpi_dsm_guid, 3,
Krzysztof Wilczyński3910eba2020-05-26 21:39:05 +00001316 DSM_PCI_DEVICE_READINESS_DURATIONS, NULL);
Aaron Lue33caa82015-03-25 14:37:06 +08001317 if (!obj)
1318 return;
1319
1320 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 5) {
1321 elements = obj->package.elements;
1322 if (elements[0].type == ACPI_TYPE_INTEGER) {
1323 value = (int)elements[0].integer.value / 1000;
1324 if (value < PCI_PM_D3COLD_WAIT)
1325 pdev->d3cold_delay = value;
1326 }
1327 if (elements[3].type == ACPI_TYPE_INTEGER) {
1328 value = (int)elements[3].integer.value / 1000;
Krzysztof Wilczyński3789af92020-07-30 21:08:48 +00001329 if (value < PCI_PM_D3HOT_WAIT)
1330 pdev->d3hot_delay = value;
Aaron Lue33caa82015-03-25 14:37:06 +08001331 }
1332 }
1333 ACPI_FREE(obj);
1334}
1335
Rajat Jain99b50be2020-07-07 15:46:03 -07001336static void pci_acpi_set_external_facing(struct pci_dev *dev)
Mika Westerberg617654a2018-08-16 12:28:48 +03001337{
1338 u8 val;
1339
1340 if (pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT)
1341 return;
1342 if (device_property_read_u8(&dev->dev, "ExternalFacingPort", &val))
1343 return;
1344
1345 /*
1346 * These root ports expose PCIe (including DMA) outside of the
Rajat Jain99b50be2020-07-07 15:46:03 -07001347 * system. Everything downstream from them is external.
Mika Westerberg617654a2018-08-16 12:28:48 +03001348 */
1349 if (val)
Rajat Jain99b50be2020-07-07 15:46:03 -07001350 dev->external_facing = 1;
Mika Westerberg617654a2018-08-16 12:28:48 +03001351}
1352
Rafael J. Wysocki47954482021-09-18 14:53:44 +02001353void pci_acpi_setup(struct device *dev, struct acpi_device *adev)
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001354{
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001355 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockif0842802013-12-29 23:37:15 +01001356
Aaron Lue33caa82015-03-25 14:37:06 +08001357 pci_acpi_optimize_delay(pci_dev, adev->handle);
Rajat Jain99b50be2020-07-07 15:46:03 -07001358 pci_acpi_set_external_facing(pci_dev);
Kuppuswamy Sathyanarayananac1c8e32020-03-23 17:26:07 -07001359 pci_acpi_add_edr_notifier(pci_dev);
Aaron Lue33caa82015-03-25 14:37:06 +08001360
Rafael J. Wysockif0842802013-12-29 23:37:15 +01001361 pci_acpi_add_pm_notifier(adev, pci_dev);
1362 if (!adev->wakeup.flags.valid)
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001363 return;
1364
1365 device_set_wakeup_capable(dev, true);
Mika Westerberg6299cf92018-09-27 16:54:13 -05001366 /*
1367 * For bridges that can do D3 we enable wake automatically (as
1368 * we do for the power management itself in that case). The
1369 * reason is that the bridge may have additional methods such as
1370 * _DSW that need to be called.
1371 */
1372 if (pci_dev->bridge_d3)
1373 device_wakeup_enable(dev);
1374
Rafael J. Wysocki8370c2d2017-06-24 01:56:13 +02001375 acpi_pci_wakeup(pci_dev, false);
Mika Westerberg53b22f92019-06-25 13:29:42 +03001376 acpi_device_power_add_dependent(adev, dev);
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001377}
1378
Rafael J. Wysocki47954482021-09-18 14:53:44 +02001379void pci_acpi_cleanup(struct device *dev, struct acpi_device *adev)
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001380{
Mika Westerberg6299cf92018-09-27 16:54:13 -05001381 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001382
Kuppuswamy Sathyanarayananac1c8e32020-03-23 17:26:07 -07001383 pci_acpi_remove_edr_notifier(pci_dev);
Rafael J. Wysockif0842802013-12-29 23:37:15 +01001384 pci_acpi_remove_pm_notifier(adev);
Mika Westerberg6299cf92018-09-27 16:54:13 -05001385 if (adev->wakeup.flags.valid) {
Mika Westerberg53b22f92019-06-25 13:29:42 +03001386 acpi_device_power_remove_dependent(adev, dev);
Mika Westerberg6299cf92018-09-27 16:54:13 -05001387 if (pci_dev->bridge_d3)
1388 device_wakeup_disable(dev);
1389
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001390 device_set_wakeup_capable(dev, false);
Mika Westerberg6299cf92018-09-27 16:54:13 -05001391 }
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +01001392}
1393
Suravee Suthikulpanit471036b2015-12-10 08:55:27 -08001394static struct fwnode_handle *(*pci_msi_get_fwnode_cb)(struct device *dev);
1395
1396/**
1397 * pci_msi_register_fwnode_provider - Register callback to retrieve fwnode
1398 * @fn: Callback matching a device to a fwnode that identifies a PCI
1399 * MSI domain.
1400 *
1401 * This should be called by irqchip driver, which is the parent of
1402 * the MSI domain to provide callback interface to query fwnode.
1403 */
1404void
1405pci_msi_register_fwnode_provider(struct fwnode_handle *(*fn)(struct device *))
1406{
1407 pci_msi_get_fwnode_cb = fn;
1408}
1409
1410/**
1411 * pci_host_bridge_acpi_msi_domain - Retrieve MSI domain of a PCI host bridge
1412 * @bus: The PCI host bridge bus.
1413 *
1414 * This function uses the callback function registered by
1415 * pci_msi_register_fwnode_provider() to retrieve the irq_domain with
1416 * type DOMAIN_BUS_PCI_MSI of the specified host bridge bus.
1417 * This returns NULL on error or when the domain is not found.
1418 */
1419struct irq_domain *pci_host_bridge_acpi_msi_domain(struct pci_bus *bus)
1420{
1421 struct fwnode_handle *fwnode;
1422
1423 if (!pci_msi_get_fwnode_cb)
1424 return NULL;
1425
1426 fwnode = pci_msi_get_fwnode_cb(&bus->dev);
1427 if (!fwnode)
1428 return NULL;
1429
1430 return irq_find_matching_fwnode(fwnode, DOMAIN_BUS_PCI_MSI);
1431}
1432
Muthu Kumar9c273b92006-04-28 00:42:21 -07001433static int __init acpi_pci_init(void)
David Shaohua Li84df749f2005-03-18 18:53:36 -05001434{
Bob Moore993958f2009-02-03 15:14:33 +08001435 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_MSI) {
Yijing Wange7d45152013-05-28 16:03:46 +08001436 pr_info("ACPI FADT declares the system doesn't support MSI, so disable it\n");
Shaohua Lif8993af2007-04-25 11:05:12 +08001437 pci_no_msi();
1438 }
Shaohua Li5fde2442008-07-23 10:32:24 +08001439
Bob Moore993958f2009-02-03 15:14:33 +08001440 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
Yijing Wange7d45152013-05-28 16:03:46 +08001441 pr_info("ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
Shaohua Li5fde2442008-07-23 10:32:24 +08001442 pcie_no_aspm();
1443 }
1444
Rafael J. Wysocki47954482021-09-18 14:53:44 +02001445 if (acpi_pci_disabled)
David Shaohua Li84df749f2005-03-18 18:53:36 -05001446 return 0;
Jiang Liu5c0b04e2013-04-12 05:44:24 +00001447
Jiang Liu5c0b04e2013-04-12 05:44:24 +00001448 acpi_pci_slot_init();
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001449 acpiphp_init();
Jiang Liu5c0b04e2013-04-12 05:44:24 +00001450
David Shaohua Li84df749f2005-03-18 18:53:36 -05001451 return 0;
1452}
Muthu Kumar9c273b92006-04-28 00:42:21 -07001453arch_initcall(acpi_pci_init);