]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/pci/pci.h
PCI/ATS: Cache PRI Capability offset
[mirror_ubuntu-jammy-kernel.git] / drivers / pci / pci.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
557848c3
ZY
2#ifndef DRIVERS_PCI_H
3#define DRIVERS_PCI_H
4
2209e06f
AG
5#include <linux/pci.h>
6
fff905f3
WY
7#define PCI_FIND_CAP_TTL 48
8
8531e283
LW
9#define PCI_VSEC_ID_INTEL_TBT 0x1234 /* Thunderbolt */
10
343e51ae 11extern const unsigned char pcie_link_speed[];
11eb0e0e 12extern bool pci_early_dump;
343e51ae 13
7a1562d4
YL
14bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
15
1da177e4
LT
16/* Functions internal to the PCI core code */
17
f39d5b72
BH
18int pci_create_sysfs_dev_files(struct pci_dev *pdev);
19void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
6058989b 20#if !defined(CONFIG_DMI) && !defined(CONFIG_ACPI)
911e1c9b 21static inline void pci_create_firmware_label_files(struct pci_dev *pdev)
b879743f 22{ return; }
911e1c9b 23static inline void pci_remove_firmware_label_files(struct pci_dev *pdev)
b879743f 24{ return; }
911e1c9b 25#else
f39d5b72
BH
26void pci_create_firmware_label_files(struct pci_dev *pdev);
27void pci_remove_firmware_label_files(struct pci_dev *pdev);
911e1c9b 28#endif
f39d5b72 29void pci_cleanup_rom(struct pci_dev *dev);
f7195824 30
3b519e4e
MW
31enum pci_mmap_api {
32 PCI_MMAP_SYSFS, /* mmap on /sys/bus/pci/devices/<BDF>/resource<N> */
33 PCI_MMAP_PROCFS /* mmap on /proc/bus/pci/<BDF> */
34};
f39d5b72
BH
35int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
36 enum pci_mmap_api mmap_api);
f7195824 37
711d5779 38int pci_probe_reset_function(struct pci_dev *dev);
381634ca 39int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
c4eed62a 40int pci_bus_error_reset(struct pci_dev *dev);
ce5ccdef 41
c776dd50
KS
42#define PCI_PM_D2_DELAY 200
43#define PCI_PM_D3_WAIT 10
44#define PCI_PM_D3COLD_WAIT 100
45#define PCI_PM_BUS_WAIT 50
46
961d9120 47/**
b33bfdef 48 * struct pci_platform_pm_ops - Firmware PM callbacks
961d9120 49 *
26ad34d5
MW
50 * @bridge_d3: Does the bridge allow entering into D3
51 *
b33bfdef 52 * @is_manageable: returns 'true' if given device is power manageable by the
0aa0f5d1 53 * platform firmware
961d9120 54 *
b33bfdef 55 * @set_state: invokes the platform firmware to set the device's power state
961d9120 56 *
cc7cc02b
LW
57 * @get_state: queries the platform firmware for a device's current power state
58 *
b51033e0
RW
59 * @refresh_state: asks the platform to refresh the device's power state data
60 *
b33bfdef 61 * @choose_state: returns PCI power state of given device preferred by the
0aa0f5d1
BH
62 * platform; to be used during system-wide transitions from a
63 * sleeping state to the working state and vice versa
961d9120 64 *
0847684c 65 * @set_wakeup: enables/disables wakeup capability for the device
b67ea761 66 *
bac2a909 67 * @need_resume: returns 'true' if the given device (which is currently
0aa0f5d1
BH
68 * suspended) needs to be resumed to be configured for system
69 * wakeup.
bac2a909 70 *
961d9120
RW
71 * If given platform is generally capable of power managing PCI devices, all of
72 * these callbacks are mandatory.
73 */
74struct pci_platform_pm_ops {
26ad34d5 75 bool (*bridge_d3)(struct pci_dev *dev);
961d9120
RW
76 bool (*is_manageable)(struct pci_dev *dev);
77 int (*set_state)(struct pci_dev *dev, pci_power_t state);
cc7cc02b 78 pci_power_t (*get_state)(struct pci_dev *dev);
b51033e0 79 void (*refresh_state)(struct pci_dev *dev);
961d9120 80 pci_power_t (*choose_state)(struct pci_dev *dev);
0847684c 81 int (*set_wakeup)(struct pci_dev *dev, bool enable);
bac2a909 82 bool (*need_resume)(struct pci_dev *dev);
961d9120
RW
83};
84
299f2ffe 85int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
f39d5b72 86void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
b51033e0 87void pci_refresh_power_state(struct pci_dev *dev);
f39d5b72
BH
88void pci_power_up(struct pci_dev *dev);
89void pci_disable_enabled_device(struct pci_dev *dev);
90int pci_finish_runtime_suspend(struct pci_dev *dev);
dcb0453d 91void pcie_clear_root_pme_status(struct pci_dev *dev);
669696eb
KS
92bool pci_check_pme_status(struct pci_dev *dev);
93void pci_pme_wakeup_bus(struct pci_bus *bus);
f39d5b72 94int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
0ce3fcaf 95void pci_pme_restore(struct pci_dev *dev);
0c7376ad
RW
96bool pci_dev_need_resume(struct pci_dev *dev);
97void pci_dev_adjust_pme(struct pci_dev *dev);
2cef548a 98void pci_dev_complete_resume(struct pci_dev *pci_dev);
f39d5b72
BH
99void pci_config_pm_runtime_get(struct pci_dev *dev);
100void pci_config_pm_runtime_put(struct pci_dev *dev);
101void pci_pm_init(struct pci_dev *dev);
938174e5 102void pci_ea_init(struct pci_dev *dev);
f39d5b72 103void pci_allocate_cap_save_buffers(struct pci_dev *dev);
f796841e 104void pci_free_cap_save_buffers(struct pci_dev *dev);
c6a63307 105bool pci_bridge_d3_possible(struct pci_dev *dev);
1ed276a7 106void pci_bridge_d3_update(struct pci_dev *dev);
aa8c6c93 107
b6e335ae
RW
108static inline void pci_wakeup_event(struct pci_dev *dev)
109{
110 /* Wait 100 ms before the system can be put into a sleep state. */
111 pm_wakeup_event(&dev->dev, 100);
112}
113
326c1cda 114static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
aa8c6c93
RW
115{
116 return !!(pci_dev->subordinate);
117}
0f64474b 118
9d26d3a8
MW
119static inline bool pci_power_manageable(struct pci_dev *pci_dev)
120{
121 /*
122 * Currently we allow normal PCI devices and PCI bridges transition
123 * into D3 if their bridge_d3 is set.
124 */
125 return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
126}
127
984998e3
MW
128static inline bool pcie_downstream_port(const struct pci_dev *dev)
129{
130 int type = pci_pcie_type(dev);
131
132 return type == PCI_EXP_TYPE_ROOT_PORT ||
133 type == PCI_EXP_TYPE_DOWNSTREAM ||
134 type == PCI_EXP_TYPE_PCIE_BRIDGE;
135}
136
f1cd93f9 137int pci_vpd_init(struct pci_dev *dev);
64379079 138void pci_vpd_release(struct pci_dev *dev);
b1c615c4
BH
139void pcie_vpd_create_sysfs_dev_files(struct pci_dev *dev);
140void pcie_vpd_remove_sysfs_dev_files(struct pci_dev *dev);
94e61088 141
440589dd
KS
142/* PCI Virtual Channel */
143int pci_save_vc_state(struct pci_dev *dev);
144void pci_restore_vc_state(struct pci_dev *dev);
145void pci_allocate_vc_save_buffers(struct pci_dev *dev);
146
1da177e4
LT
147/* PCI /proc functions */
148#ifdef CONFIG_PROC_FS
f39d5b72
BH
149int pci_proc_attach_device(struct pci_dev *dev);
150int pci_proc_detach_device(struct pci_dev *dev);
151int pci_proc_detach_bus(struct pci_bus *bus);
1da177e4
LT
152#else
153static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
154static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
1da177e4
LT
155static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
156#endif
157
158/* Functions for PCI Hotplug drivers to use */
a8e4b9c1 159int pci_hp_add_bridge(struct pci_dev *dev);
1da177e4 160
f19aeb1f 161#ifdef HAVE_PCI_LEGACY
f39d5b72
BH
162void pci_create_legacy_files(struct pci_bus *bus);
163void pci_remove_legacy_files(struct pci_bus *bus);
f19aeb1f
BH
164#else
165static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
166static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
167#endif
1da177e4
LT
168
169/* Lock for read/write access to pci device and bus lists */
d71374da 170extern struct rw_semaphore pci_bus_sem;
c4eed62a 171extern struct mutex pci_slot_mutex;
1da177e4 172
a2e27787
JK
173extern raw_spinlock_t pci_lock;
174
ffadcc2f 175extern unsigned int pci_pm_d3_delay;
88187dfa 176
4b47b0ee 177#ifdef CONFIG_PCI_MSI
309e57df 178void pci_no_msi(void);
4b47b0ee 179#else
309e57df 180static inline void pci_no_msi(void) { }
4b47b0ee 181#endif
8fed4b65 182
6a25f5e3
MT
183static inline void pci_msi_set_enable(struct pci_dev *dev, int enable)
184{
185 u16 control;
186
187 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
188 control &= ~PCI_MSI_FLAGS_ENABLE;
189 if (enable)
190 control |= PCI_MSI_FLAGS_ENABLE;
191 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
192}
193
194static inline void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
195{
196 u16 ctrl;
197
198 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
199 ctrl &= ~clear;
200 ctrl |= set;
201 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
202}
203
b55438fd 204void pci_realloc_get_opt(char *);
f483d392 205
ffadcc2f
KCA
206static inline int pci_no_d1d2(struct pci_dev *dev)
207{
208 unsigned int parent_dstates = 0;
4b47b0ee 209
ffadcc2f
KCA
210 if (dev->bus->self)
211 parent_dstates = dev->bus->self->no_d1d2;
212 return (dev->no_d1d2 || parent_dstates);
213
214}
5136b2da 215extern const struct attribute_group *pci_dev_groups[];
56039e65 216extern const struct attribute_group *pcibus_groups[];
69f2dc24 217extern const struct device_type pci_dev_type;
0f49ba55 218extern const struct attribute_group *pci_bus_groups[];
705b1aaa 219
003d3b2c
KS
220extern unsigned long pci_hotplug_io_size;
221extern unsigned long pci_hotplug_mem_size;
222extern unsigned long pci_hotplug_bus_size;
1da177e4
LT
223
224/**
225 * pci_match_one_device - Tell if a PCI device structure has a matching
0aa0f5d1 226 * PCI device id structure
1da177e4
LT
227 * @id: single PCI device id structure to match
228 * @dev: the PCI device structure to match against
367b09fe 229 *
1da177e4
LT
230 * Returns the matching pci_device_id structure or %NULL if there is no match.
231 */
232static inline const struct pci_device_id *
233pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
234{
235 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
236 (id->device == PCI_ANY_ID || id->device == dev->device) &&
237 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
238 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
239 !((id->class ^ dev->class) & id->class_mask))
240 return id;
241 return NULL;
242}
243
f46753c5
AC
244/* PCI slot sysfs helper code */
245#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
246
247extern struct kset *pci_slots_kset;
248
249struct pci_slot_attribute {
250 struct attribute attr;
251 ssize_t (*show)(struct pci_slot *, char *);
252 ssize_t (*store)(struct pci_slot *, const char *, size_t);
253};
254#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
255
0b400c7e
YZ
256enum pci_bar_type {
257 pci_bar_unknown, /* Standard PCI BAR probe */
0aa0f5d1 258 pci_bar_io, /* An I/O port BAR */
0b400c7e
YZ
259 pci_bar_mem32, /* A 32-bit memory BAR */
260 pci_bar_mem64, /* A 64-bit memory BAR */
261};
262
975e1ac1
KS
263struct device *pci_get_host_bridge_device(struct pci_dev *dev);
264void pci_put_host_bridge_device(struct device *dev);
265
62ce94a7 266int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
efdc87da
YL
267bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
268 int crs_timeout);
aa667c64
JP
269bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
270 int crs_timeout);
271int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
272
f39d5b72
BH
273int pci_setup_device(struct pci_dev *dev);
274int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
275 struct resource *res, unsigned int reg);
f39d5b72 276void pci_configure_ari(struct pci_dev *dev);
10874f5a 277void __pci_bus_size_bridges(struct pci_bus *bus,
d66ecb72 278 struct list_head *realloc_head);
10874f5a
BH
279void __pci_bus_assign_resources(const struct pci_bus *bus,
280 struct list_head *realloc_head,
281 struct list_head *fail_head);
0f7e7aee 282bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
939de1d6 283
2069ecfb 284void pci_reassigndev_resource_alignment(struct pci_dev *dev);
f39d5b72 285void pci_disable_bridge_window(struct pci_dev *dev);
ecd29c1a
KS
286struct pci_bus *pci_bus_get(struct pci_bus *bus);
287void pci_bus_put(struct pci_bus *bus);
32a9a682 288
6cf57be0
TG
289/* PCIe link information */
290#define PCIE_SPEED2STR(speed) \
291 ((speed) == PCIE_SPEED_16_0GT ? "16 GT/s" : \
292 (speed) == PCIE_SPEED_8_0GT ? "8 GT/s" : \
293 (speed) == PCIE_SPEED_5_0GT ? "5 GT/s" : \
294 (speed) == PCIE_SPEED_2_5GT ? "2.5 GT/s" : \
295 "Unknown speed")
296
b852f63a
TG
297/* PCIe speed to Mb/s reduced by encoding overhead */
298#define PCIE_SPEED2MBS_ENC(speed) \
299 ((speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
300 (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \
301 (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \
302 (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \
303 0)
304
6cf57be0 305enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
c70b65fb 306enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
b852f63a
TG
307u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
308 enum pcie_link_width *width);
2d1ce5ec 309void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
0fa635ae 310void pcie_report_downtraining(struct pci_dev *dev);
5da78d95 311void pcie_update_link_speed(struct pci_bus *bus, u16 link_status);
6cf57be0 312
d1b054da
YZ
313/* Single Root I/O Virtualization */
314struct pci_sriov {
0aa0f5d1
BH
315 int pos; /* Capability position */
316 int nres; /* Number of resources */
317 u32 cap; /* SR-IOV Capabilities */
318 u16 ctrl; /* SR-IOV Control */
319 u16 total_VFs; /* Total VFs associated with the PF */
320 u16 initial_VFs; /* Initial VFs associated with the PF */
321 u16 num_VFs; /* Number of VFs available */
322 u16 offset; /* First VF Routing ID offset */
323 u16 stride; /* Following VF stride */
324 u16 vf_device; /* VF device ID */
325 u32 pgsz; /* Page size for BAR alignment */
326 u8 link; /* Function Dependency Link */
327 u8 max_VF_buses; /* Max buses consumed by VFs */
328 u16 driver_max_VFs; /* Max num VFs driver supports */
329 struct pci_dev *dev; /* Lowest numbered PF */
330 struct pci_dev *self; /* This PF */
cf0921be
KA
331 u32 class; /* VF device */
332 u8 hdr_type; /* VF header type */
333 u16 subsystem_vendor; /* VF subsystem vendor */
334 u16 subsystem_device; /* VF subsystem device */
0aa0f5d1
BH
335 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
336 bool drivers_autoprobe; /* Auto probing of VFs by driver */
d1b054da
YZ
337};
338
a6bd101b
KB
339/**
340 * pci_dev_set_io_state - Set the new error state if possible.
341 *
342 * @dev - pci device to set new error_state
343 * @new - the state we want dev to be in
344 *
345 * Must be called with device_lock held.
346 *
347 * Returns true if state has been changed to the requested state.
348 */
349static inline bool pci_dev_set_io_state(struct pci_dev *dev,
350 pci_channel_state_t new)
351{
352 bool changed = false;
353
354 device_lock_assert(&dev->dev);
355 switch (new) {
356 case pci_channel_io_perm_failure:
357 switch (dev->error_state) {
358 case pci_channel_io_frozen:
359 case pci_channel_io_normal:
360 case pci_channel_io_perm_failure:
361 changed = true;
362 break;
363 }
364 break;
365 case pci_channel_io_frozen:
366 switch (dev->error_state) {
367 case pci_channel_io_frozen:
368 case pci_channel_io_normal:
369 changed = true;
370 break;
371 }
372 break;
373 case pci_channel_io_normal:
374 switch (dev->error_state) {
375 case pci_channel_io_frozen:
376 case pci_channel_io_normal:
377 changed = true;
378 break;
379 }
380 break;
381 }
382 if (changed)
383 dev->error_state = new;
384 return changed;
385}
89ee9f76
KB
386
387static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
388{
a6bd101b
KB
389 device_lock(&dev->dev);
390 pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
391 device_unlock(&dev->dev);
392
89ee9f76
KB
393 return 0;
394}
395
396static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
397{
a6bd101b 398 return dev->error_state == pci_channel_io_perm_failure;
89ee9f76
KB
399}
400
a6bd101b
KB
401/* pci_dev priv_flags */
402#define PCI_DEV_ADDED 0
403
44bda4b7
HV
404static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
405{
406 assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
407}
408
409static inline bool pci_dev_is_added(const struct pci_dev *dev)
410{
411 return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
412}
413
1e451160
KB
414#ifdef CONFIG_PCIEAER
415#include <linux/aer.h>
416
417#define AER_MAX_MULTI_ERR_DEVICES 5 /* Not likely to have more */
418
419struct aer_err_info {
420 struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
421 int error_dev_num;
422
423 unsigned int id:16;
424
425 unsigned int severity:2; /* 0:NONFATAL | 1:FATAL | 2:COR */
426 unsigned int __pad1:5;
427 unsigned int multi_error_valid:1;
428
429 unsigned int first_error:5;
430 unsigned int __pad2:2;
431 unsigned int tlp_header_valid:1;
432
433 unsigned int status; /* COR/UNCOR Error Status */
434 unsigned int mask; /* COR/UNCOR Error Mask */
435 struct aer_header_log_regs tlp; /* TLP Header */
436};
437
438int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
439void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
440#endif /* CONFIG_PCIEAER */
441
4f802170
KB
442#ifdef CONFIG_PCIE_DPC
443void pci_save_dpc_state(struct pci_dev *dev);
444void pci_restore_dpc_state(struct pci_dev *dev);
445#else
446static inline void pci_save_dpc_state(struct pci_dev *dev) {}
447static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
448#endif
449
1900ca13 450#ifdef CONFIG_PCI_ATS
b92b512a
KS
451/* Address Translation Service */
452void pci_ats_init(struct pci_dev *dev);
f39d5b72 453void pci_restore_ats_state(struct pci_dev *dev);
1900ca13 454#else
b92b512a
KS
455static inline void pci_ats_init(struct pci_dev *d) { }
456static inline void pci_restore_ats_state(struct pci_dev *dev) { }
1900ca13
HX
457#endif /* CONFIG_PCI_ATS */
458
c065190b
KS
459#ifdef CONFIG_PCI_PRI
460void pci_pri_init(struct pci_dev *dev);
461#else
462static inline void pci_pri_init(struct pci_dev *dev) { }
463#endif
464
d1b054da 465#ifdef CONFIG_PCI_IOV
f39d5b72
BH
466int pci_iov_init(struct pci_dev *dev);
467void pci_iov_release(struct pci_dev *dev);
38972375 468void pci_iov_remove(struct pci_dev *dev);
6ffa2489 469void pci_iov_update_resource(struct pci_dev *dev, int resno);
f39d5b72
BH
470resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
471void pci_restore_iov_state(struct pci_dev *dev);
472int pci_iov_bus_range(struct pci_bus *bus);
aaee0c1f 473extern const struct attribute_group sriov_dev_attr_group;
d1b054da
YZ
474#else
475static inline int pci_iov_init(struct pci_dev *dev)
476{
477 return -ENODEV;
478}
479static inline void pci_iov_release(struct pci_dev *dev)
480
38972375
JK
481{
482}
483static inline void pci_iov_remove(struct pci_dev *dev)
d1b054da
YZ
484{
485}
8c5cdb6a
YZ
486static inline void pci_restore_iov_state(struct pci_dev *dev)
487{
488}
a28724b0
YZ
489static inline int pci_iov_bus_range(struct pci_bus *bus)
490{
491 return 0;
492}
302b4215 493
d1b054da
YZ
494#endif /* CONFIG_PCI_IOV */
495
f39d5b72 496unsigned long pci_cardbus_resource_alignment(struct resource *);
0a2daa1c 497
0e52247a 498static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
f39d5b72 499 struct resource *res)
6faf17f6
CW
500{
501#ifdef CONFIG_PCI_IOV
502 int resno = res - dev->resource;
503
504 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
505 return pci_sriov_resource_alignment(dev, resno);
506#endif
0aa0f5d1 507 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
0a2daa1c 508 return pci_cardbus_resource_alignment(res);
6faf17f6
CW
509 return resource_alignment(res);
510}
511
f39d5b72 512void pci_enable_acs(struct pci_dev *dev);
bd2e9567
BH
513#ifdef CONFIG_PCI_QUIRKS
514int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
515int pci_dev_specific_enable_acs(struct pci_dev *dev);
73c47dde 516int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
bd2e9567
BH
517#else
518static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
519 u16 acs_flags)
520{
521 return -ENOTTY;
522}
523static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
524{
525 return -ENOTTY;
526}
73c47dde
LG
527static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
528{
529 return -ENOTTY;
530}
bd2e9567 531#endif
ae21ee65 532
2e28bc84 533/* PCI error reporting and recovery */
bdb5ac85
KB
534void pcie_do_recovery(struct pci_dev *dev, enum pci_channel_state state,
535 u32 service);
2e28bc84 536
9f5a70f1 537bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
7d8e7d19
BH
538#ifdef CONFIG_PCIEASPM
539void pcie_aspm_init_link_state(struct pci_dev *pdev);
540void pcie_aspm_exit_link_state(struct pci_dev *pdev);
541void pcie_aspm_pm_state_change(struct pci_dev *pdev);
542void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
543#else
544static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
545static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
546static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { }
547static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
548#endif
549
550#ifdef CONFIG_PCIEASPM_DEBUG
551void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev);
552void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev);
553#else
554static inline void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev) { }
555static inline void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev) { }
556#endif
557
72bde9ce
KS
558#ifdef CONFIG_PCIE_ECRC
559void pcie_set_ecrc_checking(struct pci_dev *dev);
560void pcie_ecrc_get_policy(char *str);
561#else
562static inline void pcie_set_ecrc_checking(struct pci_dev *dev) { }
563static inline void pcie_ecrc_get_policy(char *str) { }
564#endif
565
9bb04a0c
JY
566#ifdef CONFIG_PCIE_PTM
567void pci_ptm_init(struct pci_dev *dev);
ac6c26da 568int pci_enable_ptm(struct pci_dev *dev, u8 *granularity);
9bb04a0c
JY
569#else
570static inline void pci_ptm_init(struct pci_dev *dev) { }
ac6c26da
KS
571static inline int pci_enable_ptm(struct pci_dev *dev, u8 *granularity)
572{ return -EINVAL; }
9bb04a0c
JY
573#endif
574
b9c3b266
DC
575struct pci_dev_reset_methods {
576 u16 vendor;
577 u16 device;
578 int (*reset)(struct pci_dev *dev, int probe);
579};
580
93177a74 581#ifdef CONFIG_PCI_QUIRKS
f39d5b72 582int pci_dev_specific_reset(struct pci_dev *dev, int probe);
93177a74
RW
583#else
584static inline int pci_dev_specific_reset(struct pci_dev *dev, int probe)
585{
586 return -ENOTTY;
587}
588#endif
b9c3b266 589
169de969
DL
590#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
591int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
592 struct resource *res);
593#endif
594
276b738d
CK
595u32 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar);
596int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
597int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
598static inline u64 pci_rebar_size_to_bytes(int size)
599{
600 return 1ULL << (size + 20);
601}
602
9e2aee80
RH
603struct device_node;
604
605#ifdef CONFIG_OF
606int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
607int of_get_pci_domain_nr(struct device_node *node);
608int of_pci_get_max_link_speed(struct device_node *node);
621f7e35
KS
609void pci_set_of_node(struct pci_dev *dev);
610void pci_release_of_node(struct pci_dev *dev);
611void pci_set_bus_of_node(struct pci_bus *bus);
612void pci_release_bus_of_node(struct pci_bus *bus);
9e2aee80
RH
613
614#else
615static inline int
616of_pci_parse_bus_range(struct device_node *node, struct resource *res)
617{
618 return -EINVAL;
619}
620
621static inline int
622of_get_pci_domain_nr(struct device_node *node)
623{
624 return -1;
625}
626
627static inline int
628of_pci_get_max_link_speed(struct device_node *node)
629{
630 return -EINVAL;
631}
621f7e35
KS
632
633static inline void pci_set_of_node(struct pci_dev *dev) { }
634static inline void pci_release_of_node(struct pci_dev *dev) { }
635static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
636static inline void pci_release_bus_of_node(struct pci_bus *bus) { }
9e2aee80
RH
637#endif /* CONFIG_OF */
638
639#if defined(CONFIG_OF_ADDRESS)
f03c7aa4 640int devm_of_pci_get_host_bridge_resources(struct device *dev,
9e2aee80
RH
641 unsigned char busno, unsigned char bus_max,
642 struct list_head *resources, resource_size_t *io_base);
643#else
f03c7aa4 644static inline int devm_of_pci_get_host_bridge_resources(struct device *dev,
9e2aee80
RH
645 unsigned char busno, unsigned char bus_max,
646 struct list_head *resources, resource_size_t *io_base)
647{
648 return -EINVAL;
649}
650#endif
651
60ed982a
RJ
652#ifdef CONFIG_PCIEAER
653void pci_no_aer(void);
654void pci_aer_init(struct pci_dev *dev);
db89ccbe 655void pci_aer_exit(struct pci_dev *dev);
81aa5206 656extern const struct attribute_group aer_stats_attr_group;
7ab92e89 657void pci_aer_clear_fatal_status(struct pci_dev *dev);
ec752f5d 658void pci_aer_clear_device_status(struct pci_dev *dev);
60ed982a
RJ
659#else
660static inline void pci_no_aer(void) { }
31f996ef 661static inline void pci_aer_init(struct pci_dev *d) { }
db89ccbe 662static inline void pci_aer_exit(struct pci_dev *d) { }
7ab92e89 663static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
ec752f5d 664static inline void pci_aer_clear_device_status(struct pci_dev *dev) { }
60ed982a
RJ
665#endif
666
8c3aac6e 667#ifdef CONFIG_ACPI
4a2dbedd 668int pci_acpi_program_hp_params(struct pci_dev *dev);
8c3aac6e 669#else
4a2dbedd 670static inline int pci_acpi_program_hp_params(struct pci_dev *dev)
8c3aac6e
KW
671{
672 return -ENODEV;
673}
674#endif
675
557848c3 676#endif /* DRIVERS_PCI_H */