xref: /openbmc/linux/drivers/pci/pci.h (revision 0d07cf5e)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef DRIVERS_PCI_H
3 #define DRIVERS_PCI_H
4 
5 #include <linux/pci.h>
6 
7 #define PCI_FIND_CAP_TTL	48
8 
9 #define PCI_VSEC_ID_INTEL_TBT	0x1234	/* Thunderbolt */
10 
11 extern const unsigned char pcie_link_speed[];
12 extern bool pci_early_dump;
13 
14 bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
15 
16 /* Functions internal to the PCI core code */
17 
18 int pci_create_sysfs_dev_files(struct pci_dev *pdev);
19 void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
20 #if !defined(CONFIG_DMI) && !defined(CONFIG_ACPI)
21 static inline void pci_create_firmware_label_files(struct pci_dev *pdev)
22 { return; }
23 static inline void pci_remove_firmware_label_files(struct pci_dev *pdev)
24 { return; }
25 #else
26 void pci_create_firmware_label_files(struct pci_dev *pdev);
27 void pci_remove_firmware_label_files(struct pci_dev *pdev);
28 #endif
29 void pci_cleanup_rom(struct pci_dev *dev);
30 
31 enum 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 };
35 int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
36 		  enum pci_mmap_api mmap_api);
37 
38 int pci_probe_reset_function(struct pci_dev *dev);
39 int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
40 int pci_bus_error_reset(struct pci_dev *dev);
41 
42 /**
43  * struct pci_platform_pm_ops - Firmware PM callbacks
44  *
45  * @bridge_d3: Does the bridge allow entering into D3
46  *
47  * @is_manageable: returns 'true' if given device is power manageable by the
48  *		   platform firmware
49  *
50  * @set_state: invokes the platform firmware to set the device's power state
51  *
52  * @get_state: queries the platform firmware for a device's current power state
53  *
54  * @refresh_state: asks the platform to refresh the device's power state data
55  *
56  * @choose_state: returns PCI power state of given device preferred by the
57  *		  platform; to be used during system-wide transitions from a
58  *		  sleeping state to the working state and vice versa
59  *
60  * @set_wakeup: enables/disables wakeup capability for the device
61  *
62  * @need_resume: returns 'true' if the given device (which is currently
63  *		 suspended) needs to be resumed to be configured for system
64  *		 wakeup.
65  *
66  * If given platform is generally capable of power managing PCI devices, all of
67  * these callbacks are mandatory.
68  */
69 struct pci_platform_pm_ops {
70 	bool (*bridge_d3)(struct pci_dev *dev);
71 	bool (*is_manageable)(struct pci_dev *dev);
72 	int (*set_state)(struct pci_dev *dev, pci_power_t state);
73 	pci_power_t (*get_state)(struct pci_dev *dev);
74 	void (*refresh_state)(struct pci_dev *dev);
75 	pci_power_t (*choose_state)(struct pci_dev *dev);
76 	int (*set_wakeup)(struct pci_dev *dev, bool enable);
77 	bool (*need_resume)(struct pci_dev *dev);
78 };
79 
80 int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
81 void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
82 void pci_refresh_power_state(struct pci_dev *dev);
83 void pci_power_up(struct pci_dev *dev);
84 void pci_disable_enabled_device(struct pci_dev *dev);
85 int pci_finish_runtime_suspend(struct pci_dev *dev);
86 void pcie_clear_root_pme_status(struct pci_dev *dev);
87 int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
88 void pci_pme_restore(struct pci_dev *dev);
89 bool pci_dev_need_resume(struct pci_dev *dev);
90 void pci_dev_adjust_pme(struct pci_dev *dev);
91 void pci_dev_complete_resume(struct pci_dev *pci_dev);
92 void pci_config_pm_runtime_get(struct pci_dev *dev);
93 void pci_config_pm_runtime_put(struct pci_dev *dev);
94 void pci_pm_init(struct pci_dev *dev);
95 void pci_ea_init(struct pci_dev *dev);
96 void pci_allocate_cap_save_buffers(struct pci_dev *dev);
97 void pci_free_cap_save_buffers(struct pci_dev *dev);
98 bool pci_bridge_d3_possible(struct pci_dev *dev);
99 void pci_bridge_d3_update(struct pci_dev *dev);
100 
101 static inline void pci_wakeup_event(struct pci_dev *dev)
102 {
103 	/* Wait 100 ms before the system can be put into a sleep state. */
104 	pm_wakeup_event(&dev->dev, 100);
105 }
106 
107 static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
108 {
109 	return !!(pci_dev->subordinate);
110 }
111 
112 static inline bool pci_power_manageable(struct pci_dev *pci_dev)
113 {
114 	/*
115 	 * Currently we allow normal PCI devices and PCI bridges transition
116 	 * into D3 if their bridge_d3 is set.
117 	 */
118 	return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
119 }
120 
121 int pci_vpd_init(struct pci_dev *dev);
122 void pci_vpd_release(struct pci_dev *dev);
123 void pcie_vpd_create_sysfs_dev_files(struct pci_dev *dev);
124 void pcie_vpd_remove_sysfs_dev_files(struct pci_dev *dev);
125 
126 /* PCI /proc functions */
127 #ifdef CONFIG_PROC_FS
128 int pci_proc_attach_device(struct pci_dev *dev);
129 int pci_proc_detach_device(struct pci_dev *dev);
130 int pci_proc_detach_bus(struct pci_bus *bus);
131 #else
132 static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
133 static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
134 static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
135 #endif
136 
137 /* Functions for PCI Hotplug drivers to use */
138 int pci_hp_add_bridge(struct pci_dev *dev);
139 
140 #ifdef HAVE_PCI_LEGACY
141 void pci_create_legacy_files(struct pci_bus *bus);
142 void pci_remove_legacy_files(struct pci_bus *bus);
143 #else
144 static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
145 static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
146 #endif
147 
148 /* Lock for read/write access to pci device and bus lists */
149 extern struct rw_semaphore pci_bus_sem;
150 extern struct mutex pci_slot_mutex;
151 
152 extern raw_spinlock_t pci_lock;
153 
154 extern unsigned int pci_pm_d3_delay;
155 
156 #ifdef CONFIG_PCI_MSI
157 void pci_no_msi(void);
158 #else
159 static inline void pci_no_msi(void) { }
160 #endif
161 
162 static inline void pci_msi_set_enable(struct pci_dev *dev, int enable)
163 {
164 	u16 control;
165 
166 	pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
167 	control &= ~PCI_MSI_FLAGS_ENABLE;
168 	if (enable)
169 		control |= PCI_MSI_FLAGS_ENABLE;
170 	pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
171 }
172 
173 static inline void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
174 {
175 	u16 ctrl;
176 
177 	pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
178 	ctrl &= ~clear;
179 	ctrl |= set;
180 	pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
181 }
182 
183 void pci_realloc_get_opt(char *);
184 
185 static inline int pci_no_d1d2(struct pci_dev *dev)
186 {
187 	unsigned int parent_dstates = 0;
188 
189 	if (dev->bus->self)
190 		parent_dstates = dev->bus->self->no_d1d2;
191 	return (dev->no_d1d2 || parent_dstates);
192 
193 }
194 extern const struct attribute_group *pci_dev_groups[];
195 extern const struct attribute_group *pcibus_groups[];
196 extern const struct device_type pci_dev_type;
197 extern const struct attribute_group *pci_bus_groups[];
198 
199 
200 /**
201  * pci_match_one_device - Tell if a PCI device structure has a matching
202  *			  PCI device id structure
203  * @id: single PCI device id structure to match
204  * @dev: the PCI device structure to match against
205  *
206  * Returns the matching pci_device_id structure or %NULL if there is no match.
207  */
208 static inline const struct pci_device_id *
209 pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
210 {
211 	if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
212 	    (id->device == PCI_ANY_ID || id->device == dev->device) &&
213 	    (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
214 	    (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
215 	    !((id->class ^ dev->class) & id->class_mask))
216 		return id;
217 	return NULL;
218 }
219 
220 /* PCI slot sysfs helper code */
221 #define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
222 
223 extern struct kset *pci_slots_kset;
224 
225 struct pci_slot_attribute {
226 	struct attribute attr;
227 	ssize_t (*show)(struct pci_slot *, char *);
228 	ssize_t (*store)(struct pci_slot *, const char *, size_t);
229 };
230 #define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
231 
232 enum pci_bar_type {
233 	pci_bar_unknown,	/* Standard PCI BAR probe */
234 	pci_bar_io,		/* An I/O port BAR */
235 	pci_bar_mem32,		/* A 32-bit memory BAR */
236 	pci_bar_mem64,		/* A 64-bit memory BAR */
237 };
238 
239 int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
240 bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
241 				int crs_timeout);
242 bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
243 					int crs_timeout);
244 int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
245 
246 int pci_setup_device(struct pci_dev *dev);
247 int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
248 		    struct resource *res, unsigned int reg);
249 void pci_configure_ari(struct pci_dev *dev);
250 void __pci_bus_size_bridges(struct pci_bus *bus,
251 			struct list_head *realloc_head);
252 void __pci_bus_assign_resources(const struct pci_bus *bus,
253 				struct list_head *realloc_head,
254 				struct list_head *fail_head);
255 bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
256 
257 void pci_reassigndev_resource_alignment(struct pci_dev *dev);
258 void pci_disable_bridge_window(struct pci_dev *dev);
259 
260 /* PCIe link information */
261 #define PCIE_SPEED2STR(speed) \
262 	((speed) == PCIE_SPEED_16_0GT ? "16 GT/s" : \
263 	 (speed) == PCIE_SPEED_8_0GT ? "8 GT/s" : \
264 	 (speed) == PCIE_SPEED_5_0GT ? "5 GT/s" : \
265 	 (speed) == PCIE_SPEED_2_5GT ? "2.5 GT/s" : \
266 	 "Unknown speed")
267 
268 /* PCIe speed to Mb/s reduced by encoding overhead */
269 #define PCIE_SPEED2MBS_ENC(speed) \
270 	((speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
271 	 (speed) == PCIE_SPEED_8_0GT  ?  8000*128/130 : \
272 	 (speed) == PCIE_SPEED_5_0GT  ?  5000*8/10 : \
273 	 (speed) == PCIE_SPEED_2_5GT  ?  2500*8/10 : \
274 	 0)
275 
276 enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
277 enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
278 u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
279 			   enum pcie_link_width *width);
280 void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
281 void pcie_report_downtraining(struct pci_dev *dev);
282 
283 /* Single Root I/O Virtualization */
284 struct pci_sriov {
285 	int		pos;		/* Capability position */
286 	int		nres;		/* Number of resources */
287 	u32		cap;		/* SR-IOV Capabilities */
288 	u16		ctrl;		/* SR-IOV Control */
289 	u16		total_VFs;	/* Total VFs associated with the PF */
290 	u16		initial_VFs;	/* Initial VFs associated with the PF */
291 	u16		num_VFs;	/* Number of VFs available */
292 	u16		offset;		/* First VF Routing ID offset */
293 	u16		stride;		/* Following VF stride */
294 	u16		vf_device;	/* VF device ID */
295 	u32		pgsz;		/* Page size for BAR alignment */
296 	u8		link;		/* Function Dependency Link */
297 	u8		max_VF_buses;	/* Max buses consumed by VFs */
298 	u16		driver_max_VFs;	/* Max num VFs driver supports */
299 	struct pci_dev	*dev;		/* Lowest numbered PF */
300 	struct pci_dev	*self;		/* This PF */
301 	u32		cfg_size;	/* VF config space size */
302 	u32		class;		/* VF device */
303 	u8		hdr_type;	/* VF header type */
304 	u16		subsystem_vendor; /* VF subsystem vendor */
305 	u16		subsystem_device; /* VF subsystem device */
306 	resource_size_t	barsz[PCI_SRIOV_NUM_BARS];	/* VF BAR size */
307 	bool		drivers_autoprobe; /* Auto probing of VFs by driver */
308 };
309 
310 /**
311  * pci_dev_set_io_state - Set the new error state if possible.
312  *
313  * @dev - pci device to set new error_state
314  * @new - the state we want dev to be in
315  *
316  * Must be called with device_lock held.
317  *
318  * Returns true if state has been changed to the requested state.
319  */
320 static inline bool pci_dev_set_io_state(struct pci_dev *dev,
321 					pci_channel_state_t new)
322 {
323 	bool changed = false;
324 
325 	device_lock_assert(&dev->dev);
326 	switch (new) {
327 	case pci_channel_io_perm_failure:
328 		switch (dev->error_state) {
329 		case pci_channel_io_frozen:
330 		case pci_channel_io_normal:
331 		case pci_channel_io_perm_failure:
332 			changed = true;
333 			break;
334 		}
335 		break;
336 	case pci_channel_io_frozen:
337 		switch (dev->error_state) {
338 		case pci_channel_io_frozen:
339 		case pci_channel_io_normal:
340 			changed = true;
341 			break;
342 		}
343 		break;
344 	case pci_channel_io_normal:
345 		switch (dev->error_state) {
346 		case pci_channel_io_frozen:
347 		case pci_channel_io_normal:
348 			changed = true;
349 			break;
350 		}
351 		break;
352 	}
353 	if (changed)
354 		dev->error_state = new;
355 	return changed;
356 }
357 
358 static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
359 {
360 	device_lock(&dev->dev);
361 	pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
362 	device_unlock(&dev->dev);
363 
364 	return 0;
365 }
366 
367 static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
368 {
369 	return dev->error_state == pci_channel_io_perm_failure;
370 }
371 
372 /* pci_dev priv_flags */
373 #define PCI_DEV_ADDED 0
374 
375 static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
376 {
377 	assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
378 }
379 
380 static inline bool pci_dev_is_added(const struct pci_dev *dev)
381 {
382 	return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
383 }
384 
385 #ifdef CONFIG_PCIEAER
386 #include <linux/aer.h>
387 
388 #define AER_MAX_MULTI_ERR_DEVICES	5	/* Not likely to have more */
389 
390 struct aer_err_info {
391 	struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
392 	int error_dev_num;
393 
394 	unsigned int id:16;
395 
396 	unsigned int severity:2;	/* 0:NONFATAL | 1:FATAL | 2:COR */
397 	unsigned int __pad1:5;
398 	unsigned int multi_error_valid:1;
399 
400 	unsigned int first_error:5;
401 	unsigned int __pad2:2;
402 	unsigned int tlp_header_valid:1;
403 
404 	unsigned int status;		/* COR/UNCOR Error Status */
405 	unsigned int mask;		/* COR/UNCOR Error Mask */
406 	struct aer_header_log_regs tlp;	/* TLP Header */
407 };
408 
409 int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
410 void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
411 #endif	/* CONFIG_PCIEAER */
412 
413 #ifdef CONFIG_PCIE_DPC
414 void pci_save_dpc_state(struct pci_dev *dev);
415 void pci_restore_dpc_state(struct pci_dev *dev);
416 #else
417 static inline void pci_save_dpc_state(struct pci_dev *dev) {}
418 static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
419 #endif
420 
421 #ifdef CONFIG_PCI_ATS
422 void pci_restore_ats_state(struct pci_dev *dev);
423 #else
424 static inline void pci_restore_ats_state(struct pci_dev *dev)
425 {
426 }
427 #endif /* CONFIG_PCI_ATS */
428 
429 #ifdef CONFIG_PCI_IOV
430 int pci_iov_init(struct pci_dev *dev);
431 void pci_iov_release(struct pci_dev *dev);
432 void pci_iov_remove(struct pci_dev *dev);
433 void pci_iov_update_resource(struct pci_dev *dev, int resno);
434 resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
435 void pci_restore_iov_state(struct pci_dev *dev);
436 int pci_iov_bus_range(struct pci_bus *bus);
437 
438 #else
439 static inline int pci_iov_init(struct pci_dev *dev)
440 {
441 	return -ENODEV;
442 }
443 static inline void pci_iov_release(struct pci_dev *dev)
444 
445 {
446 }
447 static inline void pci_iov_remove(struct pci_dev *dev)
448 {
449 }
450 static inline void pci_restore_iov_state(struct pci_dev *dev)
451 {
452 }
453 static inline int pci_iov_bus_range(struct pci_bus *bus)
454 {
455 	return 0;
456 }
457 
458 #endif /* CONFIG_PCI_IOV */
459 
460 unsigned long pci_cardbus_resource_alignment(struct resource *);
461 
462 static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
463 						     struct resource *res)
464 {
465 #ifdef CONFIG_PCI_IOV
466 	int resno = res - dev->resource;
467 
468 	if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
469 		return pci_sriov_resource_alignment(dev, resno);
470 #endif
471 	if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
472 		return pci_cardbus_resource_alignment(res);
473 	return resource_alignment(res);
474 }
475 
476 void pci_enable_acs(struct pci_dev *dev);
477 #ifdef CONFIG_PCI_QUIRKS
478 int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
479 int pci_dev_specific_enable_acs(struct pci_dev *dev);
480 int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
481 #else
482 static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
483 					       u16 acs_flags)
484 {
485 	return -ENOTTY;
486 }
487 static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
488 {
489 	return -ENOTTY;
490 }
491 static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
492 {
493 	return -ENOTTY;
494 }
495 #endif
496 
497 /* PCI error reporting and recovery */
498 void pcie_do_recovery(struct pci_dev *dev, enum pci_channel_state state,
499 		      u32 service);
500 
501 bool pcie_wait_for_link_delay(struct pci_dev *pdev, bool active, int delay);
502 bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
503 #ifdef CONFIG_PCIEASPM
504 void pcie_aspm_init_link_state(struct pci_dev *pdev);
505 void pcie_aspm_exit_link_state(struct pci_dev *pdev);
506 void pcie_aspm_pm_state_change(struct pci_dev *pdev);
507 void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
508 #else
509 static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
510 static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
511 static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { }
512 static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
513 #endif
514 
515 #ifdef CONFIG_PCIEASPM_DEBUG
516 void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev);
517 void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev);
518 #else
519 static inline void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev) { }
520 static inline void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev) { }
521 #endif
522 
523 #ifdef CONFIG_PCIE_PTM
524 void pci_ptm_init(struct pci_dev *dev);
525 #else
526 static inline void pci_ptm_init(struct pci_dev *dev) { }
527 #endif
528 
529 struct pci_dev_reset_methods {
530 	u16 vendor;
531 	u16 device;
532 	int (*reset)(struct pci_dev *dev, int probe);
533 };
534 
535 #ifdef CONFIG_PCI_QUIRKS
536 int pci_dev_specific_reset(struct pci_dev *dev, int probe);
537 #else
538 static inline int pci_dev_specific_reset(struct pci_dev *dev, int probe)
539 {
540 	return -ENOTTY;
541 }
542 #endif
543 
544 #if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
545 int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
546 			  struct resource *res);
547 #endif
548 
549 u32 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar);
550 int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
551 int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
552 static inline u64 pci_rebar_size_to_bytes(int size)
553 {
554 	return 1ULL << (size + 20);
555 }
556 
557 struct device_node;
558 
559 #ifdef CONFIG_OF
560 int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
561 int of_get_pci_domain_nr(struct device_node *node);
562 int of_pci_get_max_link_speed(struct device_node *node);
563 
564 #else
565 static inline int
566 of_pci_parse_bus_range(struct device_node *node, struct resource *res)
567 {
568 	return -EINVAL;
569 }
570 
571 static inline int
572 of_get_pci_domain_nr(struct device_node *node)
573 {
574 	return -1;
575 }
576 
577 static inline int
578 of_pci_get_max_link_speed(struct device_node *node)
579 {
580 	return -EINVAL;
581 }
582 #endif /* CONFIG_OF */
583 
584 #if defined(CONFIG_OF_ADDRESS)
585 int devm_of_pci_get_host_bridge_resources(struct device *dev,
586 			unsigned char busno, unsigned char bus_max,
587 			struct list_head *resources, resource_size_t *io_base);
588 #else
589 static inline int devm_of_pci_get_host_bridge_resources(struct device *dev,
590 			unsigned char busno, unsigned char bus_max,
591 			struct list_head *resources, resource_size_t *io_base)
592 {
593 	return -EINVAL;
594 }
595 #endif
596 
597 #ifdef CONFIG_PCIEAER
598 void pci_no_aer(void);
599 void pci_aer_init(struct pci_dev *dev);
600 void pci_aer_exit(struct pci_dev *dev);
601 extern const struct attribute_group aer_stats_attr_group;
602 void pci_aer_clear_fatal_status(struct pci_dev *dev);
603 void pci_aer_clear_device_status(struct pci_dev *dev);
604 #else
605 static inline void pci_no_aer(void) { }
606 static inline void pci_aer_init(struct pci_dev *d) { }
607 static inline void pci_aer_exit(struct pci_dev *d) { }
608 static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
609 static inline void pci_aer_clear_device_status(struct pci_dev *dev) { }
610 #endif
611 
612 #endif /* DRIVERS_PCI_H */
613