xref: /linux/include/linux/pci.h (revision a625b2a387628df94e385faf5c81bf252f304ed9)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  *	pci.h
4  *
5  *	PCI defines and function prototypes
6  *	Copyright 1994, Drew Eckhardt
7  *	Copyright 1997--1999 Martin Mares <mj@ucw.cz>
8  *
9  *	PCI Express ASPM defines and function prototypes
10  *	Copyright (c) 2007 Intel Corp.
11  *		Zhang Yanmin (yanmin.zhang@intel.com)
12  *		Shaohua Li (shaohua.li@intel.com)
13  *
14  *	For more information, please consult the following manuals (look at
15  *	http://www.pcisig.com/ for how to get them):
16  *
17  *	PCI BIOS Specification
18  *	PCI Local Bus Specification
19  *	PCI to PCI Bridge Specification
20  *	PCI Express Specification
21  *	PCI System Design Guide
22  */
23 #ifndef LINUX_PCI_H
24 #define LINUX_PCI_H
25 
26 #include <linux/args.h>
27 #include <linux/device-id/pci.h>
28 
29 #include <linux/types.h>
30 #include <linux/sizes.h>
31 #include <linux/init.h>
32 #include <linux/ioport.h>
33 #include <linux/list.h>
34 #include <linux/compiler.h>
35 #include <linux/errno.h>
36 #include <linux/kobject.h>
37 #include <linux/atomic.h>
38 #include <linux/device.h>
39 #include <linux/interrupt.h>
40 #include <linux/io.h>
41 #include <linux/resource_ext.h>
42 #include <linux/msi_api.h>
43 #include <uapi/linux/pci.h>
44 
45 #include <linux/pci_ids.h>
46 
47 #define PCI_STATUS_ERROR_BITS (PCI_STATUS_DETECTED_PARITY  | \
48 			       PCI_STATUS_SIG_SYSTEM_ERROR | \
49 			       PCI_STATUS_REC_MASTER_ABORT | \
50 			       PCI_STATUS_REC_TARGET_ABORT | \
51 			       PCI_STATUS_SIG_TARGET_ABORT | \
52 			       PCI_STATUS_PARITY)
53 
54 /* Number of reset methods used in pci_reset_fn_methods array in pci.c */
55 #define PCI_NUM_RESET_METHODS 8
56 
57 #define PCI_RESET_PROBE		true
58 #define PCI_RESET_DO_RESET	false
59 
60 /*
61  * The PCI interface treats multi-function devices as independent
62  * devices.  The slot/function address of each device is encoded
63  * in a single byte as follows:
64  *
65  *	7:3 = slot
66  *	2:0 = function
67  *
68  * PCI_DEVFN(), PCI_SLOT(), and PCI_FUNC() are defined in uapi/linux/pci.h.
69  * In the interest of not exposing interfaces to user-space unnecessarily,
70  * the following kernel-only defines are being added here.
71  */
72 #define PCI_DEVID(bus, devfn)	((((u16)(bus)) << 8) | (devfn))
73 /* return bus from PCI devid = ((u16)bus_number) << 8) | devfn */
74 #define PCI_BUS_NUM(x) (((x) >> 8) & 0xff)
75 
76 /*
77  * PCI_SLOT_ALL_DEVICES indicates a slot that covers all devices on the bus.
78  * Used for PCIe hotplug where the physical slot is the entire secondary bus,
79  * and, if ARI Forwarding is enabled, functions may appear to be on multiple
80  * devices.
81  */
82 #define PCI_SLOT_ALL_DEVICES	0xfeff
83 
84 /* Used to identify a slot as a placeholder */
85 #define PCI_SLOT_PLACEHOLDER	0xffff
86 
87 /* pci_slot represents a physical slot */
88 struct pci_slot {
89 	struct pci_bus		*bus;		/* Bus this slot is on */
90 	struct list_head	list;		/* Node in list of slots */
91 	struct hotplug_slot	*hotplug;	/* Hotplug info (move here) */
92 	u16			number;		/* Device nr, or PCI_SLOT_ALL_DEVICES */
93 	unsigned int		per_func_slot:1; /* Allow per function slot */
94 	struct kobject		kobj;
95 };
96 
pci_slot_name(const struct pci_slot * slot)97 static inline const char *pci_slot_name(const struct pci_slot *slot)
98 {
99 	return kobject_name(&slot->kobj);
100 }
101 
102 /* File state for mmap()s on /proc/bus/pci/X/Y */
103 enum pci_mmap_state {
104 	pci_mmap_io,
105 	pci_mmap_mem
106 };
107 
108 /* For PCI devices, the region numbers are assigned this way: */
109 enum {
110 	/* #0-5: standard PCI resources */
111 	PCI_STD_RESOURCES,
112 	PCI_STD_RESOURCE_END = PCI_STD_RESOURCES + PCI_STD_NUM_BARS - 1,
113 
114 	/* #6: expansion ROM resource */
115 	PCI_ROM_RESOURCE,
116 
117 	/* Device-specific resources */
118 #ifdef CONFIG_PCI_IOV
119 	PCI_IOV_RESOURCES,
120 	PCI_IOV_RESOURCE_END = PCI_IOV_RESOURCES + PCI_SRIOV_NUM_BARS - 1,
121 #endif
122 
123 /* PCI-to-PCI (P2P) bridge windows */
124 #define PCI_BRIDGE_IO_WINDOW		(PCI_BRIDGE_RESOURCES + 0)
125 #define PCI_BRIDGE_MEM_WINDOW		(PCI_BRIDGE_RESOURCES + 1)
126 #define PCI_BRIDGE_PREF_MEM_WINDOW	(PCI_BRIDGE_RESOURCES + 2)
127 
128 /* CardBus bridge windows */
129 #define PCI_CB_BRIDGE_IO_0_WINDOW	(PCI_BRIDGE_RESOURCES + 0)
130 #define PCI_CB_BRIDGE_IO_1_WINDOW	(PCI_BRIDGE_RESOURCES + 1)
131 #define PCI_CB_BRIDGE_MEM_0_WINDOW	(PCI_BRIDGE_RESOURCES + 2)
132 #define PCI_CB_BRIDGE_MEM_1_WINDOW	(PCI_BRIDGE_RESOURCES + 3)
133 
134 /* Total number of bridge resources for P2P and CardBus */
135 #define PCI_P2P_BRIDGE_RESOURCE_NUM	3
136 #define PCI_BRIDGE_RESOURCE_NUM		4
137 
138 	/* Resources assigned to buses behind the bridge */
139 	PCI_BRIDGE_RESOURCES,
140 	PCI_BRIDGE_RESOURCE_END = PCI_BRIDGE_RESOURCES +
141 				  PCI_BRIDGE_RESOURCE_NUM - 1,
142 
143 	/* Total resources associated with a PCI device */
144 	PCI_NUM_RESOURCES,
145 
146 	/* Preserve this for compatibility */
147 	DEVICE_COUNT_RESOURCE = PCI_NUM_RESOURCES,
148 };
149 
150 /**
151  * enum pci_interrupt_pin - PCI INTx interrupt values
152  * @PCI_INTERRUPT_UNKNOWN: Unknown or unassigned interrupt
153  * @PCI_INTERRUPT_INTA: PCI INTA pin
154  * @PCI_INTERRUPT_INTB: PCI INTB pin
155  * @PCI_INTERRUPT_INTC: PCI INTC pin
156  * @PCI_INTERRUPT_INTD: PCI INTD pin
157  *
158  * Corresponds to values for legacy PCI INTx interrupts, as can be found in the
159  * PCI_INTERRUPT_PIN register.
160  */
161 enum pci_interrupt_pin {
162 	PCI_INTERRUPT_UNKNOWN,
163 	PCI_INTERRUPT_INTA,
164 	PCI_INTERRUPT_INTB,
165 	PCI_INTERRUPT_INTC,
166 	PCI_INTERRUPT_INTD,
167 };
168 
169 /* The number of legacy PCI INTx interrupts */
170 #define PCI_NUM_INTX	4
171 
172 /*
173  * Reading from a device that doesn't respond typically returns ~0.  A
174  * successful read from a device may also return ~0, so you need additional
175  * information to reliably identify errors.
176  */
177 #define PCI_ERROR_RESPONSE		(~0ULL)
178 #define PCI_SET_ERROR_RESPONSE(val)	(*(val) = ((typeof(*(val))) PCI_ERROR_RESPONSE))
179 #define PCI_POSSIBLE_ERROR(val)		((val) == ((typeof(val)) PCI_ERROR_RESPONSE))
180 
181 /*
182  * pci_power_t values must match the bits in the Capabilities PME_Support
183  * and Control/Status PowerState fields in the Power Management capability.
184  */
185 typedef int __bitwise pci_power_t;
186 
187 #define PCI_D0		((pci_power_t __force) 0)
188 #define PCI_D1		((pci_power_t __force) 1)
189 #define PCI_D2		((pci_power_t __force) 2)
190 #define PCI_D3hot	((pci_power_t __force) 3)
191 #define PCI_D3cold	((pci_power_t __force) 4)
192 #define PCI_UNKNOWN	((pci_power_t __force) 5)
193 #define PCI_POWER_ERROR	((pci_power_t __force) -1)
194 
195 /* Remember to update this when the list above changes! */
196 extern const char *pci_power_names[];
197 
pci_power_name(pci_power_t state)198 static inline const char *pci_power_name(pci_power_t state)
199 {
200 	return pci_power_names[1 + (__force int) state];
201 }
202 
203 /**
204  * typedef pci_channel_state_t
205  *
206  * The pci_channel state describes connectivity between the CPU and
207  * the PCI device.  If some PCI bus between here and the PCI device
208  * has crashed or locked up, this info is reflected here.
209  */
210 typedef unsigned int __bitwise pci_channel_state_t;
211 
212 enum {
213 	/* I/O channel is in normal state */
214 	pci_channel_io_normal = (__force pci_channel_state_t) 1,
215 
216 	/* I/O to channel is blocked */
217 	pci_channel_io_frozen = (__force pci_channel_state_t) 2,
218 
219 	/* PCI card is dead */
220 	pci_channel_io_perm_failure = (__force pci_channel_state_t) 3,
221 };
222 
223 typedef unsigned int __bitwise pcie_reset_state_t;
224 
225 enum pcie_reset_state {
226 	/* Reset is NOT asserted (Use to deassert reset) */
227 	pcie_deassert_reset = (__force pcie_reset_state_t) 1,
228 
229 	/* Use #PERST to reset PCIe device */
230 	pcie_warm_reset = (__force pcie_reset_state_t) 2,
231 
232 	/* Use PCIe Hot Reset to reset device */
233 	pcie_hot_reset = (__force pcie_reset_state_t) 3
234 };
235 
236 typedef unsigned short __bitwise pci_dev_flags_t;
237 enum pci_dev_flags {
238 	/* INTX_DISABLE in PCI_COMMAND register disables MSI too */
239 	PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = (__force pci_dev_flags_t) (1 << 0),
240 	/* Device configuration is irrevocably lost if disabled into D3 */
241 	PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) (1 << 1),
242 	/* Provide indication device is assigned by a Virtual Machine Manager */
243 	PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) (1 << 2),
244 	/* Flag for quirk use to store if quirk-specific ACS is enabled */
245 	PCI_DEV_FLAGS_ACS_ENABLED_QUIRK = (__force pci_dev_flags_t) (1 << 3),
246 	/* Use a PCIe-to-PCI bridge alias even if !pci_is_pcie */
247 	PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = (__force pci_dev_flags_t) (1 << 5),
248 	/* Do not use bus resets for device */
249 	PCI_DEV_FLAGS_NO_BUS_RESET = (__force pci_dev_flags_t) (1 << 6),
250 	/* Do not use PM reset even if device advertises NoSoftRst- */
251 	PCI_DEV_FLAGS_NO_PM_RESET = (__force pci_dev_flags_t) (1 << 7),
252 	/* Get VPD from function 0 VPD */
253 	PCI_DEV_FLAGS_VPD_REF_F0 = (__force pci_dev_flags_t) (1 << 8),
254 	/* A non-root bridge where translation occurs, stop alias search here */
255 	PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = (__force pci_dev_flags_t) (1 << 9),
256 	/* Do not use FLR even if device advertises PCI_AF_CAP */
257 	PCI_DEV_FLAGS_NO_FLR_RESET = (__force pci_dev_flags_t) (1 << 10),
258 	/* Don't use Relaxed Ordering for TLPs directed at this device */
259 	PCI_DEV_FLAGS_NO_RELAXED_ORDERING = (__force pci_dev_flags_t) (1 << 11),
260 	/* Device does honor MSI masking despite saying otherwise */
261 	PCI_DEV_FLAGS_HAS_MSI_MASKING = (__force pci_dev_flags_t) (1 << 12),
262 	/* Device requires write to PCI_MSIX_ENTRY_DATA before any MSIX reads */
263 	PCI_DEV_FLAGS_MSIX_TOUCH_ENTRY_DATA_FIRST = (__force pci_dev_flags_t) (1 << 13),
264 	/*
265 	 * PCIe to PCI bridge does not create RID aliases because the bridge is
266 	 * integrated with the downstream devices and doesn't use real PCI.
267 	 */
268 	PCI_DEV_FLAGS_PCI_BRIDGE_NO_ALIAS = (__force pci_dev_flags_t) (1 << 14),
269 };
270 
271 enum pci_irq_reroute_variant {
272 	INTEL_IRQ_REROUTE_VARIANT = 1,
273 	MAX_IRQ_REROUTE_VARIANTS = 3
274 };
275 
276 typedef unsigned short __bitwise pci_bus_flags_t;
277 enum pci_bus_flags {
278 	PCI_BUS_FLAGS_NO_MSI	= (__force pci_bus_flags_t) 1,
279 	PCI_BUS_FLAGS_NO_MMRBC	= (__force pci_bus_flags_t) 2,
280 	PCI_BUS_FLAGS_NO_AERSID	= (__force pci_bus_flags_t) 4,
281 	PCI_BUS_FLAGS_NO_EXTCFG	= (__force pci_bus_flags_t) 8,
282 };
283 
284 /* Values from Link Status register, PCIe r3.1, sec 7.8.8 */
285 enum pcie_link_width {
286 	PCIE_LNK_WIDTH_RESRV	= 0x00,
287 	PCIE_LNK_X1		= 0x01,
288 	PCIE_LNK_X2		= 0x02,
289 	PCIE_LNK_X4		= 0x04,
290 	PCIE_LNK_X8		= 0x08,
291 	PCIE_LNK_X12		= 0x0c,
292 	PCIE_LNK_X16		= 0x10,
293 	PCIE_LNK_X32		= 0x20,
294 	PCIE_LNK_WIDTH_UNKNOWN	= 0xff,
295 };
296 
297 /* See matching string table in pci_speed_string() */
298 enum pci_bus_speed {
299 	PCI_SPEED_33MHz			= 0x00,
300 	PCI_SPEED_66MHz			= 0x01,
301 	PCI_SPEED_66MHz_PCIX		= 0x02,
302 	PCI_SPEED_100MHz_PCIX		= 0x03,
303 	PCI_SPEED_133MHz_PCIX		= 0x04,
304 	PCI_SPEED_66MHz_PCIX_ECC	= 0x05,
305 	PCI_SPEED_100MHz_PCIX_ECC	= 0x06,
306 	PCI_SPEED_133MHz_PCIX_ECC	= 0x07,
307 	PCI_SPEED_66MHz_PCIX_266	= 0x09,
308 	PCI_SPEED_100MHz_PCIX_266	= 0x0a,
309 	PCI_SPEED_133MHz_PCIX_266	= 0x0b,
310 	AGP_UNKNOWN			= 0x0c,
311 	AGP_1X				= 0x0d,
312 	AGP_2X				= 0x0e,
313 	AGP_4X				= 0x0f,
314 	AGP_8X				= 0x10,
315 	PCI_SPEED_66MHz_PCIX_533	= 0x11,
316 	PCI_SPEED_100MHz_PCIX_533	= 0x12,
317 	PCI_SPEED_133MHz_PCIX_533	= 0x13,
318 	PCIE_SPEED_2_5GT		= 0x14,
319 	PCIE_SPEED_5_0GT		= 0x15,
320 	PCIE_SPEED_8_0GT		= 0x16,
321 	PCIE_SPEED_16_0GT		= 0x17,
322 	PCIE_SPEED_32_0GT		= 0x18,
323 	PCIE_SPEED_64_0GT		= 0x19,
324 	PCI_SPEED_UNKNOWN		= 0xff,
325 };
326 
327 enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
328 enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
329 
330 struct pci_vpd {
331 	struct mutex	lock;
332 	unsigned int	len;
333 	u8		cap;
334 };
335 
336 struct irq_affinity;
337 struct pcie_bwctrl_data;
338 struct pcie_link_state;
339 struct pci_sriov;
340 struct pci_p2pdma;
341 struct rcec_ea;
342 
343 /* struct pci_dev - describes a PCI device
344  *
345  * @supported_speeds:	PCIe Supported Link Speeds Vector (+ reserved 0 at
346  *			LSB). 0 when the supported speeds cannot be
347  *			determined (e.g., for Root Complex Integrated
348  *			Endpoints without the relevant Capability
349  *			Registers).
350  * @is_hotplug_bridge:	Hotplug bridge of any kind (e.g. PCIe Hot-Plug Capable,
351  *			Conventional PCI Hot-Plug, ACPI slot).
352  *			Such bridges are allocated additional MMIO and bus
353  *			number resources to allow for hierarchy expansion.
354  * @is_pciehp:		PCIe Hot-Plug Capable bridge.
355  */
356 struct pci_dev {
357 	struct list_head bus_list;	/* Node in per-bus list */
358 	struct pci_bus	*bus;		/* Bus this device is on */
359 	struct pci_bus	*subordinate;	/* Bus this device bridges to */
360 
361 	void		*sysdata;	/* Hook for sys-specific extension */
362 	struct proc_dir_entry *procent;	/* Device entry in /proc/bus/pci */
363 	struct pci_slot	*slot;		/* Physical slot this device is in */
364 
365 	unsigned int	devfn;		/* Encoded device & function index */
366 	unsigned short	vendor;
367 	unsigned short	device;
368 	unsigned short	subsystem_vendor;
369 	unsigned short	subsystem_device;
370 	unsigned int	class;		/* 3 bytes: (base,sub,prog-if) */
371 	u8		revision;	/* PCI revision, low byte of class word */
372 	u8		hdr_type;	/* PCI header type (`multi' flag masked out) */
373 #ifdef CONFIG_PCIEAER
374 	u16		aer_cap;	/* AER capability offset */
375 	struct aer_info	*aer_info;	/* AER info for this device */
376 #endif
377 #ifdef CONFIG_PCIEPORTBUS
378 	struct rcec_ea	*rcec_ea;	/* RCEC cached endpoint association */
379 	struct pci_dev  *rcec;          /* Associated RCEC device */
380 #endif
381 	u32		devcap;		/* PCIe Device Capabilities */
382 	u16		rebar_cap;	/* Resizable BAR capability offset */
383 	u8		pcie_cap;	/* PCIe capability offset */
384 	u8		msi_cap;	/* MSI capability offset */
385 	u8		msix_cap;	/* MSI-X capability offset */
386 	u8		pcie_mpss:3;	/* PCIe Max Payload Size Supported */
387 	u8		rom_base_reg;	/* Config register controlling ROM */
388 	u8		pin;		/* Interrupt pin this device uses */
389 	u16		pcie_flags_reg;	/* Cached PCIe Capabilities Register */
390 	unsigned long	*dma_alias_mask;/* Mask of enabled devfn aliases */
391 
392 	struct pci_driver *driver;	/* Driver bound to this device */
393 	u64		dma_mask;	/* Mask of the bits of bus address this
394 					   device implements.  Normally this is
395 					   0xffffffff.  You only need to change
396 					   this if your device has broken DMA
397 					   or supports 64-bit transfers.  */
398 	u64		msi_addr_mask;	/* Mask of the bits of bus address for
399 					   MSI that this device implements.
400 					   Normally set based on device
401 					   capabilities. You only need to
402 					   change this if your device claims
403 					   to support 64-bit MSI but implements
404 					   fewer than 64 address bits. */
405 
406 	struct device_dma_parameters dma_parms;
407 
408 	pci_power_t	current_state;	/* Current operating state. In ACPI,
409 					   this is D0-D3, D0 being fully
410 					   functional, and D3 being off. */
411 	u8		pm_cap;		/* PM capability offset */
412 	unsigned int	pme_support:5;	/* Bitmask of states from which PME#
413 					   can be generated */
414 	unsigned int	pme_poll:1;	/* Poll device's PME status bit */
415 	unsigned int	pinned:1;	/* Whether this dev is pinned */
416 	unsigned int	config_rrs_sv:1; /* Config RRS software visibility */
417 	unsigned int	imm_ready:1;	/* Supports Immediate Readiness */
418 	unsigned int	d1_support:1;	/* Low power state D1 is supported */
419 	unsigned int	d2_support:1;	/* Low power state D2 is supported */
420 	unsigned int	no_d1d2:1;	/* D1 and D2 are forbidden */
421 	unsigned int	no_d3cold:1;	/* D3cold is forbidden */
422 	unsigned int	bridge_d3:1;	/* Allow D3 for bridge */
423 	unsigned int	d3cold_allowed:1;	/* D3cold is allowed by user */
424 	unsigned int	mmio_always_on:1;	/* Disallow turning off io/mem
425 						   decoding during BAR sizing */
426 	unsigned int	wakeup_prepared:1;
427 	unsigned int	skip_bus_pm:1;	/* Internal: Skip bus-level PM */
428 	unsigned int	ignore_hotplug:1;	/* Ignore hotplug events */
429 	unsigned int	hotplug_user_indicators:1; /* SlotCtl indicators
430 						      controlled exclusively by
431 						      user sysfs */
432 	unsigned int	clear_retrain_link:1;	/* Need to clear Retrain Link
433 						   bit manually */
434 	unsigned int	no_bw_notif:1;	/* BW notifications may cause issues */
435 	unsigned int	d3hot_delay;	/* D3hot->D0 transition time in ms */
436 	unsigned int	d3cold_delay;	/* D3cold->D0 transition time in ms */
437 
438 	u16		l1ss;		/* L1SS Capability pointer */
439 #ifdef CONFIG_PCIEASPM
440 	struct pcie_link_state	*link_state;	/* ASPM link state */
441 	unsigned int	aspm_l0s_support:1;	/* ASPM L0s support */
442 	unsigned int	aspm_l1_support:1;	/* ASPM L1 support */
443 	unsigned int	ltr_path:1;	/* Latency Tolerance Reporting
444 					   supported from root to here */
445 #endif
446 	unsigned int	pasid_no_tlp:1;		/* PASID works without TLP Prefix */
447 	unsigned int	eetlp_prefix_max:3;	/* Max # of End-End TLP Prefixes, 0=not supported */
448 
449 	pci_channel_state_t error_state;	/* Current connectivity state */
450 	struct device	dev;			/* Generic device interface */
451 
452 	int		cfg_size;		/* Size of config space */
453 
454 	/*
455 	 * Instead of touching interrupt line and base address registers
456 	 * directly, use the values stored here. They might be different!
457 	 */
458 	unsigned int	irq;
459 	struct resource resource[DEVICE_COUNT_RESOURCE]; /* I/O and memory regions + expansion ROMs */
460 	struct resource driver_exclusive_resource;	 /* driver exclusive resource ranges */
461 
462 	unsigned int	transparent:1;		/* Subtractive decode bridge */
463 	unsigned int	io_window:1;		/* Bridge has I/O window */
464 	unsigned int	pref_window:1;		/* Bridge has pref mem window */
465 	unsigned int	pref_64_window:1;	/* Pref mem window is 64-bit */
466 	unsigned int	multifunction:1;	/* Multi-function device */
467 
468 	unsigned int	is_busmaster:1;		/* Is busmaster */
469 	unsigned int	no_msi:1;		/* May not use MSI */
470 	unsigned int	block_cfg_access:1;	/* Config space access blocked */
471 	unsigned int	broken_parity_status:1;	/* Generates false positive parity */
472 	unsigned int	irq_reroute_variant:2;	/* Needs IRQ rerouting variant */
473 	unsigned int	msi_enabled:1;
474 	unsigned int	msix_enabled:1;
475 	unsigned int	ari_enabled:1;		/* ARI forwarding */
476 	unsigned int	ats_enabled:1;		/* Address Translation Svc */
477 	unsigned int	pasid_enabled:1;	/* Process Address Space ID */
478 	unsigned int	pri_enabled:1;		/* Page Request Interface */
479 	unsigned int	tph_enabled:1;		/* TLP Processing Hints */
480 	unsigned int	fm_enabled:1;		/* Flit Mode (segment captured) */
481 	unsigned int	is_managed:1;		/* Managed via devres */
482 	unsigned int	is_msi_managed:1;	/* MSI release via devres installed */
483 	unsigned int	needs_freset:1;		/* Requires fundamental reset */
484 	unsigned int	state_saved:1;
485 	unsigned int	is_physfn:1;
486 	unsigned int	is_virtfn:1;
487 	unsigned int	is_hotplug_bridge:1;
488 	unsigned int	is_pciehp:1;
489 	unsigned int	shpc_managed:1;		/* SHPC owned by shpchp */
490 	unsigned int	is_thunderbolt:1;	/* Thunderbolt controller */
491 	unsigned int	is_cxl:1;               /* Compute Express Link (CXL) */
492 	/*
493 	 * Devices marked being untrusted are the ones that can potentially
494 	 * execute DMA attacks and similar. They are typically connected
495 	 * through external ports such as Thunderbolt but not limited to
496 	 * that. When an IOMMU is enabled they should be getting full
497 	 * mappings to make sure they cannot access arbitrary memory.
498 	 */
499 	unsigned int	untrusted:1;
500 	/*
501 	 * Info from the platform, e.g., ACPI or device tree, may mark a
502 	 * device as "external-facing".  An external-facing device is
503 	 * itself internal but devices downstream from it are external.
504 	 */
505 	unsigned int	external_facing:1;
506 	unsigned int	broken_intx_masking:1;	/* INTx masking can't be used */
507 	unsigned int	io_window_1k:1;		/* Intel bridge 1K I/O windows */
508 	unsigned int	irq_managed:1;
509 	unsigned int	non_compliant_bars:1;	/* Broken BARs; ignore them */
510 	unsigned int	is_probed:1;		/* Device probing in progress */
511 	unsigned int	link_active_reporting:1;/* Device capable of reporting link active */
512 	unsigned int	no_vf_scan:1;		/* Don't scan for VFs after IOV enablement */
513 	unsigned int	no_command_memory:1;	/* No PCI_COMMAND_MEMORY */
514 	unsigned int	rom_bar_overlap:1;	/* ROM BAR disable broken */
515 	unsigned int	rom_attr_enabled:1;	/* Display of ROM attribute enabled? */
516 	unsigned int	non_mappable_bars:1;	/* BARs can't be mapped by CPU or peers */
517 	pci_dev_flags_t dev_flags;
518 	atomic_t	enable_cnt;	/* pci_enable_device has been called */
519 
520 	spinlock_t	pcie_cap_lock;		/* Protects RMW ops in capability accessors */
521 	u32		saved_config_space[16]; /* Config space saved at suspend time */
522 	struct hlist_head saved_cap_space;
523 
524 #ifdef CONFIG_HOTPLUG_PCI_PCIE
525 	unsigned int	broken_cmd_compl:1;	/* No compl for some cmds */
526 #endif
527 #ifdef CONFIG_PCIE_PTM
528 	u16		ptm_cap;		/* PTM Capability */
529 	unsigned int	ptm_root:1;
530 	unsigned int	ptm_responder:1;
531 	unsigned int	ptm_requester:1;
532 	atomic_t	ptm_enable_cnt;
533 	u8		ptm_granularity;
534 #endif
535 #ifdef CONFIG_PCI_MSI
536 	void __iomem	*msix_base;
537 	raw_spinlock_t	msi_lock;
538 #endif
539 	struct pci_vpd	vpd;
540 #ifdef CONFIG_PCIE_DPC
541 	u16		dpc_cap;
542 	unsigned int	dpc_rp_extensions:1;
543 	u8		dpc_rp_log_size;
544 #endif
545 	struct pcie_bwctrl_data		*link_bwctrl;
546 #ifdef CONFIG_PCI_ATS
547 	union {
548 		struct pci_sriov	*sriov;		/* PF: SR-IOV info */
549 		struct pci_dev		*physfn;	/* VF: related PF */
550 	};
551 	u16		ats_cap;	/* ATS Capability offset */
552 	u8		ats_stu;	/* ATS Smallest Translation Unit */
553 #endif
554 #ifdef CONFIG_PCI_PRI
555 	u16		pri_cap;	/* PRI Capability offset */
556 	u32		pri_reqs_alloc; /* Number of PRI requests allocated */
557 	unsigned int	pasid_required:1; /* PRG Response PASID Required */
558 #endif
559 #ifdef CONFIG_PCI_PASID
560 	u16		pasid_cap;	/* PASID Capability offset */
561 	u16		pasid_features;
562 #endif
563 #ifdef CONFIG_PCI_P2PDMA
564 	struct pci_p2pdma __rcu *p2pdma;
565 #endif
566 #ifdef CONFIG_PCI_DOE
567 	struct xarray	doe_mbs;	/* Data Object Exchange mailboxes */
568 #endif
569 #ifdef CONFIG_PCI_NPEM
570 	struct npem	*npem;		/* Native PCIe Enclosure Management */
571 #endif
572 #ifdef CONFIG_PCI_IDE
573 	u16		ide_cap;	/* Link Integrity & Data Encryption */
574 	u8		nr_ide_mem;	/* Address association resources for streams */
575 	u8		nr_link_ide;	/* Link Stream count (Selective Stream offset) */
576 	u16		nr_sel_ide;	/* Selective Stream count (register block allocator) */
577 	struct ida	ide_stream_ida;
578 	unsigned int	ide_cfg:1;	/* Config cycles over IDE */
579 	unsigned int	ide_tee_limit:1; /* Disallow T=0 traffic over IDE */
580 #endif
581 #ifdef CONFIG_PCI_TSM
582 	struct pci_tsm *tsm;		/* TSM operation state */
583 #endif
584 	u16		acs_cap;	/* ACS Capability offset */
585 	u16		acs_capabilities; /* ACS Capabilities */
586 	u8		supported_speeds; /* Supported Link Speeds Vector */
587 	phys_addr_t	rom;		/* Physical address if not from BAR */
588 	size_t		romlen;		/* Length if not from BAR */
589 	unsigned long	priv_flags;	/* Private flags for the PCI driver */
590 
591 	/* These methods index pci_reset_fn_methods[] */
592 	u8 reset_methods[PCI_NUM_RESET_METHODS]; /* In priority order */
593 
594 #ifdef CONFIG_PCIE_TPH
595 	u16		tph_cap;	/* TPH capability offset */
596 	u8		tph_mode;	/* TPH mode */
597 	u8		tph_req_type;	/* TPH requester type */
598 #endif
599 };
600 
pci_physfn(struct pci_dev * dev)601 static inline struct pci_dev *pci_physfn(struct pci_dev *dev)
602 {
603 #ifdef CONFIG_PCI_IOV
604 	if (dev->is_virtfn)
605 		dev = dev->physfn;
606 #endif
607 	return dev;
608 }
609 
610 struct pci_dev *pci_alloc_dev(struct pci_bus *bus);
611 
612 #define	to_pci_dev(n) container_of(n, struct pci_dev, dev)
613 #define for_each_pci_dev(d) while ((d = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, d)) != NULL)
614 #define for_each_pci_dev_reverse(d) \
615 	while ((d = pci_get_device_reverse(PCI_ANY_ID, PCI_ANY_ID, d)) != NULL)
616 
pci_channel_offline(struct pci_dev * pdev)617 static inline int pci_channel_offline(struct pci_dev *pdev)
618 {
619 	return (pdev->error_state != pci_channel_io_normal);
620 }
621 
622 /*
623  * Currently in ACPI spec, for each PCI host bridge, PCI Segment
624  * Group number is limited to a 16-bit value, therefore (int)-1 is
625  * not a valid PCI domain number, and can be used as a sentinel
626  * value indicating ->domain_nr is not set by the driver (and
627  * CONFIG_PCI_DOMAINS_GENERIC=y archs will set it with
628  * pci_bus_find_domain_nr()).
629  */
630 #define PCI_DOMAIN_NR_NOT_SET (-1)
631 
632 struct pci_host_bridge {
633 	struct device	dev;
634 	struct pci_bus	*bus;		/* Root bus */
635 	struct pci_ops	*ops;
636 	struct pci_ops	*child_ops;
637 	void		*sysdata;
638 	int		busnr;
639 	int		domain_nr;
640 	struct list_head windows;	/* resource_entry */
641 	struct list_head dma_ranges;	/* dma ranges resource list */
642 	struct list_head ports;		/* Root Port list (pci_host_port) */
643 #ifdef CONFIG_PCI_IDE
644 	u16 nr_ide_streams; /* Max streams possibly active in @ide_stream_ida */
645 	struct ida ide_stream_ida;
646 	struct ida ide_stream_ids_ida; /* track unique ids per domain */
647 #endif
648 	u8 (*swizzle_irq)(struct pci_dev *, u8 *); /* Platform IRQ swizzler */
649 	int (*map_irq)(const struct pci_dev *, u8, u8);
650 	void (*release_fn)(struct pci_host_bridge *);
651 	int (*enable_device)(struct pci_host_bridge *bridge, struct pci_dev *dev);
652 	void (*disable_device)(struct pci_host_bridge *bridge, struct pci_dev *dev);
653 	void		*release_data;
654 	unsigned int	ignore_reset_delay:1;	/* For entire hierarchy */
655 	unsigned int	no_ext_tags:1;		/* No Extended Tags */
656 	unsigned int	no_inc_mrrs:1;		/* No Increase MRRS */
657 	unsigned int	native_aer:1;		/* OS may use PCIe AER */
658 	unsigned int	native_pcie_hotplug:1;	/* OS may use PCIe hotplug */
659 	unsigned int	native_shpc_hotplug:1;	/* OS may use SHPC hotplug */
660 	unsigned int	native_pme:1;		/* OS may use PCIe PME */
661 	unsigned int	native_ltr:1;		/* OS may use PCIe LTR */
662 	unsigned int	native_dpc:1;		/* OS may use PCIe DPC */
663 	unsigned int	native_cxl_error:1;	/* OS may use CXL RAS/Events */
664 	unsigned int	preserve_config:1;	/* Preserve FW resource setup */
665 	unsigned int	size_windows:1;		/* Enable root bus sizing */
666 	unsigned int	msi_domain:1;		/* Bridge wants MSI domain */
667 	unsigned int	broken_l1ss_resume:1;	/* Resuming from L1SS during
668 						   system suspend is broken */
669 
670 	/* Resource alignment requirements */
671 	resource_size_t (*align_resource)(struct pci_dev *dev,
672 			const struct resource *res,
673 			resource_size_t start,
674 			resource_size_t size,
675 			resource_size_t align);
676 	unsigned long	private[] ____cacheline_aligned;
677 };
678 
679 #define	to_pci_host_bridge(n) container_of(n, struct pci_host_bridge, dev)
680 
pci_host_bridge_priv(struct pci_host_bridge * bridge)681 static inline void *pci_host_bridge_priv(struct pci_host_bridge *bridge)
682 {
683 	return (void *)bridge->private;
684 }
685 
pci_host_bridge_from_priv(void * priv)686 static inline struct pci_host_bridge *pci_host_bridge_from_priv(void *priv)
687 {
688 	return container_of(priv, struct pci_host_bridge, private);
689 }
690 
691 struct pci_host_bridge *pci_alloc_host_bridge(size_t priv);
692 struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
693 						   size_t priv);
694 void pci_free_host_bridge(struct pci_host_bridge *bridge);
695 struct device *pci_get_host_bridge_device(struct pci_dev *dev);
696 struct pci_host_bridge *pci_find_host_bridge(struct pci_bus *bus);
697 
698 void pci_set_host_bridge_release(struct pci_host_bridge *bridge,
699 				 void (*release_fn)(struct pci_host_bridge *),
700 				 void *release_data);
701 
702 int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge);
703 
704 #define PCI_REGION_FLAG_MASK	0x0fU	/* These bits of resource flags tell us the PCI region flags */
705 
706 struct pci_bus {
707 	struct list_head node;		/* Node in list of buses */
708 	struct pci_bus	*parent;	/* Parent bus this bridge is on */
709 	struct list_head children;	/* List of child buses */
710 	struct list_head devices;	/* List of devices on this bus */
711 	struct pci_dev	*self;		/* Bridge device as seen by parent */
712 	struct list_head slots;		/* List of slots on this bus;
713 					   protected by pci_slot_mutex */
714 	struct resource *resource[PCI_BRIDGE_RESOURCE_NUM];
715 	struct list_head resources;	/* Address space routed to this bus */
716 	struct resource busn_res;	/* Bus numbers routed to this bus */
717 
718 	struct pci_ops	*ops;		/* Configuration access functions */
719 	void		*sysdata;	/* Hook for sys-specific extension */
720 	struct proc_dir_entry *procdir;	/* Directory entry in /proc/bus/pci */
721 
722 	unsigned char	number;		/* Bus number */
723 	unsigned char	primary;	/* Number of primary bridge */
724 	unsigned char	max_bus_speed;	/* enum pci_bus_speed */
725 	unsigned char	cur_bus_speed;	/* enum pci_bus_speed */
726 #ifdef CONFIG_PCI_DOMAINS_GENERIC
727 	int		domain_nr;
728 #endif
729 
730 	char		name[48];
731 
732 	unsigned short	bridge_ctl;	/* Manage NO_ISA/FBB/et al behaviors */
733 	pci_bus_flags_t bus_flags;	/* Inherited by child buses */
734 	struct device		*bridge;
735 	struct device		dev;
736 	unsigned int		is_added:1;
737 	unsigned int		unsafe_warn:1;	/* warned about RW1C config write */
738 	unsigned int		flit_mode:1;	/* Link in Flit mode */
739 };
740 
741 #define to_pci_bus(n)	container_of(n, struct pci_bus, dev)
742 
pci_dev_id(struct pci_dev * dev)743 static inline u16 pci_dev_id(struct pci_dev *dev)
744 {
745 	return PCI_DEVID(dev->bus->number, dev->devfn);
746 }
747 
748 /*
749  * Returns true if the PCI bus is root (behind host-PCI bridge),
750  * false otherwise
751  *
752  * Some code assumes that "bus->self == NULL" means that bus is a root bus.
753  * This is incorrect because "virtual" buses added for SR-IOV (via
754  * virtfn_add_bus()) have "bus->self == NULL" but are not root buses.
755  */
pci_is_root_bus(struct pci_bus * pbus)756 static inline bool pci_is_root_bus(struct pci_bus *pbus)
757 {
758 	return !(pbus->parent);
759 }
760 
761 /**
762  * pci_is_bridge - check if the PCI device is a bridge
763  * @dev: PCI device
764  *
765  * Return true if the PCI device is bridge whether it has subordinate
766  * or not.
767  */
pci_is_bridge(struct pci_dev * dev)768 static inline bool pci_is_bridge(struct pci_dev *dev)
769 {
770 	return dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
771 		dev->hdr_type == PCI_HEADER_TYPE_CARDBUS;
772 }
773 
774 /**
775  * pci_is_vga - check if the PCI device is a VGA device
776  * @pdev: PCI device
777  *
778  * The PCI Code and ID Assignment spec, r1.15, secs 1.4 and 1.1, define
779  * VGA Base Class and Sub-Classes:
780  *
781  *   03 00  PCI_CLASS_DISPLAY_VGA      VGA-compatible or 8514-compatible
782  *   00 01  PCI_CLASS_NOT_DEFINED_VGA  VGA-compatible (before Class Code)
783  *
784  * Return true if the PCI device is a VGA device and uses the legacy VGA
785  * resources ([mem 0xa0000-0xbffff], [io 0x3b0-0x3bb], [io 0x3c0-0x3df] and
786  * aliases).
787  */
pci_is_vga(struct pci_dev * pdev)788 static inline bool pci_is_vga(struct pci_dev *pdev)
789 {
790 	if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
791 		return true;
792 
793 	if ((pdev->class >> 8) == PCI_CLASS_NOT_DEFINED_VGA)
794 		return true;
795 
796 	return false;
797 }
798 
799 /**
800  * pci_is_display - check if the PCI device is a display controller
801  * @pdev: PCI device
802  *
803  * Determine whether the given PCI device corresponds to a display
804  * controller. Display controllers are typically used for graphical output
805  * and are identified based on their class code.
806  *
807  * Return: true if the PCI device is a display controller, false otherwise.
808  */
pci_is_display(struct pci_dev * pdev)809 static inline bool pci_is_display(struct pci_dev *pdev)
810 {
811 	return (pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY;
812 }
813 
pcie_is_cxl(struct pci_dev * pci_dev)814 static inline bool pcie_is_cxl(struct pci_dev *pci_dev)
815 {
816 	return pci_dev->is_cxl;
817 }
818 
819 #define for_each_pci_bridge(dev, bus)				\
820 	list_for_each_entry(dev, &bus->devices, bus_list)	\
821 		if (!pci_is_bridge(dev)) {} else
822 
pci_upstream_bridge(struct pci_dev * dev)823 static inline struct pci_dev *pci_upstream_bridge(struct pci_dev *dev)
824 {
825 	dev = pci_physfn(dev);
826 	if (pci_is_root_bus(dev->bus))
827 		return NULL;
828 
829 	return dev->bus->self;
830 }
831 
832 #ifdef CONFIG_PCI_MSI
pci_dev_msi_enabled(struct pci_dev * pci_dev)833 static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev)
834 {
835 	return pci_dev->msi_enabled || pci_dev->msix_enabled;
836 }
837 #else
pci_dev_msi_enabled(struct pci_dev * pci_dev)838 static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev) { return false; }
839 #endif
840 
841 /* Error values that may be returned by PCI functions */
842 #define PCIBIOS_SUCCESSFUL		0x00
843 #define PCIBIOS_FUNC_NOT_SUPPORTED	0x81
844 #define PCIBIOS_BAD_VENDOR_ID		0x83
845 #define PCIBIOS_DEVICE_NOT_FOUND	0x86
846 #define PCIBIOS_BAD_REGISTER_NUMBER	0x87
847 #define PCIBIOS_SET_FAILED		0x88
848 #define PCIBIOS_BUFFER_TOO_SMALL	0x89
849 
850 /* Translate above to generic errno for passing back through non-PCI code */
pcibios_err_to_errno(int err)851 static inline int pcibios_err_to_errno(int err)
852 {
853 	if (err <= PCIBIOS_SUCCESSFUL)
854 		return err; /* Assume already errno */
855 
856 	switch (err) {
857 	case PCIBIOS_FUNC_NOT_SUPPORTED:
858 		return -ENOENT;
859 	case PCIBIOS_BAD_VENDOR_ID:
860 		return -ENOTTY;
861 	case PCIBIOS_DEVICE_NOT_FOUND:
862 		return -ENODEV;
863 	case PCIBIOS_BAD_REGISTER_NUMBER:
864 		return -EFAULT;
865 	case PCIBIOS_SET_FAILED:
866 		return -EIO;
867 	case PCIBIOS_BUFFER_TOO_SMALL:
868 		return -ENOSPC;
869 	}
870 
871 	return -ERANGE;
872 }
873 
874 /* Low-level architecture-dependent routines */
875 
876 struct pci_ops {
877 	int (*add_bus)(struct pci_bus *bus);
878 	void (*remove_bus)(struct pci_bus *bus);
879 	void __iomem *(*map_bus)(struct pci_bus *bus, unsigned int devfn, int where);
880 	int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
881 	int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
882 };
883 
884 /*
885  * ACPI needs to be able to access PCI config space before we've done a
886  * PCI bus scan and created pci_bus structures.
887  */
888 int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
889 		 int reg, int len, u32 *val);
890 int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
891 		  int reg, int len, u32 val);
892 
893 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
894 typedef u64 pci_bus_addr_t;
895 #else
896 typedef u32 pci_bus_addr_t;
897 #endif
898 
899 struct pci_bus_region {
900 	pci_bus_addr_t	start;
901 	pci_bus_addr_t	end;
902 };
903 
pci_bus_region_size(const struct pci_bus_region * region)904 static inline pci_bus_addr_t pci_bus_region_size(const struct pci_bus_region *region)
905 {
906 	return region->end - region->start + 1;
907 }
908 
909 struct pci_dynids {
910 	spinlock_t		lock;	/* Protects list, index */
911 	struct list_head	list;	/* For IDs added at runtime */
912 };
913 
914 
915 /*
916  * PCI Error Recovery System (PCI-ERS).  If a PCI device driver provides
917  * a set of callbacks in struct pci_error_handlers, that device driver
918  * will be notified of PCI bus errors, and will be driven to recovery
919  * when an error occurs.
920  */
921 
922 typedef unsigned int __bitwise pci_ers_result_t;
923 
924 enum pci_ers_result {
925 	/* No result/none/not supported in device driver */
926 	PCI_ERS_RESULT_NONE = (__force pci_ers_result_t) 1,
927 
928 	/* Device driver can recover without slot reset */
929 	PCI_ERS_RESULT_CAN_RECOVER = (__force pci_ers_result_t) 2,
930 
931 	/* Device driver wants slot to be reset */
932 	PCI_ERS_RESULT_NEED_RESET = (__force pci_ers_result_t) 3,
933 
934 	/* Device has completely failed, is unrecoverable */
935 	PCI_ERS_RESULT_DISCONNECT = (__force pci_ers_result_t) 4,
936 
937 	/* Device driver is fully recovered and operational */
938 	PCI_ERS_RESULT_RECOVERED = (__force pci_ers_result_t) 5,
939 
940 	/* No AER capabilities registered for the driver */
941 	PCI_ERS_RESULT_NO_AER_DRIVER = (__force pci_ers_result_t) 6,
942 };
943 
944 /* PCI bus error event callbacks */
945 struct pci_error_handlers {
946 	/* PCI bus error detected on this device */
947 	pci_ers_result_t (*error_detected)(struct pci_dev *dev,
948 					   pci_channel_state_t error);
949 
950 	/* MMIO has been re-enabled, but not DMA */
951 	pci_ers_result_t (*mmio_enabled)(struct pci_dev *dev);
952 
953 	/* PCI slot has been reset */
954 	pci_ers_result_t (*slot_reset)(struct pci_dev *dev);
955 
956 	/* PCI function reset prepare or completed */
957 	void (*reset_prepare)(struct pci_dev *dev);
958 	void (*reset_done)(struct pci_dev *dev);
959 
960 	/* Device driver may resume normal operations */
961 	void (*resume)(struct pci_dev *dev);
962 
963 	/* Allow device driver to record more details of a correctable error */
964 	void (*cor_error_detected)(struct pci_dev *dev);
965 };
966 
967 
968 struct module;
969 
970 /**
971  * struct pci_driver - PCI driver structure
972  * @name:	Driver name.
973  * @id_table:	Pointer to table of device IDs the driver is
974  *		interested in.  Most drivers should export this
975  *		table using MODULE_DEVICE_TABLE(pci,...).
976  * @probe:	This probing function gets called (during execution
977  *		of pci_register_driver() for already existing
978  *		devices or later if a new device gets inserted) for
979  *		all PCI devices which match the ID table and are not
980  *		"owned" by the other drivers yet. This function gets
981  *		passed a "struct pci_dev \*" for each device whose
982  *		entry in the ID table matches the device. The probe
983  *		function returns zero when the driver chooses to
984  *		take "ownership" of the device or an error code
985  *		(negative number) otherwise.
986  *		The probe function always gets called from process
987  *		context, so it can sleep.
988  * @remove:	The remove() function gets called whenever a device
989  *		being handled by this driver is removed (either during
990  *		deregistration of the driver or when it's manually
991  *		pulled out of a hot-pluggable slot).
992  *		The remove function always gets called from process
993  *		context, so it can sleep.
994  * @suspend:	Put device into low power state.
995  * @resume:	Wake device from low power state.
996  *		(Please see Documentation/power/pci.rst for descriptions
997  *		of PCI Power Management and the related functions.)
998  * @shutdown:	Hook into reboot_notifier_list (kernel/sys.c).
999  *		Intended to stop any idling DMA operations.
1000  *		Useful for enabling wake-on-lan (NIC) or changing
1001  *		the power state of a device before reboot.
1002  *		e.g. drivers/net/e100.c.
1003  * @sriov_configure: Optional driver callback to allow configuration of
1004  *		number of VFs to enable via sysfs "sriov_numvfs" file.
1005  * @sriov_set_msix_vec_count: PF Driver callback to change number of MSI-X
1006  *              vectors on a VF. Triggered via sysfs "sriov_vf_msix_count".
1007  *              This will change MSI-X Table Size in the VF Message Control
1008  *              registers.
1009  * @sriov_get_vf_total_msix: PF driver callback to get the total number of
1010  *              MSI-X vectors available for distribution to the VFs.
1011  * @err_handler: See Documentation/PCI/pci-error-recovery.rst
1012  * @groups:	Sysfs attribute groups.
1013  * @dev_groups: Attributes attached to the device that will be
1014  *              created once it is bound to the driver.
1015  * @driver:	Driver model structure.
1016  * @dynids:	List of dynamically added device IDs.
1017  * @driver_managed_dma: Device driver doesn't use kernel DMA API for DMA.
1018  *		For most device drivers, no need to care about this flag
1019  *		as long as all DMAs are handled through the kernel DMA API.
1020  *		For some special ones, for example VFIO drivers, they know
1021  *		how to manage the DMA themselves and set this flag so that
1022  *		the IOMMU layer will allow them to setup and manage their
1023  *		own I/O address space.
1024  */
1025 struct pci_driver {
1026 	const char		*name;
1027 	const struct pci_device_id *id_table;	/* Must be non-NULL for probe to be called */
1028 	int  (*probe)(struct pci_dev *dev, const struct pci_device_id *id);	/* New device inserted */
1029 	void (*remove)(struct pci_dev *dev);	/* Device removed (NULL if not a hot-plug capable driver) */
1030 	int  (*suspend)(struct pci_dev *dev, pm_message_t state);	/* Device suspended */
1031 	int  (*resume)(struct pci_dev *dev);	/* Device woken up */
1032 	void (*shutdown)(struct pci_dev *dev);
1033 	int  (*sriov_configure)(struct pci_dev *dev, int num_vfs); /* On PF */
1034 	int  (*sriov_set_msix_vec_count)(struct pci_dev *vf, int msix_vec_count); /* On PF */
1035 	u32  (*sriov_get_vf_total_msix)(struct pci_dev *pf);
1036 	const struct pci_error_handlers *err_handler;
1037 	const struct attribute_group **groups;
1038 	const struct attribute_group **dev_groups;
1039 	struct device_driver	driver;
1040 	struct pci_dynids	dynids;
1041 	bool driver_managed_dma;
1042 };
1043 
1044 #define to_pci_driver(__drv)	\
1045 	( __drv ? container_of_const(__drv, struct pci_driver, driver) : NULL )
1046 
1047 /**
1048  * PCI_DEVICE - macro used to describe a specific PCI device
1049  * @vend: the 16 bit PCI Vendor ID
1050  * @dev: the 16 bit PCI Device ID
1051  *
1052  * This macro is used to create a struct pci_device_id that matches a
1053  * specific device.  The subvendor and subdevice fields will be set to
1054  * PCI_ANY_ID.
1055  */
1056 #define PCI_DEVICE(vend,dev) \
1057 	.vendor = (vend), .device = (dev), \
1058 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1059 
1060 /**
1061  * PCI_DEVICE_DRIVER_OVERRIDE - macro used to describe a PCI device with
1062  *                              override_only flags.
1063  * @vend: the 16 bit PCI Vendor ID
1064  * @dev: the 16 bit PCI Device ID
1065  * @driver_override: the 32 bit PCI Device override_only
1066  *
1067  * This macro is used to create a struct pci_device_id that matches only a
1068  * driver_override device. The subvendor and subdevice fields will be set to
1069  * PCI_ANY_ID.
1070  */
1071 #define PCI_DEVICE_DRIVER_OVERRIDE(vend, dev, driver_override) \
1072 	.vendor = (vend), .device = (dev), .subvendor = PCI_ANY_ID, \
1073 	.subdevice = PCI_ANY_ID, .override_only = (driver_override)
1074 
1075 /**
1076  * PCI_DRIVER_OVERRIDE_DEVICE_VFIO - macro used to describe a VFIO
1077  *                                   "driver_override" PCI device.
1078  * @vend: the 16 bit PCI Vendor ID
1079  * @dev: the 16 bit PCI Device ID
1080  *
1081  * This macro is used to create a struct pci_device_id that matches a
1082  * specific device. The subvendor and subdevice fields will be set to
1083  * PCI_ANY_ID and the driver_override will be set to
1084  * PCI_ID_F_VFIO_DRIVER_OVERRIDE.
1085  */
1086 #define PCI_DRIVER_OVERRIDE_DEVICE_VFIO(vend, dev) \
1087 	PCI_DEVICE_DRIVER_OVERRIDE(vend, dev, PCI_ID_F_VFIO_DRIVER_OVERRIDE)
1088 
1089 /**
1090  * PCI_DEVICE_SUB - macro used to describe a specific PCI device with subsystem
1091  * @vend: the 16 bit PCI Vendor ID
1092  * @dev: the 16 bit PCI Device ID
1093  * @subvend: the 16 bit PCI Subvendor ID
1094  * @subdev: the 16 bit PCI Subdevice ID
1095  *
1096  * This macro is used to create a struct pci_device_id that matches a
1097  * specific device with subsystem information.
1098  */
1099 #define PCI_DEVICE_SUB(vend, dev, subvend, subdev) \
1100 	.vendor = (vend), .device = (dev), \
1101 	.subvendor = (subvend), .subdevice = (subdev)
1102 
1103 /**
1104  * PCI_DEVICE_CLASS - macro used to describe a specific PCI device class
1105  * @dev_class: the class, subclass, prog-if triple for this device
1106  * @dev_class_mask: the class mask for this device
1107  *
1108  * This macro is used to create a struct pci_device_id that matches a
1109  * specific PCI class.  The vendor, device, subvendor, and subdevice
1110  * fields will be set to PCI_ANY_ID.
1111  */
1112 #define PCI_DEVICE_CLASS(dev_class,dev_class_mask) \
1113 	.class = (dev_class), .class_mask = (dev_class_mask), \
1114 	.vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
1115 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1116 
1117 /**
1118  * PCI_VDEVICE - macro used to describe a specific PCI device in short form
1119  * @vend: the vendor name
1120  * @dev: the 16 bit PCI Device ID
1121  *
1122  * This macro is used to create a struct pci_device_id that matches a
1123  * specific PCI device.  The subvendor, and subdevice fields will be set
1124  * to PCI_ANY_ID. The macro allows the next field to follow as the device
1125  * private data.
1126  */
1127 #define PCI_VDEVICE(vend, dev) \
1128 	.vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1129 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0
1130 
1131 /**
1132  * PCI_VDEVICE_SUB - describe a specific PCI device/subdevice in a short form
1133  * @vend: the vendor name
1134  * @dev: the 16 bit PCI Device ID
1135  * @subvend: the 16 bit PCI Subvendor ID
1136  * @subdev: the 16 bit PCI Subdevice ID
1137  *
1138  * Generate the pci_device_id struct layout for the specific PCI
1139  * device/subdevice. Private data may follow the output.
1140  */
1141 #define PCI_VDEVICE_SUB(vend, dev, subvend, subdev) \
1142 	.vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1143 	.subvendor = (subvend), .subdevice = (subdev), 0, 0
1144 
1145 /**
1146  * PCI_DEVICE_DATA - macro used to describe a specific PCI device in very short form
1147  * @vend: the vendor name (without PCI_VENDOR_ID_ prefix)
1148  * @dev: the device name (without PCI_DEVICE_ID_<vend>_ prefix)
1149  * @data: the driver data to be filled
1150  *
1151  * This macro is used to create a struct pci_device_id that matches a
1152  * specific PCI device.  The subvendor, and subdevice fields will be set
1153  * to PCI_ANY_ID.
1154  */
1155 #define PCI_DEVICE_DATA(vend, dev, data) \
1156 	.vendor = PCI_VENDOR_ID_##vend, .device = PCI_DEVICE_ID_##vend##_##dev, \
1157 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0, \
1158 	.driver_data = (kernel_ulong_t)(data)
1159 
1160 enum {
1161 	PCI_REASSIGN_ALL_RSRC	= 0x00000001,	/* Ignore firmware setup */
1162 	PCI_REASSIGN_ALL_BUS	= 0x00000002,	/* Reassign all bus numbers */
1163 	PCI_PROBE_ONLY		= 0x00000004,	/* Use existing setup */
1164 	PCI_CAN_SKIP_ISA_ALIGN	= 0x00000008,	/* Don't do ISA alignment */
1165 	PCI_ENABLE_PROC_DOMAINS	= 0x00000010,	/* Enable domains in /proc */
1166 	PCI_COMPAT_DOMAIN_0	= 0x00000020,	/* ... except domain 0 */
1167 	PCI_SCAN_ALL_PCIE_DEVS	= 0x00000040,	/* Scan all, not just dev 0 */
1168 };
1169 
1170 #define PCI_IRQ_INTX		(1 << 0) /* Allow INTx interrupts */
1171 #define PCI_IRQ_MSI		(1 << 1) /* Allow MSI interrupts */
1172 #define PCI_IRQ_MSIX		(1 << 2) /* Allow MSI-X interrupts */
1173 #define PCI_IRQ_AFFINITY	(1 << 3) /* Auto-assign affinity */
1174 
1175 /* These external functions are only available when PCI support is enabled */
1176 #ifdef CONFIG_PCI
1177 
1178 /* PCI legacy I/O port and memory address space sizes. */
1179 #define PCI_LEGACY_IO_SIZE	(SZ_64K - 1)
1180 #define PCI_LEGACY_MEM_SIZE	SZ_1M
1181 
1182 extern unsigned int pci_flags;
1183 
pci_set_flags(int flags)1184 static inline void pci_set_flags(int flags) { pci_flags = flags; }
pci_add_flags(int flags)1185 static inline void pci_add_flags(int flags) { pci_flags |= flags; }
pci_clear_flags(int flags)1186 static inline void pci_clear_flags(int flags) { pci_flags &= ~flags; }
pci_has_flag(int flag)1187 static inline int pci_has_flag(int flag) { return pci_flags & flag; }
1188 
1189 void pcie_bus_configure_settings(struct pci_bus *bus);
1190 
1191 enum pcie_bus_config_types {
1192 	PCIE_BUS_TUNE_OFF,	/* Don't touch MPS at all */
1193 	PCIE_BUS_DEFAULT,	/* Ensure MPS matches upstream bridge */
1194 	PCIE_BUS_SAFE,		/* Use largest MPS boot-time devices support */
1195 	PCIE_BUS_PERFORMANCE,	/* Use MPS and MRRS for best performance */
1196 	PCIE_BUS_PEER2PEER,	/* Set MPS = 128 for all devices */
1197 };
1198 
1199 extern enum pcie_bus_config_types pcie_bus_config;
1200 
1201 extern const struct bus_type pci_bus_type;
1202 
1203 /* Do NOT directly access these two variables, unless you are arch-specific PCI
1204  * code, or PCI core code. */
1205 extern struct list_head pci_root_buses;	/* List of all known PCI buses */
1206 
1207 void pcibios_resource_survey_bus(struct pci_bus *bus);
1208 void pcibios_bus_add_device(struct pci_dev *pdev);
1209 void pcibios_add_bus(struct pci_bus *bus);
1210 void pcibios_remove_bus(struct pci_bus *bus);
1211 void pcibios_fixup_bus(struct pci_bus *);
1212 int __must_check pcibios_enable_device(struct pci_dev *, int mask);
1213 /* Architecture-specific versions may override this (weak) */
1214 char *pcibios_setup(char *str);
1215 
1216 /* Used only when drivers/pci/setup.c is used */
1217 resource_size_t pcibios_align_resource(void *data, const struct resource *res,
1218 				       const struct resource *empty_res,
1219 				       resource_size_t size,
1220 				       resource_size_t align);
1221 resource_size_t pci_align_resource(struct pci_dev *dev,
1222 				   const struct resource *res,
1223 				   const struct resource *empty_res,
1224 				   resource_size_t size,
1225 				   resource_size_t align);
1226 
1227 /* Generic PCI functions used internally */
1228 
1229 void pcibios_resource_to_bus(struct pci_bus *bus, struct pci_bus_region *region,
1230 			     struct resource *res);
1231 void pcibios_bus_to_resource(struct pci_bus *bus, struct resource *res,
1232 			     struct pci_bus_region *region);
1233 void pcibios_scan_specific_bus(int busn);
1234 struct pci_bus *pci_find_bus(int domain, int busnr);
1235 void pci_bus_add_devices(const struct pci_bus *bus);
1236 struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops, void *sysdata);
1237 struct pci_bus *pci_create_root_bus(struct device *parent, int bus,
1238 				    struct pci_ops *ops, void *sysdata,
1239 				    struct list_head *resources);
1240 int pci_host_probe(struct pci_host_bridge *bridge);
1241 void pci_probe_flush_workqueue(void);
1242 int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int busmax);
1243 int pci_bus_update_busn_res_end(struct pci_bus *b, int busmax);
1244 void pci_bus_release_busn_res(struct pci_bus *b);
1245 struct pci_bus *pci_scan_root_bus(struct device *parent, int bus,
1246 				  struct pci_ops *ops, void *sysdata,
1247 				  struct list_head *resources);
1248 int pci_scan_root_bus_bridge(struct pci_host_bridge *bridge);
1249 struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev,
1250 				int busnr);
1251 struct pci_slot *pci_create_slot(struct pci_bus *parent, int slot_nr,
1252 				 const char *name,
1253 				 struct hotplug_slot *hotplug);
1254 void pci_destroy_slot(struct pci_slot *slot);
1255 #ifdef CONFIG_SYSFS
1256 void pci_dev_assign_slot(struct pci_dev *dev);
1257 #else
pci_dev_assign_slot(struct pci_dev * dev)1258 static inline void pci_dev_assign_slot(struct pci_dev *dev) { }
1259 #endif
1260 int pci_scan_slot(struct pci_bus *bus, int devfn);
1261 struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn);
1262 void pci_device_add(struct pci_dev *dev, struct pci_bus *bus);
1263 unsigned int pci_scan_child_bus(struct pci_bus *bus);
1264 void pci_bus_add_device(struct pci_dev *dev);
1265 void pci_read_bridge_bases(struct pci_bus *child);
1266 struct resource *pci_find_parent_resource(const struct pci_dev *dev,
1267 					  struct resource *res);
1268 u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin);
1269 int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge);
1270 u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp);
1271 struct pci_dev *pci_dev_get(struct pci_dev *dev);
1272 void pci_dev_put(struct pci_dev *dev);
1273 DEFINE_FREE(pci_dev_put, struct pci_dev *, if (_T) pci_dev_put(_T))
1274 void pci_remove_bus(struct pci_bus *b);
1275 void pci_stop_and_remove_bus_device(struct pci_dev *dev);
1276 void pci_stop_and_remove_bus_device_locked(struct pci_dev *dev);
1277 void pci_stop_root_bus(struct pci_bus *bus);
1278 void pci_remove_root_bus(struct pci_bus *bus);
1279 #ifdef CONFIG_CARDBUS
1280 void pci_setup_cardbus_bridge(struct pci_bus *bus);
1281 #else
pci_setup_cardbus_bridge(struct pci_bus * bus)1282 static inline void pci_setup_cardbus_bridge(struct pci_bus *bus) { }
1283 #endif
1284 void pcibios_setup_bridge(struct pci_bus *bus, unsigned long type);
1285 void pci_sort_breadthfirst(void);
1286 #define dev_is_pci(d) ((d)->bus == &pci_bus_type)
1287 #define dev_is_pf(d) ((dev_is_pci(d) ? to_pci_dev(d)->is_physfn : false))
1288 
1289 /* Generic PCI functions exported to card drivers */
1290 
1291 u8 pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap);
1292 u8 pci_find_capability(struct pci_dev *dev, int cap);
1293 u8 pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap);
1294 u8 pci_find_ht_capability(struct pci_dev *dev, int ht_cap);
1295 u8 pci_find_next_ht_capability(struct pci_dev *dev, u8 pos, int ht_cap);
1296 u16 pci_find_ext_capability(struct pci_dev *dev, int cap);
1297 u16 pci_find_next_ext_capability(struct pci_dev *dev, u16 pos, int cap);
1298 struct pci_bus *pci_find_next_bus(const struct pci_bus *from);
1299 u16 pci_find_vsec_capability(struct pci_dev *dev, u16 vendor, int cap);
1300 u16 pci_find_dvsec_capability(struct pci_dev *dev, u16 vendor, u16 dvsec);
1301 
1302 u64 pci_get_dsn(struct pci_dev *dev);
1303 
1304 struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device,
1305 			       struct pci_dev *from);
1306 struct pci_dev *pci_get_device_reverse(unsigned int vendor, unsigned int device,
1307 				       struct pci_dev *from);
1308 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device,
1309 			       unsigned int ss_vendor, unsigned int ss_device,
1310 			       struct pci_dev *from);
1311 struct pci_dev *pci_get_slot(struct pci_bus *bus, unsigned int devfn);
1312 struct pci_dev *pci_get_domain_bus_and_slot(int domain, unsigned int bus,
1313 					    unsigned int devfn);
1314 struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from);
1315 struct pci_dev *pci_get_base_class(unsigned int class, struct pci_dev *from);
1316 
1317 int pci_dev_present(const struct pci_device_id *ids);
1318 
1319 int pci_bus_read_config_byte(struct pci_bus *bus, unsigned int devfn,
1320 			     int where, u8 *val);
1321 int pci_bus_read_config_word(struct pci_bus *bus, unsigned int devfn,
1322 			     int where, u16 *val);
1323 int pci_bus_read_config_dword(struct pci_bus *bus, unsigned int devfn,
1324 			      int where, u32 *val);
1325 int pci_bus_write_config_byte(struct pci_bus *bus, unsigned int devfn,
1326 			      int where, u8 val);
1327 int pci_bus_write_config_word(struct pci_bus *bus, unsigned int devfn,
1328 			      int where, u16 val);
1329 int pci_bus_write_config_dword(struct pci_bus *bus, unsigned int devfn,
1330 			       int where, u32 val);
1331 
1332 int pci_generic_config_read(struct pci_bus *bus, unsigned int devfn,
1333 			    int where, int size, u32 *val);
1334 int pci_generic_config_write(struct pci_bus *bus, unsigned int devfn,
1335 			    int where, int size, u32 val);
1336 int pci_generic_config_read32(struct pci_bus *bus, unsigned int devfn,
1337 			      int where, int size, u32 *val);
1338 int pci_generic_config_write32(struct pci_bus *bus, unsigned int devfn,
1339 			       int where, int size, u32 val);
1340 
1341 struct pci_ops *pci_bus_set_ops(struct pci_bus *bus, struct pci_ops *ops);
1342 
1343 int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val);
1344 int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val);
1345 int pci_read_config_dword(const struct pci_dev *dev, int where, u32 *val);
1346 int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val);
1347 int pci_write_config_word(const struct pci_dev *dev, int where, u16 val);
1348 int pci_write_config_dword(const struct pci_dev *dev, int where, u32 val);
1349 void pci_clear_and_set_config_dword(const struct pci_dev *dev, int pos,
1350 				    u32 clear, u32 set);
1351 
1352 int pcie_capability_read_word(struct pci_dev *dev, int pos, u16 *val);
1353 int pcie_capability_read_dword(struct pci_dev *dev, int pos, u32 *val);
1354 int pcie_capability_write_word(struct pci_dev *dev, int pos, u16 val);
1355 int pcie_capability_write_dword(struct pci_dev *dev, int pos, u32 val);
1356 int pcie_capability_clear_and_set_word_unlocked(struct pci_dev *dev, int pos,
1357 						u16 clear, u16 set);
1358 int pcie_capability_clear_and_set_word_locked(struct pci_dev *dev, int pos,
1359 					      u16 clear, u16 set);
1360 int pcie_capability_clear_and_set_dword(struct pci_dev *dev, int pos,
1361 					u32 clear, u32 set);
1362 
1363 /**
1364  * pcie_capability_clear_and_set_word - RMW accessor for PCI Express Capability Registers
1365  * @dev:	PCI device structure of the PCI Express device
1366  * @pos:	PCI Express Capability Register
1367  * @clear:	Clear bitmask
1368  * @set:	Set bitmask
1369  *
1370  * Perform a Read-Modify-Write (RMW) operation using @clear and @set
1371  * bitmasks on PCI Express Capability Register at @pos. Certain PCI Express
1372  * Capability Registers are accessed concurrently in RMW fashion, hence
1373  * require locking which is handled transparently to the caller.
1374  */
pcie_capability_clear_and_set_word(struct pci_dev * dev,int pos,u16 clear,u16 set)1375 static inline int pcie_capability_clear_and_set_word(struct pci_dev *dev,
1376 						     int pos,
1377 						     u16 clear, u16 set)
1378 {
1379 	switch (pos) {
1380 	case PCI_EXP_LNKCTL:
1381 	case PCI_EXP_LNKCTL2:
1382 	case PCI_EXP_RTCTL:
1383 		return pcie_capability_clear_and_set_word_locked(dev, pos,
1384 								 clear, set);
1385 	default:
1386 		return pcie_capability_clear_and_set_word_unlocked(dev, pos,
1387 								   clear, set);
1388 	}
1389 }
1390 
pcie_capability_set_word(struct pci_dev * dev,int pos,u16 set)1391 static inline int pcie_capability_set_word(struct pci_dev *dev, int pos,
1392 					   u16 set)
1393 {
1394 	return pcie_capability_clear_and_set_word(dev, pos, 0, set);
1395 }
1396 
pcie_capability_set_dword(struct pci_dev * dev,int pos,u32 set)1397 static inline int pcie_capability_set_dword(struct pci_dev *dev, int pos,
1398 					    u32 set)
1399 {
1400 	return pcie_capability_clear_and_set_dword(dev, pos, 0, set);
1401 }
1402 
pcie_capability_clear_word(struct pci_dev * dev,int pos,u16 clear)1403 static inline int pcie_capability_clear_word(struct pci_dev *dev, int pos,
1404 					     u16 clear)
1405 {
1406 	return pcie_capability_clear_and_set_word(dev, pos, clear, 0);
1407 }
1408 
pcie_capability_clear_dword(struct pci_dev * dev,int pos,u32 clear)1409 static inline int pcie_capability_clear_dword(struct pci_dev *dev, int pos,
1410 					      u32 clear)
1411 {
1412 	return pcie_capability_clear_and_set_dword(dev, pos, clear, 0);
1413 }
1414 
1415 /* User-space driven config access */
1416 int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val);
1417 int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val);
1418 int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val);
1419 int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val);
1420 int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val);
1421 int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val);
1422 
1423 int __must_check pci_enable_device(struct pci_dev *dev);
1424 int __must_check pci_enable_device_mem(struct pci_dev *dev);
1425 int __must_check pci_reenable_device(struct pci_dev *);
1426 int __must_check pcim_enable_device(struct pci_dev *pdev);
1427 void pcim_pin_device(struct pci_dev *pdev);
1428 
pci_intx_mask_supported(struct pci_dev * pdev)1429 static inline bool pci_intx_mask_supported(struct pci_dev *pdev)
1430 {
1431 	/*
1432 	 * INTx masking is supported if PCI_COMMAND_INTX_DISABLE is
1433 	 * writable and no quirk has marked the feature broken.
1434 	 */
1435 	return !pdev->broken_intx_masking;
1436 }
1437 
pci_is_enabled(struct pci_dev * pdev)1438 static inline int pci_is_enabled(struct pci_dev *pdev)
1439 {
1440 	return (atomic_read(&pdev->enable_cnt) > 0);
1441 }
1442 
pci_is_managed(struct pci_dev * pdev)1443 static inline int pci_is_managed(struct pci_dev *pdev)
1444 {
1445 	return pdev->is_managed;
1446 }
1447 
1448 void pci_disable_device(struct pci_dev *dev);
1449 
1450 extern unsigned int pcibios_max_latency;
1451 void pci_set_master(struct pci_dev *dev);
1452 void pci_clear_master(struct pci_dev *dev);
1453 
1454 int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state);
1455 int pci_set_cacheline_size(struct pci_dev *dev);
1456 int __must_check pci_set_mwi(struct pci_dev *dev);
1457 int __must_check pcim_set_mwi(struct pci_dev *dev);
1458 int pci_try_set_mwi(struct pci_dev *dev);
1459 void pci_clear_mwi(struct pci_dev *dev);
1460 void pci_disable_parity(struct pci_dev *dev);
1461 void pci_intx(struct pci_dev *dev, int enable);
1462 bool pci_check_and_mask_intx(struct pci_dev *dev);
1463 bool pci_check_and_unmask_intx(struct pci_dev *dev);
1464 int pci_wait_for_pending(struct pci_dev *dev, int pos, u16 mask);
1465 int pci_wait_for_pending_transaction(struct pci_dev *dev);
1466 int pcix_get_max_mmrbc(struct pci_dev *dev);
1467 int pcix_get_mmrbc(struct pci_dev *dev);
1468 int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc);
1469 int pcie_get_readrq(struct pci_dev *dev);
1470 int pcie_set_readrq(struct pci_dev *dev, int rq);
1471 int pcie_get_mps(struct pci_dev *dev);
1472 int pcie_set_mps(struct pci_dev *dev, int mps);
1473 u32 pcie_bandwidth_available(struct pci_dev *dev, struct pci_dev **limiting_dev,
1474 			     enum pci_bus_speed *speed,
1475 			     enum pcie_link_width *width);
1476 int pcie_link_speed_mbps(struct pci_dev *pdev);
1477 void pcie_print_link_status(struct pci_dev *dev);
1478 int pcie_reset_flr(struct pci_dev *dev, bool probe);
1479 int pcie_flr(struct pci_dev *dev);
1480 int __pci_reset_function_locked(struct pci_dev *dev);
1481 int pci_reset_function(struct pci_dev *dev);
1482 int pci_reset_function_locked(struct pci_dev *dev);
1483 int pci_try_reset_function(struct pci_dev *dev);
1484 int pci_probe_reset_slot(struct pci_slot *slot);
1485 int pci_probe_reset_bus(struct pci_bus *bus);
1486 int pci_reset_bus(struct pci_dev *dev);
1487 void pci_reset_secondary_bus(struct pci_dev *dev);
1488 void pcibios_reset_secondary_bus(struct pci_dev *dev);
1489 void pci_update_resource(struct pci_dev *dev, int resno);
1490 int __must_check pci_assign_resource(struct pci_dev *dev, int i);
1491 int pci_release_resource(struct pci_dev *dev, int resno);
1492 
1493 /* Resizable BAR related routines */
1494 int pci_rebar_bytes_to_size(u64 bytes);
1495 resource_size_t pci_rebar_size_to_bytes(int size);
1496 u64 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar);
1497 bool pci_rebar_size_supported(struct pci_dev *pdev, int bar, int size);
1498 int pci_rebar_get_max_size(struct pci_dev *pdev, int bar);
1499 int __must_check pci_resize_resource(struct pci_dev *dev, int i, int size,
1500 				     int exclude_bars);
1501 
1502 int pci_select_bars(struct pci_dev *dev, unsigned long flags);
1503 bool pci_device_is_present(struct pci_dev *pdev);
1504 void pci_ignore_hotplug(struct pci_dev *dev);
1505 struct pci_dev *pci_real_dma_dev(struct pci_dev *dev);
1506 int pci_status_get_and_clear_errors(struct pci_dev *pdev);
1507 
1508 int __printf(6, 7) pci_request_irq(struct pci_dev *dev, unsigned int nr,
1509 		irq_handler_t handler, irq_handler_t thread_fn, void *dev_id,
1510 		const char *fmt, ...);
1511 void pci_free_irq(struct pci_dev *dev, unsigned int nr, void *dev_id);
1512 
1513 /* ROM control related routines */
1514 int pci_enable_rom(struct pci_dev *pdev);
1515 void pci_disable_rom(struct pci_dev *pdev);
1516 void __iomem __must_check *pci_map_rom(struct pci_dev *pdev, size_t *size);
1517 void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom);
1518 
1519 /* Power management related routines */
1520 int pci_save_state(struct pci_dev *dev);
1521 void pci_restore_state(struct pci_dev *dev);
1522 struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev);
1523 int pci_load_saved_state(struct pci_dev *dev,
1524 			 struct pci_saved_state *state);
1525 int pci_load_and_free_saved_state(struct pci_dev *dev,
1526 				  struct pci_saved_state **state);
1527 int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state);
1528 int pci_set_power_state(struct pci_dev *dev, pci_power_t state);
1529 int pci_set_power_state_locked(struct pci_dev *dev, pci_power_t state);
1530 pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state);
1531 bool pci_pme_capable(struct pci_dev *dev, pci_power_t state);
1532 void pci_pme_active(struct pci_dev *dev, bool enable);
1533 int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable);
1534 int pci_wake_from_d3(struct pci_dev *dev, bool enable);
1535 int pci_prepare_to_sleep(struct pci_dev *dev);
1536 int pci_back_from_sleep(struct pci_dev *dev);
1537 bool pci_dev_run_wake(struct pci_dev *dev);
1538 void pci_d3cold_enable(struct pci_dev *dev);
1539 void pci_d3cold_disable(struct pci_dev *dev);
1540 bool pcie_relaxed_ordering_enabled(struct pci_dev *dev);
1541 void pci_resume_bus(struct pci_bus *bus);
1542 void pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state);
1543 
1544 /* For use by arch with custom probe code */
1545 void set_pcie_port_type(struct pci_dev *pdev);
1546 void set_pcie_hotplug_bridge(struct pci_dev *pdev);
1547 
1548 /* Functions for PCI Hotplug drivers to use */
1549 unsigned int pci_rescan_bus(struct pci_bus *bus);
1550 void pci_lock_rescan_remove(void);
1551 void pci_unlock_rescan_remove(void);
1552 
1553 /* Vital Product Data routines */
1554 ssize_t pci_read_vpd(struct pci_dev *dev, loff_t pos, size_t count, void *buf);
1555 ssize_t pci_write_vpd(struct pci_dev *dev, loff_t pos, size_t count, const void *buf);
1556 ssize_t pci_read_vpd_any(struct pci_dev *dev, loff_t pos, size_t count, void *buf);
1557 ssize_t pci_write_vpd_any(struct pci_dev *dev, loff_t pos, size_t count, const void *buf);
1558 
1559 /* Helper functions for low-level code (drivers/pci/setup-[bus,res].c) */
1560 resource_size_t pcibios_retrieve_fw_addr(struct pci_dev *dev, int idx);
1561 void pci_bus_assign_resources(const struct pci_bus *bus);
1562 void pci_bus_claim_resources(struct pci_bus *bus);
1563 void pci_bus_size_bridges(struct pci_bus *bus);
1564 int pci_claim_resource(struct pci_dev *, int);
1565 int pci_claim_bridge_resource(struct pci_dev *bridge, int i);
1566 void pci_assign_unassigned_resources(void);
1567 void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge);
1568 void pci_assign_unassigned_bus_resources(struct pci_bus *bus);
1569 void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus);
1570 int pci_enable_resources(struct pci_dev *, int mask);
1571 void pci_assign_irq(struct pci_dev *dev);
1572 struct resource *pci_find_resource(struct pci_dev *dev, struct resource *res);
1573 #define HAVE_PCI_REQ_REGIONS	2
1574 int __must_check pci_request_regions(struct pci_dev *, const char *);
1575 int __must_check pci_request_regions_exclusive(struct pci_dev *, const char *);
1576 void pci_release_regions(struct pci_dev *);
1577 int __must_check pci_request_region(struct pci_dev *, int, const char *);
1578 void pci_release_region(struct pci_dev *, int);
1579 int pci_request_selected_regions(struct pci_dev *, int, const char *);
1580 int pci_request_selected_regions_exclusive(struct pci_dev *, int, const char *);
1581 void pci_release_selected_regions(struct pci_dev *, int);
1582 
1583 static inline __must_check struct resource *
pci_request_config_region_exclusive(struct pci_dev * pdev,unsigned int offset,unsigned int len,const char * name)1584 pci_request_config_region_exclusive(struct pci_dev *pdev, unsigned int offset,
1585 				    unsigned int len, const char *name)
1586 {
1587 	return __request_region(&pdev->driver_exclusive_resource, offset, len,
1588 				name, IORESOURCE_EXCLUSIVE);
1589 }
1590 
pci_release_config_region(struct pci_dev * pdev,unsigned int offset,unsigned int len)1591 static inline void pci_release_config_region(struct pci_dev *pdev,
1592 					     unsigned int offset,
1593 					     unsigned int len)
1594 {
1595 	__release_region(&pdev->driver_exclusive_resource, offset, len);
1596 }
1597 
1598 /* drivers/pci/bus.c */
1599 void pci_add_resource(struct list_head *resources, struct resource *res);
1600 void pci_add_resource_offset(struct list_head *resources, struct resource *res,
1601 			     resource_size_t offset);
1602 void pci_free_resource_list(struct list_head *resources);
1603 void pci_bus_add_resource(struct pci_bus *bus, struct resource *res);
1604 struct resource *pci_bus_resource_n(const struct pci_bus *bus, int n);
1605 void pci_bus_remove_resources(struct pci_bus *bus);
1606 void pci_bus_remove_resource(struct pci_bus *bus, struct resource *res);
1607 int devm_request_pci_bus_resources(struct device *dev,
1608 				   struct list_head *resources);
1609 
1610 /* Temporary until new and working PCI SBR API in place */
1611 int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
1612 
1613 #define __pci_bus_for_each_res0(bus, res, ...)				\
1614 	for (unsigned int __b = 0;					\
1615 	     (res = pci_bus_resource_n(bus, __b)) || __b < PCI_BRIDGE_RESOURCE_NUM; \
1616 	     __b++)
1617 
1618 #define __pci_bus_for_each_res1(bus, res, __b)				\
1619 	for (__b = 0;							\
1620 	     (res = pci_bus_resource_n(bus, __b)) || __b < PCI_BRIDGE_RESOURCE_NUM; \
1621 	     __b++)
1622 
1623 /**
1624  * pci_bus_for_each_resource - iterate over PCI bus resources
1625  * @bus: the PCI bus
1626  * @res: pointer to the current resource
1627  * @...: optional index of the current resource
1628  *
1629  * Iterate over PCI bus resources. The first part is to go over PCI bus
1630  * resource array, which has at most the %PCI_BRIDGE_RESOURCE_NUM entries.
1631  * After that continue with the separate list of the additional resources,
1632  * if not empty. That's why the Logical OR is being used.
1633  *
1634  * Possible usage:
1635  *
1636  *	struct pci_bus *bus = ...;
1637  *	struct resource *res;
1638  *	unsigned int i;
1639  *
1640  * 	// With optional index
1641  * 	pci_bus_for_each_resource(bus, res, i)
1642  * 		pr_info("PCI bus resource[%u]: %pR\n", i, res);
1643  *
1644  * 	// Without index
1645  * 	pci_bus_for_each_resource(bus, res)
1646  * 		_do_something_(res);
1647  */
1648 #define pci_bus_for_each_resource(bus, res, ...)			\
1649 	CONCATENATE(__pci_bus_for_each_res, COUNT_ARGS(__VA_ARGS__))	\
1650 		    (bus, res, __VA_ARGS__)
1651 
1652 int __must_check pci_bus_alloc_resource(struct pci_bus *bus,
1653 			struct resource *res, resource_size_t size,
1654 			resource_size_t align, resource_size_t min,
1655 			unsigned long type_mask,
1656 			resource_alignf alignf,
1657 			void *alignf_data);
1658 
1659 
1660 int pci_register_io_range(const struct fwnode_handle *fwnode, phys_addr_t addr,
1661 			resource_size_t size);
1662 unsigned long pci_address_to_pio(phys_addr_t addr);
1663 phys_addr_t pci_pio_to_address(unsigned long pio);
1664 int pci_remap_iospace(const struct resource *res, phys_addr_t phys_addr);
1665 int devm_pci_remap_iospace(struct device *dev, const struct resource *res,
1666 			   phys_addr_t phys_addr);
1667 void pci_unmap_iospace(struct resource *res);
1668 void __iomem *devm_pci_remap_cfgspace(struct device *dev,
1669 				      resource_size_t offset,
1670 				      resource_size_t size);
1671 void __iomem *devm_pci_remap_cfg_resource(struct device *dev,
1672 					  struct resource *res);
1673 
pci_bus_address(struct pci_dev * pdev,int bar)1674 static inline pci_bus_addr_t pci_bus_address(struct pci_dev *pdev, int bar)
1675 {
1676 	struct pci_bus_region region;
1677 
1678 	pcibios_resource_to_bus(pdev->bus, &region, &pdev->resource[bar]);
1679 	return region.start;
1680 }
1681 
1682 /* Proper probing supporting hot-pluggable devices */
1683 int __must_check __pci_register_driver(struct pci_driver *, struct module *,
1684 				       const char *mod_name);
1685 
1686 /* pci_register_driver() must be a macro so KBUILD_MODNAME can be expanded */
1687 #define pci_register_driver(driver)		\
1688 	__pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
1689 
1690 void pci_unregister_driver(struct pci_driver *dev);
1691 
1692 /**
1693  * module_pci_driver() - Helper macro for registering a PCI driver
1694  * @__pci_driver: pci_driver struct
1695  *
1696  * Helper macro for PCI drivers which do not do anything special in module
1697  * init/exit. This eliminates a lot of boilerplate. Each module may only
1698  * use this macro once, and calling it replaces module_init() and module_exit()
1699  */
1700 #define module_pci_driver(__pci_driver) \
1701 	module_driver(__pci_driver, pci_register_driver, pci_unregister_driver)
1702 
1703 /**
1704  * builtin_pci_driver() - Helper macro for registering a PCI driver
1705  * @__pci_driver: pci_driver struct
1706  *
1707  * Helper macro for PCI drivers which do not do anything special in their
1708  * init code. This eliminates a lot of boilerplate. Each driver may only
1709  * use this macro once, and calling it replaces device_initcall(...)
1710  */
1711 #define builtin_pci_driver(__pci_driver) \
1712 	builtin_driver(__pci_driver, pci_register_driver)
1713 
1714 struct pci_driver *pci_dev_driver(const struct pci_dev *dev);
1715 int pci_add_dynid(struct pci_driver *drv,
1716 		  unsigned int vendor, unsigned int device,
1717 		  unsigned int subvendor, unsigned int subdevice,
1718 		  unsigned int class, unsigned int class_mask,
1719 		  unsigned long driver_data);
1720 const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
1721 					 struct pci_dev *dev);
1722 int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max,
1723 		    int pass);
1724 
1725 void pci_walk_bus(struct pci_bus *top, int (*cb)(struct pci_dev *, void *),
1726 		  void *userdata);
1727 void pci_walk_bus_reverse(struct pci_bus *top,
1728 			  int (*cb)(struct pci_dev *, void *), void *userdata);
1729 int pci_cfg_space_size(struct pci_dev *dev);
1730 unsigned char pci_bus_max_busnr(struct pci_bus *bus);
1731 resource_size_t pcibios_window_alignment(struct pci_bus *bus,
1732 					 unsigned long type);
1733 
1734 #define PCI_VGA_STATE_CHANGE_BRIDGE (1 << 0)
1735 #define PCI_VGA_STATE_CHANGE_DECODES (1 << 1)
1736 
1737 int pci_set_vga_state(struct pci_dev *pdev, bool decode,
1738 		      unsigned int command_bits, u32 flags);
1739 
1740 /*
1741  * Virtual interrupts allow for more interrupts to be allocated
1742  * than the device has interrupts for. These are not programmed
1743  * into the device's MSI-X table and must be handled by some
1744  * other driver means.
1745  */
1746 #define PCI_IRQ_VIRTUAL		(1 << 4)
1747 
1748 #define PCI_IRQ_ALL_TYPES	(PCI_IRQ_INTX | PCI_IRQ_MSI | PCI_IRQ_MSIX)
1749 
1750 #include <linux/dmapool.h>
1751 
1752 struct msix_entry {
1753 	u32	vector;	/* Kernel uses to write allocated vector */
1754 	u16	entry;	/* Driver uses to specify entry, OS writes */
1755 };
1756 
1757 #ifdef CONFIG_PCI_MSI
1758 int pci_msi_vec_count(struct pci_dev *dev);
1759 void pci_disable_msi(struct pci_dev *dev);
1760 int pci_msix_vec_count(struct pci_dev *dev);
1761 void pci_disable_msix(struct pci_dev *dev);
1762 void pci_restore_msi_state(struct pci_dev *dev);
1763 bool pci_msi_enabled(void);
1764 int pci_enable_msi(struct pci_dev *dev);
1765 int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1766 			  int minvec, int maxvec);
pci_enable_msix_exact(struct pci_dev * dev,struct msix_entry * entries,int nvec)1767 static inline int pci_enable_msix_exact(struct pci_dev *dev,
1768 					struct msix_entry *entries, int nvec)
1769 {
1770 	int rc = pci_enable_msix_range(dev, entries, nvec, nvec);
1771 	if (rc < 0)
1772 		return rc;
1773 	return 0;
1774 }
1775 int pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
1776 			  unsigned int max_vecs, unsigned int flags);
1777 int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1778 				   unsigned int max_vecs, unsigned int flags,
1779 				   struct irq_affinity *affd);
1780 
1781 bool pci_msix_can_alloc_dyn(struct pci_dev *dev);
1782 struct msi_map pci_msix_alloc_irq_at(struct pci_dev *dev, unsigned int index,
1783 				     const struct irq_affinity_desc *affdesc);
1784 void pci_msix_free_irq(struct pci_dev *pdev, struct msi_map map);
1785 
1786 void pci_free_irq_vectors(struct pci_dev *dev);
1787 int pci_irq_vector(struct pci_dev *dev, unsigned int nr);
1788 const struct cpumask *pci_irq_get_affinity(struct pci_dev *pdev, int vec);
1789 
1790 /**
1791  * pci_irq_type - Get the interrupt type of a PCI device
1792  * @pdev: the PCI device to operate on
1793  *
1794  * Discriminate the interrupt type the PCI core selected for this device
1795  * after a successful pci_alloc_irq_vectors() call.
1796  *
1797  * Return: %PCI_IRQ_MSIX, %PCI_IRQ_MSI, or %PCI_IRQ_INTX.
1798  */
pci_irq_type(struct pci_dev * pdev)1799 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
1800 {
1801 	if (pdev->msix_enabled)
1802 		return PCI_IRQ_MSIX;
1803 
1804 	if (pdev->msi_enabled)
1805 		return PCI_IRQ_MSI;
1806 
1807 	return PCI_IRQ_INTX;
1808 }
1809 
1810 #else
pci_msi_vec_count(struct pci_dev * dev)1811 static inline int pci_msi_vec_count(struct pci_dev *dev) { return -ENOSYS; }
pci_disable_msi(struct pci_dev * dev)1812 static inline void pci_disable_msi(struct pci_dev *dev) { }
pci_msix_vec_count(struct pci_dev * dev)1813 static inline int pci_msix_vec_count(struct pci_dev *dev) { return -ENOSYS; }
pci_disable_msix(struct pci_dev * dev)1814 static inline void pci_disable_msix(struct pci_dev *dev) { }
pci_restore_msi_state(struct pci_dev * dev)1815 static inline void pci_restore_msi_state(struct pci_dev *dev) { }
pci_msi_enabled(void)1816 static inline bool pci_msi_enabled(void) { return false; }
pci_enable_msi(struct pci_dev * dev)1817 static inline int pci_enable_msi(struct pci_dev *dev)
1818 { return -ENOSYS; }
pci_enable_msix_range(struct pci_dev * dev,struct msix_entry * entries,int minvec,int maxvec)1819 static inline int pci_enable_msix_range(struct pci_dev *dev,
1820 			struct msix_entry *entries, int minvec, int maxvec)
1821 { return -ENOSYS; }
pci_enable_msix_exact(struct pci_dev * dev,struct msix_entry * entries,int nvec)1822 static inline int pci_enable_msix_exact(struct pci_dev *dev,
1823 			struct msix_entry *entries, int nvec)
1824 { return -ENOSYS; }
1825 
1826 static inline int
pci_alloc_irq_vectors_affinity(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags,struct irq_affinity * aff_desc)1827 pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1828 			       unsigned int max_vecs, unsigned int flags,
1829 			       struct irq_affinity *aff_desc)
1830 {
1831 	if ((flags & PCI_IRQ_INTX) && min_vecs == 1 && dev->irq)
1832 		return 1;
1833 	return -ENOSPC;
1834 }
1835 static inline int
pci_alloc_irq_vectors(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags)1836 pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
1837 		      unsigned int max_vecs, unsigned int flags)
1838 {
1839 	return pci_alloc_irq_vectors_affinity(dev, min_vecs, max_vecs,
1840 					      flags, NULL);
1841 }
1842 
pci_msix_can_alloc_dyn(struct pci_dev * dev)1843 static inline bool pci_msix_can_alloc_dyn(struct pci_dev *dev)
1844 { return false; }
pci_msix_alloc_irq_at(struct pci_dev * dev,unsigned int index,const struct irq_affinity_desc * affdesc)1845 static inline struct msi_map pci_msix_alloc_irq_at(struct pci_dev *dev, unsigned int index,
1846 						   const struct irq_affinity_desc *affdesc)
1847 {
1848 	struct msi_map map = { .index = -ENOSYS, };
1849 
1850 	return map;
1851 }
1852 
pci_msix_free_irq(struct pci_dev * pdev,struct msi_map map)1853 static inline void pci_msix_free_irq(struct pci_dev *pdev, struct msi_map map)
1854 {
1855 }
1856 
pci_free_irq_vectors(struct pci_dev * dev)1857 static inline void pci_free_irq_vectors(struct pci_dev *dev)
1858 {
1859 }
1860 
pci_irq_vector(struct pci_dev * dev,unsigned int nr)1861 static inline int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1862 {
1863 	if (WARN_ON_ONCE(nr > 0))
1864 		return -EINVAL;
1865 	return dev->irq;
1866 }
pci_irq_get_affinity(struct pci_dev * pdev,int vec)1867 static inline const struct cpumask *pci_irq_get_affinity(struct pci_dev *pdev,
1868 		int vec)
1869 {
1870 	return cpu_possible_mask;
1871 }
1872 
pci_irq_type(struct pci_dev * pdev)1873 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
1874 {
1875 	return PCI_IRQ_INTX;
1876 }
1877 #endif
1878 
1879 /**
1880  * pci_irqd_intx_xlate() - Translate PCI INTx value to an IRQ domain hwirq
1881  * @d: the INTx IRQ domain
1882  * @node: the DT node for the device whose interrupt we're translating
1883  * @intspec: the interrupt specifier data from the DT
1884  * @intsize: the number of entries in @intspec
1885  * @out_hwirq: pointer at which to write the hwirq number
1886  * @out_type: pointer at which to write the interrupt type
1887  *
1888  * Translate a PCI INTx interrupt number from device tree in the range 1-4, as
1889  * stored in the standard PCI_INTERRUPT_PIN register, to a value in the range
1890  * 0-3 suitable for use in a 4 entry IRQ domain. That is, subtract one from the
1891  * INTx value to obtain the hwirq number.
1892  *
1893  * Returns 0 on success, or -EINVAL if the interrupt specifier is out of range.
1894  */
pci_irqd_intx_xlate(struct irq_domain * d,struct device_node * node,const u32 * intspec,unsigned int intsize,unsigned long * out_hwirq,unsigned int * out_type)1895 static inline int pci_irqd_intx_xlate(struct irq_domain *d,
1896 				      struct device_node *node,
1897 				      const u32 *intspec,
1898 				      unsigned int intsize,
1899 				      unsigned long *out_hwirq,
1900 				      unsigned int *out_type)
1901 {
1902 	const u32 intx = intspec[0];
1903 
1904 	if (intx < PCI_INTERRUPT_INTA || intx > PCI_INTERRUPT_INTD)
1905 		return -EINVAL;
1906 
1907 	*out_hwirq = intx - PCI_INTERRUPT_INTA;
1908 	return 0;
1909 }
1910 
1911 #ifdef CONFIG_PCIEPORTBUS
1912 extern bool pcie_ports_disabled;
1913 extern bool pcie_ports_native;
1914 
1915 int pcie_set_target_speed(struct pci_dev *port, enum pci_bus_speed speed_req,
1916 			  bool use_lt);
1917 #else
1918 #define pcie_ports_disabled	true
1919 #define pcie_ports_native	false
1920 
pcie_set_target_speed(struct pci_dev * port,enum pci_bus_speed speed_req,bool use_lt)1921 static inline int pcie_set_target_speed(struct pci_dev *port,
1922 					enum pci_bus_speed speed_req,
1923 					bool use_lt)
1924 {
1925 	return -EOPNOTSUPP;
1926 }
1927 #endif
1928 
1929 #define PCIE_LINK_STATE_L0S		(BIT(0) | BIT(1)) /* Upstr/dwnstr L0s */
1930 #define PCIE_LINK_STATE_L1		BIT(2)	/* L1 state */
1931 #define PCIE_LINK_STATE_L1_1		BIT(3)	/* ASPM L1.1 state */
1932 #define PCIE_LINK_STATE_L1_2		BIT(4)	/* ASPM L1.2 state */
1933 #define PCIE_LINK_STATE_L1_1_PCIPM	BIT(5)	/* PCI-PM L1.1 state */
1934 #define PCIE_LINK_STATE_L1_2_PCIPM	BIT(6)	/* PCI-PM L1.2 state */
1935 #define PCIE_LINK_STATE_ASPM_ALL	(PCIE_LINK_STATE_L0S		|\
1936 					 PCIE_LINK_STATE_L1		|\
1937 					 PCIE_LINK_STATE_L1_1		|\
1938 					 PCIE_LINK_STATE_L1_2		|\
1939 					 PCIE_LINK_STATE_L1_1_PCIPM	|\
1940 					 PCIE_LINK_STATE_L1_2_PCIPM)
1941 #define PCIE_LINK_STATE_CLKPM		BIT(7)
1942 #define PCIE_LINK_STATE_ALL		(PCIE_LINK_STATE_ASPM_ALL	|\
1943 					 PCIE_LINK_STATE_CLKPM)
1944 
1945 #ifdef CONFIG_PCIEASPM
1946 int pci_disable_link_state(struct pci_dev *pdev, int state);
1947 int pci_disable_link_state_locked(struct pci_dev *pdev, int state);
1948 int pci_enable_link_state(struct pci_dev *pdev, int state);
1949 int pci_enable_link_state_locked(struct pci_dev *pdev, int state);
1950 void pcie_no_aspm(void);
1951 bool pcie_aspm_support_enabled(void);
1952 bool pcie_aspm_enabled(struct pci_dev *pdev);
1953 #else
pci_disable_link_state(struct pci_dev * pdev,int state)1954 static inline int pci_disable_link_state(struct pci_dev *pdev, int state)
1955 { return 0; }
pci_disable_link_state_locked(struct pci_dev * pdev,int state)1956 static inline int pci_disable_link_state_locked(struct pci_dev *pdev, int state)
1957 { return 0; }
pci_enable_link_state(struct pci_dev * pdev,int state)1958 static inline int pci_enable_link_state(struct pci_dev *pdev, int state)
1959 { return 0; }
pci_enable_link_state_locked(struct pci_dev * pdev,int state)1960 static inline int pci_enable_link_state_locked(struct pci_dev *pdev, int state)
1961 { return 0; }
pcie_no_aspm(void)1962 static inline void pcie_no_aspm(void) { }
pcie_aspm_support_enabled(void)1963 static inline bool pcie_aspm_support_enabled(void) { return false; }
pcie_aspm_enabled(struct pci_dev * pdev)1964 static inline bool pcie_aspm_enabled(struct pci_dev *pdev) { return false; }
1965 #endif
1966 
1967 #ifdef CONFIG_HOTPLUG_PCI
1968 void pci_hp_ignore_link_change(struct pci_dev *pdev);
1969 void pci_hp_unignore_link_change(struct pci_dev *pdev);
1970 #else
pci_hp_ignore_link_change(struct pci_dev * pdev)1971 static inline void pci_hp_ignore_link_change(struct pci_dev *pdev) { }
pci_hp_unignore_link_change(struct pci_dev * pdev)1972 static inline void pci_hp_unignore_link_change(struct pci_dev *pdev) { }
1973 #endif
1974 
1975 #ifdef CONFIG_PCIEAER
1976 bool pci_aer_available(void);
1977 #else
pci_aer_available(void)1978 static inline bool pci_aer_available(void) { return false; }
1979 #endif
1980 
1981 bool pci_ats_disabled(void);
1982 
1983 #define PCIE_PTM_CONTEXT_UPDATE_AUTO 0
1984 #define PCIE_PTM_CONTEXT_UPDATE_MANUAL 1
1985 
1986 struct pcie_ptm_ops {
1987 	int (*check_capability)(void *drvdata);
1988 	int (*context_update_write)(void *drvdata, u8 mode);
1989 	int (*context_update_read)(void *drvdata, u8 *mode);
1990 	int (*context_valid_write)(void *drvdata, bool valid);
1991 	int (*context_valid_read)(void *drvdata, bool *valid);
1992 	int (*local_clock_read)(void *drvdata, u64 *clock);
1993 	int (*master_clock_read)(void *drvdata, u64 *clock);
1994 	int (*t1_read)(void *drvdata, u64 *clock);
1995 	int (*t2_read)(void *drvdata, u64 *clock);
1996 	int (*t3_read)(void *drvdata, u64 *clock);
1997 	int (*t4_read)(void *drvdata, u64 *clock);
1998 
1999 	bool (*context_update_visible)(void *drvdata);
2000 	bool (*context_valid_visible)(void *drvdata);
2001 	bool (*local_clock_visible)(void *drvdata);
2002 	bool (*master_clock_visible)(void *drvdata);
2003 	bool (*t1_visible)(void *drvdata);
2004 	bool (*t2_visible)(void *drvdata);
2005 	bool (*t3_visible)(void *drvdata);
2006 	bool (*t4_visible)(void *drvdata);
2007 };
2008 
2009 struct pci_ptm_debugfs {
2010 	struct dentry *debugfs;
2011 	const struct pcie_ptm_ops *ops;
2012 	struct mutex lock;
2013 	void *pdata;
2014 };
2015 
2016 #ifdef CONFIG_PCIE_PTM
2017 int pci_enable_ptm(struct pci_dev *dev);
2018 void pci_disable_ptm(struct pci_dev *dev);
2019 bool pcie_ptm_enabled(struct pci_dev *dev);
2020 #else
pci_enable_ptm(struct pci_dev * dev)2021 static inline int pci_enable_ptm(struct pci_dev *dev)
2022 { return -EINVAL; }
pci_disable_ptm(struct pci_dev * dev)2023 static inline void pci_disable_ptm(struct pci_dev *dev) { }
pcie_ptm_enabled(struct pci_dev * dev)2024 static inline bool pcie_ptm_enabled(struct pci_dev *dev)
2025 { return false; }
2026 #endif
2027 
2028 #if IS_ENABLED(CONFIG_DEBUG_FS) && IS_ENABLED(CONFIG_PCIE_PTM)
2029 struct pci_ptm_debugfs *pcie_ptm_create_debugfs(struct device *dev, void *pdata,
2030 						const struct pcie_ptm_ops *ops);
2031 void pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs *ptm_debugfs);
2032 #else
2033 static inline struct pci_ptm_debugfs
pcie_ptm_create_debugfs(struct device * dev,void * pdata,const struct pcie_ptm_ops * ops)2034 *pcie_ptm_create_debugfs(struct device *dev, void *pdata,
2035 			 const struct pcie_ptm_ops *ops) { return NULL; }
2036 static inline void
pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs * ptm_debugfs)2037 pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs *ptm_debugfs) { }
2038 #endif
2039 
2040 void pci_cfg_access_lock(struct pci_dev *dev);
2041 bool pci_cfg_access_trylock(struct pci_dev *dev);
2042 void pci_cfg_access_unlock(struct pci_dev *dev);
2043 
2044 void pci_dev_lock(struct pci_dev *dev);
2045 int pci_dev_trylock(struct pci_dev *dev);
2046 void pci_dev_unlock(struct pci_dev *dev);
2047 DEFINE_GUARD(pci_dev, struct pci_dev *, pci_dev_lock(_T), pci_dev_unlock(_T))
2048 
2049 /*
2050  * PCI domain support.  Sometimes called PCI segment (eg by ACPI),
2051  * a PCI domain is defined to be a set of PCI buses which share
2052  * configuration space.
2053  */
2054 #ifdef CONFIG_PCI_DOMAINS
2055 extern int pci_domains_supported;
2056 int pci_bus_find_emul_domain_nr(u32 hint, u32 min, u32 max);
2057 void pci_bus_release_emul_domain_nr(int domain_nr);
2058 #else
2059 enum { pci_domains_supported = 0 };
2060 static inline int pci_domain_nr(struct pci_bus *bus) { return 0; }
2061 static inline int pci_proc_domain(struct pci_bus *bus) { return 0; }
2062 static inline int pci_bus_find_emul_domain_nr(u32 hint, u32 min, u32 max)
2063 {
2064 	return 0;
2065 }
2066 static inline void pci_bus_release_emul_domain_nr(int domain_nr) { }
2067 #endif /* CONFIG_PCI_DOMAINS */
2068 
2069 /*
2070  * Generic implementation for PCI domain support. If your
2071  * architecture does not need custom management of PCI
2072  * domains then this implementation will be used
2073  */
2074 #ifdef CONFIG_PCI_DOMAINS_GENERIC
pci_domain_nr(struct pci_bus * bus)2075 static inline int pci_domain_nr(struct pci_bus *bus)
2076 {
2077 	return bus->domain_nr;
2078 }
2079 #ifdef CONFIG_ACPI
2080 int acpi_pci_bus_find_domain_nr(struct pci_bus *bus);
2081 #else
acpi_pci_bus_find_domain_nr(struct pci_bus * bus)2082 static inline int acpi_pci_bus_find_domain_nr(struct pci_bus *bus)
2083 { return 0; }
2084 #endif
2085 int pci_bus_find_domain_nr(struct pci_bus *bus, struct device *parent);
2086 void pci_bus_release_domain_nr(struct device *parent, int domain_nr);
2087 #endif
2088 
2089 /* Some architectures require additional setup to direct VGA traffic */
2090 typedef int (*arch_set_vga_state_t)(struct pci_dev *pdev, bool decode,
2091 				    unsigned int command_bits, u32 flags);
2092 void pci_register_set_vga_state(arch_set_vga_state_t func);
2093 
2094 static inline int
pci_request_io_regions(struct pci_dev * pdev,const char * name)2095 pci_request_io_regions(struct pci_dev *pdev, const char *name)
2096 {
2097 	return pci_request_selected_regions(pdev,
2098 			    pci_select_bars(pdev, IORESOURCE_IO), name);
2099 }
2100 
2101 static inline void
pci_release_io_regions(struct pci_dev * pdev)2102 pci_release_io_regions(struct pci_dev *pdev)
2103 {
2104 	return pci_release_selected_regions(pdev,
2105 			    pci_select_bars(pdev, IORESOURCE_IO));
2106 }
2107 
2108 static inline int
pci_request_mem_regions(struct pci_dev * pdev,const char * name)2109 pci_request_mem_regions(struct pci_dev *pdev, const char *name)
2110 {
2111 	return pci_request_selected_regions(pdev,
2112 			    pci_select_bars(pdev, IORESOURCE_MEM), name);
2113 }
2114 
2115 static inline void
pci_release_mem_regions(struct pci_dev * pdev)2116 pci_release_mem_regions(struct pci_dev *pdev)
2117 {
2118 	return pci_release_selected_regions(pdev,
2119 			    pci_select_bars(pdev, IORESOURCE_MEM));
2120 }
2121 
2122 bool pci_suspend_retains_context(struct pci_dev *pdev);
2123 
2124 #else /* CONFIG_PCI is not enabled */
2125 
pci_set_flags(int flags)2126 static inline void pci_set_flags(int flags) { }
pci_add_flags(int flags)2127 static inline void pci_add_flags(int flags) { }
pci_clear_flags(int flags)2128 static inline void pci_clear_flags(int flags) { }
pci_has_flag(int flag)2129 static inline int pci_has_flag(int flag) { return 0; }
2130 
2131 /*
2132  * If the system does not have PCI, clearly these return errors.  Define
2133  * these as simple inline functions to avoid hair in drivers.
2134  */
2135 #define _PCI_NOP(o, s, t) \
2136 	static inline int pci_##o##_config_##s(struct pci_dev *dev, \
2137 						int where, t val) \
2138 		{ return PCIBIOS_FUNC_NOT_SUPPORTED; }
2139 
2140 #define _PCI_NOP_ALL(o, x)	_PCI_NOP(o, byte, u8 x) \
2141 				_PCI_NOP(o, word, u16 x) \
2142 				_PCI_NOP(o, dword, u32 x)
2143 _PCI_NOP_ALL(read, *)
2144 _PCI_NOP_ALL(write,)
2145 
pci_probe_flush_workqueue(void)2146 static inline void pci_probe_flush_workqueue(void) { }
2147 
pci_get_device(unsigned int vendor,unsigned int device,struct pci_dev * from)2148 static inline struct pci_dev *pci_get_device(unsigned int vendor,
2149 					     unsigned int device,
2150 					     struct pci_dev *from)
2151 { return NULL; }
2152 
pci_get_device_reverse(unsigned int vendor,unsigned int device,struct pci_dev * from)2153 static inline struct pci_dev *pci_get_device_reverse(unsigned int vendor,
2154 						     unsigned int device,
2155 						     struct pci_dev *from)
2156 { return NULL; }
2157 
pci_get_subsys(unsigned int vendor,unsigned int device,unsigned int ss_vendor,unsigned int ss_device,struct pci_dev * from)2158 static inline struct pci_dev *pci_get_subsys(unsigned int vendor,
2159 					     unsigned int device,
2160 					     unsigned int ss_vendor,
2161 					     unsigned int ss_device,
2162 					     struct pci_dev *from)
2163 { return NULL; }
2164 
pci_get_class(unsigned int class,struct pci_dev * from)2165 static inline struct pci_dev *pci_get_class(unsigned int class,
2166 					    struct pci_dev *from)
2167 { return NULL; }
2168 
pci_get_base_class(unsigned int class,struct pci_dev * from)2169 static inline struct pci_dev *pci_get_base_class(unsigned int class,
2170 						 struct pci_dev *from)
2171 { return NULL; }
2172 
pci_dev_present(const struct pci_device_id * ids)2173 static inline int pci_dev_present(const struct pci_device_id *ids)
2174 { return 0; }
2175 
2176 #define pci_dev_put(dev)	do { } while (0)
2177 
pci_set_master(struct pci_dev * dev)2178 static inline void pci_set_master(struct pci_dev *dev) { }
pci_clear_master(struct pci_dev * dev)2179 static inline void pci_clear_master(struct pci_dev *dev) { }
pci_enable_device(struct pci_dev * dev)2180 static inline int pci_enable_device(struct pci_dev *dev) { return -EIO; }
pci_disable_device(struct pci_dev * dev)2181 static inline void pci_disable_device(struct pci_dev *dev) { }
pcim_enable_device(struct pci_dev * pdev)2182 static inline int pcim_enable_device(struct pci_dev *pdev) { return -EIO; }
pci_assign_resource(struct pci_dev * dev,int i)2183 static inline int pci_assign_resource(struct pci_dev *dev, int i)
2184 { return -EBUSY; }
__pci_register_driver(struct pci_driver * drv,struct module * owner,const char * mod_name)2185 static inline int __must_check __pci_register_driver(struct pci_driver *drv,
2186 						     struct module *owner,
2187 						     const char *mod_name)
2188 { return 0; }
pci_register_driver(struct pci_driver * drv)2189 static inline int pci_register_driver(struct pci_driver *drv)
2190 { return 0; }
pci_unregister_driver(struct pci_driver * drv)2191 static inline void pci_unregister_driver(struct pci_driver *drv) { }
pci_find_capability(struct pci_dev * dev,int cap)2192 static inline u8 pci_find_capability(struct pci_dev *dev, int cap)
2193 { return 0; }
pci_find_next_capability(struct pci_dev * dev,u8 post,int cap)2194 static inline u8 pci_find_next_capability(struct pci_dev *dev, u8 post, int cap)
2195 { return 0; }
pci_find_ext_capability(struct pci_dev * dev,int cap)2196 static inline u16 pci_find_ext_capability(struct pci_dev *dev, int cap)
2197 { return 0; }
2198 
pci_get_dsn(struct pci_dev * dev)2199 static inline u64 pci_get_dsn(struct pci_dev *dev)
2200 { return 0; }
2201 
2202 /* Power management related routines */
pci_save_state(struct pci_dev * dev)2203 static inline int pci_save_state(struct pci_dev *dev) { return 0; }
pci_restore_state(struct pci_dev * dev)2204 static inline void pci_restore_state(struct pci_dev *dev) { }
pci_set_power_state(struct pci_dev * dev,pci_power_t state)2205 static inline int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
2206 { return 0; }
pci_set_power_state_locked(struct pci_dev * dev,pci_power_t state)2207 static inline int pci_set_power_state_locked(struct pci_dev *dev, pci_power_t state)
2208 { return 0; }
pci_wake_from_d3(struct pci_dev * dev,bool enable)2209 static inline int pci_wake_from_d3(struct pci_dev *dev, bool enable)
2210 { return 0; }
pci_choose_state(struct pci_dev * dev,pm_message_t state)2211 static inline pci_power_t pci_choose_state(struct pci_dev *dev,
2212 					   pm_message_t state)
2213 { return PCI_D0; }
pci_enable_wake(struct pci_dev * dev,pci_power_t state,int enable)2214 static inline int pci_enable_wake(struct pci_dev *dev, pci_power_t state,
2215 				  int enable)
2216 { return 0; }
2217 
pci_find_resource(struct pci_dev * dev,struct resource * res)2218 static inline struct resource *pci_find_resource(struct pci_dev *dev,
2219 						 struct resource *res)
2220 { return NULL; }
pci_request_regions(struct pci_dev * dev,const char * res_name)2221 static inline int pci_request_regions(struct pci_dev *dev, const char *res_name)
2222 { return -EIO; }
pci_release_regions(struct pci_dev * dev)2223 static inline void pci_release_regions(struct pci_dev *dev) { }
2224 
pci_register_io_range(const struct fwnode_handle * fwnode,phys_addr_t addr,resource_size_t size)2225 static inline int pci_register_io_range(const struct fwnode_handle *fwnode,
2226 					phys_addr_t addr, resource_size_t size)
2227 { return -EINVAL; }
2228 
pci_address_to_pio(phys_addr_t addr)2229 static inline unsigned long pci_address_to_pio(phys_addr_t addr) { return -1; }
2230 
pci_find_next_bus(const struct pci_bus * from)2231 static inline struct pci_bus *pci_find_next_bus(const struct pci_bus *from)
2232 { return NULL; }
pci_get_slot(struct pci_bus * bus,unsigned int devfn)2233 static inline struct pci_dev *pci_get_slot(struct pci_bus *bus,
2234 						unsigned int devfn)
2235 { return NULL; }
pci_get_domain_bus_and_slot(int domain,unsigned int bus,unsigned int devfn)2236 static inline struct pci_dev *pci_get_domain_bus_and_slot(int domain,
2237 					unsigned int bus, unsigned int devfn)
2238 { return NULL; }
2239 
pci_domain_nr(struct pci_bus * bus)2240 static inline int pci_domain_nr(struct pci_bus *bus) { return 0; }
pci_dev_get(struct pci_dev * dev)2241 static inline struct pci_dev *pci_dev_get(struct pci_dev *dev) { return NULL; }
2242 
2243 #define dev_is_pci(d) (false)
2244 #define dev_is_pf(d) (false)
pci_acs_enabled(struct pci_dev * pdev,u16 acs_flags)2245 static inline bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2246 { return false; }
pci_irqd_intx_xlate(struct irq_domain * d,struct device_node * node,const u32 * intspec,unsigned int intsize,unsigned long * out_hwirq,unsigned int * out_type)2247 static inline int pci_irqd_intx_xlate(struct irq_domain *d,
2248 				      struct device_node *node,
2249 				      const u32 *intspec,
2250 				      unsigned int intsize,
2251 				      unsigned long *out_hwirq,
2252 				      unsigned int *out_type)
2253 { return -EINVAL; }
2254 
pci_match_id(const struct pci_device_id * ids,struct pci_dev * dev)2255 static inline const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
2256 							 struct pci_dev *dev)
2257 { return NULL; }
pci_ats_disabled(void)2258 static inline bool pci_ats_disabled(void) { return true; }
2259 
pci_irq_vector(struct pci_dev * dev,unsigned int nr)2260 static inline int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
2261 {
2262 	return -EINVAL;
2263 }
2264 
2265 static inline int
pci_alloc_irq_vectors_affinity(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags,struct irq_affinity * aff_desc)2266 pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
2267 			       unsigned int max_vecs, unsigned int flags,
2268 			       struct irq_affinity *aff_desc)
2269 {
2270 	return -ENOSPC;
2271 }
2272 static inline int
pci_alloc_irq_vectors(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags)2273 pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
2274 		      unsigned int max_vecs, unsigned int flags)
2275 {
2276 	return -ENOSPC;
2277 }
2278 
pci_free_irq_vectors(struct pci_dev * dev)2279 static inline void pci_free_irq_vectors(struct pci_dev *dev)
2280 {
2281 }
2282 
pci_suspend_retains_context(struct pci_dev * pdev)2283 static inline bool pci_suspend_retains_context(struct pci_dev *pdev)
2284 {
2285 	return true;
2286 }
2287 
pci_irq_type(struct pci_dev * pdev)2288 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
2289 {
2290 	return 0;
2291 }
2292 #endif /* CONFIG_PCI */
2293 
2294 /* Include architecture-dependent settings and functions */
2295 
2296 #include <asm/pci.h>
2297 
2298 /*
2299  * pci_mmap_resource_range() maps a specific BAR, and vm->vm_pgoff
2300  * is expected to be an offset within that region.
2301  *
2302  */
2303 int pci_mmap_resource_range(struct pci_dev *dev, int bar,
2304 			    struct vm_area_struct *vma,
2305 			    enum pci_mmap_state mmap_state, int write_combine);
2306 
2307 #ifndef arch_can_pci_mmap_wc
2308 #define arch_can_pci_mmap_wc()		0
2309 #endif
2310 
2311 #ifndef arch_can_pci_mmap_io
2312 #define arch_can_pci_mmap_io()		0
2313 #define pci_iobar_pfn(pdev, bar, vma) (-EINVAL)
2314 #else
2315 int pci_iobar_pfn(struct pci_dev *pdev, int bar, struct vm_area_struct *vma);
2316 #endif
2317 
2318 #ifndef pci_root_bus_fwnode
2319 #define pci_root_bus_fwnode(bus)	NULL
2320 #endif
2321 
2322 /*
2323  * These helpers provide future and backwards compatibility
2324  * for accessing popular PCI BAR info
2325  */
2326 #define pci_resource_n(dev, bar)	(&(dev)->resource[(bar)])
2327 #define pci_resource_start(dev, bar)	(pci_resource_n(dev, bar)->start)
2328 #define pci_resource_end(dev, bar)	(pci_resource_n(dev, bar)->end)
2329 #define pci_resource_flags(dev, bar)	(pci_resource_n(dev, bar)->flags)
2330 #define pci_resource_len(dev,bar)					\
2331 	(pci_resource_end((dev), (bar)) ? 				\
2332 	 resource_size(pci_resource_n((dev), (bar))) : 0)
2333 
2334 #define __pci_dev_for_each_res0(dev, res, ...)				  \
2335 	for (unsigned int __b = 0;					  \
2336 	     __b < PCI_NUM_RESOURCES && (res = pci_resource_n(dev, __b)); \
2337 	     __b++)
2338 
2339 #define __pci_dev_for_each_res1(dev, res, __b)				  \
2340 	for (__b = 0;							  \
2341 	     __b < PCI_NUM_RESOURCES && (res = pci_resource_n(dev, __b)); \
2342 	     __b++)
2343 
2344 #define pci_dev_for_each_resource(dev, res, ...)			\
2345 	CONCATENATE(__pci_dev_for_each_res, COUNT_ARGS(__VA_ARGS__)) 	\
2346 		    (dev, res, __VA_ARGS__)
2347 
2348 /**
2349  * pci_resource_is_io - check if a PCI resource is of I/O port type.
2350  * @dev: PCI device to check.
2351  * @resno: The resource number (BAR index) to check.
2352  *
2353  * Returns true if the resource type is I/O port.
2354  */
pci_resource_is_io(const struct pci_dev * dev,int resno)2355 static inline bool pci_resource_is_io(const struct pci_dev *dev, int resno)
2356 {
2357 	return resource_type(pci_resource_n(dev, resno)) == IORESOURCE_IO;
2358 }
2359 
2360 /**
2361  * pci_resource_is_mem - check if a PCI resource is of memory type.
2362  * @dev: PCI device to check.
2363  * @resno: The resource number (BAR index) to check.
2364  *
2365  * Returns true if the resource type is memory, including
2366  * prefetchable memory.
2367  */
pci_resource_is_mem(const struct pci_dev * dev,int resno)2368 static inline bool pci_resource_is_mem(const struct pci_dev *dev, int resno)
2369 {
2370 	return resource_type(pci_resource_n(dev, resno)) == IORESOURCE_MEM;
2371 }
2372 
2373 /*
2374  * Similar to the helpers above, these manipulate per-pci_dev
2375  * driver-specific data.  They are really just a wrapper around
2376  * the generic device structure functions of these calls.
2377  */
pci_get_drvdata(struct pci_dev * pdev)2378 static inline void *pci_get_drvdata(struct pci_dev *pdev)
2379 {
2380 	return dev_get_drvdata(&pdev->dev);
2381 }
2382 
pci_set_drvdata(struct pci_dev * pdev,void * data)2383 static inline void pci_set_drvdata(struct pci_dev *pdev, void *data)
2384 {
2385 	dev_set_drvdata(&pdev->dev, data);
2386 }
2387 
pci_name(const struct pci_dev * pdev)2388 static inline const char *pci_name(const struct pci_dev *pdev)
2389 {
2390 	return dev_name(&pdev->dev);
2391 }
2392 
2393 void pci_resource_to_user(const struct pci_dev *dev, int bar,
2394 			  const struct resource *rsrc,
2395 			  resource_size_t *start, resource_size_t *end);
2396 
2397 /*
2398  * The world is not perfect and supplies us with broken PCI devices.
2399  * For at least a part of these bugs we need a work-around, so both
2400  * generic (drivers/pci/quirks.c) and per-architecture code can define
2401  * fixup hooks to be called for particular buggy devices.
2402  */
2403 
2404 struct pci_fixup {
2405 	u16 vendor;			/* Or PCI_ANY_ID */
2406 	u16 device;			/* Or PCI_ANY_ID */
2407 	u32 class;			/* Or PCI_ANY_ID */
2408 	unsigned int class_shift;	/* should be 0, 8, 16 */
2409 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
2410 	int hook_offset;
2411 #else
2412 	void (*hook)(struct pci_dev *dev);
2413 #endif
2414 };
2415 
2416 enum pci_fixup_pass {
2417 	pci_fixup_early,	/* Before probing BARs */
2418 	pci_fixup_header,	/* After reading configuration header */
2419 	pci_fixup_final,	/* Final phase of device fixups */
2420 	pci_fixup_enable,	/* pci_enable_device() time */
2421 	pci_fixup_resume,	/* pci_device_resume() */
2422 	pci_fixup_suspend,	/* pci_device_suspend() */
2423 	pci_fixup_resume_early, /* pci_device_resume_early() */
2424 	pci_fixup_suspend_late,	/* pci_device_suspend_late() */
2425 };
2426 
2427 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
2428 #define ___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2429 				    class_shift, hook)			\
2430 	__ADDRESSABLE(hook)						\
2431 	asm(".section "	#sec ", \"a\"				\n"	\
2432 	    ".balign	16					\n"	\
2433 	    ".short "	#vendor ", " #device "			\n"	\
2434 	    ".long "	#class ", " #class_shift "		\n"	\
2435 	    ".long "	#hook " - .				\n"	\
2436 	    ".previous						\n");
2437 
2438 /*
2439  * Clang's LTO may rename static functions in C, but has no way to
2440  * handle such renamings when referenced from inline asm. To work
2441  * around this, create global C stubs for these cases.
2442  */
2443 #ifdef CONFIG_LTO_CLANG
2444 #define __DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2445 				  class_shift, hook, stub)		\
2446 	void stub(struct pci_dev *dev);					\
2447 	void stub(struct pci_dev *dev)					\
2448 	{ 								\
2449 		hook(dev); 						\
2450 	}								\
2451 	___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2452 				  class_shift, stub)
2453 #else
2454 #define __DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2455 				  class_shift, hook, stub)		\
2456 	___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2457 				  class_shift, hook)
2458 #endif
2459 
2460 #define DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2461 				  class_shift, hook)			\
2462 	__DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2463 				  class_shift, hook, __UNIQUE_ID(hook))
2464 #else
2465 /* Anonymous variables would be nice... */
2466 #define DECLARE_PCI_FIXUP_SECTION(section, name, vendor, device, class,	\
2467 				  class_shift, hook)			\
2468 	static const struct pci_fixup __PASTE(__pci_fixup_##name,__LINE__) __used	\
2469 	__attribute__((__section__(#section), aligned((sizeof(void *)))))    \
2470 		= { vendor, device, class, class_shift, hook };
2471 #endif
2472 
2473 #define DECLARE_PCI_FIXUP_CLASS_EARLY(vendor, device, class,		\
2474 					 class_shift, hook)		\
2475 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_early,			\
2476 		hook, vendor, device, class, class_shift, hook)
2477 #define DECLARE_PCI_FIXUP_CLASS_HEADER(vendor, device, class,		\
2478 					 class_shift, hook)		\
2479 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_header,			\
2480 		hook, vendor, device, class, class_shift, hook)
2481 #define DECLARE_PCI_FIXUP_CLASS_FINAL(vendor, device, class,		\
2482 					 class_shift, hook)		\
2483 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_final,			\
2484 		hook, vendor, device, class, class_shift, hook)
2485 #define DECLARE_PCI_FIXUP_CLASS_ENABLE(vendor, device, class,		\
2486 					 class_shift, hook)		\
2487 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_enable,			\
2488 		hook, vendor, device, class, class_shift, hook)
2489 #define DECLARE_PCI_FIXUP_CLASS_RESUME(vendor, device, class,		\
2490 					 class_shift, hook)		\
2491 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume,			\
2492 		resume##hook, vendor, device, class, class_shift, hook)
2493 #define DECLARE_PCI_FIXUP_CLASS_RESUME_EARLY(vendor, device, class,	\
2494 					 class_shift, hook)		\
2495 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume_early,		\
2496 		resume_early##hook, vendor, device, class, class_shift, hook)
2497 #define DECLARE_PCI_FIXUP_CLASS_SUSPEND(vendor, device, class,		\
2498 					 class_shift, hook)		\
2499 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend,			\
2500 		suspend##hook, vendor, device, class, class_shift, hook)
2501 #define DECLARE_PCI_FIXUP_CLASS_SUSPEND_LATE(vendor, device, class,	\
2502 					 class_shift, hook)		\
2503 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend_late,		\
2504 		suspend_late##hook, vendor, device, class, class_shift, hook)
2505 
2506 #define DECLARE_PCI_FIXUP_EARLY(vendor, device, hook)			\
2507 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_early,			\
2508 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2509 #define DECLARE_PCI_FIXUP_HEADER(vendor, device, hook)			\
2510 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_header,			\
2511 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2512 #define DECLARE_PCI_FIXUP_FINAL(vendor, device, hook)			\
2513 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_final,			\
2514 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2515 #define DECLARE_PCI_FIXUP_ENABLE(vendor, device, hook)			\
2516 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_enable,			\
2517 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2518 #define DECLARE_PCI_FIXUP_RESUME(vendor, device, hook)			\
2519 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume,			\
2520 		resume##hook, vendor, device, PCI_ANY_ID, 0, hook)
2521 #define DECLARE_PCI_FIXUP_RESUME_EARLY(vendor, device, hook)		\
2522 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume_early,		\
2523 		resume_early##hook, vendor, device, PCI_ANY_ID, 0, hook)
2524 #define DECLARE_PCI_FIXUP_SUSPEND(vendor, device, hook)			\
2525 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend,			\
2526 		suspend##hook, vendor, device, PCI_ANY_ID, 0, hook)
2527 #define DECLARE_PCI_FIXUP_SUSPEND_LATE(vendor, device, hook)		\
2528 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend_late,		\
2529 		suspend_late##hook, vendor, device, PCI_ANY_ID, 0, hook)
2530 
2531 #ifdef CONFIG_PCI_QUIRKS
2532 void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev);
2533 #else
pci_fixup_device(enum pci_fixup_pass pass,struct pci_dev * dev)2534 static inline void pci_fixup_device(enum pci_fixup_pass pass,
2535 				    struct pci_dev *dev) { }
2536 #endif
2537 
2538 int pcim_intx(struct pci_dev *pdev, int enabled);
2539 int pcim_request_all_regions(struct pci_dev *pdev, const char *name);
2540 void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen);
2541 void __iomem *pcim_iomap_region(struct pci_dev *pdev, int bar,
2542 				const char *name);
2543 void pcim_iounmap_region(struct pci_dev *pdev, int bar);
2544 void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr);
2545 void __iomem * const *pcim_iomap_table(struct pci_dev *pdev);
2546 int pcim_request_region(struct pci_dev *pdev, int bar, const char *name);
2547 int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name);
2548 void __iomem *pcim_iomap_range(struct pci_dev *pdev, int bar,
2549 				unsigned long offset, unsigned long len);
2550 
2551 extern int pci_pci_problems;
2552 #define PCIPCI_FAIL		1	/* No PCI PCI DMA */
2553 #define PCIPCI_TRITON		2
2554 #define PCIPCI_NATOMA		4
2555 #define PCIPCI_VIAETBF		8
2556 #define PCIPCI_VSFX		16
2557 #define PCIPCI_ALIMAGIK		32	/* Need low latency setting */
2558 #define PCIAGP_FAIL		64	/* No PCI to AGP DMA */
2559 
2560 extern u8 pci_dfl_cache_line_size;
2561 extern u8 pci_cache_line_size;
2562 
2563 /* Architecture-specific versions may override these (weak) */
2564 void pcibios_disable_device(struct pci_dev *dev);
2565 void pcibios_set_master(struct pci_dev *dev);
2566 int pcibios_set_pcie_reset_state(struct pci_dev *dev,
2567 				 enum pcie_reset_state state);
2568 int pcibios_device_add(struct pci_dev *dev);
2569 void pcibios_release_device(struct pci_dev *dev);
2570 #ifdef CONFIG_PCI
2571 void pcibios_penalize_isa_irq(int irq, int active);
2572 #else
pcibios_penalize_isa_irq(int irq,int active)2573 static inline void pcibios_penalize_isa_irq(int irq, int active) {}
2574 #endif
2575 int pcibios_alloc_irq(struct pci_dev *dev);
2576 void pcibios_free_irq(struct pci_dev *dev);
2577 resource_size_t pcibios_default_alignment(void);
2578 
2579 #if defined(CONFIG_PCI_MMCONFIG) || defined(CONFIG_ACPI_MCFG)
2580 void __init pci_mmcfg_early_init(void);
2581 void __init pci_mmcfg_late_init(void);
2582 #else
pci_mmcfg_early_init(void)2583 static inline void pci_mmcfg_early_init(void) { }
pci_mmcfg_late_init(void)2584 static inline void pci_mmcfg_late_init(void) { }
2585 #endif
2586 
2587 int pci_ext_cfg_avail(void);
2588 
2589 void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar);
2590 void __iomem *pci_ioremap_wc_bar(struct pci_dev *pdev, int bar);
2591 
2592 #ifdef CONFIG_PCI_IOV
2593 int pci_iov_virtfn_bus(struct pci_dev *dev, int id);
2594 int pci_iov_virtfn_devfn(struct pci_dev *dev, int id);
2595 int pci_iov_vf_id(struct pci_dev *dev);
2596 void *pci_iov_get_pf_drvdata(struct pci_dev *dev, struct pci_driver *pf_driver);
2597 int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn);
2598 void pci_disable_sriov(struct pci_dev *dev);
2599 
2600 int pci_iov_sysfs_link(struct pci_dev *dev, struct pci_dev *virtfn, int id);
2601 int pci_iov_add_virtfn(struct pci_dev *dev, int id);
2602 void pci_iov_remove_virtfn(struct pci_dev *dev, int id);
2603 int pci_num_vf(struct pci_dev *dev);
2604 int pci_vfs_assigned(struct pci_dev *dev);
2605 int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs);
2606 int pci_sriov_get_totalvfs(struct pci_dev *dev);
2607 int pci_sriov_configure_simple(struct pci_dev *dev, int nr_virtfn);
2608 resource_size_t pci_iov_resource_size(const struct pci_dev *dev, int resno);
2609 int pci_iov_vf_bar_set_size(struct pci_dev *dev, int resno, int size);
2610 u32 pci_iov_vf_bar_get_sizes(struct pci_dev *dev, int resno, int num_vfs);
2611 void pci_vf_drivers_autoprobe(struct pci_dev *dev, bool probe);
2612 
2613 /* Arch may override these (weak) */
2614 int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs);
2615 int pcibios_sriov_disable(struct pci_dev *pdev);
2616 resource_size_t pcibios_iov_resource_alignment(const struct pci_dev *dev,
2617 					       int resno);
2618 #else
pci_iov_virtfn_bus(struct pci_dev * dev,int id)2619 static inline int pci_iov_virtfn_bus(struct pci_dev *dev, int id)
2620 {
2621 	return -ENOSYS;
2622 }
pci_iov_virtfn_devfn(struct pci_dev * dev,int id)2623 static inline int pci_iov_virtfn_devfn(struct pci_dev *dev, int id)
2624 {
2625 	return -ENOSYS;
2626 }
2627 
pci_iov_vf_id(struct pci_dev * dev)2628 static inline int pci_iov_vf_id(struct pci_dev *dev)
2629 {
2630 	return -ENOSYS;
2631 }
2632 
pci_iov_get_pf_drvdata(struct pci_dev * dev,struct pci_driver * pf_driver)2633 static inline void *pci_iov_get_pf_drvdata(struct pci_dev *dev,
2634 					   struct pci_driver *pf_driver)
2635 {
2636 	return ERR_PTR(-EINVAL);
2637 }
2638 
pci_enable_sriov(struct pci_dev * dev,int nr_virtfn)2639 static inline int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
2640 { return -ENODEV; }
2641 
pci_iov_sysfs_link(struct pci_dev * dev,struct pci_dev * virtfn,int id)2642 static inline int pci_iov_sysfs_link(struct pci_dev *dev,
2643 				     struct pci_dev *virtfn, int id)
2644 {
2645 	return -ENODEV;
2646 }
pci_iov_add_virtfn(struct pci_dev * dev,int id)2647 static inline int pci_iov_add_virtfn(struct pci_dev *dev, int id)
2648 {
2649 	return -ENOSYS;
2650 }
pci_iov_remove_virtfn(struct pci_dev * dev,int id)2651 static inline void pci_iov_remove_virtfn(struct pci_dev *dev,
2652 					 int id) { }
pci_disable_sriov(struct pci_dev * dev)2653 static inline void pci_disable_sriov(struct pci_dev *dev) { }
pci_num_vf(struct pci_dev * dev)2654 static inline int pci_num_vf(struct pci_dev *dev) { return 0; }
pci_vfs_assigned(struct pci_dev * dev)2655 static inline int pci_vfs_assigned(struct pci_dev *dev)
2656 { return 0; }
pci_sriov_set_totalvfs(struct pci_dev * dev,u16 numvfs)2657 static inline int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs)
2658 { return 0; }
pci_sriov_get_totalvfs(struct pci_dev * dev)2659 static inline int pci_sriov_get_totalvfs(struct pci_dev *dev)
2660 { return 0; }
2661 #define pci_sriov_configure_simple	NULL
pci_iov_resource_size(const struct pci_dev * dev,int resno)2662 static inline resource_size_t pci_iov_resource_size(const struct pci_dev *dev,
2663 						    int resno)
2664 { return 0; }
pci_iov_vf_bar_set_size(struct pci_dev * dev,int resno,int size)2665 static inline int pci_iov_vf_bar_set_size(struct pci_dev *dev, int resno, int size)
2666 { return -ENODEV; }
pci_iov_vf_bar_get_sizes(struct pci_dev * dev,int resno,int num_vfs)2667 static inline u32 pci_iov_vf_bar_get_sizes(struct pci_dev *dev, int resno, int num_vfs)
2668 { return 0; }
pci_vf_drivers_autoprobe(struct pci_dev * dev,bool probe)2669 static inline void pci_vf_drivers_autoprobe(struct pci_dev *dev, bool probe) { }
2670 #endif
2671 
2672 /**
2673  * pci_pcie_cap - get the saved PCIe capability offset
2674  * @dev: PCI device
2675  *
2676  * PCIe capability offset is calculated at PCI device initialization
2677  * time and saved in the data structure. This function returns saved
2678  * PCIe capability offset. Using this instead of pci_find_capability()
2679  * reduces unnecessary search in the PCI configuration space. If you
2680  * need to calculate PCIe capability offset from raw device for some
2681  * reasons, please use pci_find_capability() instead.
2682  */
pci_pcie_cap(struct pci_dev * dev)2683 static inline int pci_pcie_cap(struct pci_dev *dev)
2684 {
2685 	return dev->pcie_cap;
2686 }
2687 
2688 /**
2689  * pci_is_pcie - check if the PCI device is PCI Express capable
2690  * @dev: PCI device
2691  *
2692  * Returns: true if the PCI device is PCI Express capable, false otherwise.
2693  */
pci_is_pcie(struct pci_dev * dev)2694 static inline bool pci_is_pcie(struct pci_dev *dev)
2695 {
2696 	return pci_pcie_cap(dev);
2697 }
2698 
2699 /**
2700  * pcie_caps_reg - get the PCIe Capabilities Register
2701  * @dev: PCI device
2702  */
pcie_caps_reg(const struct pci_dev * dev)2703 static inline u16 pcie_caps_reg(const struct pci_dev *dev)
2704 {
2705 	return dev->pcie_flags_reg;
2706 }
2707 
2708 /**
2709  * pci_pcie_type - get the PCIe device/port type
2710  * @dev: PCI device
2711  */
pci_pcie_type(const struct pci_dev * dev)2712 static inline int pci_pcie_type(const struct pci_dev *dev)
2713 {
2714 	return (pcie_caps_reg(dev) & PCI_EXP_FLAGS_TYPE) >> 4;
2715 }
2716 
2717 /**
2718  * pcie_find_root_port - Get the PCIe root port device
2719  * @dev: PCI device
2720  *
2721  * Traverse up the parent chain and return the PCIe Root Port PCI Device
2722  * for a given PCI/PCIe Device.
2723  */
pcie_find_root_port(struct pci_dev * dev)2724 static inline struct pci_dev *pcie_find_root_port(struct pci_dev *dev)
2725 {
2726 	while (dev) {
2727 		if (pci_is_pcie(dev) &&
2728 		    pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT)
2729 			return dev;
2730 		dev = pci_upstream_bridge(dev);
2731 	}
2732 
2733 	return NULL;
2734 }
2735 
pci_dev_is_disconnected(const struct pci_dev * dev)2736 static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
2737 {
2738 	/*
2739 	 * error_state is set in pci_dev_set_io_state() using xchg/cmpxchg()
2740 	 * and read w/o common lock. READ_ONCE() ensures compiler cannot cache
2741 	 * the value (e.g. inside the loop in pci_dev_wait()).
2742 	 */
2743 	return READ_ONCE(dev->error_state) == pci_channel_io_perm_failure;
2744 }
2745 
2746 void pci_request_acs(void);
2747 bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags);
2748 bool pci_acs_path_enabled(struct pci_dev *start,
2749 			  struct pci_dev *end, u16 acs_flags);
2750 int pci_enable_atomic_ops_to_root(struct pci_dev *dev, u32 cap_mask);
2751 
2752 #define PCI_VPD_LRDT			0x80	/* Large Resource Data Type */
2753 #define PCI_VPD_LRDT_ID(x)		((x) | PCI_VPD_LRDT)
2754 
2755 /* Large Resource Data Type Tag Item Names */
2756 #define PCI_VPD_LTIN_ID_STRING		0x02	/* Identifier String */
2757 #define PCI_VPD_LTIN_RO_DATA		0x10	/* Read-Only Data */
2758 #define PCI_VPD_LTIN_RW_DATA		0x11	/* Read-Write Data */
2759 
2760 #define PCI_VPD_LRDT_ID_STRING		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_ID_STRING)
2761 #define PCI_VPD_LRDT_RO_DATA		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_RO_DATA)
2762 #define PCI_VPD_LRDT_RW_DATA		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_RW_DATA)
2763 
2764 #define PCI_VPD_RO_KEYWORD_PARTNO	"PN"
2765 #define PCI_VPD_RO_KEYWORD_SERIALNO	"SN"
2766 #define PCI_VPD_RO_KEYWORD_MFR_ID	"MN"
2767 #define PCI_VPD_RO_KEYWORD_VENDOR0	"V0"
2768 #define PCI_VPD_RO_KEYWORD_CHKSUM	"RV"
2769 
2770 /**
2771  * pci_vpd_alloc - Allocate buffer and read VPD into it
2772  * @dev: PCI device
2773  * @size: pointer to field where VPD length is returned
2774  *
2775  * Returns pointer to allocated buffer or an ERR_PTR in case of failure
2776  */
2777 void *pci_vpd_alloc(struct pci_dev *dev, unsigned int *size);
2778 
2779 /**
2780  * pci_vpd_find_id_string - Locate id string in VPD
2781  * @buf: Pointer to buffered VPD data
2782  * @len: The length of the buffer area in which to search
2783  * @size: Pointer to field where length of id string is returned
2784  *
2785  * Returns the index of the id string or -ENOENT if not found.
2786  */
2787 int pci_vpd_find_id_string(const u8 *buf, unsigned int len, unsigned int *size);
2788 
2789 /**
2790  * pci_vpd_find_ro_info_keyword - Locate info field keyword in VPD RO section
2791  * @buf: Pointer to buffered VPD data
2792  * @len: The length of the buffer area in which to search
2793  * @kw: The keyword to search for
2794  * @size: Pointer to field where length of found keyword data is returned
2795  *
2796  * Returns the index of the information field keyword data or -ENOENT if
2797  * not found.
2798  */
2799 int pci_vpd_find_ro_info_keyword(const void *buf, unsigned int len,
2800 				 const char *kw, unsigned int *size);
2801 
2802 /**
2803  * pci_vpd_check_csum - Check VPD checksum
2804  * @buf: Pointer to buffered VPD data
2805  * @len: VPD size
2806  *
2807  * Returns 1 if VPD has no checksum, otherwise 0 or an errno
2808  */
2809 int pci_vpd_check_csum(const void *buf, unsigned int len);
2810 
2811 /* PCI <-> OF binding helpers */
2812 #ifdef CONFIG_OF
2813 struct device_node;
2814 struct irq_domain;
2815 struct irq_domain *pci_host_bridge_of_msi_domain(struct pci_bus *bus);
2816 bool pci_host_of_has_msi_map(struct device *dev);
2817 
2818 /* Arch may override this (weak) */
2819 struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus);
2820 
2821 #else	/* CONFIG_OF */
2822 static inline struct irq_domain *
pci_host_bridge_of_msi_domain(struct pci_bus * bus)2823 pci_host_bridge_of_msi_domain(struct pci_bus *bus) { return NULL; }
pci_host_of_has_msi_map(struct device * dev)2824 static inline bool pci_host_of_has_msi_map(struct device *dev) { return false; }
2825 #endif  /* CONFIG_OF */
2826 
2827 static inline struct device_node *
pci_device_to_OF_node(const struct pci_dev * pdev)2828 pci_device_to_OF_node(const struct pci_dev *pdev)
2829 {
2830 	return pdev ? pdev->dev.of_node : NULL;
2831 }
2832 
pci_bus_to_OF_node(struct pci_bus * bus)2833 static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
2834 {
2835 	return bus ? bus->dev.of_node : NULL;
2836 }
2837 
2838 #ifdef CONFIG_ACPI
2839 struct irq_domain *pci_host_bridge_acpi_msi_domain(struct pci_bus *bus);
2840 
2841 void
2842 pci_msi_register_fwnode_provider(struct fwnode_handle *(*fn)(struct device *));
2843 bool pci_pr3_present(struct pci_dev *pdev);
2844 #else
2845 static inline struct irq_domain *
pci_host_bridge_acpi_msi_domain(struct pci_bus * bus)2846 pci_host_bridge_acpi_msi_domain(struct pci_bus *bus) { return NULL; }
pci_pr3_present(struct pci_dev * pdev)2847 static inline bool pci_pr3_present(struct pci_dev *pdev) { return false; }
2848 #endif
2849 
2850 #if defined(CONFIG_X86) && defined(CONFIG_ACPI)
2851 bool arch_pci_dev_is_removable(struct pci_dev *pdev);
2852 #else
arch_pci_dev_is_removable(struct pci_dev * pdev)2853 static inline bool arch_pci_dev_is_removable(struct pci_dev *pdev) { return false; }
2854 #endif
2855 
2856 #ifdef CONFIG_EEH
pci_dev_to_eeh_dev(struct pci_dev * pdev)2857 static inline struct eeh_dev *pci_dev_to_eeh_dev(struct pci_dev *pdev)
2858 {
2859 	return pdev->dev.archdata.edev;
2860 }
2861 #endif
2862 
2863 void pci_add_dma_alias(struct pci_dev *dev, u8 devfn_from, unsigned nr_devfns);
2864 bool pci_devs_are_dma_aliases(struct pci_dev *dev1, struct pci_dev *dev2);
2865 int pci_for_each_dma_alias(struct pci_dev *pdev,
2866 			   int (*fn)(struct pci_dev *pdev,
2867 				     u16 alias, void *data), void *data);
2868 
2869 /* Helper functions for operation of device flag */
pci_set_dev_assigned(struct pci_dev * pdev)2870 static inline void pci_set_dev_assigned(struct pci_dev *pdev)
2871 {
2872 	pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
2873 }
pci_clear_dev_assigned(struct pci_dev * pdev)2874 static inline void pci_clear_dev_assigned(struct pci_dev *pdev)
2875 {
2876 	pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
2877 }
pci_is_dev_assigned(struct pci_dev * pdev)2878 static inline bool pci_is_dev_assigned(struct pci_dev *pdev)
2879 {
2880 	return (pdev->dev_flags & PCI_DEV_FLAGS_ASSIGNED) == PCI_DEV_FLAGS_ASSIGNED;
2881 }
2882 
2883 /**
2884  * pci_ari_enabled - query ARI forwarding status
2885  * @bus: the PCI bus
2886  *
2887  * Returns true if ARI forwarding is enabled.
2888  */
pci_ari_enabled(struct pci_bus * bus)2889 static inline bool pci_ari_enabled(struct pci_bus *bus)
2890 {
2891 	return bus->self && bus->self->ari_enabled;
2892 }
2893 
2894 /**
2895  * pci_is_thunderbolt_attached - whether device is on a Thunderbolt daisy chain
2896  * @pdev: PCI device to check
2897  *
2898  * Walk upwards from @pdev and check for each encountered bridge if it's part
2899  * of a Thunderbolt controller.  Reaching the host bridge means @pdev is not
2900  * Thunderbolt-attached.  (But rather soldered to the mainboard usually.)
2901  */
pci_is_thunderbolt_attached(struct pci_dev * pdev)2902 static inline bool pci_is_thunderbolt_attached(struct pci_dev *pdev)
2903 {
2904 	struct pci_dev *parent = pdev;
2905 
2906 	if (pdev->is_thunderbolt)
2907 		return true;
2908 
2909 	while ((parent = pci_upstream_bridge(parent)))
2910 		if (parent->is_thunderbolt)
2911 			return true;
2912 
2913 	return false;
2914 }
2915 
2916 #if defined(CONFIG_PCIEPORTBUS) || defined(CONFIG_EEH) || defined(CONFIG_S390)
2917 void pci_uevent_ers(struct pci_dev *pdev, enum  pci_ers_result err_type);
2918 #endif
2919 
2920 #include <linux/dma-mapping.h>
2921 
2922 #define pci_emerg(pdev, fmt, arg...)	dev_emerg(&(pdev)->dev, fmt, ##arg)
2923 #define pci_alert(pdev, fmt, arg...)	dev_alert(&(pdev)->dev, fmt, ##arg)
2924 #define pci_crit(pdev, fmt, arg...)	dev_crit(&(pdev)->dev, fmt, ##arg)
2925 #define pci_err(pdev, fmt, arg...)	dev_err(&(pdev)->dev, fmt, ##arg)
2926 #define pci_warn(pdev, fmt, arg...)	dev_warn(&(pdev)->dev, fmt, ##arg)
2927 #define pci_warn_once(pdev, fmt, arg...) dev_warn_once(&(pdev)->dev, fmt, ##arg)
2928 #define pci_notice(pdev, fmt, arg...)	dev_notice(&(pdev)->dev, fmt, ##arg)
2929 #define pci_info(pdev, fmt, arg...)	dev_info(&(pdev)->dev, fmt, ##arg)
2930 #define pci_dbg(pdev, fmt, arg...)	dev_dbg(&(pdev)->dev, fmt, ##arg)
2931 
2932 #define pci_notice_ratelimited(pdev, fmt, arg...) \
2933 	dev_notice_ratelimited(&(pdev)->dev, fmt, ##arg)
2934 
2935 #define pci_info_ratelimited(pdev, fmt, arg...) \
2936 	dev_info_ratelimited(&(pdev)->dev, fmt, ##arg)
2937 
2938 #define pci_WARN(pdev, condition, fmt, arg...) \
2939 	WARN(condition, "%s %s: " fmt, \
2940 	     dev_driver_string(&(pdev)->dev), pci_name(pdev), ##arg)
2941 
2942 #define pci_WARN_ONCE(pdev, condition, fmt, arg...) \
2943 	WARN_ONCE(condition, "%s %s: " fmt, \
2944 		  dev_driver_string(&(pdev)->dev), pci_name(pdev), ##arg)
2945 
2946 #endif /* LINUX_PCI_H */
2947