blob: a96dc6f5307601abfd68975c9ce4d32bf51b8d1f [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef DRIVERS_PCI_H
3#define DRIVERS_PCI_H
4
David Brazdil0f672f62019-12-10 10:32:29 +00005#include <linux/pci.h>
6
Olivier Deprez0e641232021-09-23 10:07:05 +02007/* Number of possible devfns: 0.0 to 1f.7 inclusive */
8#define MAX_NR_DEVFNS 256
9
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010#define PCI_FIND_CAP_TTL 48
11
12#define PCI_VSEC_ID_INTEL_TBT 0x1234 /* Thunderbolt */
13
14extern const unsigned char pcie_link_speed[];
15extern bool pci_early_dump;
16
17bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +020018bool pcie_cap_has_rtctl(const struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000019
20/* Functions internal to the PCI core code */
21
22int pci_create_sysfs_dev_files(struct pci_dev *pdev);
23void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
24#if !defined(CONFIG_DMI) && !defined(CONFIG_ACPI)
25static inline void pci_create_firmware_label_files(struct pci_dev *pdev)
26{ return; }
27static inline void pci_remove_firmware_label_files(struct pci_dev *pdev)
28{ return; }
29#else
30void pci_create_firmware_label_files(struct pci_dev *pdev);
31void pci_remove_firmware_label_files(struct pci_dev *pdev);
32#endif
33void pci_cleanup_rom(struct pci_dev *dev);
34
35enum pci_mmap_api {
36 PCI_MMAP_SYSFS, /* mmap on /sys/bus/pci/devices/<BDF>/resource<N> */
37 PCI_MMAP_PROCFS /* mmap on /proc/bus/pci/<BDF> */
38};
39int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
40 enum pci_mmap_api mmap_api);
41
42int pci_probe_reset_function(struct pci_dev *dev);
43int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +000044int pci_bus_error_reset(struct pci_dev *dev);
45
Olivier Deprez157378f2022-04-04 15:47:50 +020046#define PCI_PM_D2_DELAY 200 /* usec; see PCIe r4.0, sec 5.9.1 */
47#define PCI_PM_D3HOT_WAIT 10 /* msec */
48#define PCI_PM_D3COLD_WAIT 100 /* msec */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000049
50/**
51 * struct pci_platform_pm_ops - Firmware PM callbacks
52 *
David Brazdil0f672f62019-12-10 10:32:29 +000053 * @bridge_d3: Does the bridge allow entering into D3
54 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000055 * @is_manageable: returns 'true' if given device is power manageable by the
56 * platform firmware
57 *
58 * @set_state: invokes the platform firmware to set the device's power state
59 *
60 * @get_state: queries the platform firmware for a device's current power state
61 *
David Brazdil0f672f62019-12-10 10:32:29 +000062 * @refresh_state: asks the platform to refresh the device's power state data
63 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000064 * @choose_state: returns PCI power state of given device preferred by the
65 * platform; to be used during system-wide transitions from a
66 * sleeping state to the working state and vice versa
67 *
68 * @set_wakeup: enables/disables wakeup capability for the device
69 *
70 * @need_resume: returns 'true' if the given device (which is currently
71 * suspended) needs to be resumed to be configured for system
72 * wakeup.
73 *
74 * If given platform is generally capable of power managing PCI devices, all of
75 * these callbacks are mandatory.
76 */
77struct pci_platform_pm_ops {
David Brazdil0f672f62019-12-10 10:32:29 +000078 bool (*bridge_d3)(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000079 bool (*is_manageable)(struct pci_dev *dev);
80 int (*set_state)(struct pci_dev *dev, pci_power_t state);
81 pci_power_t (*get_state)(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +000082 void (*refresh_state)(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000083 pci_power_t (*choose_state)(struct pci_dev *dev);
84 int (*set_wakeup)(struct pci_dev *dev, bool enable);
85 bool (*need_resume)(struct pci_dev *dev);
86};
87
88int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
89void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
David Brazdil0f672f62019-12-10 10:32:29 +000090void pci_refresh_power_state(struct pci_dev *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +020091int pci_power_up(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000092void pci_disable_enabled_device(struct pci_dev *dev);
93int pci_finish_runtime_suspend(struct pci_dev *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +020094void pcie_clear_device_status(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000095void pcie_clear_root_pme_status(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +000096bool pci_check_pme_status(struct pci_dev *dev);
97void pci_pme_wakeup_bus(struct pci_bus *bus);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000098int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
99void pci_pme_restore(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +0000100bool pci_dev_need_resume(struct pci_dev *dev);
101void pci_dev_adjust_pme(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000102void pci_dev_complete_resume(struct pci_dev *pci_dev);
103void pci_config_pm_runtime_get(struct pci_dev *dev);
104void pci_config_pm_runtime_put(struct pci_dev *dev);
105void pci_pm_init(struct pci_dev *dev);
106void pci_ea_init(struct pci_dev *dev);
107void pci_allocate_cap_save_buffers(struct pci_dev *dev);
108void pci_free_cap_save_buffers(struct pci_dev *dev);
109bool pci_bridge_d3_possible(struct pci_dev *dev);
110void pci_bridge_d3_update(struct pci_dev *dev);
Olivier Deprez0e641232021-09-23 10:07:05 +0200111void pci_bridge_wait_for_secondary_bus(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000112
113static inline void pci_wakeup_event(struct pci_dev *dev)
114{
115 /* Wait 100 ms before the system can be put into a sleep state. */
116 pm_wakeup_event(&dev->dev, 100);
117}
118
119static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
120{
121 return !!(pci_dev->subordinate);
122}
123
124static inline bool pci_power_manageable(struct pci_dev *pci_dev)
125{
126 /*
127 * Currently we allow normal PCI devices and PCI bridges transition
128 * into D3 if their bridge_d3 is set.
129 */
130 return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
131}
132
David Brazdil0f672f62019-12-10 10:32:29 +0000133static inline bool pcie_downstream_port(const struct pci_dev *dev)
134{
135 int type = pci_pcie_type(dev);
136
137 return type == PCI_EXP_TYPE_ROOT_PORT ||
138 type == PCI_EXP_TYPE_DOWNSTREAM ||
139 type == PCI_EXP_TYPE_PCIE_BRIDGE;
140}
141
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000142int pci_vpd_init(struct pci_dev *dev);
143void pci_vpd_release(struct pci_dev *dev);
144void pcie_vpd_create_sysfs_dev_files(struct pci_dev *dev);
145void pcie_vpd_remove_sysfs_dev_files(struct pci_dev *dev);
146
David Brazdil0f672f62019-12-10 10:32:29 +0000147/* PCI Virtual Channel */
148int pci_save_vc_state(struct pci_dev *dev);
149void pci_restore_vc_state(struct pci_dev *dev);
150void pci_allocate_vc_save_buffers(struct pci_dev *dev);
151
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000152/* PCI /proc functions */
153#ifdef CONFIG_PROC_FS
154int pci_proc_attach_device(struct pci_dev *dev);
155int pci_proc_detach_device(struct pci_dev *dev);
156int pci_proc_detach_bus(struct pci_bus *bus);
157#else
158static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
159static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
160static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
161#endif
162
163/* Functions for PCI Hotplug drivers to use */
164int pci_hp_add_bridge(struct pci_dev *dev);
165
166#ifdef HAVE_PCI_LEGACY
167void pci_create_legacy_files(struct pci_bus *bus);
168void pci_remove_legacy_files(struct pci_bus *bus);
169#else
170static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
171static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
172#endif
173
174/* Lock for read/write access to pci device and bus lists */
175extern struct rw_semaphore pci_bus_sem;
David Brazdil0f672f62019-12-10 10:32:29 +0000176extern struct mutex pci_slot_mutex;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000177
178extern raw_spinlock_t pci_lock;
179
Olivier Deprez157378f2022-04-04 15:47:50 +0200180extern unsigned int pci_pm_d3hot_delay;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000181
182#ifdef CONFIG_PCI_MSI
183void pci_no_msi(void);
184#else
185static inline void pci_no_msi(void) { }
186#endif
187
188static inline void pci_msi_set_enable(struct pci_dev *dev, int enable)
189{
190 u16 control;
191
192 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
193 control &= ~PCI_MSI_FLAGS_ENABLE;
194 if (enable)
195 control |= PCI_MSI_FLAGS_ENABLE;
196 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
197}
198
199static inline void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
200{
201 u16 ctrl;
202
203 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
204 ctrl &= ~clear;
205 ctrl |= set;
206 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
207}
208
209void pci_realloc_get_opt(char *);
210
211static inline int pci_no_d1d2(struct pci_dev *dev)
212{
213 unsigned int parent_dstates = 0;
214
215 if (dev->bus->self)
216 parent_dstates = dev->bus->self->no_d1d2;
217 return (dev->no_d1d2 || parent_dstates);
218
219}
220extern const struct attribute_group *pci_dev_groups[];
221extern const struct attribute_group *pcibus_groups[];
222extern const struct device_type pci_dev_type;
223extern const struct attribute_group *pci_bus_groups[];
224
David Brazdil0f672f62019-12-10 10:32:29 +0000225extern unsigned long pci_hotplug_io_size;
Olivier Deprez157378f2022-04-04 15:47:50 +0200226extern unsigned long pci_hotplug_mmio_size;
227extern unsigned long pci_hotplug_mmio_pref_size;
David Brazdil0f672f62019-12-10 10:32:29 +0000228extern unsigned long pci_hotplug_bus_size;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000229
230/**
231 * pci_match_one_device - Tell if a PCI device structure has a matching
232 * PCI device id structure
233 * @id: single PCI device id structure to match
234 * @dev: the PCI device structure to match against
235 *
236 * Returns the matching pci_device_id structure or %NULL if there is no match.
237 */
238static inline const struct pci_device_id *
239pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
240{
241 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
242 (id->device == PCI_ANY_ID || id->device == dev->device) &&
243 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
244 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
245 !((id->class ^ dev->class) & id->class_mask))
246 return id;
247 return NULL;
248}
249
250/* PCI slot sysfs helper code */
251#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
252
253extern struct kset *pci_slots_kset;
254
255struct pci_slot_attribute {
256 struct attribute attr;
257 ssize_t (*show)(struct pci_slot *, char *);
258 ssize_t (*store)(struct pci_slot *, const char *, size_t);
259};
260#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
261
262enum pci_bar_type {
263 pci_bar_unknown, /* Standard PCI BAR probe */
264 pci_bar_io, /* An I/O port BAR */
265 pci_bar_mem32, /* A 32-bit memory BAR */
266 pci_bar_mem64, /* A 64-bit memory BAR */
267};
268
David Brazdil0f672f62019-12-10 10:32:29 +0000269struct device *pci_get_host_bridge_device(struct pci_dev *dev);
270void pci_put_host_bridge_device(struct device *dev);
271
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000272int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
273bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
274 int crs_timeout);
275bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
276 int crs_timeout);
277int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
278
279int pci_setup_device(struct pci_dev *dev);
280int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
281 struct resource *res, unsigned int reg);
282void pci_configure_ari(struct pci_dev *dev);
283void __pci_bus_size_bridges(struct pci_bus *bus,
284 struct list_head *realloc_head);
285void __pci_bus_assign_resources(const struct pci_bus *bus,
286 struct list_head *realloc_head,
287 struct list_head *fail_head);
288bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
289
290void pci_reassigndev_resource_alignment(struct pci_dev *dev);
291void pci_disable_bridge_window(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +0000292struct pci_bus *pci_bus_get(struct pci_bus *bus);
293void pci_bus_put(struct pci_bus *bus);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000294
Olivier Deprez157378f2022-04-04 15:47:50 +0200295/* PCIe link information from Link Capabilities 2 */
296#define PCIE_LNKCAP2_SLS2SPEED(lnkcap2) \
297 ((lnkcap2) & PCI_EXP_LNKCAP2_SLS_32_0GB ? PCIE_SPEED_32_0GT : \
298 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_16_0GB ? PCIE_SPEED_16_0GT : \
299 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_8_0GB ? PCIE_SPEED_8_0GT : \
300 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_5_0GB ? PCIE_SPEED_5_0GT : \
301 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_2_5GB ? PCIE_SPEED_2_5GT : \
302 PCI_SPEED_UNKNOWN)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000303
304/* PCIe speed to Mb/s reduced by encoding overhead */
305#define PCIE_SPEED2MBS_ENC(speed) \
Olivier Deprez157378f2022-04-04 15:47:50 +0200306 ((speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \
307 (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000308 (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \
309 (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \
310 (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \
311 0)
312
Olivier Deprez157378f2022-04-04 15:47:50 +0200313const char *pci_speed_string(enum pci_bus_speed speed);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000314enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
315enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
316u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
317 enum pcie_link_width *width);
318void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
David Brazdil0f672f62019-12-10 10:32:29 +0000319void pcie_report_downtraining(struct pci_dev *dev);
320void pcie_update_link_speed(struct pci_bus *bus, u16 link_status);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000321
322/* Single Root I/O Virtualization */
323struct pci_sriov {
324 int pos; /* Capability position */
325 int nres; /* Number of resources */
326 u32 cap; /* SR-IOV Capabilities */
327 u16 ctrl; /* SR-IOV Control */
328 u16 total_VFs; /* Total VFs associated with the PF */
329 u16 initial_VFs; /* Initial VFs associated with the PF */
330 u16 num_VFs; /* Number of VFs available */
331 u16 offset; /* First VF Routing ID offset */
332 u16 stride; /* Following VF stride */
333 u16 vf_device; /* VF device ID */
334 u32 pgsz; /* Page size for BAR alignment */
335 u8 link; /* Function Dependency Link */
336 u8 max_VF_buses; /* Max buses consumed by VFs */
337 u16 driver_max_VFs; /* Max num VFs driver supports */
338 struct pci_dev *dev; /* Lowest numbered PF */
339 struct pci_dev *self; /* This PF */
340 u32 class; /* VF device */
341 u8 hdr_type; /* VF header type */
342 u16 subsystem_vendor; /* VF subsystem vendor */
343 u16 subsystem_device; /* VF subsystem device */
344 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
345 bool drivers_autoprobe; /* Auto probing of VFs by driver */
346};
347
David Brazdil0f672f62019-12-10 10:32:29 +0000348/**
349 * pci_dev_set_io_state - Set the new error state if possible.
350 *
351 * @dev - pci device to set new error_state
352 * @new - the state we want dev to be in
353 *
354 * Must be called with device_lock held.
355 *
356 * Returns true if state has been changed to the requested state.
357 */
358static inline bool pci_dev_set_io_state(struct pci_dev *dev,
359 pci_channel_state_t new)
360{
361 bool changed = false;
362
363 device_lock_assert(&dev->dev);
364 switch (new) {
365 case pci_channel_io_perm_failure:
366 switch (dev->error_state) {
367 case pci_channel_io_frozen:
368 case pci_channel_io_normal:
369 case pci_channel_io_perm_failure:
370 changed = true;
371 break;
372 }
373 break;
374 case pci_channel_io_frozen:
375 switch (dev->error_state) {
376 case pci_channel_io_frozen:
377 case pci_channel_io_normal:
378 changed = true;
379 break;
380 }
381 break;
382 case pci_channel_io_normal:
383 switch (dev->error_state) {
384 case pci_channel_io_frozen:
385 case pci_channel_io_normal:
386 changed = true;
387 break;
388 }
389 break;
390 }
391 if (changed)
392 dev->error_state = new;
393 return changed;
394}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000395
396static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
397{
David Brazdil0f672f62019-12-10 10:32:29 +0000398 device_lock(&dev->dev);
399 pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
400 device_unlock(&dev->dev);
401
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000402 return 0;
403}
404
405static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
406{
David Brazdil0f672f62019-12-10 10:32:29 +0000407 return dev->error_state == pci_channel_io_perm_failure;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000408}
409
David Brazdil0f672f62019-12-10 10:32:29 +0000410/* pci_dev priv_flags */
411#define PCI_DEV_ADDED 0
Olivier Deprez157378f2022-04-04 15:47:50 +0200412#define PCI_DPC_RECOVERED 1
413#define PCI_DPC_RECOVERING 2
David Brazdil0f672f62019-12-10 10:32:29 +0000414
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000415static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
416{
417 assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
418}
419
420static inline bool pci_dev_is_added(const struct pci_dev *dev)
421{
422 return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
423}
424
425#ifdef CONFIG_PCIEAER
426#include <linux/aer.h>
427
428#define AER_MAX_MULTI_ERR_DEVICES 5 /* Not likely to have more */
429
430struct aer_err_info {
431 struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
432 int error_dev_num;
433
434 unsigned int id:16;
435
436 unsigned int severity:2; /* 0:NONFATAL | 1:FATAL | 2:COR */
437 unsigned int __pad1:5;
438 unsigned int multi_error_valid:1;
439
440 unsigned int first_error:5;
441 unsigned int __pad2:2;
442 unsigned int tlp_header_valid:1;
443
444 unsigned int status; /* COR/UNCOR Error Status */
445 unsigned int mask; /* COR/UNCOR Error Mask */
446 struct aer_header_log_regs tlp; /* TLP Header */
447};
448
449int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
450void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
451#endif /* CONFIG_PCIEAER */
452
David Brazdil0f672f62019-12-10 10:32:29 +0000453#ifdef CONFIG_PCIE_DPC
454void pci_save_dpc_state(struct pci_dev *dev);
455void pci_restore_dpc_state(struct pci_dev *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200456void pci_dpc_init(struct pci_dev *pdev);
457void dpc_process_error(struct pci_dev *pdev);
458pci_ers_result_t dpc_reset_link(struct pci_dev *pdev);
459bool pci_dpc_recovered(struct pci_dev *pdev);
David Brazdil0f672f62019-12-10 10:32:29 +0000460#else
461static inline void pci_save_dpc_state(struct pci_dev *dev) {}
462static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
Olivier Deprez157378f2022-04-04 15:47:50 +0200463static inline void pci_dpc_init(struct pci_dev *pdev) {}
464static inline bool pci_dpc_recovered(struct pci_dev *pdev) { return false; }
David Brazdil0f672f62019-12-10 10:32:29 +0000465#endif
466
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000467#ifdef CONFIG_PCI_ATS
David Brazdil0f672f62019-12-10 10:32:29 +0000468/* Address Translation Service */
469void pci_ats_init(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000470void pci_restore_ats_state(struct pci_dev *dev);
471#else
David Brazdil0f672f62019-12-10 10:32:29 +0000472static inline void pci_ats_init(struct pci_dev *d) { }
473static inline void pci_restore_ats_state(struct pci_dev *dev) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000474#endif /* CONFIG_PCI_ATS */
475
Olivier Deprez157378f2022-04-04 15:47:50 +0200476#ifdef CONFIG_PCI_PRI
477void pci_pri_init(struct pci_dev *dev);
478void pci_restore_pri_state(struct pci_dev *pdev);
479#else
480static inline void pci_pri_init(struct pci_dev *dev) { }
481static inline void pci_restore_pri_state(struct pci_dev *pdev) { }
482#endif
483
484#ifdef CONFIG_PCI_PASID
485void pci_pasid_init(struct pci_dev *dev);
486void pci_restore_pasid_state(struct pci_dev *pdev);
487#else
488static inline void pci_pasid_init(struct pci_dev *dev) { }
489static inline void pci_restore_pasid_state(struct pci_dev *pdev) { }
490#endif
491
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000492#ifdef CONFIG_PCI_IOV
493int pci_iov_init(struct pci_dev *dev);
494void pci_iov_release(struct pci_dev *dev);
495void pci_iov_remove(struct pci_dev *dev);
496void pci_iov_update_resource(struct pci_dev *dev, int resno);
497resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
498void pci_restore_iov_state(struct pci_dev *dev);
499int pci_iov_bus_range(struct pci_bus *bus);
David Brazdil0f672f62019-12-10 10:32:29 +0000500extern const struct attribute_group sriov_dev_attr_group;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000501#else
502static inline int pci_iov_init(struct pci_dev *dev)
503{
504 return -ENODEV;
505}
506static inline void pci_iov_release(struct pci_dev *dev)
507
508{
509}
510static inline void pci_iov_remove(struct pci_dev *dev)
511{
512}
513static inline void pci_restore_iov_state(struct pci_dev *dev)
514{
515}
516static inline int pci_iov_bus_range(struct pci_bus *bus)
517{
518 return 0;
519}
520
521#endif /* CONFIG_PCI_IOV */
522
523unsigned long pci_cardbus_resource_alignment(struct resource *);
524
525static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
526 struct resource *res)
527{
528#ifdef CONFIG_PCI_IOV
529 int resno = res - dev->resource;
530
531 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
532 return pci_sriov_resource_alignment(dev, resno);
533#endif
534 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
535 return pci_cardbus_resource_alignment(res);
536 return resource_alignment(res);
537}
538
Olivier Deprez157378f2022-04-04 15:47:50 +0200539void pci_acs_init(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000540#ifdef CONFIG_PCI_QUIRKS
541int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
542int pci_dev_specific_enable_acs(struct pci_dev *dev);
543int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
544#else
545static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
546 u16 acs_flags)
547{
548 return -ENOTTY;
549}
550static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
551{
552 return -ENOTTY;
553}
554static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
555{
556 return -ENOTTY;
557}
558#endif
559
560/* PCI error reporting and recovery */
Olivier Deprez157378f2022-04-04 15:47:50 +0200561pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
562 pci_channel_state_t state,
563 pci_ers_result_t (*reset_link)(struct pci_dev *pdev));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000564
565bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
566#ifdef CONFIG_PCIEASPM
567void pcie_aspm_init_link_state(struct pci_dev *pdev);
568void pcie_aspm_exit_link_state(struct pci_dev *pdev);
569void pcie_aspm_pm_state_change(struct pci_dev *pdev);
570void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
571#else
572static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
573static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
574static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { }
575static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
576#endif
577
David Brazdil0f672f62019-12-10 10:32:29 +0000578#ifdef CONFIG_PCIE_ECRC
579void pcie_set_ecrc_checking(struct pci_dev *dev);
580void pcie_ecrc_get_policy(char *str);
581#else
582static inline void pcie_set_ecrc_checking(struct pci_dev *dev) { }
583static inline void pcie_ecrc_get_policy(char *str) { }
584#endif
585
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000586#ifdef CONFIG_PCIE_PTM
587void pci_ptm_init(struct pci_dev *dev);
David Brazdil0f672f62019-12-10 10:32:29 +0000588int pci_enable_ptm(struct pci_dev *dev, u8 *granularity);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000589#else
590static inline void pci_ptm_init(struct pci_dev *dev) { }
David Brazdil0f672f62019-12-10 10:32:29 +0000591static inline int pci_enable_ptm(struct pci_dev *dev, u8 *granularity)
592{ return -EINVAL; }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000593#endif
594
595struct pci_dev_reset_methods {
596 u16 vendor;
597 u16 device;
598 int (*reset)(struct pci_dev *dev, int probe);
599};
600
601#ifdef CONFIG_PCI_QUIRKS
602int pci_dev_specific_reset(struct pci_dev *dev, int probe);
603#else
604static inline int pci_dev_specific_reset(struct pci_dev *dev, int probe)
605{
606 return -ENOTTY;
607}
608#endif
609
610#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
611int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
612 struct resource *res);
Olivier Deprez0e641232021-09-23 10:07:05 +0200613#else
614static inline int acpi_get_rc_resources(struct device *dev, const char *hid,
615 u16 segment, struct resource *res)
616{
617 return -ENODEV;
618}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000619#endif
620
621u32 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar);
622int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
623int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
624static inline u64 pci_rebar_size_to_bytes(int size)
625{
626 return 1ULL << (size + 20);
627}
628
629struct device_node;
630
631#ifdef CONFIG_OF
632int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
633int of_get_pci_domain_nr(struct device_node *node);
634int of_pci_get_max_link_speed(struct device_node *node);
David Brazdil0f672f62019-12-10 10:32:29 +0000635void pci_set_of_node(struct pci_dev *dev);
636void pci_release_of_node(struct pci_dev *dev);
637void pci_set_bus_of_node(struct pci_bus *bus);
638void pci_release_bus_of_node(struct pci_bus *bus);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000639
Olivier Deprez157378f2022-04-04 15:47:50 +0200640int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge);
641
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000642#else
643static inline int
644of_pci_parse_bus_range(struct device_node *node, struct resource *res)
645{
646 return -EINVAL;
647}
648
649static inline int
650of_get_pci_domain_nr(struct device_node *node)
651{
652 return -1;
653}
654
655static inline int
656of_pci_get_max_link_speed(struct device_node *node)
657{
658 return -EINVAL;
659}
David Brazdil0f672f62019-12-10 10:32:29 +0000660
661static inline void pci_set_of_node(struct pci_dev *dev) { }
662static inline void pci_release_of_node(struct pci_dev *dev) { }
663static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
664static inline void pci_release_bus_of_node(struct pci_bus *bus) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000665
Olivier Deprez157378f2022-04-04 15:47:50 +0200666static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000667{
Olivier Deprez157378f2022-04-04 15:47:50 +0200668 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000669}
Olivier Deprez157378f2022-04-04 15:47:50 +0200670
671#endif /* CONFIG_OF */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000672
673#ifdef CONFIG_PCIEAER
674void pci_no_aer(void);
675void pci_aer_init(struct pci_dev *dev);
676void pci_aer_exit(struct pci_dev *dev);
677extern const struct attribute_group aer_stats_attr_group;
678void pci_aer_clear_fatal_status(struct pci_dev *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200679int pci_aer_clear_status(struct pci_dev *dev);
680int pci_aer_raw_clear_status(struct pci_dev *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000681#else
682static inline void pci_no_aer(void) { }
David Brazdil0f672f62019-12-10 10:32:29 +0000683static inline void pci_aer_init(struct pci_dev *d) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000684static inline void pci_aer_exit(struct pci_dev *d) { }
685static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
Olivier Deprez157378f2022-04-04 15:47:50 +0200686static inline int pci_aer_clear_status(struct pci_dev *dev) { return -EINVAL; }
687static inline int pci_aer_raw_clear_status(struct pci_dev *dev) { return -EINVAL; }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000688#endif
689
David Brazdil0f672f62019-12-10 10:32:29 +0000690#ifdef CONFIG_ACPI
691int pci_acpi_program_hp_params(struct pci_dev *dev);
692#else
693static inline int pci_acpi_program_hp_params(struct pci_dev *dev)
694{
695 return -ENODEV;
696}
697#endif
698
Olivier Deprez157378f2022-04-04 15:47:50 +0200699#ifdef CONFIG_PCIEASPM
700extern const struct attribute_group aspm_ctrl_attr_group;
701#endif
702
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000703#endif /* DRIVERS_PCI_H */