xref: /linux/include/linux/pci.h (revision 889600e21e3be388a6817c2a0dac0411df860751)
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 	struct gpio_desc *wake;		/* WAKE# GPIO */
595 
596 #ifdef CONFIG_PCIE_TPH
597 	u16		tph_cap;	/* TPH capability offset */
598 	u8		tph_mode;	/* TPH mode */
599 	u8		tph_req_type;	/* TPH requester type */
600 #endif
601 };
602 
pci_physfn(struct pci_dev * dev)603 static inline struct pci_dev *pci_physfn(struct pci_dev *dev)
604 {
605 #ifdef CONFIG_PCI_IOV
606 	if (dev->is_virtfn)
607 		dev = dev->physfn;
608 #endif
609 	return dev;
610 }
611 
612 struct pci_dev *pci_alloc_dev(struct pci_bus *bus);
613 
614 #define	to_pci_dev(n) container_of(n, struct pci_dev, dev)
615 #define for_each_pci_dev(d) while ((d = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, d)) != NULL)
616 #define for_each_pci_dev_reverse(d) \
617 	while ((d = pci_get_device_reverse(PCI_ANY_ID, PCI_ANY_ID, d)) != NULL)
618 
pci_channel_offline(struct pci_dev * pdev)619 static inline int pci_channel_offline(struct pci_dev *pdev)
620 {
621 	return (pdev->error_state != pci_channel_io_normal);
622 }
623 
624 /*
625  * Currently in ACPI spec, for each PCI host bridge, PCI Segment
626  * Group number is limited to a 16-bit value, therefore (int)-1 is
627  * not a valid PCI domain number, and can be used as a sentinel
628  * value indicating ->domain_nr is not set by the driver (and
629  * CONFIG_PCI_DOMAINS_GENERIC=y archs will set it with
630  * pci_bus_find_domain_nr()).
631  */
632 #define PCI_DOMAIN_NR_NOT_SET (-1)
633 
634 struct pci_host_bridge {
635 	struct device	dev;
636 	struct pci_bus	*bus;		/* Root bus */
637 	struct pci_ops	*ops;
638 	struct pci_ops	*child_ops;
639 	void		*sysdata;
640 	int		busnr;
641 	int		domain_nr;
642 	struct list_head windows;	/* resource_entry */
643 	struct list_head dma_ranges;	/* dma ranges resource list */
644 	struct list_head ports;		/* Root Port list (pci_host_port) */
645 #ifdef CONFIG_PCI_IDE
646 	u16 nr_ide_streams; /* Max streams possibly active in @ide_stream_ida */
647 	struct ida ide_stream_ida;
648 	struct ida ide_stream_ids_ida; /* track unique ids per domain */
649 #endif
650 	u8 (*swizzle_irq)(struct pci_dev *, u8 *); /* Platform IRQ swizzler */
651 	int (*map_irq)(const struct pci_dev *, u8, u8);
652 	void (*release_fn)(struct pci_host_bridge *);
653 	int (*enable_device)(struct pci_host_bridge *bridge, struct pci_dev *dev);
654 	void (*disable_device)(struct pci_host_bridge *bridge, struct pci_dev *dev);
655 	int (*reset_root_port)(struct pci_host_bridge *bridge, struct pci_dev *dev);
656 	void		*release_data;
657 	unsigned int	ignore_reset_delay:1;	/* For entire hierarchy */
658 	unsigned int	no_ext_tags:1;		/* No Extended Tags */
659 	unsigned int	no_inc_mrrs:1;		/* No Increase MRRS */
660 	unsigned int	native_aer:1;		/* OS may use PCIe AER */
661 	unsigned int	native_pcie_hotplug:1;	/* OS may use PCIe hotplug */
662 	unsigned int	native_shpc_hotplug:1;	/* OS may use SHPC hotplug */
663 	unsigned int	native_pme:1;		/* OS may use PCIe PME */
664 	unsigned int	native_ltr:1;		/* OS may use PCIe LTR */
665 	unsigned int	native_dpc:1;		/* OS may use PCIe DPC */
666 	unsigned int	native_cxl_error:1;	/* OS may use CXL RAS/Events */
667 	unsigned int	preserve_config:1;	/* Preserve FW resource setup */
668 	unsigned int	size_windows:1;		/* Enable root bus sizing */
669 	unsigned int	msi_domain:1;		/* Bridge wants MSI domain */
670 	unsigned int	broken_l1ss_resume:1;	/* Resuming from L1SS during
671 						   system suspend is broken */
672 
673 	/* Resource alignment requirements */
674 	resource_size_t (*align_resource)(struct pci_dev *dev,
675 			const struct resource *res,
676 			resource_size_t start,
677 			resource_size_t size,
678 			resource_size_t align);
679 	unsigned long	private[] ____cacheline_aligned;
680 };
681 
682 #define	to_pci_host_bridge(n) container_of(n, struct pci_host_bridge, dev)
683 
pci_host_bridge_priv(struct pci_host_bridge * bridge)684 static inline void *pci_host_bridge_priv(struct pci_host_bridge *bridge)
685 {
686 	return (void *)bridge->private;
687 }
688 
pci_host_bridge_from_priv(void * priv)689 static inline struct pci_host_bridge *pci_host_bridge_from_priv(void *priv)
690 {
691 	return container_of(priv, struct pci_host_bridge, private);
692 }
693 
694 struct pci_host_bridge *pci_alloc_host_bridge(size_t priv);
695 struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
696 						   size_t priv);
697 void pci_free_host_bridge(struct pci_host_bridge *bridge);
698 struct device *pci_get_host_bridge_device(struct pci_dev *dev);
699 struct pci_host_bridge *pci_find_host_bridge(struct pci_bus *bus);
700 
701 void pci_set_host_bridge_release(struct pci_host_bridge *bridge,
702 				 void (*release_fn)(struct pci_host_bridge *),
703 				 void *release_data);
704 
705 int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge);
706 
707 #define PCI_REGION_FLAG_MASK	0x0fU	/* These bits of resource flags tell us the PCI region flags */
708 
709 struct pci_bus {
710 	struct list_head node;		/* Node in list of buses */
711 	struct pci_bus	*parent;	/* Parent bus this bridge is on */
712 	struct list_head children;	/* List of child buses */
713 	struct list_head devices;	/* List of devices on this bus */
714 	struct pci_dev	*self;		/* Bridge device as seen by parent */
715 	struct list_head slots;		/* List of slots on this bus;
716 					   protected by pci_slot_mutex */
717 	struct resource *resource[PCI_BRIDGE_RESOURCE_NUM];
718 	struct list_head resources;	/* Address space routed to this bus */
719 	struct resource busn_res;	/* Bus numbers routed to this bus */
720 
721 	struct pci_ops	*ops;		/* Configuration access functions */
722 	void		*sysdata;	/* Hook for sys-specific extension */
723 	struct proc_dir_entry *procdir;	/* Directory entry in /proc/bus/pci */
724 
725 	unsigned char	number;		/* Bus number */
726 	unsigned char	primary;	/* Number of primary bridge */
727 	unsigned char	max_bus_speed;	/* enum pci_bus_speed */
728 	unsigned char	cur_bus_speed;	/* enum pci_bus_speed */
729 #ifdef CONFIG_PCI_DOMAINS_GENERIC
730 	int		domain_nr;
731 #endif
732 
733 	char		name[48];
734 
735 	unsigned short	bridge_ctl;	/* Manage NO_ISA/FBB/et al behaviors */
736 	pci_bus_flags_t bus_flags;	/* Inherited by child buses */
737 	struct device		*bridge;
738 	struct device		dev;
739 	unsigned int		is_added:1;
740 	unsigned int		unsafe_warn:1;	/* warned about RW1C config write */
741 	unsigned int		flit_mode:1;	/* Link in Flit mode */
742 };
743 
744 #define to_pci_bus(n)	container_of(n, struct pci_bus, dev)
745 
pci_dev_id(struct pci_dev * dev)746 static inline u16 pci_dev_id(struct pci_dev *dev)
747 {
748 	return PCI_DEVID(dev->bus->number, dev->devfn);
749 }
750 
751 /*
752  * Returns true if the PCI bus is root (behind host-PCI bridge),
753  * false otherwise
754  *
755  * Some code assumes that "bus->self == NULL" means that bus is a root bus.
756  * This is incorrect because "virtual" buses added for SR-IOV (via
757  * virtfn_add_bus()) have "bus->self == NULL" but are not root buses.
758  */
pci_is_root_bus(struct pci_bus * pbus)759 static inline bool pci_is_root_bus(struct pci_bus *pbus)
760 {
761 	return !(pbus->parent);
762 }
763 
764 /**
765  * pci_is_bridge - check if the PCI device is a bridge
766  * @dev: PCI device
767  *
768  * Return true if the PCI device is bridge whether it has subordinate
769  * or not.
770  */
pci_is_bridge(struct pci_dev * dev)771 static inline bool pci_is_bridge(struct pci_dev *dev)
772 {
773 	return dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
774 		dev->hdr_type == PCI_HEADER_TYPE_CARDBUS;
775 }
776 
777 /**
778  * pci_is_vga - check if the PCI device is a VGA device
779  * @pdev: PCI device
780  *
781  * The PCI Code and ID Assignment spec, r1.15, secs 1.4 and 1.1, define
782  * VGA Base Class and Sub-Classes:
783  *
784  *   03 00  PCI_CLASS_DISPLAY_VGA      VGA-compatible or 8514-compatible
785  *   00 01  PCI_CLASS_NOT_DEFINED_VGA  VGA-compatible (before Class Code)
786  *
787  * Return true if the PCI device is a VGA device and uses the legacy VGA
788  * resources ([mem 0xa0000-0xbffff], [io 0x3b0-0x3bb], [io 0x3c0-0x3df] and
789  * aliases).
790  */
pci_is_vga(struct pci_dev * pdev)791 static inline bool pci_is_vga(struct pci_dev *pdev)
792 {
793 	if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
794 		return true;
795 
796 	if ((pdev->class >> 8) == PCI_CLASS_NOT_DEFINED_VGA)
797 		return true;
798 
799 	return false;
800 }
801 
802 /**
803  * pci_is_display - check if the PCI device is a display controller
804  * @pdev: PCI device
805  *
806  * Determine whether the given PCI device corresponds to a display
807  * controller. Display controllers are typically used for graphical output
808  * and are identified based on their class code.
809  *
810  * Return: true if the PCI device is a display controller, false otherwise.
811  */
pci_is_display(struct pci_dev * pdev)812 static inline bool pci_is_display(struct pci_dev *pdev)
813 {
814 	return (pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY;
815 }
816 
pcie_is_cxl(struct pci_dev * pci_dev)817 static inline bool pcie_is_cxl(struct pci_dev *pci_dev)
818 {
819 	return pci_dev->is_cxl;
820 }
821 
822 #define for_each_pci_bridge(dev, bus)				\
823 	list_for_each_entry(dev, &bus->devices, bus_list)	\
824 		if (!pci_is_bridge(dev)) {} else
825 
pci_upstream_bridge(struct pci_dev * dev)826 static inline struct pci_dev *pci_upstream_bridge(struct pci_dev *dev)
827 {
828 	dev = pci_physfn(dev);
829 	if (pci_is_root_bus(dev->bus))
830 		return NULL;
831 
832 	return dev->bus->self;
833 }
834 
835 #ifdef CONFIG_PCI_MSI
pci_dev_msi_enabled(struct pci_dev * pci_dev)836 static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev)
837 {
838 	return pci_dev->msi_enabled || pci_dev->msix_enabled;
839 }
840 #else
pci_dev_msi_enabled(struct pci_dev * pci_dev)841 static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev) { return false; }
842 #endif
843 
844 /* Error values that may be returned by PCI functions */
845 #define PCIBIOS_SUCCESSFUL		0x00
846 #define PCIBIOS_FUNC_NOT_SUPPORTED	0x81
847 #define PCIBIOS_BAD_VENDOR_ID		0x83
848 #define PCIBIOS_DEVICE_NOT_FOUND	0x86
849 #define PCIBIOS_BAD_REGISTER_NUMBER	0x87
850 #define PCIBIOS_SET_FAILED		0x88
851 #define PCIBIOS_BUFFER_TOO_SMALL	0x89
852 
853 /* Translate above to generic errno for passing back through non-PCI code */
pcibios_err_to_errno(int err)854 static inline int pcibios_err_to_errno(int err)
855 {
856 	if (err <= PCIBIOS_SUCCESSFUL)
857 		return err; /* Assume already errno */
858 
859 	switch (err) {
860 	case PCIBIOS_FUNC_NOT_SUPPORTED:
861 		return -ENOENT;
862 	case PCIBIOS_BAD_VENDOR_ID:
863 		return -ENOTTY;
864 	case PCIBIOS_DEVICE_NOT_FOUND:
865 		return -ENODEV;
866 	case PCIBIOS_BAD_REGISTER_NUMBER:
867 		return -EFAULT;
868 	case PCIBIOS_SET_FAILED:
869 		return -EIO;
870 	case PCIBIOS_BUFFER_TOO_SMALL:
871 		return -ENOSPC;
872 	}
873 
874 	return -ERANGE;
875 }
876 
877 /* Low-level architecture-dependent routines */
878 
879 struct pci_ops {
880 	int (*add_bus)(struct pci_bus *bus);
881 	void (*remove_bus)(struct pci_bus *bus);
882 	void __iomem *(*map_bus)(struct pci_bus *bus, unsigned int devfn, int where);
883 	int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
884 	int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
885 };
886 
887 /*
888  * ACPI needs to be able to access PCI config space before we've done a
889  * PCI bus scan and created pci_bus structures.
890  */
891 int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
892 		 int reg, int len, u32 *val);
893 int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
894 		  int reg, int len, u32 val);
895 
896 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
897 typedef u64 pci_bus_addr_t;
898 #else
899 typedef u32 pci_bus_addr_t;
900 #endif
901 
902 struct pci_bus_region {
903 	pci_bus_addr_t	start;
904 	pci_bus_addr_t	end;
905 };
906 
pci_bus_region_size(const struct pci_bus_region * region)907 static inline pci_bus_addr_t pci_bus_region_size(const struct pci_bus_region *region)
908 {
909 	return region->end - region->start + 1;
910 }
911 
912 struct pci_dynids {
913 	spinlock_t		lock;	/* Protects list, index */
914 	struct list_head	list;	/* For IDs added at runtime */
915 };
916 
917 
918 /*
919  * PCI Error Recovery System (PCI-ERS).  If a PCI device driver provides
920  * a set of callbacks in struct pci_error_handlers, that device driver
921  * will be notified of PCI bus errors, and will be driven to recovery
922  * when an error occurs.
923  */
924 
925 typedef unsigned int __bitwise pci_ers_result_t;
926 
927 enum pci_ers_result {
928 	/* No result/none/not supported in device driver */
929 	PCI_ERS_RESULT_NONE = (__force pci_ers_result_t) 1,
930 
931 	/* Device driver can recover without slot reset */
932 	PCI_ERS_RESULT_CAN_RECOVER = (__force pci_ers_result_t) 2,
933 
934 	/* Device driver wants slot to be reset */
935 	PCI_ERS_RESULT_NEED_RESET = (__force pci_ers_result_t) 3,
936 
937 	/* Device has completely failed, is unrecoverable */
938 	PCI_ERS_RESULT_DISCONNECT = (__force pci_ers_result_t) 4,
939 
940 	/* Device driver is fully recovered and operational */
941 	PCI_ERS_RESULT_RECOVERED = (__force pci_ers_result_t) 5,
942 
943 	/* No AER capabilities registered for the driver */
944 	PCI_ERS_RESULT_NO_AER_DRIVER = (__force pci_ers_result_t) 6,
945 };
946 
947 /* PCI bus error event callbacks */
948 struct pci_error_handlers {
949 	/* PCI bus error detected on this device */
950 	pci_ers_result_t (*error_detected)(struct pci_dev *dev,
951 					   pci_channel_state_t error);
952 
953 	/* MMIO has been re-enabled, but not DMA */
954 	pci_ers_result_t (*mmio_enabled)(struct pci_dev *dev);
955 
956 	/* PCI slot has been reset */
957 	pci_ers_result_t (*slot_reset)(struct pci_dev *dev);
958 
959 	/* PCI function reset prepare or completed */
960 	void (*reset_prepare)(struct pci_dev *dev);
961 	void (*reset_done)(struct pci_dev *dev);
962 
963 	/* Device driver may resume normal operations */
964 	void (*resume)(struct pci_dev *dev);
965 
966 	/* Allow device driver to record more details of a correctable error */
967 	void (*cor_error_detected)(struct pci_dev *dev);
968 };
969 
970 
971 struct module;
972 
973 /**
974  * struct pci_driver - PCI driver structure
975  * @name:	Driver name.
976  * @id_table:	Pointer to table of device IDs the driver is
977  *		interested in.  Most drivers should export this
978  *		table using MODULE_DEVICE_TABLE(pci,...).
979  * @probe:	This probing function gets called (during execution
980  *		of pci_register_driver() for already existing
981  *		devices or later if a new device gets inserted) for
982  *		all PCI devices which match the ID table and are not
983  *		"owned" by the other drivers yet. This function gets
984  *		passed a "struct pci_dev \*" for each device whose
985  *		entry in the ID table matches the device. The probe
986  *		function returns zero when the driver chooses to
987  *		take "ownership" of the device or an error code
988  *		(negative number) otherwise.
989  *		The pci_device_id parameter is only valid during probe.
990  *		The probe function always gets called from process
991  *		context, so it can sleep.
992  * @remove:	The remove() function gets called whenever a device
993  *		being handled by this driver is removed (either during
994  *		deregistration of the driver or when it's manually
995  *		pulled out of a hot-pluggable slot).
996  *		The remove function always gets called from process
997  *		context, so it can sleep.
998  * @suspend:	Put device into low power state.
999  * @resume:	Wake device from low power state.
1000  *		(Please see Documentation/power/pci.rst for descriptions
1001  *		of PCI Power Management and the related functions.)
1002  * @shutdown:	Hook into reboot_notifier_list (kernel/sys.c).
1003  *		Intended to stop any idling DMA operations.
1004  *		Useful for enabling wake-on-lan (NIC) or changing
1005  *		the power state of a device before reboot.
1006  *		e.g. drivers/net/e100.c.
1007  * @sriov_configure: Optional driver callback to allow configuration of
1008  *		number of VFs to enable via sysfs "sriov_numvfs" file.
1009  * @sriov_set_msix_vec_count: PF Driver callback to change number of MSI-X
1010  *              vectors on a VF. Triggered via sysfs "sriov_vf_msix_count".
1011  *              This will change MSI-X Table Size in the VF Message Control
1012  *              registers.
1013  * @sriov_get_vf_total_msix: PF driver callback to get the total number of
1014  *              MSI-X vectors available for distribution to the VFs.
1015  * @err_handler: See Documentation/PCI/pci-error-recovery.rst
1016  * @groups:	Sysfs attribute groups.
1017  * @dev_groups: Attributes attached to the device that will be
1018  *              created once it is bound to the driver.
1019  * @driver:	Driver model structure.
1020  * @dynids:	List of dynamically added device IDs.
1021  * @driver_managed_dma: Device driver doesn't use kernel DMA API for DMA.
1022  *		For most device drivers, no need to care about this flag
1023  *		as long as all DMAs are handled through the kernel DMA API.
1024  *		For some special ones, for example VFIO drivers, they know
1025  *		how to manage the DMA themselves and set this flag so that
1026  *		the IOMMU layer will allow them to setup and manage their
1027  *		own I/O address space.
1028  */
1029 struct pci_driver {
1030 	const char		*name;
1031 	const struct pci_device_id *id_table;	/* Must be non-NULL for probe to be called */
1032 	int  (*probe)(struct pci_dev *dev, const struct pci_device_id *id);	/* New device inserted */
1033 	void (*remove)(struct pci_dev *dev);	/* Device removed (NULL if not a hot-plug capable driver) */
1034 	int  (*suspend)(struct pci_dev *dev, pm_message_t state);	/* Device suspended */
1035 	int  (*resume)(struct pci_dev *dev);	/* Device woken up */
1036 	void (*shutdown)(struct pci_dev *dev);
1037 	int  (*sriov_configure)(struct pci_dev *dev, int num_vfs); /* On PF */
1038 	int  (*sriov_set_msix_vec_count)(struct pci_dev *vf, int msix_vec_count); /* On PF */
1039 	u32  (*sriov_get_vf_total_msix)(struct pci_dev *pf);
1040 	const struct pci_error_handlers *err_handler;
1041 	const struct attribute_group **groups;
1042 	const struct attribute_group **dev_groups;
1043 	struct device_driver	driver;
1044 	struct pci_dynids	dynids;
1045 	bool driver_managed_dma;
1046 };
1047 
1048 #define to_pci_driver(__drv)	\
1049 	( __drv ? container_of_const(__drv, struct pci_driver, driver) : NULL )
1050 
1051 /**
1052  * PCI_DEVICE - macro used to describe a specific PCI device
1053  * @vend: the 16 bit PCI Vendor ID
1054  * @dev: the 16 bit PCI Device ID
1055  *
1056  * This macro is used to create a struct pci_device_id that matches a
1057  * specific device.  The subvendor and subdevice fields will be set to
1058  * PCI_ANY_ID.
1059  */
1060 #define PCI_DEVICE(vend,dev) \
1061 	.vendor = (vend), .device = (dev), \
1062 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1063 
1064 /**
1065  * PCI_DEVICE_DRIVER_OVERRIDE - macro used to describe a PCI device with
1066  *                              override_only flags.
1067  * @vend: the 16 bit PCI Vendor ID
1068  * @dev: the 16 bit PCI Device ID
1069  * @driver_override: the 32 bit PCI Device override_only
1070  *
1071  * This macro is used to create a struct pci_device_id that matches only a
1072  * driver_override device. The subvendor and subdevice fields will be set to
1073  * PCI_ANY_ID.
1074  */
1075 #define PCI_DEVICE_DRIVER_OVERRIDE(vend, dev, driver_override) \
1076 	.vendor = (vend), .device = (dev), .subvendor = PCI_ANY_ID, \
1077 	.subdevice = PCI_ANY_ID, .override_only = (driver_override)
1078 
1079 /**
1080  * PCI_DRIVER_OVERRIDE_DEVICE_VFIO - macro used to describe a VFIO
1081  *                                   "driver_override" PCI device.
1082  * @vend: the 16 bit PCI Vendor ID
1083  * @dev: the 16 bit PCI Device ID
1084  *
1085  * This macro is used to create a struct pci_device_id that matches a
1086  * specific device. The subvendor and subdevice fields will be set to
1087  * PCI_ANY_ID and the driver_override will be set to
1088  * PCI_ID_F_VFIO_DRIVER_OVERRIDE.
1089  */
1090 #define PCI_DRIVER_OVERRIDE_DEVICE_VFIO(vend, dev) \
1091 	PCI_DEVICE_DRIVER_OVERRIDE(vend, dev, PCI_ID_F_VFIO_DRIVER_OVERRIDE)
1092 
1093 /**
1094  * PCI_DEVICE_SUB - macro used to describe a specific PCI device with subsystem
1095  * @vend: the 16 bit PCI Vendor ID
1096  * @dev: the 16 bit PCI Device ID
1097  * @subvend: the 16 bit PCI Subvendor ID
1098  * @subdev: the 16 bit PCI Subdevice ID
1099  *
1100  * This macro is used to create a struct pci_device_id that matches a
1101  * specific device with subsystem information.
1102  */
1103 #define PCI_DEVICE_SUB(vend, dev, subvend, subdev) \
1104 	.vendor = (vend), .device = (dev), \
1105 	.subvendor = (subvend), .subdevice = (subdev)
1106 
1107 /**
1108  * PCI_DEVICE_CLASS - macro used to describe a specific PCI device class
1109  * @dev_class: the class, subclass, prog-if triple for this device
1110  * @dev_class_mask: the class mask for this device
1111  *
1112  * This macro is used to create a struct pci_device_id that matches a
1113  * specific PCI class.  The vendor, device, subvendor, and subdevice
1114  * fields will be set to PCI_ANY_ID.
1115  */
1116 #define PCI_DEVICE_CLASS(dev_class,dev_class_mask) \
1117 	.class = (dev_class), .class_mask = (dev_class_mask), \
1118 	.vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
1119 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1120 
1121 /**
1122  * PCI_VDEVICE - macro used to describe a specific PCI device in short form
1123  * @vend: the vendor name
1124  * @dev: the 16 bit PCI Device ID
1125  *
1126  * This macro is used to create a struct pci_device_id that matches a
1127  * specific PCI device.  The subvendor, and subdevice fields will be set
1128  * to PCI_ANY_ID. The macro allows the next field to follow as the device
1129  * private data.
1130  */
1131 #define PCI_VDEVICE(vend, dev) \
1132 	.vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1133 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0
1134 
1135 /**
1136  * PCI_VDEVICE_SUB - describe a specific PCI device/subdevice in a short form
1137  * @vend: the vendor name
1138  * @dev: the 16 bit PCI Device ID
1139  * @subvend: the 16 bit PCI Subvendor ID
1140  * @subdev: the 16 bit PCI Subdevice ID
1141  *
1142  * Generate the pci_device_id struct layout for the specific PCI
1143  * device/subdevice. Private data may follow the output.
1144  */
1145 #define PCI_VDEVICE_SUB(vend, dev, subvend, subdev) \
1146 	.vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1147 	.subvendor = (subvend), .subdevice = (subdev), 0, 0
1148 
1149 /**
1150  * PCI_DEVICE_DATA - macro used to describe a specific PCI device in very short form
1151  * @vend: the vendor name (without PCI_VENDOR_ID_ prefix)
1152  * @dev: the device name (without PCI_DEVICE_ID_<vend>_ prefix)
1153  * @data: the driver data to be filled
1154  *
1155  * This macro is used to create a struct pci_device_id that matches a
1156  * specific PCI device.  The subvendor, and subdevice fields will be set
1157  * to PCI_ANY_ID.
1158  */
1159 #define PCI_DEVICE_DATA(vend, dev, data) \
1160 	.vendor = PCI_VENDOR_ID_##vend, .device = PCI_DEVICE_ID_##vend##_##dev, \
1161 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0, \
1162 	.driver_data = (kernel_ulong_t)(data)
1163 
1164 enum {
1165 	PCI_REASSIGN_ALL_RSRC	= 0x00000001,	/* Ignore firmware setup */
1166 	PCI_REASSIGN_ALL_BUS	= 0x00000002,	/* Reassign all bus numbers */
1167 	PCI_PROBE_ONLY		= 0x00000004,	/* Use existing setup */
1168 	PCI_CAN_SKIP_ISA_ALIGN	= 0x00000008,	/* Don't do ISA alignment */
1169 	PCI_ENABLE_PROC_DOMAINS	= 0x00000010,	/* Enable domains in /proc */
1170 	PCI_COMPAT_DOMAIN_0	= 0x00000020,	/* ... except domain 0 */
1171 	PCI_SCAN_ALL_PCIE_DEVS	= 0x00000040,	/* Scan all, not just dev 0 */
1172 };
1173 
1174 #define PCI_IRQ_INTX		(1 << 0) /* Allow INTx interrupts */
1175 #define PCI_IRQ_MSI		(1 << 1) /* Allow MSI interrupts */
1176 #define PCI_IRQ_MSIX		(1 << 2) /* Allow MSI-X interrupts */
1177 #define PCI_IRQ_AFFINITY	(1 << 3) /* Auto-assign affinity */
1178 
1179 /* These external functions are only available when PCI support is enabled */
1180 #ifdef CONFIG_PCI
1181 
1182 /* PCI legacy I/O port and memory address space sizes. */
1183 #define PCI_LEGACY_IO_SIZE	(SZ_64K - 1)
1184 #define PCI_LEGACY_MEM_SIZE	SZ_1M
1185 
1186 extern unsigned int pci_flags;
1187 
pci_set_flags(int flags)1188 static inline void pci_set_flags(int flags) { pci_flags = flags; }
pci_add_flags(int flags)1189 static inline void pci_add_flags(int flags) { pci_flags |= flags; }
pci_clear_flags(int flags)1190 static inline void pci_clear_flags(int flags) { pci_flags &= ~flags; }
pci_has_flag(int flag)1191 static inline int pci_has_flag(int flag) { return pci_flags & flag; }
1192 
1193 void pcie_bus_configure_settings(struct pci_bus *bus);
1194 
1195 enum pcie_bus_config_types {
1196 	PCIE_BUS_TUNE_OFF,	/* Don't touch MPS at all */
1197 	PCIE_BUS_DEFAULT,	/* Ensure MPS matches upstream bridge */
1198 	PCIE_BUS_SAFE,		/* Use largest MPS boot-time devices support */
1199 	PCIE_BUS_PERFORMANCE,	/* Use MPS and MRRS for best performance */
1200 	PCIE_BUS_PEER2PEER,	/* Set MPS = 128 for all devices */
1201 };
1202 
1203 extern enum pcie_bus_config_types pcie_bus_config;
1204 
1205 extern const struct bus_type pci_bus_type;
1206 
1207 /* Do NOT directly access these two variables, unless you are arch-specific PCI
1208  * code, or PCI core code. */
1209 extern struct list_head pci_root_buses;	/* List of all known PCI buses */
1210 
1211 void pcibios_resource_survey_bus(struct pci_bus *bus);
1212 void pcibios_bus_add_device(struct pci_dev *pdev);
1213 void pcibios_add_bus(struct pci_bus *bus);
1214 void pcibios_remove_bus(struct pci_bus *bus);
1215 void pcibios_fixup_bus(struct pci_bus *);
1216 int __must_check pcibios_enable_device(struct pci_dev *, int mask);
1217 /* Architecture-specific versions may override this (weak) */
1218 char *pcibios_setup(char *str);
1219 
1220 /* Used only when drivers/pci/setup.c is used */
1221 resource_size_t pcibios_align_resource(void *data, const struct resource *res,
1222 				       const struct resource *empty_res,
1223 				       resource_size_t size,
1224 				       resource_size_t align);
1225 resource_size_t pci_align_resource(struct pci_dev *dev,
1226 				   const struct resource *res,
1227 				   const struct resource *empty_res,
1228 				   resource_size_t size,
1229 				   resource_size_t align);
1230 
1231 /* Generic PCI functions used internally */
1232 
1233 void pcibios_resource_to_bus(struct pci_bus *bus, struct pci_bus_region *region,
1234 			     struct resource *res);
1235 void pcibios_bus_to_resource(struct pci_bus *bus, struct resource *res,
1236 			     struct pci_bus_region *region);
1237 void pcibios_scan_specific_bus(int busn);
1238 struct pci_bus *pci_find_bus(int domain, int busnr);
1239 void pci_bus_add_devices(const struct pci_bus *bus);
1240 struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops, void *sysdata);
1241 struct pci_bus *pci_create_root_bus(struct device *parent, int bus,
1242 				    struct pci_ops *ops, void *sysdata,
1243 				    struct list_head *resources);
1244 int pci_host_probe(struct pci_host_bridge *bridge);
1245 void pci_probe_flush_workqueue(void);
1246 int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int busmax);
1247 int pci_bus_update_busn_res_end(struct pci_bus *b, int busmax);
1248 void pci_bus_release_busn_res(struct pci_bus *b);
1249 struct pci_bus *pci_scan_root_bus(struct device *parent, int bus,
1250 				  struct pci_ops *ops, void *sysdata,
1251 				  struct list_head *resources);
1252 int pci_scan_root_bus_bridge(struct pci_host_bridge *bridge);
1253 struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev,
1254 				int busnr);
1255 struct pci_slot *pci_create_slot(struct pci_bus *parent, int slot_nr,
1256 				 const char *name,
1257 				 struct hotplug_slot *hotplug);
1258 void pci_destroy_slot(struct pci_slot *slot);
1259 #ifdef CONFIG_SYSFS
1260 void pci_dev_assign_slot(struct pci_dev *dev);
1261 #else
pci_dev_assign_slot(struct pci_dev * dev)1262 static inline void pci_dev_assign_slot(struct pci_dev *dev) { }
1263 #endif
1264 int pci_scan_slot(struct pci_bus *bus, int devfn);
1265 struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn);
1266 void pci_device_add(struct pci_dev *dev, struct pci_bus *bus);
1267 unsigned int pci_scan_child_bus(struct pci_bus *bus);
1268 void pci_bus_add_device(struct pci_dev *dev);
1269 void pci_read_bridge_bases(struct pci_bus *child);
1270 struct resource *pci_find_parent_resource(const struct pci_dev *dev,
1271 					  struct resource *res);
1272 u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin);
1273 int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge);
1274 u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp);
1275 struct pci_dev *pci_dev_get(struct pci_dev *dev);
1276 void pci_dev_put(struct pci_dev *dev);
1277 DEFINE_FREE(pci_dev_put, struct pci_dev *, if (_T) pci_dev_put(_T))
1278 void pci_remove_bus(struct pci_bus *b);
1279 void pci_stop_and_remove_bus_device(struct pci_dev *dev);
1280 void pci_stop_and_remove_bus_device_locked(struct pci_dev *dev);
1281 void pci_stop_root_bus(struct pci_bus *bus);
1282 void pci_remove_root_bus(struct pci_bus *bus);
1283 #ifdef CONFIG_CARDBUS
1284 void pci_setup_cardbus_bridge(struct pci_bus *bus);
1285 #else
pci_setup_cardbus_bridge(struct pci_bus * bus)1286 static inline void pci_setup_cardbus_bridge(struct pci_bus *bus) { }
1287 #endif
1288 void pcibios_setup_bridge(struct pci_bus *bus, unsigned long type);
1289 void pci_sort_breadthfirst(void);
1290 #define dev_is_pci(d) ((d)->bus == &pci_bus_type)
1291 #define dev_is_pf(d) ((dev_is_pci(d) ? to_pci_dev(d)->is_physfn : false))
1292 
1293 /* Generic PCI functions exported to card drivers */
1294 
1295 u8 pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap);
1296 u8 pci_find_capability(struct pci_dev *dev, int cap);
1297 u8 pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap);
1298 u8 pci_find_ht_capability(struct pci_dev *dev, int ht_cap);
1299 u8 pci_find_next_ht_capability(struct pci_dev *dev, u8 pos, int ht_cap);
1300 u16 pci_find_ext_capability(struct pci_dev *dev, int cap);
1301 u16 pci_find_next_ext_capability(struct pci_dev *dev, u16 pos, int cap);
1302 struct pci_bus *pci_find_next_bus(const struct pci_bus *from);
1303 u16 pci_find_vsec_capability(struct pci_dev *dev, u16 vendor, int cap);
1304 u16 pci_find_dvsec_capability(struct pci_dev *dev, u16 vendor, u16 dvsec);
1305 
1306 u64 pci_get_dsn(struct pci_dev *dev);
1307 
1308 struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device,
1309 			       struct pci_dev *from);
1310 struct pci_dev *pci_get_device_reverse(unsigned int vendor, unsigned int device,
1311 				       struct pci_dev *from);
1312 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device,
1313 			       unsigned int ss_vendor, unsigned int ss_device,
1314 			       struct pci_dev *from);
1315 struct pci_dev *pci_get_slot(struct pci_bus *bus, unsigned int devfn);
1316 struct pci_dev *pci_get_domain_bus_and_slot(int domain, unsigned int bus,
1317 					    unsigned int devfn);
1318 struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from);
1319 struct pci_dev *pci_get_base_class(unsigned int class, struct pci_dev *from);
1320 
1321 int pci_dev_present(const struct pci_device_id *ids);
1322 
1323 int pci_bus_read_config_byte(struct pci_bus *bus, unsigned int devfn,
1324 			     int where, u8 *val);
1325 int pci_bus_read_config_word(struct pci_bus *bus, unsigned int devfn,
1326 			     int where, u16 *val);
1327 int pci_bus_read_config_dword(struct pci_bus *bus, unsigned int devfn,
1328 			      int where, u32 *val);
1329 int pci_bus_write_config_byte(struct pci_bus *bus, unsigned int devfn,
1330 			      int where, u8 val);
1331 int pci_bus_write_config_word(struct pci_bus *bus, unsigned int devfn,
1332 			      int where, u16 val);
1333 int pci_bus_write_config_dword(struct pci_bus *bus, unsigned int devfn,
1334 			       int where, u32 val);
1335 
1336 int pci_generic_config_read(struct pci_bus *bus, unsigned int devfn,
1337 			    int where, int size, u32 *val);
1338 int pci_generic_config_write(struct pci_bus *bus, unsigned int devfn,
1339 			    int where, int size, u32 val);
1340 int pci_generic_config_read32(struct pci_bus *bus, unsigned int devfn,
1341 			      int where, int size, u32 *val);
1342 int pci_generic_config_write32(struct pci_bus *bus, unsigned int devfn,
1343 			       int where, int size, u32 val);
1344 
1345 struct pci_ops *pci_bus_set_ops(struct pci_bus *bus, struct pci_ops *ops);
1346 
1347 int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val);
1348 int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val);
1349 int pci_read_config_dword(const struct pci_dev *dev, int where, u32 *val);
1350 int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val);
1351 int pci_write_config_word(const struct pci_dev *dev, int where, u16 val);
1352 int pci_write_config_dword(const struct pci_dev *dev, int where, u32 val);
1353 void pci_clear_and_set_config_dword(const struct pci_dev *dev, int pos,
1354 				    u32 clear, u32 set);
1355 
1356 int pcie_capability_read_word(struct pci_dev *dev, int pos, u16 *val);
1357 int pcie_capability_read_dword(struct pci_dev *dev, int pos, u32 *val);
1358 int pcie_capability_write_word(struct pci_dev *dev, int pos, u16 val);
1359 int pcie_capability_write_dword(struct pci_dev *dev, int pos, u32 val);
1360 int pcie_capability_clear_and_set_word_unlocked(struct pci_dev *dev, int pos,
1361 						u16 clear, u16 set);
1362 int pcie_capability_clear_and_set_word_locked(struct pci_dev *dev, int pos,
1363 					      u16 clear, u16 set);
1364 int pcie_capability_clear_and_set_dword(struct pci_dev *dev, int pos,
1365 					u32 clear, u32 set);
1366 
1367 /**
1368  * pcie_capability_clear_and_set_word - RMW accessor for PCI Express Capability Registers
1369  * @dev:	PCI device structure of the PCI Express device
1370  * @pos:	PCI Express Capability Register
1371  * @clear:	Clear bitmask
1372  * @set:	Set bitmask
1373  *
1374  * Perform a Read-Modify-Write (RMW) operation using @clear and @set
1375  * bitmasks on PCI Express Capability Register at @pos. Certain PCI Express
1376  * Capability Registers are accessed concurrently in RMW fashion, hence
1377  * require locking which is handled transparently to the caller.
1378  */
pcie_capability_clear_and_set_word(struct pci_dev * dev,int pos,u16 clear,u16 set)1379 static inline int pcie_capability_clear_and_set_word(struct pci_dev *dev,
1380 						     int pos,
1381 						     u16 clear, u16 set)
1382 {
1383 	switch (pos) {
1384 	case PCI_EXP_LNKCTL:
1385 	case PCI_EXP_LNKCTL2:
1386 	case PCI_EXP_RTCTL:
1387 		return pcie_capability_clear_and_set_word_locked(dev, pos,
1388 								 clear, set);
1389 	default:
1390 		return pcie_capability_clear_and_set_word_unlocked(dev, pos,
1391 								   clear, set);
1392 	}
1393 }
1394 
pcie_capability_set_word(struct pci_dev * dev,int pos,u16 set)1395 static inline int pcie_capability_set_word(struct pci_dev *dev, int pos,
1396 					   u16 set)
1397 {
1398 	return pcie_capability_clear_and_set_word(dev, pos, 0, set);
1399 }
1400 
pcie_capability_set_dword(struct pci_dev * dev,int pos,u32 set)1401 static inline int pcie_capability_set_dword(struct pci_dev *dev, int pos,
1402 					    u32 set)
1403 {
1404 	return pcie_capability_clear_and_set_dword(dev, pos, 0, set);
1405 }
1406 
pcie_capability_clear_word(struct pci_dev * dev,int pos,u16 clear)1407 static inline int pcie_capability_clear_word(struct pci_dev *dev, int pos,
1408 					     u16 clear)
1409 {
1410 	return pcie_capability_clear_and_set_word(dev, pos, clear, 0);
1411 }
1412 
pcie_capability_clear_dword(struct pci_dev * dev,int pos,u32 clear)1413 static inline int pcie_capability_clear_dword(struct pci_dev *dev, int pos,
1414 					      u32 clear)
1415 {
1416 	return pcie_capability_clear_and_set_dword(dev, pos, clear, 0);
1417 }
1418 
1419 /* User-space driven config access */
1420 int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val);
1421 int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val);
1422 int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val);
1423 int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val);
1424 int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val);
1425 int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val);
1426 
1427 int __must_check pci_enable_device(struct pci_dev *dev);
1428 int __must_check pci_enable_device_mem(struct pci_dev *dev);
1429 int __must_check pci_reenable_device(struct pci_dev *);
1430 int __must_check pcim_enable_device(struct pci_dev *pdev);
1431 void pcim_pin_device(struct pci_dev *pdev);
1432 
pci_intx_mask_supported(struct pci_dev * pdev)1433 static inline bool pci_intx_mask_supported(struct pci_dev *pdev)
1434 {
1435 	/*
1436 	 * INTx masking is supported if PCI_COMMAND_INTX_DISABLE is
1437 	 * writable and no quirk has marked the feature broken.
1438 	 */
1439 	return !pdev->broken_intx_masking;
1440 }
1441 
pci_is_enabled(struct pci_dev * pdev)1442 static inline int pci_is_enabled(struct pci_dev *pdev)
1443 {
1444 	return (atomic_read(&pdev->enable_cnt) > 0);
1445 }
1446 
pci_is_managed(struct pci_dev * pdev)1447 static inline int pci_is_managed(struct pci_dev *pdev)
1448 {
1449 	return pdev->is_managed;
1450 }
1451 
1452 void pci_disable_device(struct pci_dev *dev);
1453 
1454 extern unsigned int pcibios_max_latency;
1455 void pci_set_master(struct pci_dev *dev);
1456 void pci_clear_master(struct pci_dev *dev);
1457 
1458 int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state);
1459 int pci_set_cacheline_size(struct pci_dev *dev);
1460 int __must_check pci_set_mwi(struct pci_dev *dev);
1461 int __must_check pcim_set_mwi(struct pci_dev *dev);
1462 int pci_try_set_mwi(struct pci_dev *dev);
1463 void pci_clear_mwi(struct pci_dev *dev);
1464 void pci_disable_parity(struct pci_dev *dev);
1465 void pci_intx(struct pci_dev *dev, int enable);
1466 bool pci_check_and_mask_intx(struct pci_dev *dev);
1467 bool pci_check_and_unmask_intx(struct pci_dev *dev);
1468 int pci_wait_for_pending(struct pci_dev *dev, int pos, u16 mask);
1469 int pci_wait_for_pending_transaction(struct pci_dev *dev);
1470 int pcix_get_max_mmrbc(struct pci_dev *dev);
1471 int pcix_get_mmrbc(struct pci_dev *dev);
1472 int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc);
1473 int pcie_get_readrq(struct pci_dev *dev);
1474 int pcie_set_readrq(struct pci_dev *dev, int rq);
1475 int pcie_get_mps(struct pci_dev *dev);
1476 int pcie_set_mps(struct pci_dev *dev, int mps);
1477 u32 pcie_bandwidth_available(struct pci_dev *dev, struct pci_dev **limiting_dev,
1478 			     enum pci_bus_speed *speed,
1479 			     enum pcie_link_width *width);
1480 int pcie_link_speed_mbps(struct pci_dev *pdev);
1481 void pcie_print_link_status(struct pci_dev *dev);
1482 int pcie_reset_flr(struct pci_dev *dev, bool probe);
1483 int pcie_flr(struct pci_dev *dev);
1484 int __pci_reset_function_locked(struct pci_dev *dev);
1485 int pci_reset_function(struct pci_dev *dev);
1486 int pci_reset_function_locked(struct pci_dev *dev);
1487 int pci_try_reset_function(struct pci_dev *dev);
1488 int pci_probe_reset_slot(struct pci_slot *slot);
1489 int pci_probe_reset_bus(struct pci_bus *bus);
1490 int pci_reset_bus(struct pci_dev *dev);
1491 void pci_reset_secondary_bus(struct pci_dev *dev);
1492 void pcibios_reset_secondary_bus(struct pci_dev *dev);
1493 void pci_update_resource(struct pci_dev *dev, int resno);
1494 int __must_check pci_assign_resource(struct pci_dev *dev, int i);
1495 int pci_release_resource(struct pci_dev *dev, int resno);
1496 
1497 /* Resizable BAR related routines */
1498 int pci_rebar_bytes_to_size(u64 bytes);
1499 resource_size_t pci_rebar_size_to_bytes(int size);
1500 u64 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar);
1501 bool pci_rebar_size_supported(struct pci_dev *pdev, int bar, int size);
1502 int pci_rebar_get_max_size(struct pci_dev *pdev, int bar);
1503 int __must_check pci_resize_resource(struct pci_dev *dev, int i, int size,
1504 				     int exclude_bars);
1505 
1506 int pci_select_bars(struct pci_dev *dev, unsigned long flags);
1507 bool pci_device_is_present(struct pci_dev *pdev);
1508 void pci_ignore_hotplug(struct pci_dev *dev);
1509 struct pci_dev *pci_real_dma_dev(struct pci_dev *dev);
1510 int pci_status_get_and_clear_errors(struct pci_dev *pdev);
1511 
1512 int __printf(6, 7) pci_request_irq(struct pci_dev *dev, unsigned int nr,
1513 		irq_handler_t handler, irq_handler_t thread_fn, void *dev_id,
1514 		const char *fmt, ...);
1515 void pci_free_irq(struct pci_dev *dev, unsigned int nr, void *dev_id);
1516 
1517 /* ROM control related routines */
1518 int pci_enable_rom(struct pci_dev *pdev);
1519 void pci_disable_rom(struct pci_dev *pdev);
1520 void __iomem __must_check *pci_map_rom(struct pci_dev *pdev, size_t *size);
1521 void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom);
1522 
1523 /* Power management related routines */
1524 int pci_save_state(struct pci_dev *dev);
1525 void pci_restore_state(struct pci_dev *dev);
1526 struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev);
1527 int pci_load_saved_state(struct pci_dev *dev,
1528 			 struct pci_saved_state *state);
1529 int pci_load_and_free_saved_state(struct pci_dev *dev,
1530 				  struct pci_saved_state **state);
1531 int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state);
1532 int pci_set_power_state(struct pci_dev *dev, pci_power_t state);
1533 int pci_set_power_state_locked(struct pci_dev *dev, pci_power_t state);
1534 pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state);
1535 bool pci_pme_capable(struct pci_dev *dev, pci_power_t state);
1536 void pci_pme_active(struct pci_dev *dev, bool enable);
1537 int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable);
1538 int pci_wake_from_d3(struct pci_dev *dev, bool enable);
1539 int pci_prepare_to_sleep(struct pci_dev *dev);
1540 int pci_back_from_sleep(struct pci_dev *dev);
1541 bool pci_dev_run_wake(struct pci_dev *dev);
1542 void pci_d3cold_enable(struct pci_dev *dev);
1543 void pci_d3cold_disable(struct pci_dev *dev);
1544 bool pcie_relaxed_ordering_enabled(struct pci_dev *dev);
1545 void pci_resume_bus(struct pci_bus *bus);
1546 void pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state);
1547 
1548 /* For use by arch with custom probe code */
1549 void set_pcie_port_type(struct pci_dev *pdev);
1550 void set_pcie_hotplug_bridge(struct pci_dev *pdev);
1551 
1552 /* Functions for PCI Hotplug drivers to use */
1553 unsigned int pci_rescan_bus(struct pci_bus *bus);
1554 void pci_lock_rescan_remove(void);
1555 void pci_unlock_rescan_remove(void);
1556 
1557 /* Vital Product Data routines */
1558 ssize_t pci_read_vpd(struct pci_dev *dev, loff_t pos, size_t count, void *buf);
1559 ssize_t pci_write_vpd(struct pci_dev *dev, loff_t pos, size_t count, const void *buf);
1560 ssize_t pci_read_vpd_any(struct pci_dev *dev, loff_t pos, size_t count, void *buf);
1561 ssize_t pci_write_vpd_any(struct pci_dev *dev, loff_t pos, size_t count, const void *buf);
1562 
1563 /* Helper functions for low-level code (drivers/pci/setup-[bus,res].c) */
1564 resource_size_t pcibios_retrieve_fw_addr(struct pci_dev *dev, int idx);
1565 void pci_bus_assign_resources(const struct pci_bus *bus);
1566 void pci_bus_claim_resources(struct pci_bus *bus);
1567 void pci_bus_size_bridges(struct pci_bus *bus);
1568 int pci_claim_resource(struct pci_dev *, int);
1569 int pci_claim_bridge_resource(struct pci_dev *bridge, int i);
1570 void pci_assign_unassigned_resources(void);
1571 void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge);
1572 void pci_assign_unassigned_bus_resources(struct pci_bus *bus);
1573 void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus);
1574 int pci_enable_resources(struct pci_dev *, int mask);
1575 void pci_assign_irq(struct pci_dev *dev);
1576 struct resource *pci_find_resource(struct pci_dev *dev, struct resource *res);
1577 #define HAVE_PCI_REQ_REGIONS	2
1578 int __must_check pci_request_regions(struct pci_dev *, const char *);
1579 int __must_check pci_request_regions_exclusive(struct pci_dev *, const char *);
1580 void pci_release_regions(struct pci_dev *);
1581 int __must_check pci_request_region(struct pci_dev *, int, const char *);
1582 void pci_release_region(struct pci_dev *, int);
1583 int pci_request_selected_regions(struct pci_dev *, int, const char *);
1584 int pci_request_selected_regions_exclusive(struct pci_dev *, int, const char *);
1585 void pci_release_selected_regions(struct pci_dev *, int);
1586 
1587 static inline __must_check struct resource *
pci_request_config_region_exclusive(struct pci_dev * pdev,unsigned int offset,unsigned int len,const char * name)1588 pci_request_config_region_exclusive(struct pci_dev *pdev, unsigned int offset,
1589 				    unsigned int len, const char *name)
1590 {
1591 	return __request_region(&pdev->driver_exclusive_resource, offset, len,
1592 				name, IORESOURCE_EXCLUSIVE);
1593 }
1594 
pci_release_config_region(struct pci_dev * pdev,unsigned int offset,unsigned int len)1595 static inline void pci_release_config_region(struct pci_dev *pdev,
1596 					     unsigned int offset,
1597 					     unsigned int len)
1598 {
1599 	__release_region(&pdev->driver_exclusive_resource, offset, len);
1600 }
1601 
1602 /* drivers/pci/bus.c */
1603 void pci_add_resource(struct list_head *resources, struct resource *res);
1604 void pci_add_resource_offset(struct list_head *resources, struct resource *res,
1605 			     resource_size_t offset);
1606 void pci_free_resource_list(struct list_head *resources);
1607 void pci_bus_add_resource(struct pci_bus *bus, struct resource *res);
1608 struct resource *pci_bus_resource_n(const struct pci_bus *bus, int n);
1609 void pci_bus_remove_resources(struct pci_bus *bus);
1610 void pci_bus_remove_resource(struct pci_bus *bus, struct resource *res);
1611 int devm_request_pci_bus_resources(struct device *dev,
1612 				   struct list_head *resources);
1613 
1614 /* Temporary until new and working PCI SBR API in place */
1615 int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
1616 
1617 #define __pci_bus_for_each_res0(bus, res, ...)				\
1618 	for (unsigned int __b = 0;					\
1619 	     (res = pci_bus_resource_n(bus, __b)) || __b < PCI_BRIDGE_RESOURCE_NUM; \
1620 	     __b++)
1621 
1622 #define __pci_bus_for_each_res1(bus, res, __b)				\
1623 	for (__b = 0;							\
1624 	     (res = pci_bus_resource_n(bus, __b)) || __b < PCI_BRIDGE_RESOURCE_NUM; \
1625 	     __b++)
1626 
1627 /**
1628  * pci_bus_for_each_resource - iterate over PCI bus resources
1629  * @bus: the PCI bus
1630  * @res: pointer to the current resource
1631  * @...: optional index of the current resource
1632  *
1633  * Iterate over PCI bus resources. The first part is to go over PCI bus
1634  * resource array, which has at most the %PCI_BRIDGE_RESOURCE_NUM entries.
1635  * After that continue with the separate list of the additional resources,
1636  * if not empty. That's why the Logical OR is being used.
1637  *
1638  * Possible usage:
1639  *
1640  *	struct pci_bus *bus = ...;
1641  *	struct resource *res;
1642  *	unsigned int i;
1643  *
1644  * 	// With optional index
1645  * 	pci_bus_for_each_resource(bus, res, i)
1646  * 		pr_info("PCI bus resource[%u]: %pR\n", i, res);
1647  *
1648  * 	// Without index
1649  * 	pci_bus_for_each_resource(bus, res)
1650  * 		_do_something_(res);
1651  */
1652 #define pci_bus_for_each_resource(bus, res, ...)			\
1653 	CONCATENATE(__pci_bus_for_each_res, COUNT_ARGS(__VA_ARGS__))	\
1654 		    (bus, res, __VA_ARGS__)
1655 
1656 int __must_check pci_bus_alloc_resource(struct pci_bus *bus,
1657 			struct resource *res, resource_size_t size,
1658 			resource_size_t align, resource_size_t min,
1659 			unsigned long type_mask,
1660 			resource_alignf alignf,
1661 			void *alignf_data);
1662 
1663 
1664 int pci_register_io_range(const struct fwnode_handle *fwnode, phys_addr_t addr,
1665 			resource_size_t size);
1666 unsigned long pci_address_to_pio(phys_addr_t addr);
1667 phys_addr_t pci_pio_to_address(unsigned long pio);
1668 int pci_remap_iospace(const struct resource *res, phys_addr_t phys_addr);
1669 int devm_pci_remap_iospace(struct device *dev, const struct resource *res,
1670 			   phys_addr_t phys_addr);
1671 void pci_unmap_iospace(struct resource *res);
1672 void __iomem *devm_pci_remap_cfgspace(struct device *dev,
1673 				      resource_size_t offset,
1674 				      resource_size_t size);
1675 void __iomem *devm_pci_remap_cfg_resource(struct device *dev,
1676 					  struct resource *res);
1677 
pci_bus_address(struct pci_dev * pdev,int bar)1678 static inline pci_bus_addr_t pci_bus_address(struct pci_dev *pdev, int bar)
1679 {
1680 	struct pci_bus_region region;
1681 
1682 	pcibios_resource_to_bus(pdev->bus, &region, &pdev->resource[bar]);
1683 	return region.start;
1684 }
1685 
1686 /* Proper probing supporting hot-pluggable devices */
1687 int __must_check __pci_register_driver(struct pci_driver *, struct module *,
1688 				       const char *mod_name);
1689 
1690 /* pci_register_driver() must be a macro so KBUILD_MODNAME can be expanded */
1691 #define pci_register_driver(driver)		\
1692 	__pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
1693 
1694 void pci_unregister_driver(struct pci_driver *dev);
1695 
1696 /**
1697  * module_pci_driver() - Helper macro for registering a PCI driver
1698  * @__pci_driver: pci_driver struct
1699  *
1700  * Helper macro for PCI drivers which do not do anything special in module
1701  * init/exit. This eliminates a lot of boilerplate. Each module may only
1702  * use this macro once, and calling it replaces module_init() and module_exit()
1703  */
1704 #define module_pci_driver(__pci_driver) \
1705 	module_driver(__pci_driver, pci_register_driver, pci_unregister_driver)
1706 
1707 /**
1708  * builtin_pci_driver() - Helper macro for registering a PCI driver
1709  * @__pci_driver: pci_driver struct
1710  *
1711  * Helper macro for PCI drivers which do not do anything special in their
1712  * init code. This eliminates a lot of boilerplate. Each driver may only
1713  * use this macro once, and calling it replaces device_initcall(...)
1714  */
1715 #define builtin_pci_driver(__pci_driver) \
1716 	builtin_driver(__pci_driver, pci_register_driver)
1717 
1718 struct pci_driver *pci_dev_driver(const struct pci_dev *dev);
1719 int pci_add_dynid(struct pci_driver *drv,
1720 		  unsigned int vendor, unsigned int device,
1721 		  unsigned int subvendor, unsigned int subdevice,
1722 		  unsigned int class, unsigned int class_mask,
1723 		  unsigned long driver_data);
1724 const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
1725 					 struct pci_dev *dev);
1726 int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max,
1727 		    int pass);
1728 
1729 void pci_walk_bus(struct pci_bus *top, int (*cb)(struct pci_dev *, void *),
1730 		  void *userdata);
1731 void pci_walk_bus_reverse(struct pci_bus *top,
1732 			  int (*cb)(struct pci_dev *, void *), void *userdata);
1733 int pci_cfg_space_size(struct pci_dev *dev);
1734 unsigned char pci_bus_max_busnr(struct pci_bus *bus);
1735 resource_size_t pcibios_window_alignment(struct pci_bus *bus,
1736 					 unsigned long type);
1737 
1738 #define PCI_VGA_STATE_CHANGE_BRIDGE (1 << 0)
1739 #define PCI_VGA_STATE_CHANGE_DECODES (1 << 1)
1740 
1741 int pci_set_vga_state(struct pci_dev *pdev, bool decode,
1742 		      unsigned int command_bits, u32 flags);
1743 
1744 /*
1745  * Virtual interrupts allow for more interrupts to be allocated
1746  * than the device has interrupts for. These are not programmed
1747  * into the device's MSI-X table and must be handled by some
1748  * other driver means.
1749  */
1750 #define PCI_IRQ_VIRTUAL		(1 << 4)
1751 
1752 #define PCI_IRQ_ALL_TYPES	(PCI_IRQ_INTX | PCI_IRQ_MSI | PCI_IRQ_MSIX)
1753 
1754 #include <linux/dmapool.h>
1755 
1756 struct msix_entry {
1757 	u32	vector;	/* Kernel uses to write allocated vector */
1758 	u16	entry;	/* Driver uses to specify entry, OS writes */
1759 };
1760 
1761 #ifdef CONFIG_PCI_MSI
1762 int pci_msi_vec_count(struct pci_dev *dev);
1763 void pci_disable_msi(struct pci_dev *dev);
1764 int pci_msix_vec_count(struct pci_dev *dev);
1765 void pci_disable_msix(struct pci_dev *dev);
1766 void pci_restore_msi_state(struct pci_dev *dev);
1767 bool pci_msi_enabled(void);
1768 int pci_enable_msi(struct pci_dev *dev);
1769 int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1770 			  int minvec, int maxvec);
pci_enable_msix_exact(struct pci_dev * dev,struct msix_entry * entries,int nvec)1771 static inline int pci_enable_msix_exact(struct pci_dev *dev,
1772 					struct msix_entry *entries, int nvec)
1773 {
1774 	int rc = pci_enable_msix_range(dev, entries, nvec, nvec);
1775 	if (rc < 0)
1776 		return rc;
1777 	return 0;
1778 }
1779 int pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
1780 			  unsigned int max_vecs, unsigned int flags);
1781 int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1782 				   unsigned int max_vecs, unsigned int flags,
1783 				   struct irq_affinity *affd);
1784 
1785 bool pci_msix_can_alloc_dyn(struct pci_dev *dev);
1786 struct msi_map pci_msix_alloc_irq_at(struct pci_dev *dev, unsigned int index,
1787 				     const struct irq_affinity_desc *affdesc);
1788 void pci_msix_free_irq(struct pci_dev *pdev, struct msi_map map);
1789 
1790 void pci_free_irq_vectors(struct pci_dev *dev);
1791 int pci_irq_vector(struct pci_dev *dev, unsigned int nr);
1792 const struct cpumask *pci_irq_get_affinity(struct pci_dev *pdev, int vec);
1793 
1794 /**
1795  * pci_irq_type - Get the interrupt type of a PCI device
1796  * @pdev: the PCI device to operate on
1797  *
1798  * Discriminate the interrupt type the PCI core selected for this device
1799  * after a successful pci_alloc_irq_vectors() call.
1800  *
1801  * Return: %PCI_IRQ_MSIX, %PCI_IRQ_MSI, or %PCI_IRQ_INTX.
1802  */
pci_irq_type(struct pci_dev * pdev)1803 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
1804 {
1805 	if (pdev->msix_enabled)
1806 		return PCI_IRQ_MSIX;
1807 
1808 	if (pdev->msi_enabled)
1809 		return PCI_IRQ_MSI;
1810 
1811 	return PCI_IRQ_INTX;
1812 }
1813 
1814 #else
pci_msi_vec_count(struct pci_dev * dev)1815 static inline int pci_msi_vec_count(struct pci_dev *dev) { return -ENOSYS; }
pci_disable_msi(struct pci_dev * dev)1816 static inline void pci_disable_msi(struct pci_dev *dev) { }
pci_msix_vec_count(struct pci_dev * dev)1817 static inline int pci_msix_vec_count(struct pci_dev *dev) { return -ENOSYS; }
pci_disable_msix(struct pci_dev * dev)1818 static inline void pci_disable_msix(struct pci_dev *dev) { }
pci_restore_msi_state(struct pci_dev * dev)1819 static inline void pci_restore_msi_state(struct pci_dev *dev) { }
pci_msi_enabled(void)1820 static inline bool pci_msi_enabled(void) { return false; }
pci_enable_msi(struct pci_dev * dev)1821 static inline int pci_enable_msi(struct pci_dev *dev)
1822 { return -ENOSYS; }
pci_enable_msix_range(struct pci_dev * dev,struct msix_entry * entries,int minvec,int maxvec)1823 static inline int pci_enable_msix_range(struct pci_dev *dev,
1824 			struct msix_entry *entries, int minvec, int maxvec)
1825 { return -ENOSYS; }
pci_enable_msix_exact(struct pci_dev * dev,struct msix_entry * entries,int nvec)1826 static inline int pci_enable_msix_exact(struct pci_dev *dev,
1827 			struct msix_entry *entries, int nvec)
1828 { return -ENOSYS; }
1829 
1830 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)1831 pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1832 			       unsigned int max_vecs, unsigned int flags,
1833 			       struct irq_affinity *aff_desc)
1834 {
1835 	if ((flags & PCI_IRQ_INTX) && min_vecs == 1 && dev->irq)
1836 		return 1;
1837 	return -ENOSPC;
1838 }
1839 static inline int
pci_alloc_irq_vectors(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags)1840 pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
1841 		      unsigned int max_vecs, unsigned int flags)
1842 {
1843 	return pci_alloc_irq_vectors_affinity(dev, min_vecs, max_vecs,
1844 					      flags, NULL);
1845 }
1846 
pci_msix_can_alloc_dyn(struct pci_dev * dev)1847 static inline bool pci_msix_can_alloc_dyn(struct pci_dev *dev)
1848 { return false; }
pci_msix_alloc_irq_at(struct pci_dev * dev,unsigned int index,const struct irq_affinity_desc * affdesc)1849 static inline struct msi_map pci_msix_alloc_irq_at(struct pci_dev *dev, unsigned int index,
1850 						   const struct irq_affinity_desc *affdesc)
1851 {
1852 	struct msi_map map = { .index = -ENOSYS, };
1853 
1854 	return map;
1855 }
1856 
pci_msix_free_irq(struct pci_dev * pdev,struct msi_map map)1857 static inline void pci_msix_free_irq(struct pci_dev *pdev, struct msi_map map)
1858 {
1859 }
1860 
pci_free_irq_vectors(struct pci_dev * dev)1861 static inline void pci_free_irq_vectors(struct pci_dev *dev)
1862 {
1863 }
1864 
pci_irq_vector(struct pci_dev * dev,unsigned int nr)1865 static inline int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1866 {
1867 	if (WARN_ON_ONCE(nr > 0))
1868 		return -EINVAL;
1869 	return dev->irq;
1870 }
pci_irq_get_affinity(struct pci_dev * pdev,int vec)1871 static inline const struct cpumask *pci_irq_get_affinity(struct pci_dev *pdev,
1872 		int vec)
1873 {
1874 	return cpu_possible_mask;
1875 }
1876 
pci_irq_type(struct pci_dev * pdev)1877 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
1878 {
1879 	return PCI_IRQ_INTX;
1880 }
1881 #endif
1882 
1883 /**
1884  * pci_irqd_intx_xlate() - Translate PCI INTx value to an IRQ domain hwirq
1885  * @d: the INTx IRQ domain
1886  * @node: the DT node for the device whose interrupt we're translating
1887  * @intspec: the interrupt specifier data from the DT
1888  * @intsize: the number of entries in @intspec
1889  * @out_hwirq: pointer at which to write the hwirq number
1890  * @out_type: pointer at which to write the interrupt type
1891  *
1892  * Translate a PCI INTx interrupt number from device tree in the range 1-4, as
1893  * stored in the standard PCI_INTERRUPT_PIN register, to a value in the range
1894  * 0-3 suitable for use in a 4 entry IRQ domain. That is, subtract one from the
1895  * INTx value to obtain the hwirq number.
1896  *
1897  * Returns 0 on success, or -EINVAL if the interrupt specifier is out of range.
1898  */
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)1899 static inline int pci_irqd_intx_xlate(struct irq_domain *d,
1900 				      struct device_node *node,
1901 				      const u32 *intspec,
1902 				      unsigned int intsize,
1903 				      unsigned long *out_hwirq,
1904 				      unsigned int *out_type)
1905 {
1906 	const u32 intx = intspec[0];
1907 
1908 	if (intx < PCI_INTERRUPT_INTA || intx > PCI_INTERRUPT_INTD)
1909 		return -EINVAL;
1910 
1911 	*out_hwirq = intx - PCI_INTERRUPT_INTA;
1912 	return 0;
1913 }
1914 
1915 #ifdef CONFIG_PCIEPORTBUS
1916 extern bool pcie_ports_disabled;
1917 extern bool pcie_ports_native;
1918 
1919 int pcie_set_target_speed(struct pci_dev *port, enum pci_bus_speed speed_req,
1920 			  bool use_lt);
1921 #else
1922 #define pcie_ports_disabled	true
1923 #define pcie_ports_native	false
1924 
pcie_set_target_speed(struct pci_dev * port,enum pci_bus_speed speed_req,bool use_lt)1925 static inline int pcie_set_target_speed(struct pci_dev *port,
1926 					enum pci_bus_speed speed_req,
1927 					bool use_lt)
1928 {
1929 	return -EOPNOTSUPP;
1930 }
1931 #endif
1932 
1933 #define PCIE_LINK_STATE_L0S		(BIT(0) | BIT(1)) /* Upstr/dwnstr L0s */
1934 #define PCIE_LINK_STATE_L1		BIT(2)	/* L1 state */
1935 #define PCIE_LINK_STATE_L1_1		BIT(3)	/* ASPM L1.1 state */
1936 #define PCIE_LINK_STATE_L1_2		BIT(4)	/* ASPM L1.2 state */
1937 #define PCIE_LINK_STATE_L1_1_PCIPM	BIT(5)	/* PCI-PM L1.1 state */
1938 #define PCIE_LINK_STATE_L1_2_PCIPM	BIT(6)	/* PCI-PM L1.2 state */
1939 #define PCIE_LINK_STATE_ASPM_ALL	(PCIE_LINK_STATE_L0S		|\
1940 					 PCIE_LINK_STATE_L1		|\
1941 					 PCIE_LINK_STATE_L1_1		|\
1942 					 PCIE_LINK_STATE_L1_2		|\
1943 					 PCIE_LINK_STATE_L1_1_PCIPM	|\
1944 					 PCIE_LINK_STATE_L1_2_PCIPM)
1945 #define PCIE_LINK_STATE_CLKPM		BIT(7)
1946 #define PCIE_LINK_STATE_ALL		(PCIE_LINK_STATE_ASPM_ALL	|\
1947 					 PCIE_LINK_STATE_CLKPM)
1948 
1949 #ifdef CONFIG_PCIEASPM
1950 int pci_disable_link_state(struct pci_dev *pdev, int state);
1951 int pci_disable_link_state_locked(struct pci_dev *pdev, int state);
1952 int pci_enable_link_state(struct pci_dev *pdev, int state);
1953 int pci_enable_link_state_locked(struct pci_dev *pdev, int state);
1954 void pcie_no_aspm(void);
1955 bool pcie_aspm_support_enabled(void);
1956 bool pcie_aspm_enabled(struct pci_dev *pdev);
1957 #else
pci_disable_link_state(struct pci_dev * pdev,int state)1958 static inline int pci_disable_link_state(struct pci_dev *pdev, int state)
1959 { return 0; }
pci_disable_link_state_locked(struct pci_dev * pdev,int state)1960 static inline int pci_disable_link_state_locked(struct pci_dev *pdev, int state)
1961 { return 0; }
pci_enable_link_state(struct pci_dev * pdev,int state)1962 static inline int pci_enable_link_state(struct pci_dev *pdev, int state)
1963 { return 0; }
pci_enable_link_state_locked(struct pci_dev * pdev,int state)1964 static inline int pci_enable_link_state_locked(struct pci_dev *pdev, int state)
1965 { return 0; }
pcie_no_aspm(void)1966 static inline void pcie_no_aspm(void) { }
pcie_aspm_support_enabled(void)1967 static inline bool pcie_aspm_support_enabled(void) { return false; }
pcie_aspm_enabled(struct pci_dev * pdev)1968 static inline bool pcie_aspm_enabled(struct pci_dev *pdev) { return false; }
1969 #endif
1970 
1971 #ifdef CONFIG_HOTPLUG_PCI
1972 void pci_hp_ignore_link_change(struct pci_dev *pdev);
1973 void pci_hp_unignore_link_change(struct pci_dev *pdev);
1974 #else
pci_hp_ignore_link_change(struct pci_dev * pdev)1975 static inline void pci_hp_ignore_link_change(struct pci_dev *pdev) { }
pci_hp_unignore_link_change(struct pci_dev * pdev)1976 static inline void pci_hp_unignore_link_change(struct pci_dev *pdev) { }
1977 #endif
1978 
1979 #ifdef CONFIG_PCIEAER
1980 bool pci_aer_available(void);
1981 #else
pci_aer_available(void)1982 static inline bool pci_aer_available(void) { return false; }
1983 #endif
1984 
1985 bool pci_ats_disabled(void);
1986 
1987 #define PCIE_PTM_CONTEXT_UPDATE_AUTO 0
1988 #define PCIE_PTM_CONTEXT_UPDATE_MANUAL 1
1989 
1990 struct pcie_ptm_ops {
1991 	int (*check_capability)(void *drvdata);
1992 	int (*context_update_write)(void *drvdata, u8 mode);
1993 	int (*context_update_read)(void *drvdata, u8 *mode);
1994 	int (*context_valid_write)(void *drvdata, bool valid);
1995 	int (*context_valid_read)(void *drvdata, bool *valid);
1996 	int (*local_clock_read)(void *drvdata, u64 *clock);
1997 	int (*master_clock_read)(void *drvdata, u64 *clock);
1998 	int (*t1_read)(void *drvdata, u64 *clock);
1999 	int (*t2_read)(void *drvdata, u64 *clock);
2000 	int (*t3_read)(void *drvdata, u64 *clock);
2001 	int (*t4_read)(void *drvdata, u64 *clock);
2002 
2003 	bool (*context_update_visible)(void *drvdata);
2004 	bool (*context_valid_visible)(void *drvdata);
2005 	bool (*local_clock_visible)(void *drvdata);
2006 	bool (*master_clock_visible)(void *drvdata);
2007 	bool (*t1_visible)(void *drvdata);
2008 	bool (*t2_visible)(void *drvdata);
2009 	bool (*t3_visible)(void *drvdata);
2010 	bool (*t4_visible)(void *drvdata);
2011 };
2012 
2013 struct pci_ptm_debugfs {
2014 	struct dentry *debugfs;
2015 	const struct pcie_ptm_ops *ops;
2016 	struct mutex lock;
2017 	void *pdata;
2018 };
2019 
2020 #ifdef CONFIG_PCIE_PTM
2021 int pci_enable_ptm(struct pci_dev *dev);
2022 void pci_disable_ptm(struct pci_dev *dev);
2023 bool pcie_ptm_enabled(struct pci_dev *dev);
2024 #else
pci_enable_ptm(struct pci_dev * dev)2025 static inline int pci_enable_ptm(struct pci_dev *dev)
2026 { return -EINVAL; }
pci_disable_ptm(struct pci_dev * dev)2027 static inline void pci_disable_ptm(struct pci_dev *dev) { }
pcie_ptm_enabled(struct pci_dev * dev)2028 static inline bool pcie_ptm_enabled(struct pci_dev *dev)
2029 { return false; }
2030 #endif
2031 
2032 #if IS_ENABLED(CONFIG_DEBUG_FS) && IS_ENABLED(CONFIG_PCIE_PTM)
2033 struct pci_ptm_debugfs *pcie_ptm_create_debugfs(struct device *dev, void *pdata,
2034 						const struct pcie_ptm_ops *ops);
2035 void pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs *ptm_debugfs);
2036 #else
2037 static inline struct pci_ptm_debugfs
pcie_ptm_create_debugfs(struct device * dev,void * pdata,const struct pcie_ptm_ops * ops)2038 *pcie_ptm_create_debugfs(struct device *dev, void *pdata,
2039 			 const struct pcie_ptm_ops *ops) { return NULL; }
2040 static inline void
pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs * ptm_debugfs)2041 pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs *ptm_debugfs) { }
2042 #endif
2043 
2044 void pci_cfg_access_lock(struct pci_dev *dev);
2045 bool pci_cfg_access_trylock(struct pci_dev *dev);
2046 void pci_cfg_access_unlock(struct pci_dev *dev);
2047 
2048 void pci_dev_lock(struct pci_dev *dev);
2049 int pci_dev_trylock(struct pci_dev *dev);
2050 void pci_dev_unlock(struct pci_dev *dev);
2051 DEFINE_GUARD(pci_dev, struct pci_dev *, pci_dev_lock(_T), pci_dev_unlock(_T))
2052 
2053 /*
2054  * PCI domain support.  Sometimes called PCI segment (eg by ACPI),
2055  * a PCI domain is defined to be a set of PCI buses which share
2056  * configuration space.
2057  */
2058 #ifdef CONFIG_PCI_DOMAINS
2059 extern int pci_domains_supported;
2060 int pci_bus_find_emul_domain_nr(u32 hint, u32 min, u32 max);
2061 void pci_bus_release_emul_domain_nr(int domain_nr);
2062 #else
2063 enum { pci_domains_supported = 0 };
2064 static inline int pci_domain_nr(struct pci_bus *bus) { return 0; }
2065 static inline int pci_proc_domain(struct pci_bus *bus) { return 0; }
2066 static inline int pci_bus_find_emul_domain_nr(u32 hint, u32 min, u32 max)
2067 {
2068 	return 0;
2069 }
2070 static inline void pci_bus_release_emul_domain_nr(int domain_nr) { }
2071 #endif /* CONFIG_PCI_DOMAINS */
2072 
2073 /*
2074  * Generic implementation for PCI domain support. If your
2075  * architecture does not need custom management of PCI
2076  * domains then this implementation will be used
2077  */
2078 #ifdef CONFIG_PCI_DOMAINS_GENERIC
pci_domain_nr(struct pci_bus * bus)2079 static inline int pci_domain_nr(struct pci_bus *bus)
2080 {
2081 	return bus->domain_nr;
2082 }
2083 #ifdef CONFIG_ACPI
2084 int acpi_pci_bus_find_domain_nr(struct pci_bus *bus);
2085 #else
acpi_pci_bus_find_domain_nr(struct pci_bus * bus)2086 static inline int acpi_pci_bus_find_domain_nr(struct pci_bus *bus)
2087 { return 0; }
2088 #endif
2089 int pci_bus_find_domain_nr(struct pci_bus *bus, struct device *parent);
2090 void pci_bus_release_domain_nr(struct device *parent, int domain_nr);
2091 #endif
2092 
2093 /* Some architectures require additional setup to direct VGA traffic */
2094 typedef int (*arch_set_vga_state_t)(struct pci_dev *pdev, bool decode,
2095 				    unsigned int command_bits, u32 flags);
2096 void pci_register_set_vga_state(arch_set_vga_state_t func);
2097 
2098 static inline int
pci_request_io_regions(struct pci_dev * pdev,const char * name)2099 pci_request_io_regions(struct pci_dev *pdev, const char *name)
2100 {
2101 	return pci_request_selected_regions(pdev,
2102 			    pci_select_bars(pdev, IORESOURCE_IO), name);
2103 }
2104 
2105 static inline void
pci_release_io_regions(struct pci_dev * pdev)2106 pci_release_io_regions(struct pci_dev *pdev)
2107 {
2108 	return pci_release_selected_regions(pdev,
2109 			    pci_select_bars(pdev, IORESOURCE_IO));
2110 }
2111 
2112 static inline int
pci_request_mem_regions(struct pci_dev * pdev,const char * name)2113 pci_request_mem_regions(struct pci_dev *pdev, const char *name)
2114 {
2115 	return pci_request_selected_regions(pdev,
2116 			    pci_select_bars(pdev, IORESOURCE_MEM), name);
2117 }
2118 
2119 static inline void
pci_release_mem_regions(struct pci_dev * pdev)2120 pci_release_mem_regions(struct pci_dev *pdev)
2121 {
2122 	return pci_release_selected_regions(pdev,
2123 			    pci_select_bars(pdev, IORESOURCE_MEM));
2124 }
2125 
2126 bool pci_suspend_retains_context(struct pci_dev *pdev);
2127 
2128 #else /* CONFIG_PCI is not enabled */
2129 
pci_set_flags(int flags)2130 static inline void pci_set_flags(int flags) { }
pci_add_flags(int flags)2131 static inline void pci_add_flags(int flags) { }
pci_clear_flags(int flags)2132 static inline void pci_clear_flags(int flags) { }
pci_has_flag(int flag)2133 static inline int pci_has_flag(int flag) { return 0; }
2134 
2135 /*
2136  * If the system does not have PCI, clearly these return errors.  Define
2137  * these as simple inline functions to avoid hair in drivers.
2138  */
2139 #define _PCI_NOP(o, s, t) \
2140 	static inline int pci_##o##_config_##s(struct pci_dev *dev, \
2141 						int where, t val) \
2142 		{ return PCIBIOS_FUNC_NOT_SUPPORTED; }
2143 
2144 #define _PCI_NOP_ALL(o, x)	_PCI_NOP(o, byte, u8 x) \
2145 				_PCI_NOP(o, word, u16 x) \
2146 				_PCI_NOP(o, dword, u32 x)
2147 _PCI_NOP_ALL(read, *)
2148 _PCI_NOP_ALL(write,)
2149 
pci_probe_flush_workqueue(void)2150 static inline void pci_probe_flush_workqueue(void) { }
2151 
pci_get_device(unsigned int vendor,unsigned int device,struct pci_dev * from)2152 static inline struct pci_dev *pci_get_device(unsigned int vendor,
2153 					     unsigned int device,
2154 					     struct pci_dev *from)
2155 { return NULL; }
2156 
pci_get_device_reverse(unsigned int vendor,unsigned int device,struct pci_dev * from)2157 static inline struct pci_dev *pci_get_device_reverse(unsigned int vendor,
2158 						     unsigned int device,
2159 						     struct pci_dev *from)
2160 { return NULL; }
2161 
pci_get_subsys(unsigned int vendor,unsigned int device,unsigned int ss_vendor,unsigned int ss_device,struct pci_dev * from)2162 static inline struct pci_dev *pci_get_subsys(unsigned int vendor,
2163 					     unsigned int device,
2164 					     unsigned int ss_vendor,
2165 					     unsigned int ss_device,
2166 					     struct pci_dev *from)
2167 { return NULL; }
2168 
pci_get_class(unsigned int class,struct pci_dev * from)2169 static inline struct pci_dev *pci_get_class(unsigned int class,
2170 					    struct pci_dev *from)
2171 { return NULL; }
2172 
pci_get_base_class(unsigned int class,struct pci_dev * from)2173 static inline struct pci_dev *pci_get_base_class(unsigned int class,
2174 						 struct pci_dev *from)
2175 { return NULL; }
2176 
pci_dev_present(const struct pci_device_id * ids)2177 static inline int pci_dev_present(const struct pci_device_id *ids)
2178 { return 0; }
2179 
2180 #define pci_dev_put(dev)	do { } while (0)
2181 
pci_set_master(struct pci_dev * dev)2182 static inline void pci_set_master(struct pci_dev *dev) { }
pci_clear_master(struct pci_dev * dev)2183 static inline void pci_clear_master(struct pci_dev *dev) { }
pci_enable_device(struct pci_dev * dev)2184 static inline int pci_enable_device(struct pci_dev *dev) { return -EIO; }
pci_disable_device(struct pci_dev * dev)2185 static inline void pci_disable_device(struct pci_dev *dev) { }
pcim_enable_device(struct pci_dev * pdev)2186 static inline int pcim_enable_device(struct pci_dev *pdev) { return -EIO; }
pci_assign_resource(struct pci_dev * dev,int i)2187 static inline int pci_assign_resource(struct pci_dev *dev, int i)
2188 { return -EBUSY; }
__pci_register_driver(struct pci_driver * drv,struct module * owner,const char * mod_name)2189 static inline int __must_check __pci_register_driver(struct pci_driver *drv,
2190 						     struct module *owner,
2191 						     const char *mod_name)
2192 { return 0; }
pci_register_driver(struct pci_driver * drv)2193 static inline int pci_register_driver(struct pci_driver *drv)
2194 { return 0; }
pci_unregister_driver(struct pci_driver * drv)2195 static inline void pci_unregister_driver(struct pci_driver *drv) { }
pci_find_capability(struct pci_dev * dev,int cap)2196 static inline u8 pci_find_capability(struct pci_dev *dev, int cap)
2197 { return 0; }
pci_find_next_capability(struct pci_dev * dev,u8 post,int cap)2198 static inline u8 pci_find_next_capability(struct pci_dev *dev, u8 post, int cap)
2199 { return 0; }
pci_find_ext_capability(struct pci_dev * dev,int cap)2200 static inline u16 pci_find_ext_capability(struct pci_dev *dev, int cap)
2201 { return 0; }
2202 
pci_get_dsn(struct pci_dev * dev)2203 static inline u64 pci_get_dsn(struct pci_dev *dev)
2204 { return 0; }
2205 
2206 /* Power management related routines */
pci_save_state(struct pci_dev * dev)2207 static inline int pci_save_state(struct pci_dev *dev) { return 0; }
pci_restore_state(struct pci_dev * dev)2208 static inline void pci_restore_state(struct pci_dev *dev) { }
pci_set_power_state(struct pci_dev * dev,pci_power_t state)2209 static inline int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
2210 { return 0; }
pci_set_power_state_locked(struct pci_dev * dev,pci_power_t state)2211 static inline int pci_set_power_state_locked(struct pci_dev *dev, pci_power_t state)
2212 { return 0; }
pci_wake_from_d3(struct pci_dev * dev,bool enable)2213 static inline int pci_wake_from_d3(struct pci_dev *dev, bool enable)
2214 { return 0; }
pci_choose_state(struct pci_dev * dev,pm_message_t state)2215 static inline pci_power_t pci_choose_state(struct pci_dev *dev,
2216 					   pm_message_t state)
2217 { return PCI_D0; }
pci_enable_wake(struct pci_dev * dev,pci_power_t state,int enable)2218 static inline int pci_enable_wake(struct pci_dev *dev, pci_power_t state,
2219 				  int enable)
2220 { return 0; }
2221 
pci_find_resource(struct pci_dev * dev,struct resource * res)2222 static inline struct resource *pci_find_resource(struct pci_dev *dev,
2223 						 struct resource *res)
2224 { return NULL; }
pci_request_regions(struct pci_dev * dev,const char * res_name)2225 static inline int pci_request_regions(struct pci_dev *dev, const char *res_name)
2226 { return -EIO; }
pci_release_regions(struct pci_dev * dev)2227 static inline void pci_release_regions(struct pci_dev *dev) { }
2228 
pci_register_io_range(const struct fwnode_handle * fwnode,phys_addr_t addr,resource_size_t size)2229 static inline int pci_register_io_range(const struct fwnode_handle *fwnode,
2230 					phys_addr_t addr, resource_size_t size)
2231 { return -EINVAL; }
2232 
pci_address_to_pio(phys_addr_t addr)2233 static inline unsigned long pci_address_to_pio(phys_addr_t addr) { return -1; }
2234 
pci_find_next_bus(const struct pci_bus * from)2235 static inline struct pci_bus *pci_find_next_bus(const struct pci_bus *from)
2236 { return NULL; }
pci_get_slot(struct pci_bus * bus,unsigned int devfn)2237 static inline struct pci_dev *pci_get_slot(struct pci_bus *bus,
2238 						unsigned int devfn)
2239 { return NULL; }
pci_get_domain_bus_and_slot(int domain,unsigned int bus,unsigned int devfn)2240 static inline struct pci_dev *pci_get_domain_bus_and_slot(int domain,
2241 					unsigned int bus, unsigned int devfn)
2242 { return NULL; }
2243 
pci_domain_nr(struct pci_bus * bus)2244 static inline int pci_domain_nr(struct pci_bus *bus) { return 0; }
pci_dev_get(struct pci_dev * dev)2245 static inline struct pci_dev *pci_dev_get(struct pci_dev *dev) { return NULL; }
2246 
2247 #define dev_is_pci(d) (false)
2248 #define dev_is_pf(d) (false)
pci_acs_enabled(struct pci_dev * pdev,u16 acs_flags)2249 static inline bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2250 { 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)2251 static inline int pci_irqd_intx_xlate(struct irq_domain *d,
2252 				      struct device_node *node,
2253 				      const u32 *intspec,
2254 				      unsigned int intsize,
2255 				      unsigned long *out_hwirq,
2256 				      unsigned int *out_type)
2257 { return -EINVAL; }
2258 
pci_match_id(const struct pci_device_id * ids,struct pci_dev * dev)2259 static inline const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
2260 							 struct pci_dev *dev)
2261 { return NULL; }
pci_ats_disabled(void)2262 static inline bool pci_ats_disabled(void) { return true; }
2263 
pci_irq_vector(struct pci_dev * dev,unsigned int nr)2264 static inline int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
2265 {
2266 	return -EINVAL;
2267 }
2268 
2269 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)2270 pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
2271 			       unsigned int max_vecs, unsigned int flags,
2272 			       struct irq_affinity *aff_desc)
2273 {
2274 	return -ENOSPC;
2275 }
2276 static inline int
pci_alloc_irq_vectors(struct pci_dev * dev,unsigned int min_vecs,unsigned int max_vecs,unsigned int flags)2277 pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
2278 		      unsigned int max_vecs, unsigned int flags)
2279 {
2280 	return -ENOSPC;
2281 }
2282 
pci_free_irq_vectors(struct pci_dev * dev)2283 static inline void pci_free_irq_vectors(struct pci_dev *dev)
2284 {
2285 }
2286 
pci_suspend_retains_context(struct pci_dev * pdev)2287 static inline bool pci_suspend_retains_context(struct pci_dev *pdev)
2288 {
2289 	return true;
2290 }
2291 
pci_irq_type(struct pci_dev * pdev)2292 static inline unsigned int pci_irq_type(struct pci_dev *pdev)
2293 {
2294 	return 0;
2295 }
2296 #endif /* CONFIG_PCI */
2297 
2298 /* Include architecture-dependent settings and functions */
2299 
2300 #include <asm/pci.h>
2301 
2302 /*
2303  * pci_mmap_resource_range() maps a specific BAR, and vm->vm_pgoff
2304  * is expected to be an offset within that region.
2305  *
2306  */
2307 int pci_mmap_resource_range(struct pci_dev *dev, int bar,
2308 			    struct vm_area_struct *vma,
2309 			    enum pci_mmap_state mmap_state, int write_combine);
2310 
2311 #ifndef arch_can_pci_mmap_wc
2312 #define arch_can_pci_mmap_wc()		0
2313 #endif
2314 
2315 #ifndef arch_can_pci_mmap_io
2316 #define arch_can_pci_mmap_io()		0
2317 #define pci_iobar_pfn(pdev, bar, vma) (-EINVAL)
2318 #else
2319 int pci_iobar_pfn(struct pci_dev *pdev, int bar, struct vm_area_struct *vma);
2320 #endif
2321 
2322 #ifndef pci_root_bus_fwnode
2323 #define pci_root_bus_fwnode(bus)	NULL
2324 #endif
2325 
2326 /*
2327  * These helpers provide future and backwards compatibility
2328  * for accessing popular PCI BAR info
2329  */
2330 #define pci_resource_n(dev, bar)	(&(dev)->resource[(bar)])
2331 #define pci_resource_start(dev, bar)	(pci_resource_n(dev, bar)->start)
2332 #define pci_resource_end(dev, bar)	(pci_resource_n(dev, bar)->end)
2333 #define pci_resource_flags(dev, bar)	(pci_resource_n(dev, bar)->flags)
2334 #define pci_resource_len(dev,bar)					\
2335 	(pci_resource_end((dev), (bar)) ? 				\
2336 	 resource_size(pci_resource_n((dev), (bar))) : 0)
2337 
2338 #define __pci_dev_for_each_res0(dev, res, ...)				  \
2339 	for (unsigned int __b = 0;					  \
2340 	     __b < PCI_NUM_RESOURCES && (res = pci_resource_n(dev, __b)); \
2341 	     __b++)
2342 
2343 #define __pci_dev_for_each_res1(dev, res, __b)				  \
2344 	for (__b = 0;							  \
2345 	     __b < PCI_NUM_RESOURCES && (res = pci_resource_n(dev, __b)); \
2346 	     __b++)
2347 
2348 #define pci_dev_for_each_resource(dev, res, ...)			\
2349 	CONCATENATE(__pci_dev_for_each_res, COUNT_ARGS(__VA_ARGS__)) 	\
2350 		    (dev, res, __VA_ARGS__)
2351 
2352 /**
2353  * pci_resource_is_io - check if a PCI resource is of I/O port type.
2354  * @dev: PCI device to check.
2355  * @resno: The resource number (BAR index) to check.
2356  *
2357  * Returns true if the resource type is I/O port.
2358  */
pci_resource_is_io(const struct pci_dev * dev,int resno)2359 static inline bool pci_resource_is_io(const struct pci_dev *dev, int resno)
2360 {
2361 	return resource_type(pci_resource_n(dev, resno)) == IORESOURCE_IO;
2362 }
2363 
2364 /**
2365  * pci_resource_is_mem - check if a PCI resource is of memory type.
2366  * @dev: PCI device to check.
2367  * @resno: The resource number (BAR index) to check.
2368  *
2369  * Returns true if the resource type is memory, including
2370  * prefetchable memory.
2371  */
pci_resource_is_mem(const struct pci_dev * dev,int resno)2372 static inline bool pci_resource_is_mem(const struct pci_dev *dev, int resno)
2373 {
2374 	return resource_type(pci_resource_n(dev, resno)) == IORESOURCE_MEM;
2375 }
2376 
2377 /*
2378  * Similar to the helpers above, these manipulate per-pci_dev
2379  * driver-specific data.  They are really just a wrapper around
2380  * the generic device structure functions of these calls.
2381  */
pci_get_drvdata(struct pci_dev * pdev)2382 static inline void *pci_get_drvdata(struct pci_dev *pdev)
2383 {
2384 	return dev_get_drvdata(&pdev->dev);
2385 }
2386 
pci_set_drvdata(struct pci_dev * pdev,void * data)2387 static inline void pci_set_drvdata(struct pci_dev *pdev, void *data)
2388 {
2389 	dev_set_drvdata(&pdev->dev, data);
2390 }
2391 
pci_name(const struct pci_dev * pdev)2392 static inline const char *pci_name(const struct pci_dev *pdev)
2393 {
2394 	return dev_name(&pdev->dev);
2395 }
2396 
2397 void pci_resource_to_user(const struct pci_dev *dev, int bar,
2398 			  const struct resource *rsrc,
2399 			  resource_size_t *start, resource_size_t *end);
2400 
2401 /*
2402  * The world is not perfect and supplies us with broken PCI devices.
2403  * For at least a part of these bugs we need a work-around, so both
2404  * generic (drivers/pci/quirks.c) and per-architecture code can define
2405  * fixup hooks to be called for particular buggy devices.
2406  */
2407 
2408 struct pci_fixup {
2409 	u16 vendor;			/* Or PCI_ANY_ID */
2410 	u16 device;			/* Or PCI_ANY_ID */
2411 	u32 class;			/* Or PCI_ANY_ID */
2412 	unsigned int class_shift;	/* should be 0, 8, 16 */
2413 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
2414 	int hook_offset;
2415 #else
2416 	void (*hook)(struct pci_dev *dev);
2417 #endif
2418 };
2419 
2420 enum pci_fixup_pass {
2421 	pci_fixup_early,	/* Before probing BARs */
2422 	pci_fixup_header,	/* After reading configuration header */
2423 	pci_fixup_final,	/* Final phase of device fixups */
2424 	pci_fixup_enable,	/* pci_enable_device() time */
2425 	pci_fixup_resume,	/* pci_device_resume() */
2426 	pci_fixup_suspend,	/* pci_device_suspend() */
2427 	pci_fixup_resume_early, /* pci_device_resume_early() */
2428 	pci_fixup_suspend_late,	/* pci_device_suspend_late() */
2429 };
2430 
2431 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
2432 #define ___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2433 				    class_shift, hook)			\
2434 	__ADDRESSABLE(hook)						\
2435 	asm(".section "	#sec ", \"a\"				\n"	\
2436 	    ".balign	16					\n"	\
2437 	    ".short "	#vendor ", " #device "			\n"	\
2438 	    ".long "	#class ", " #class_shift "		\n"	\
2439 	    ".long "	#hook " - .				\n"	\
2440 	    ".previous						\n");
2441 
2442 /*
2443  * Clang's LTO may rename static functions in C, but has no way to
2444  * handle such renamings when referenced from inline asm. To work
2445  * around this, create global C stubs for these cases.
2446  */
2447 #ifdef CONFIG_LTO_CLANG
2448 #define __DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2449 				  class_shift, hook, stub)		\
2450 	void stub(struct pci_dev *dev);					\
2451 	void stub(struct pci_dev *dev)					\
2452 	{ 								\
2453 		hook(dev); 						\
2454 	}								\
2455 	___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2456 				  class_shift, stub)
2457 #else
2458 #define __DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2459 				  class_shift, hook, stub)		\
2460 	___DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2461 				  class_shift, hook)
2462 #endif
2463 
2464 #define DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2465 				  class_shift, hook)			\
2466 	__DECLARE_PCI_FIXUP_SECTION(sec, name, vendor, device, class,	\
2467 				  class_shift, hook, __UNIQUE_ID(hook))
2468 #else
2469 /* Anonymous variables would be nice... */
2470 #define DECLARE_PCI_FIXUP_SECTION(section, name, vendor, device, class,	\
2471 				  class_shift, hook)			\
2472 	static const struct pci_fixup __PASTE(__pci_fixup_##name,__LINE__) __used	\
2473 	__attribute__((__section__(#section), aligned((sizeof(void *)))))    \
2474 		= { vendor, device, class, class_shift, hook };
2475 #endif
2476 
2477 #define DECLARE_PCI_FIXUP_CLASS_EARLY(vendor, device, class,		\
2478 					 class_shift, hook)		\
2479 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_early,			\
2480 		hook, vendor, device, class, class_shift, hook)
2481 #define DECLARE_PCI_FIXUP_CLASS_HEADER(vendor, device, class,		\
2482 					 class_shift, hook)		\
2483 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_header,			\
2484 		hook, vendor, device, class, class_shift, hook)
2485 #define DECLARE_PCI_FIXUP_CLASS_FINAL(vendor, device, class,		\
2486 					 class_shift, hook)		\
2487 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_final,			\
2488 		hook, vendor, device, class, class_shift, hook)
2489 #define DECLARE_PCI_FIXUP_CLASS_ENABLE(vendor, device, class,		\
2490 					 class_shift, hook)		\
2491 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_enable,			\
2492 		hook, vendor, device, class, class_shift, hook)
2493 #define DECLARE_PCI_FIXUP_CLASS_RESUME(vendor, device, class,		\
2494 					 class_shift, hook)		\
2495 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume,			\
2496 		resume##hook, vendor, device, class, class_shift, hook)
2497 #define DECLARE_PCI_FIXUP_CLASS_RESUME_EARLY(vendor, device, class,	\
2498 					 class_shift, hook)		\
2499 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume_early,		\
2500 		resume_early##hook, vendor, device, class, class_shift, hook)
2501 #define DECLARE_PCI_FIXUP_CLASS_SUSPEND(vendor, device, class,		\
2502 					 class_shift, hook)		\
2503 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend,			\
2504 		suspend##hook, vendor, device, class, class_shift, hook)
2505 #define DECLARE_PCI_FIXUP_CLASS_SUSPEND_LATE(vendor, device, class,	\
2506 					 class_shift, hook)		\
2507 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend_late,		\
2508 		suspend_late##hook, vendor, device, class, class_shift, hook)
2509 
2510 #define DECLARE_PCI_FIXUP_EARLY(vendor, device, hook)			\
2511 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_early,			\
2512 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2513 #define DECLARE_PCI_FIXUP_HEADER(vendor, device, hook)			\
2514 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_header,			\
2515 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2516 #define DECLARE_PCI_FIXUP_FINAL(vendor, device, hook)			\
2517 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_final,			\
2518 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2519 #define DECLARE_PCI_FIXUP_ENABLE(vendor, device, hook)			\
2520 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_enable,			\
2521 		hook, vendor, device, PCI_ANY_ID, 0, hook)
2522 #define DECLARE_PCI_FIXUP_RESUME(vendor, device, hook)			\
2523 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume,			\
2524 		resume##hook, vendor, device, PCI_ANY_ID, 0, hook)
2525 #define DECLARE_PCI_FIXUP_RESUME_EARLY(vendor, device, hook)		\
2526 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_resume_early,		\
2527 		resume_early##hook, vendor, device, PCI_ANY_ID, 0, hook)
2528 #define DECLARE_PCI_FIXUP_SUSPEND(vendor, device, hook)			\
2529 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend,			\
2530 		suspend##hook, vendor, device, PCI_ANY_ID, 0, hook)
2531 #define DECLARE_PCI_FIXUP_SUSPEND_LATE(vendor, device, hook)		\
2532 	DECLARE_PCI_FIXUP_SECTION(.pci_fixup_suspend_late,		\
2533 		suspend_late##hook, vendor, device, PCI_ANY_ID, 0, hook)
2534 
2535 #ifdef CONFIG_PCI_QUIRKS
2536 void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev);
2537 #else
pci_fixup_device(enum pci_fixup_pass pass,struct pci_dev * dev)2538 static inline void pci_fixup_device(enum pci_fixup_pass pass,
2539 				    struct pci_dev *dev) { }
2540 #endif
2541 
2542 int pcim_intx(struct pci_dev *pdev, int enabled);
2543 int pcim_request_all_regions(struct pci_dev *pdev, const char *name);
2544 void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen);
2545 void __iomem *pcim_iomap_region(struct pci_dev *pdev, int bar,
2546 				const char *name);
2547 void pcim_iounmap_region(struct pci_dev *pdev, int bar);
2548 void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr);
2549 void __iomem * const *pcim_iomap_table(struct pci_dev *pdev);
2550 int pcim_request_region(struct pci_dev *pdev, int bar, const char *name);
2551 int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name);
2552 void __iomem *pcim_iomap_range(struct pci_dev *pdev, int bar,
2553 				unsigned long offset, unsigned long len);
2554 
2555 extern int pci_pci_problems;
2556 #define PCIPCI_FAIL		1	/* No PCI PCI DMA */
2557 #define PCIPCI_TRITON		2
2558 #define PCIPCI_NATOMA		4
2559 #define PCIPCI_VIAETBF		8
2560 #define PCIPCI_VSFX		16
2561 #define PCIPCI_ALIMAGIK		32	/* Need low latency setting */
2562 #define PCIAGP_FAIL		64	/* No PCI to AGP DMA */
2563 
2564 extern u8 pci_dfl_cache_line_size;
2565 extern u8 pci_cache_line_size;
2566 
2567 /* Architecture-specific versions may override these (weak) */
2568 void pcibios_disable_device(struct pci_dev *dev);
2569 void pcibios_set_master(struct pci_dev *dev);
2570 int pcibios_set_pcie_reset_state(struct pci_dev *dev,
2571 				 enum pcie_reset_state state);
2572 int pcibios_device_add(struct pci_dev *dev);
2573 void pcibios_release_device(struct pci_dev *dev);
2574 #ifdef CONFIG_PCI
2575 void pcibios_penalize_isa_irq(int irq, int active);
2576 #else
pcibios_penalize_isa_irq(int irq,int active)2577 static inline void pcibios_penalize_isa_irq(int irq, int active) {}
2578 #endif
2579 int pcibios_alloc_irq(struct pci_dev *dev);
2580 void pcibios_free_irq(struct pci_dev *dev);
2581 resource_size_t pcibios_default_alignment(void);
2582 
2583 #if defined(CONFIG_PCI_MMCONFIG) || defined(CONFIG_ACPI_MCFG)
2584 void __init pci_mmcfg_early_init(void);
2585 void __init pci_mmcfg_late_init(void);
2586 #else
pci_mmcfg_early_init(void)2587 static inline void pci_mmcfg_early_init(void) { }
pci_mmcfg_late_init(void)2588 static inline void pci_mmcfg_late_init(void) { }
2589 #endif
2590 
2591 int pci_ext_cfg_avail(void);
2592 
2593 void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar);
2594 void __iomem *pci_ioremap_wc_bar(struct pci_dev *pdev, int bar);
2595 
2596 #ifdef CONFIG_PCI_IOV
2597 int pci_iov_virtfn_bus(struct pci_dev *dev, int id);
2598 int pci_iov_virtfn_devfn(struct pci_dev *dev, int id);
2599 int pci_iov_vf_id(struct pci_dev *dev);
2600 void *pci_iov_get_pf_drvdata(struct pci_dev *dev, struct pci_driver *pf_driver);
2601 int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn);
2602 void pci_disable_sriov(struct pci_dev *dev);
2603 
2604 int pci_iov_sysfs_link(struct pci_dev *dev, struct pci_dev *virtfn, int id);
2605 int pci_iov_add_virtfn(struct pci_dev *dev, int id);
2606 void pci_iov_remove_virtfn(struct pci_dev *dev, int id);
2607 int pci_num_vf(struct pci_dev *dev);
2608 int pci_vfs_assigned(struct pci_dev *dev);
2609 int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs);
2610 unsigned int pci_sriov_get_totalvfs(struct pci_dev *dev);
2611 int pci_sriov_configure_simple(struct pci_dev *dev, int nr_virtfn);
2612 resource_size_t pci_iov_resource_size(const struct pci_dev *dev, int resno);
2613 int pci_iov_vf_bar_set_size(struct pci_dev *dev, int resno, int size);
2614 u32 pci_iov_vf_bar_get_sizes(struct pci_dev *dev, int resno, int num_vfs);
2615 void pci_vf_drivers_autoprobe(struct pci_dev *dev, bool probe);
2616 
2617 /* Arch may override these (weak) */
2618 int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs);
2619 int pcibios_sriov_disable(struct pci_dev *pdev);
2620 resource_size_t pcibios_iov_resource_alignment(const struct pci_dev *dev,
2621 					       int resno);
2622 #else
pci_iov_virtfn_bus(struct pci_dev * dev,int id)2623 static inline int pci_iov_virtfn_bus(struct pci_dev *dev, int id)
2624 {
2625 	return -ENOSYS;
2626 }
pci_iov_virtfn_devfn(struct pci_dev * dev,int id)2627 static inline int pci_iov_virtfn_devfn(struct pci_dev *dev, int id)
2628 {
2629 	return -ENOSYS;
2630 }
2631 
pci_iov_vf_id(struct pci_dev * dev)2632 static inline int pci_iov_vf_id(struct pci_dev *dev)
2633 {
2634 	return -ENOSYS;
2635 }
2636 
pci_iov_get_pf_drvdata(struct pci_dev * dev,struct pci_driver * pf_driver)2637 static inline void *pci_iov_get_pf_drvdata(struct pci_dev *dev,
2638 					   struct pci_driver *pf_driver)
2639 {
2640 	return ERR_PTR(-EINVAL);
2641 }
2642 
pci_enable_sriov(struct pci_dev * dev,int nr_virtfn)2643 static inline int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
2644 { return -ENODEV; }
2645 
pci_iov_sysfs_link(struct pci_dev * dev,struct pci_dev * virtfn,int id)2646 static inline int pci_iov_sysfs_link(struct pci_dev *dev,
2647 				     struct pci_dev *virtfn, int id)
2648 {
2649 	return -ENODEV;
2650 }
pci_iov_add_virtfn(struct pci_dev * dev,int id)2651 static inline int pci_iov_add_virtfn(struct pci_dev *dev, int id)
2652 {
2653 	return -ENOSYS;
2654 }
pci_iov_remove_virtfn(struct pci_dev * dev,int id)2655 static inline void pci_iov_remove_virtfn(struct pci_dev *dev,
2656 					 int id) { }
pci_disable_sriov(struct pci_dev * dev)2657 static inline void pci_disable_sriov(struct pci_dev *dev) { }
pci_num_vf(struct pci_dev * dev)2658 static inline int pci_num_vf(struct pci_dev *dev) { return 0; }
pci_vfs_assigned(struct pci_dev * dev)2659 static inline int pci_vfs_assigned(struct pci_dev *dev)
2660 { return 0; }
pci_sriov_set_totalvfs(struct pci_dev * dev,u16 numvfs)2661 static inline int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs)
2662 { return 0; }
pci_sriov_get_totalvfs(struct pci_dev * dev)2663 static inline unsigned int pci_sriov_get_totalvfs(struct pci_dev *dev)
2664 { return 0; }
2665 #define pci_sriov_configure_simple	NULL
pci_iov_resource_size(const struct pci_dev * dev,int resno)2666 static inline resource_size_t pci_iov_resource_size(const struct pci_dev *dev,
2667 						    int resno)
2668 { return 0; }
pci_iov_vf_bar_set_size(struct pci_dev * dev,int resno,int size)2669 static inline int pci_iov_vf_bar_set_size(struct pci_dev *dev, int resno, int size)
2670 { return -ENODEV; }
pci_iov_vf_bar_get_sizes(struct pci_dev * dev,int resno,int num_vfs)2671 static inline u32 pci_iov_vf_bar_get_sizes(struct pci_dev *dev, int resno, int num_vfs)
2672 { return 0; }
pci_vf_drivers_autoprobe(struct pci_dev * dev,bool probe)2673 static inline void pci_vf_drivers_autoprobe(struct pci_dev *dev, bool probe) { }
2674 #endif
2675 
2676 /**
2677  * pci_pcie_cap - get the saved PCIe capability offset
2678  * @dev: PCI device
2679  *
2680  * PCIe capability offset is calculated at PCI device initialization
2681  * time and saved in the data structure. This function returns saved
2682  * PCIe capability offset. Using this instead of pci_find_capability()
2683  * reduces unnecessary search in the PCI configuration space. If you
2684  * need to calculate PCIe capability offset from raw device for some
2685  * reasons, please use pci_find_capability() instead.
2686  */
pci_pcie_cap(struct pci_dev * dev)2687 static inline int pci_pcie_cap(struct pci_dev *dev)
2688 {
2689 	return dev->pcie_cap;
2690 }
2691 
2692 /**
2693  * pci_is_pcie - check if the PCI device is PCI Express capable
2694  * @dev: PCI device
2695  *
2696  * Returns: true if the PCI device is PCI Express capable, false otherwise.
2697  */
pci_is_pcie(struct pci_dev * dev)2698 static inline bool pci_is_pcie(struct pci_dev *dev)
2699 {
2700 	return pci_pcie_cap(dev);
2701 }
2702 
2703 /**
2704  * pcie_caps_reg - get the PCIe Capabilities Register
2705  * @dev: PCI device
2706  */
pcie_caps_reg(const struct pci_dev * dev)2707 static inline u16 pcie_caps_reg(const struct pci_dev *dev)
2708 {
2709 	return dev->pcie_flags_reg;
2710 }
2711 
2712 /**
2713  * pci_pcie_type - get the PCIe device/port type
2714  * @dev: PCI device
2715  */
pci_pcie_type(const struct pci_dev * dev)2716 static inline int pci_pcie_type(const struct pci_dev *dev)
2717 {
2718 	return (pcie_caps_reg(dev) & PCI_EXP_FLAGS_TYPE) >> 4;
2719 }
2720 
2721 /**
2722  * pcie_find_root_port - Get the PCIe root port device
2723  * @dev: PCI device
2724  *
2725  * Traverse up the parent chain and return the PCIe Root Port PCI Device
2726  * for a given PCI/PCIe Device.
2727  */
pcie_find_root_port(struct pci_dev * dev)2728 static inline struct pci_dev *pcie_find_root_port(struct pci_dev *dev)
2729 {
2730 	while (dev) {
2731 		if (pci_is_pcie(dev) &&
2732 		    pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT)
2733 			return dev;
2734 		dev = pci_upstream_bridge(dev);
2735 	}
2736 
2737 	return NULL;
2738 }
2739 
pci_dev_is_disconnected(const struct pci_dev * dev)2740 static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
2741 {
2742 	/*
2743 	 * error_state is set in pci_dev_set_io_state() using xchg/cmpxchg()
2744 	 * and read w/o common lock. READ_ONCE() ensures compiler cannot cache
2745 	 * the value (e.g. inside the loop in pci_dev_wait()).
2746 	 */
2747 	return READ_ONCE(dev->error_state) == pci_channel_io_perm_failure;
2748 }
2749 
2750 void pci_request_acs(void);
2751 bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags);
2752 bool pci_acs_path_enabled(struct pci_dev *start,
2753 			  struct pci_dev *end, u16 acs_flags);
2754 int pci_enable_atomic_ops_to_root(struct pci_dev *dev, u32 cap_mask);
2755 
2756 #define PCI_VPD_LRDT			0x80	/* Large Resource Data Type */
2757 #define PCI_VPD_LRDT_ID(x)		((x) | PCI_VPD_LRDT)
2758 
2759 /* Large Resource Data Type Tag Item Names */
2760 #define PCI_VPD_LTIN_ID_STRING		0x02	/* Identifier String */
2761 #define PCI_VPD_LTIN_RO_DATA		0x10	/* Read-Only Data */
2762 #define PCI_VPD_LTIN_RW_DATA		0x11	/* Read-Write Data */
2763 
2764 #define PCI_VPD_LRDT_ID_STRING		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_ID_STRING)
2765 #define PCI_VPD_LRDT_RO_DATA		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_RO_DATA)
2766 #define PCI_VPD_LRDT_RW_DATA		PCI_VPD_LRDT_ID(PCI_VPD_LTIN_RW_DATA)
2767 
2768 #define PCI_VPD_RO_KEYWORD_PARTNO	"PN"
2769 #define PCI_VPD_RO_KEYWORD_SERIALNO	"SN"
2770 #define PCI_VPD_RO_KEYWORD_MFR_ID	"MN"
2771 #define PCI_VPD_RO_KEYWORD_VENDOR0	"V0"
2772 #define PCI_VPD_RO_KEYWORD_CHKSUM	"RV"
2773 
2774 /**
2775  * pci_vpd_alloc - Allocate buffer and read VPD into it
2776  * @dev: PCI device
2777  * @size: pointer to field where VPD length is returned
2778  *
2779  * Returns pointer to allocated buffer or an ERR_PTR in case of failure
2780  */
2781 void *pci_vpd_alloc(struct pci_dev *dev, unsigned int *size);
2782 
2783 /**
2784  * pci_vpd_find_id_string - Locate id string in VPD
2785  * @buf: Pointer to buffered VPD data
2786  * @len: The length of the buffer area in which to search
2787  * @size: Pointer to field where length of id string is returned
2788  *
2789  * Returns the index of the id string or -ENOENT if not found.
2790  */
2791 int pci_vpd_find_id_string(const u8 *buf, unsigned int len, unsigned int *size);
2792 
2793 /**
2794  * pci_vpd_find_ro_info_keyword - Locate info field keyword in VPD RO section
2795  * @buf: Pointer to buffered VPD data
2796  * @len: The length of the buffer area in which to search
2797  * @kw: The keyword to search for
2798  * @size: Pointer to field where length of found keyword data is returned
2799  *
2800  * Returns the index of the information field keyword data or -ENOENT if
2801  * not found.
2802  */
2803 int pci_vpd_find_ro_info_keyword(const void *buf, unsigned int len,
2804 				 const char *kw, unsigned int *size);
2805 
2806 /**
2807  * pci_vpd_check_csum - Check VPD checksum
2808  * @buf: Pointer to buffered VPD data
2809  * @len: VPD size
2810  *
2811  * Returns 1 if VPD has no checksum, otherwise 0 or an errno
2812  */
2813 int pci_vpd_check_csum(const void *buf, unsigned int len);
2814 
2815 /* PCI <-> OF binding helpers */
2816 #ifdef CONFIG_OF
2817 struct device_node;
2818 struct irq_domain;
2819 struct irq_domain *pci_host_bridge_of_msi_domain(struct pci_bus *bus);
2820 bool pci_host_of_has_msi_map(struct device *dev);
2821 
2822 /* Arch may override this (weak) */
2823 struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus);
2824 
2825 #else	/* CONFIG_OF */
2826 static inline struct irq_domain *
pci_host_bridge_of_msi_domain(struct pci_bus * bus)2827 pci_host_bridge_of_msi_domain(struct pci_bus *bus) { return NULL; }
pci_host_of_has_msi_map(struct device * dev)2828 static inline bool pci_host_of_has_msi_map(struct device *dev) { return false; }
2829 #endif  /* CONFIG_OF */
2830 
2831 static inline struct device_node *
pci_device_to_OF_node(const struct pci_dev * pdev)2832 pci_device_to_OF_node(const struct pci_dev *pdev)
2833 {
2834 	return pdev ? pdev->dev.of_node : NULL;
2835 }
2836 
pci_bus_to_OF_node(struct pci_bus * bus)2837 static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
2838 {
2839 	return bus ? bus->dev.of_node : NULL;
2840 }
2841 
2842 #ifdef CONFIG_ACPI
2843 struct irq_domain *pci_host_bridge_acpi_msi_domain(struct pci_bus *bus);
2844 
2845 void
2846 pci_msi_register_fwnode_provider(struct fwnode_handle *(*fn)(struct device *));
2847 bool pci_pr3_present(struct pci_dev *pdev);
2848 #else
2849 static inline struct irq_domain *
pci_host_bridge_acpi_msi_domain(struct pci_bus * bus)2850 pci_host_bridge_acpi_msi_domain(struct pci_bus *bus) { return NULL; }
pci_pr3_present(struct pci_dev * pdev)2851 static inline bool pci_pr3_present(struct pci_dev *pdev) { return false; }
2852 #endif
2853 
2854 #if defined(CONFIG_X86) && defined(CONFIG_ACPI)
2855 bool arch_pci_dev_is_removable(struct pci_dev *pdev);
2856 #else
arch_pci_dev_is_removable(struct pci_dev * pdev)2857 static inline bool arch_pci_dev_is_removable(struct pci_dev *pdev) { return false; }
2858 #endif
2859 
2860 #ifdef CONFIG_EEH
pci_dev_to_eeh_dev(struct pci_dev * pdev)2861 static inline struct eeh_dev *pci_dev_to_eeh_dev(struct pci_dev *pdev)
2862 {
2863 	return pdev->dev.archdata.edev;
2864 }
2865 #endif
2866 
2867 void pci_add_dma_alias(struct pci_dev *dev, u8 devfn_from, unsigned nr_devfns);
2868 bool pci_devs_are_dma_aliases(struct pci_dev *dev1, struct pci_dev *dev2);
2869 int pci_for_each_dma_alias(struct pci_dev *pdev,
2870 			   int (*fn)(struct pci_dev *pdev,
2871 				     u16 alias, void *data), void *data);
2872 
2873 /* Helper functions for operation of device flag */
pci_set_dev_assigned(struct pci_dev * pdev)2874 static inline void pci_set_dev_assigned(struct pci_dev *pdev)
2875 {
2876 	pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
2877 }
pci_clear_dev_assigned(struct pci_dev * pdev)2878 static inline void pci_clear_dev_assigned(struct pci_dev *pdev)
2879 {
2880 	pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
2881 }
pci_is_dev_assigned(struct pci_dev * pdev)2882 static inline bool pci_is_dev_assigned(struct pci_dev *pdev)
2883 {
2884 	return (pdev->dev_flags & PCI_DEV_FLAGS_ASSIGNED) == PCI_DEV_FLAGS_ASSIGNED;
2885 }
2886 
2887 /**
2888  * pci_ari_enabled - query ARI forwarding status
2889  * @bus: the PCI bus
2890  *
2891  * Returns true if ARI forwarding is enabled.
2892  */
pci_ari_enabled(struct pci_bus * bus)2893 static inline bool pci_ari_enabled(struct pci_bus *bus)
2894 {
2895 	return bus->self && bus->self->ari_enabled;
2896 }
2897 
2898 /**
2899  * pci_is_thunderbolt_attached - whether device is on a Thunderbolt daisy chain
2900  * @pdev: PCI device to check
2901  *
2902  * Walk upwards from @pdev and check for each encountered bridge if it's part
2903  * of a Thunderbolt controller.  Reaching the host bridge means @pdev is not
2904  * Thunderbolt-attached.  (But rather soldered to the mainboard usually.)
2905  */
pci_is_thunderbolt_attached(struct pci_dev * pdev)2906 static inline bool pci_is_thunderbolt_attached(struct pci_dev *pdev)
2907 {
2908 	struct pci_dev *parent = pdev;
2909 
2910 	if (pdev->is_thunderbolt)
2911 		return true;
2912 
2913 	while ((parent = pci_upstream_bridge(parent)))
2914 		if (parent->is_thunderbolt)
2915 			return true;
2916 
2917 	return false;
2918 }
2919 
2920 #if defined(CONFIG_PCIEPORTBUS) || defined(CONFIG_EEH) || defined(CONFIG_S390)
2921 void pci_uevent_ers(struct pci_dev *pdev, enum  pci_ers_result err_type);
2922 #endif
2923 
2924 #include <linux/dma-mapping.h>
2925 
2926 #define pci_emerg(pdev, fmt, arg...)	dev_emerg(&(pdev)->dev, fmt, ##arg)
2927 #define pci_alert(pdev, fmt, arg...)	dev_alert(&(pdev)->dev, fmt, ##arg)
2928 #define pci_crit(pdev, fmt, arg...)	dev_crit(&(pdev)->dev, fmt, ##arg)
2929 #define pci_err(pdev, fmt, arg...)	dev_err(&(pdev)->dev, fmt, ##arg)
2930 #define pci_warn(pdev, fmt, arg...)	dev_warn(&(pdev)->dev, fmt, ##arg)
2931 #define pci_warn_once(pdev, fmt, arg...) dev_warn_once(&(pdev)->dev, fmt, ##arg)
2932 #define pci_notice(pdev, fmt, arg...)	dev_notice(&(pdev)->dev, fmt, ##arg)
2933 #define pci_info(pdev, fmt, arg...)	dev_info(&(pdev)->dev, fmt, ##arg)
2934 #define pci_dbg(pdev, fmt, arg...)	dev_dbg(&(pdev)->dev, fmt, ##arg)
2935 
2936 #define pci_notice_ratelimited(pdev, fmt, arg...) \
2937 	dev_notice_ratelimited(&(pdev)->dev, fmt, ##arg)
2938 
2939 #define pci_info_ratelimited(pdev, fmt, arg...) \
2940 	dev_info_ratelimited(&(pdev)->dev, fmt, ##arg)
2941 
2942 #define pci_WARN(pdev, condition, fmt, arg...) \
2943 	WARN(condition, "%s %s: " fmt, \
2944 	     dev_driver_string(&(pdev)->dev), pci_name(pdev), ##arg)
2945 
2946 #define pci_WARN_ONCE(pdev, condition, fmt, arg...) \
2947 	WARN_ONCE(condition, "%s %s: " fmt, \
2948 		  dev_driver_string(&(pdev)->dev), pci_name(pdev), ##arg)
2949 
2950 #endif /* LINUX_PCI_H */
2951