Loading...
1#ifndef DRIVERS_PCI_H
2#define DRIVERS_PCI_H
3
4#define PCI_CFG_SPACE_SIZE 256
5#define PCI_CFG_SPACE_EXP_SIZE 4096
6
7#define PCI_FIND_CAP_TTL 48
8
9extern const unsigned char pcie_link_speed[];
10
11bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
12
13/* Functions internal to the PCI core code */
14
15int pci_create_sysfs_dev_files(struct pci_dev *pdev);
16void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
17#if !defined(CONFIG_DMI) && !defined(CONFIG_ACPI)
18static inline void pci_create_firmware_label_files(struct pci_dev *pdev)
19{ return; }
20static inline void pci_remove_firmware_label_files(struct pci_dev *pdev)
21{ return; }
22#else
23void pci_create_firmware_label_files(struct pci_dev *pdev);
24void pci_remove_firmware_label_files(struct pci_dev *pdev);
25#endif
26void pci_cleanup_rom(struct pci_dev *dev);
27#ifdef HAVE_PCI_MMAP
28enum pci_mmap_api {
29 PCI_MMAP_SYSFS, /* mmap on /sys/bus/pci/devices/<BDF>/resource<N> */
30 PCI_MMAP_PROCFS /* mmap on /proc/bus/pci/<BDF> */
31};
32int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
33 enum pci_mmap_api mmap_api);
34#endif
35int pci_probe_reset_function(struct pci_dev *dev);
36
37/**
38 * struct pci_platform_pm_ops - Firmware PM callbacks
39 *
40 * @is_manageable: returns 'true' if given device is power manageable by the
41 * platform firmware
42 *
43 * @set_state: invokes the platform firmware to set the device's power state
44 *
45 * @choose_state: returns PCI power state of given device preferred by the
46 * platform; to be used during system-wide transitions from a
47 * sleeping state to the working state and vice versa
48 *
49 * @sleep_wake: enables/disables the system wake up capability of given device
50 *
51 * @run_wake: enables/disables the platform to generate run-time wake-up events
52 * for given device (the device's wake-up capability has to be
53 * enabled by @sleep_wake for this feature to work)
54 *
55 * @need_resume: returns 'true' if the given device (which is currently
56 * suspended) needs to be resumed to be configured for system
57 * wakeup.
58 *
59 * If given platform is generally capable of power managing PCI devices, all of
60 * these callbacks are mandatory.
61 */
62struct pci_platform_pm_ops {
63 bool (*is_manageable)(struct pci_dev *dev);
64 int (*set_state)(struct pci_dev *dev, pci_power_t state);
65 pci_power_t (*choose_state)(struct pci_dev *dev);
66 int (*sleep_wake)(struct pci_dev *dev, bool enable);
67 int (*run_wake)(struct pci_dev *dev, bool enable);
68 bool (*need_resume)(struct pci_dev *dev);
69};
70
71int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
72void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
73void pci_power_up(struct pci_dev *dev);
74void pci_disable_enabled_device(struct pci_dev *dev);
75int pci_finish_runtime_suspend(struct pci_dev *dev);
76int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
77bool pci_dev_keep_suspended(struct pci_dev *dev);
78void pci_dev_complete_resume(struct pci_dev *pci_dev);
79void pci_config_pm_runtime_get(struct pci_dev *dev);
80void pci_config_pm_runtime_put(struct pci_dev *dev);
81void pci_pm_init(struct pci_dev *dev);
82void pci_ea_init(struct pci_dev *dev);
83void pci_allocate_cap_save_buffers(struct pci_dev *dev);
84void pci_free_cap_save_buffers(struct pci_dev *dev);
85
86static inline void pci_wakeup_event(struct pci_dev *dev)
87{
88 /* Wait 100 ms before the system can be put into a sleep state. */
89 pm_wakeup_event(&dev->dev, 100);
90}
91
92static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
93{
94 return !!(pci_dev->subordinate);
95}
96
97struct pci_vpd_ops {
98 ssize_t (*read)(struct pci_dev *dev, loff_t pos, size_t count, void *buf);
99 ssize_t (*write)(struct pci_dev *dev, loff_t pos, size_t count, const void *buf);
100 int (*set_size)(struct pci_dev *dev, size_t len);
101};
102
103struct pci_vpd {
104 const struct pci_vpd_ops *ops;
105 struct bin_attribute *attr; /* descriptor for sysfs VPD entry */
106 struct mutex lock;
107 unsigned int len;
108 u16 flag;
109 u8 cap;
110 u8 busy:1;
111 u8 valid:1;
112};
113
114int pci_vpd_init(struct pci_dev *dev);
115void pci_vpd_release(struct pci_dev *dev);
116
117/* PCI /proc functions */
118#ifdef CONFIG_PROC_FS
119int pci_proc_attach_device(struct pci_dev *dev);
120int pci_proc_detach_device(struct pci_dev *dev);
121int pci_proc_detach_bus(struct pci_bus *bus);
122#else
123static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
124static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
125static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
126#endif
127
128/* Functions for PCI Hotplug drivers to use */
129int pci_hp_add_bridge(struct pci_dev *dev);
130
131#ifdef HAVE_PCI_LEGACY
132void pci_create_legacy_files(struct pci_bus *bus);
133void pci_remove_legacy_files(struct pci_bus *bus);
134#else
135static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
136static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
137#endif
138
139/* Lock for read/write access to pci device and bus lists */
140extern struct rw_semaphore pci_bus_sem;
141
142extern raw_spinlock_t pci_lock;
143
144extern unsigned int pci_pm_d3_delay;
145
146#ifdef CONFIG_PCI_MSI
147void pci_no_msi(void);
148#else
149static inline void pci_no_msi(void) { }
150#endif
151
152static inline void pci_msi_set_enable(struct pci_dev *dev, int enable)
153{
154 u16 control;
155
156 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
157 control &= ~PCI_MSI_FLAGS_ENABLE;
158 if (enable)
159 control |= PCI_MSI_FLAGS_ENABLE;
160 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
161}
162
163static inline void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
164{
165 u16 ctrl;
166
167 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
168 ctrl &= ~clear;
169 ctrl |= set;
170 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
171}
172
173void pci_realloc_get_opt(char *);
174
175static inline int pci_no_d1d2(struct pci_dev *dev)
176{
177 unsigned int parent_dstates = 0;
178
179 if (dev->bus->self)
180 parent_dstates = dev->bus->self->no_d1d2;
181 return (dev->no_d1d2 || parent_dstates);
182
183}
184extern const struct attribute_group *pci_dev_groups[];
185extern const struct attribute_group *pcibus_groups[];
186extern struct device_type pci_dev_type;
187extern const struct attribute_group *pci_bus_groups[];
188
189
190/**
191 * pci_match_one_device - Tell if a PCI device structure has a matching
192 * PCI device id structure
193 * @id: single PCI device id structure to match
194 * @dev: the PCI device structure to match against
195 *
196 * Returns the matching pci_device_id structure or %NULL if there is no match.
197 */
198static inline const struct pci_device_id *
199pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
200{
201 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
202 (id->device == PCI_ANY_ID || id->device == dev->device) &&
203 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
204 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
205 !((id->class ^ dev->class) & id->class_mask))
206 return id;
207 return NULL;
208}
209
210/* PCI slot sysfs helper code */
211#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
212
213extern struct kset *pci_slots_kset;
214
215struct pci_slot_attribute {
216 struct attribute attr;
217 ssize_t (*show)(struct pci_slot *, char *);
218 ssize_t (*store)(struct pci_slot *, const char *, size_t);
219};
220#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
221
222enum pci_bar_type {
223 pci_bar_unknown, /* Standard PCI BAR probe */
224 pci_bar_io, /* An io port BAR */
225 pci_bar_mem32, /* A 32-bit memory BAR */
226 pci_bar_mem64, /* A 64-bit memory BAR */
227};
228
229bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
230 int crs_timeout);
231int pci_setup_device(struct pci_dev *dev);
232int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
233 struct resource *res, unsigned int reg);
234int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type);
235void pci_configure_ari(struct pci_dev *dev);
236void __pci_bus_size_bridges(struct pci_bus *bus,
237 struct list_head *realloc_head);
238void __pci_bus_assign_resources(const struct pci_bus *bus,
239 struct list_head *realloc_head,
240 struct list_head *fail_head);
241bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
242
243void pci_reassigndev_resource_alignment(struct pci_dev *dev);
244void pci_disable_bridge_window(struct pci_dev *dev);
245
246/* Single Root I/O Virtualization */
247struct pci_sriov {
248 int pos; /* capability position */
249 int nres; /* number of resources */
250 u32 cap; /* SR-IOV Capabilities */
251 u16 ctrl; /* SR-IOV Control */
252 u16 total_VFs; /* total VFs associated with the PF */
253 u16 initial_VFs; /* initial VFs associated with the PF */
254 u16 num_VFs; /* number of VFs available */
255 u16 offset; /* first VF Routing ID offset */
256 u16 stride; /* following VF stride */
257 u32 pgsz; /* page size for BAR alignment */
258 u8 link; /* Function Dependency Link */
259 u8 max_VF_buses; /* max buses consumed by VFs */
260 u16 driver_max_VFs; /* max num VFs driver supports */
261 struct pci_dev *dev; /* lowest numbered PF */
262 struct pci_dev *self; /* this PF */
263 struct mutex lock; /* lock for VF bus */
264 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
265};
266
267#ifdef CONFIG_PCI_ATS
268void pci_restore_ats_state(struct pci_dev *dev);
269#else
270static inline void pci_restore_ats_state(struct pci_dev *dev)
271{
272}
273#endif /* CONFIG_PCI_ATS */
274
275#ifdef CONFIG_PCI_IOV
276int pci_iov_init(struct pci_dev *dev);
277void pci_iov_release(struct pci_dev *dev);
278int pci_iov_resource_bar(struct pci_dev *dev, int resno);
279resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
280void pci_restore_iov_state(struct pci_dev *dev);
281int pci_iov_bus_range(struct pci_bus *bus);
282
283#else
284static inline int pci_iov_init(struct pci_dev *dev)
285{
286 return -ENODEV;
287}
288static inline void pci_iov_release(struct pci_dev *dev)
289
290{
291}
292static inline int pci_iov_resource_bar(struct pci_dev *dev, int resno)
293{
294 return 0;
295}
296static inline void pci_restore_iov_state(struct pci_dev *dev)
297{
298}
299static inline int pci_iov_bus_range(struct pci_bus *bus)
300{
301 return 0;
302}
303
304#endif /* CONFIG_PCI_IOV */
305
306unsigned long pci_cardbus_resource_alignment(struct resource *);
307
308static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
309 struct resource *res)
310{
311#ifdef CONFIG_PCI_IOV
312 int resno = res - dev->resource;
313
314 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
315 return pci_sriov_resource_alignment(dev, resno);
316#endif
317 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
318 return pci_cardbus_resource_alignment(res);
319 return resource_alignment(res);
320}
321
322void pci_enable_acs(struct pci_dev *dev);
323
324struct pci_dev_reset_methods {
325 u16 vendor;
326 u16 device;
327 int (*reset)(struct pci_dev *dev, int probe);
328};
329
330#ifdef CONFIG_PCI_QUIRKS
331int pci_dev_specific_reset(struct pci_dev *dev, int probe);
332#else
333static inline int pci_dev_specific_reset(struct pci_dev *dev, int probe)
334{
335 return -ENOTTY;
336}
337#endif
338
339#endif /* DRIVERS_PCI_H */
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef DRIVERS_PCI_H
3#define DRIVERS_PCI_H
4
5#include <linux/pci.h>
6
7/* Number of possible devfns: 0.0 to 1f.7 inclusive */
8#define MAX_NR_DEVFNS 256
9
10#define PCI_FIND_CAP_TTL 48
11
12#define PCI_VSEC_ID_INTEL_TBT 0x1234 /* Thunderbolt */
13
14extern const unsigned char pcie_link_speed[];
15extern bool pci_early_dump;
16
17bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
18bool pcie_cap_has_rtctl(const struct pci_dev *dev);
19
20/* Functions internal to the PCI core code */
21
22int pci_create_sysfs_dev_files(struct pci_dev *pdev);
23void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
24void pci_cleanup_rom(struct pci_dev *dev);
25#ifdef CONFIG_DMI
26extern const struct attribute_group pci_dev_smbios_attr_group;
27#endif
28
29enum pci_mmap_api {
30 PCI_MMAP_SYSFS, /* mmap on /sys/bus/pci/devices/<BDF>/resource<N> */
31 PCI_MMAP_PROCFS /* mmap on /proc/bus/pci/<BDF> */
32};
33int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
34 enum pci_mmap_api mmap_api);
35
36int pci_probe_reset_function(struct pci_dev *dev);
37int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
38int pci_bus_error_reset(struct pci_dev *dev);
39
40#define PCI_PM_D2_DELAY 200 /* usec; see PCIe r4.0, sec 5.9.1 */
41#define PCI_PM_D3HOT_WAIT 10 /* msec */
42#define PCI_PM_D3COLD_WAIT 100 /* msec */
43
44/**
45 * struct pci_platform_pm_ops - Firmware PM callbacks
46 *
47 * @bridge_d3: Does the bridge allow entering into D3
48 *
49 * @is_manageable: returns 'true' if given device is power manageable by the
50 * platform firmware
51 *
52 * @set_state: invokes the platform firmware to set the device's power state
53 *
54 * @get_state: queries the platform firmware for a device's current power state
55 *
56 * @refresh_state: asks the platform to refresh the device's power state data
57 *
58 * @choose_state: returns PCI power state of given device preferred by the
59 * platform; to be used during system-wide transitions from a
60 * sleeping state to the working state and vice versa
61 *
62 * @set_wakeup: enables/disables wakeup capability for the device
63 *
64 * @need_resume: returns 'true' if the given device (which is currently
65 * suspended) needs to be resumed to be configured for system
66 * wakeup.
67 *
68 * If given platform is generally capable of power managing PCI devices, all of
69 * these callbacks are mandatory.
70 */
71struct pci_platform_pm_ops {
72 bool (*bridge_d3)(struct pci_dev *dev);
73 bool (*is_manageable)(struct pci_dev *dev);
74 int (*set_state)(struct pci_dev *dev, pci_power_t state);
75 pci_power_t (*get_state)(struct pci_dev *dev);
76 void (*refresh_state)(struct pci_dev *dev);
77 pci_power_t (*choose_state)(struct pci_dev *dev);
78 int (*set_wakeup)(struct pci_dev *dev, bool enable);
79 bool (*need_resume)(struct pci_dev *dev);
80};
81
82int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
83void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
84void pci_refresh_power_state(struct pci_dev *dev);
85int pci_power_up(struct pci_dev *dev);
86void pci_disable_enabled_device(struct pci_dev *dev);
87int pci_finish_runtime_suspend(struct pci_dev *dev);
88void pcie_clear_device_status(struct pci_dev *dev);
89void pcie_clear_root_pme_status(struct pci_dev *dev);
90bool pci_check_pme_status(struct pci_dev *dev);
91void pci_pme_wakeup_bus(struct pci_bus *bus);
92int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
93void pci_pme_restore(struct pci_dev *dev);
94bool pci_dev_need_resume(struct pci_dev *dev);
95void pci_dev_adjust_pme(struct pci_dev *dev);
96void pci_dev_complete_resume(struct pci_dev *pci_dev);
97void pci_config_pm_runtime_get(struct pci_dev *dev);
98void pci_config_pm_runtime_put(struct pci_dev *dev);
99void pci_pm_init(struct pci_dev *dev);
100void pci_ea_init(struct pci_dev *dev);
101void pci_msi_init(struct pci_dev *dev);
102void pci_msix_init(struct pci_dev *dev);
103void pci_allocate_cap_save_buffers(struct pci_dev *dev);
104void pci_free_cap_save_buffers(struct pci_dev *dev);
105bool pci_bridge_d3_possible(struct pci_dev *dev);
106void pci_bridge_d3_update(struct pci_dev *dev);
107void pci_bridge_wait_for_secondary_bus(struct pci_dev *dev);
108
109static inline void pci_wakeup_event(struct pci_dev *dev)
110{
111 /* Wait 100 ms before the system can be put into a sleep state. */
112 pm_wakeup_event(&dev->dev, 100);
113}
114
115static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
116{
117 return !!(pci_dev->subordinate);
118}
119
120static inline bool pci_power_manageable(struct pci_dev *pci_dev)
121{
122 /*
123 * Currently we allow normal PCI devices and PCI bridges transition
124 * into D3 if their bridge_d3 is set.
125 */
126 return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
127}
128
129static inline bool pcie_downstream_port(const struct pci_dev *dev)
130{
131 int type = pci_pcie_type(dev);
132
133 return type == PCI_EXP_TYPE_ROOT_PORT ||
134 type == PCI_EXP_TYPE_DOWNSTREAM ||
135 type == PCI_EXP_TYPE_PCIE_BRIDGE;
136}
137
138void pci_vpd_init(struct pci_dev *dev);
139void pci_vpd_release(struct pci_dev *dev);
140extern const struct attribute_group pci_dev_vpd_attr_group;
141
142/* PCI Virtual Channel */
143int pci_save_vc_state(struct pci_dev *dev);
144void pci_restore_vc_state(struct pci_dev *dev);
145void pci_allocate_vc_save_buffers(struct pci_dev *dev);
146
147/* PCI /proc functions */
148#ifdef CONFIG_PROC_FS
149int pci_proc_attach_device(struct pci_dev *dev);
150int pci_proc_detach_device(struct pci_dev *dev);
151int pci_proc_detach_bus(struct pci_bus *bus);
152#else
153static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
154static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
155static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
156#endif
157
158/* Functions for PCI Hotplug drivers to use */
159int pci_hp_add_bridge(struct pci_dev *dev);
160
161#ifdef HAVE_PCI_LEGACY
162void pci_create_legacy_files(struct pci_bus *bus);
163void pci_remove_legacy_files(struct pci_bus *bus);
164#else
165static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
166static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
167#endif
168
169/* Lock for read/write access to pci device and bus lists */
170extern struct rw_semaphore pci_bus_sem;
171extern struct mutex pci_slot_mutex;
172
173extern raw_spinlock_t pci_lock;
174
175extern unsigned int pci_pm_d3hot_delay;
176
177#ifdef CONFIG_PCI_MSI
178void pci_no_msi(void);
179#else
180static inline void pci_no_msi(void) { }
181#endif
182
183void pci_realloc_get_opt(char *);
184
185static inline int pci_no_d1d2(struct pci_dev *dev)
186{
187 unsigned int parent_dstates = 0;
188
189 if (dev->bus->self)
190 parent_dstates = dev->bus->self->no_d1d2;
191 return (dev->no_d1d2 || parent_dstates);
192
193}
194extern const struct attribute_group *pci_dev_groups[];
195extern const struct attribute_group *pcibus_groups[];
196extern const struct device_type pci_dev_type;
197extern const struct attribute_group *pci_bus_groups[];
198
199extern unsigned long pci_hotplug_io_size;
200extern unsigned long pci_hotplug_mmio_size;
201extern unsigned long pci_hotplug_mmio_pref_size;
202extern unsigned long pci_hotplug_bus_size;
203
204/**
205 * pci_match_one_device - Tell if a PCI device structure has a matching
206 * PCI device id structure
207 * @id: single PCI device id structure to match
208 * @dev: the PCI device structure to match against
209 *
210 * Returns the matching pci_device_id structure or %NULL if there is no match.
211 */
212static inline const struct pci_device_id *
213pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
214{
215 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
216 (id->device == PCI_ANY_ID || id->device == dev->device) &&
217 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
218 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
219 !((id->class ^ dev->class) & id->class_mask))
220 return id;
221 return NULL;
222}
223
224/* PCI slot sysfs helper code */
225#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
226
227extern struct kset *pci_slots_kset;
228
229struct pci_slot_attribute {
230 struct attribute attr;
231 ssize_t (*show)(struct pci_slot *, char *);
232 ssize_t (*store)(struct pci_slot *, const char *, size_t);
233};
234#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
235
236enum pci_bar_type {
237 pci_bar_unknown, /* Standard PCI BAR probe */
238 pci_bar_io, /* An I/O port BAR */
239 pci_bar_mem32, /* A 32-bit memory BAR */
240 pci_bar_mem64, /* A 64-bit memory BAR */
241};
242
243struct device *pci_get_host_bridge_device(struct pci_dev *dev);
244void pci_put_host_bridge_device(struct device *dev);
245
246int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
247bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
248 int crs_timeout);
249bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
250 int crs_timeout);
251int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
252
253int pci_setup_device(struct pci_dev *dev);
254int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
255 struct resource *res, unsigned int reg);
256void pci_configure_ari(struct pci_dev *dev);
257void __pci_bus_size_bridges(struct pci_bus *bus,
258 struct list_head *realloc_head);
259void __pci_bus_assign_resources(const struct pci_bus *bus,
260 struct list_head *realloc_head,
261 struct list_head *fail_head);
262bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
263
264void pci_reassigndev_resource_alignment(struct pci_dev *dev);
265void pci_disable_bridge_window(struct pci_dev *dev);
266struct pci_bus *pci_bus_get(struct pci_bus *bus);
267void pci_bus_put(struct pci_bus *bus);
268
269/* PCIe link information from Link Capabilities 2 */
270#define PCIE_LNKCAP2_SLS2SPEED(lnkcap2) \
271 ((lnkcap2) & PCI_EXP_LNKCAP2_SLS_64_0GB ? PCIE_SPEED_64_0GT : \
272 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_32_0GB ? PCIE_SPEED_32_0GT : \
273 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_16_0GB ? PCIE_SPEED_16_0GT : \
274 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_8_0GB ? PCIE_SPEED_8_0GT : \
275 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_5_0GB ? PCIE_SPEED_5_0GT : \
276 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_2_5GB ? PCIE_SPEED_2_5GT : \
277 PCI_SPEED_UNKNOWN)
278
279/* PCIe speed to Mb/s reduced by encoding overhead */
280#define PCIE_SPEED2MBS_ENC(speed) \
281 ((speed) == PCIE_SPEED_64_0GT ? 64000*128/130 : \
282 (speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \
283 (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
284 (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \
285 (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \
286 (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \
287 0)
288
289const char *pci_speed_string(enum pci_bus_speed speed);
290enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
291enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
292u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
293 enum pcie_link_width *width);
294void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
295void pcie_report_downtraining(struct pci_dev *dev);
296void pcie_update_link_speed(struct pci_bus *bus, u16 link_status);
297
298/* Single Root I/O Virtualization */
299struct pci_sriov {
300 int pos; /* Capability position */
301 int nres; /* Number of resources */
302 u32 cap; /* SR-IOV Capabilities */
303 u16 ctrl; /* SR-IOV Control */
304 u16 total_VFs; /* Total VFs associated with the PF */
305 u16 initial_VFs; /* Initial VFs associated with the PF */
306 u16 num_VFs; /* Number of VFs available */
307 u16 offset; /* First VF Routing ID offset */
308 u16 stride; /* Following VF stride */
309 u16 vf_device; /* VF device ID */
310 u32 pgsz; /* Page size for BAR alignment */
311 u8 link; /* Function Dependency Link */
312 u8 max_VF_buses; /* Max buses consumed by VFs */
313 u16 driver_max_VFs; /* Max num VFs driver supports */
314 struct pci_dev *dev; /* Lowest numbered PF */
315 struct pci_dev *self; /* This PF */
316 u32 class; /* VF device */
317 u8 hdr_type; /* VF header type */
318 u16 subsystem_vendor; /* VF subsystem vendor */
319 u16 subsystem_device; /* VF subsystem device */
320 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
321 bool drivers_autoprobe; /* Auto probing of VFs by driver */
322};
323
324/**
325 * pci_dev_set_io_state - Set the new error state if possible.
326 *
327 * @dev: PCI device to set new error_state
328 * @new: the state we want dev to be in
329 *
330 * Must be called with device_lock held.
331 *
332 * Returns true if state has been changed to the requested state.
333 */
334static inline bool pci_dev_set_io_state(struct pci_dev *dev,
335 pci_channel_state_t new)
336{
337 bool changed = false;
338
339 device_lock_assert(&dev->dev);
340 switch (new) {
341 case pci_channel_io_perm_failure:
342 switch (dev->error_state) {
343 case pci_channel_io_frozen:
344 case pci_channel_io_normal:
345 case pci_channel_io_perm_failure:
346 changed = true;
347 break;
348 }
349 break;
350 case pci_channel_io_frozen:
351 switch (dev->error_state) {
352 case pci_channel_io_frozen:
353 case pci_channel_io_normal:
354 changed = true;
355 break;
356 }
357 break;
358 case pci_channel_io_normal:
359 switch (dev->error_state) {
360 case pci_channel_io_frozen:
361 case pci_channel_io_normal:
362 changed = true;
363 break;
364 }
365 break;
366 }
367 if (changed)
368 dev->error_state = new;
369 return changed;
370}
371
372static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
373{
374 device_lock(&dev->dev);
375 pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
376 device_unlock(&dev->dev);
377
378 return 0;
379}
380
381static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
382{
383 return dev->error_state == pci_channel_io_perm_failure;
384}
385
386/* pci_dev priv_flags */
387#define PCI_DEV_ADDED 0
388#define PCI_DPC_RECOVERED 1
389#define PCI_DPC_RECOVERING 2
390
391static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
392{
393 assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
394}
395
396static inline bool pci_dev_is_added(const struct pci_dev *dev)
397{
398 return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
399}
400
401#ifdef CONFIG_PCIEAER
402#include <linux/aer.h>
403
404#define AER_MAX_MULTI_ERR_DEVICES 5 /* Not likely to have more */
405
406struct aer_err_info {
407 struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
408 int error_dev_num;
409
410 unsigned int id:16;
411
412 unsigned int severity:2; /* 0:NONFATAL | 1:FATAL | 2:COR */
413 unsigned int __pad1:5;
414 unsigned int multi_error_valid:1;
415
416 unsigned int first_error:5;
417 unsigned int __pad2:2;
418 unsigned int tlp_header_valid:1;
419
420 unsigned int status; /* COR/UNCOR Error Status */
421 unsigned int mask; /* COR/UNCOR Error Mask */
422 struct aer_header_log_regs tlp; /* TLP Header */
423};
424
425int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
426void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
427#endif /* CONFIG_PCIEAER */
428
429#ifdef CONFIG_PCIEPORTBUS
430/* Cached RCEC Endpoint Association */
431struct rcec_ea {
432 u8 nextbusn;
433 u8 lastbusn;
434 u32 bitmap;
435};
436#endif
437
438#ifdef CONFIG_PCIE_DPC
439void pci_save_dpc_state(struct pci_dev *dev);
440void pci_restore_dpc_state(struct pci_dev *dev);
441void pci_dpc_init(struct pci_dev *pdev);
442void dpc_process_error(struct pci_dev *pdev);
443pci_ers_result_t dpc_reset_link(struct pci_dev *pdev);
444bool pci_dpc_recovered(struct pci_dev *pdev);
445#else
446static inline void pci_save_dpc_state(struct pci_dev *dev) {}
447static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
448static inline void pci_dpc_init(struct pci_dev *pdev) {}
449static inline bool pci_dpc_recovered(struct pci_dev *pdev) { return false; }
450#endif
451
452#ifdef CONFIG_PCIEPORTBUS
453void pci_rcec_init(struct pci_dev *dev);
454void pci_rcec_exit(struct pci_dev *dev);
455void pcie_link_rcec(struct pci_dev *rcec);
456void pcie_walk_rcec(struct pci_dev *rcec,
457 int (*cb)(struct pci_dev *, void *),
458 void *userdata);
459#else
460static inline void pci_rcec_init(struct pci_dev *dev) {}
461static inline void pci_rcec_exit(struct pci_dev *dev) {}
462static inline void pcie_link_rcec(struct pci_dev *rcec) {}
463static inline void pcie_walk_rcec(struct pci_dev *rcec,
464 int (*cb)(struct pci_dev *, void *),
465 void *userdata) {}
466#endif
467
468#ifdef CONFIG_PCI_ATS
469/* Address Translation Service */
470void pci_ats_init(struct pci_dev *dev);
471void pci_restore_ats_state(struct pci_dev *dev);
472#else
473static inline void pci_ats_init(struct pci_dev *d) { }
474static inline void pci_restore_ats_state(struct pci_dev *dev) { }
475#endif /* CONFIG_PCI_ATS */
476
477#ifdef CONFIG_PCI_PRI
478void pci_pri_init(struct pci_dev *dev);
479void pci_restore_pri_state(struct pci_dev *pdev);
480#else
481static inline void pci_pri_init(struct pci_dev *dev) { }
482static inline void pci_restore_pri_state(struct pci_dev *pdev) { }
483#endif
484
485#ifdef CONFIG_PCI_PASID
486void pci_pasid_init(struct pci_dev *dev);
487void pci_restore_pasid_state(struct pci_dev *pdev);
488#else
489static inline void pci_pasid_init(struct pci_dev *dev) { }
490static inline void pci_restore_pasid_state(struct pci_dev *pdev) { }
491#endif
492
493#ifdef CONFIG_PCI_IOV
494int pci_iov_init(struct pci_dev *dev);
495void pci_iov_release(struct pci_dev *dev);
496void pci_iov_remove(struct pci_dev *dev);
497void pci_iov_update_resource(struct pci_dev *dev, int resno);
498resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
499void pci_restore_iov_state(struct pci_dev *dev);
500int pci_iov_bus_range(struct pci_bus *bus);
501extern const struct attribute_group sriov_pf_dev_attr_group;
502extern const struct attribute_group sriov_vf_dev_attr_group;
503#else
504static inline int pci_iov_init(struct pci_dev *dev)
505{
506 return -ENODEV;
507}
508static inline void pci_iov_release(struct pci_dev *dev)
509
510{
511}
512static inline void pci_iov_remove(struct pci_dev *dev)
513{
514}
515static inline void pci_restore_iov_state(struct pci_dev *dev)
516{
517}
518static inline int pci_iov_bus_range(struct pci_bus *bus)
519{
520 return 0;
521}
522
523#endif /* CONFIG_PCI_IOV */
524
525#ifdef CONFIG_PCIE_PTM
526void pci_save_ptm_state(struct pci_dev *dev);
527void pci_restore_ptm_state(struct pci_dev *dev);
528void pci_disable_ptm(struct pci_dev *dev);
529#else
530static inline void pci_save_ptm_state(struct pci_dev *dev) { }
531static inline void pci_restore_ptm_state(struct pci_dev *dev) { }
532static inline void pci_disable_ptm(struct pci_dev *dev) { }
533#endif
534
535unsigned long pci_cardbus_resource_alignment(struct resource *);
536
537static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
538 struct resource *res)
539{
540#ifdef CONFIG_PCI_IOV
541 int resno = res - dev->resource;
542
543 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
544 return pci_sriov_resource_alignment(dev, resno);
545#endif
546 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
547 return pci_cardbus_resource_alignment(res);
548 return resource_alignment(res);
549}
550
551void pci_acs_init(struct pci_dev *dev);
552#ifdef CONFIG_PCI_QUIRKS
553int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
554int pci_dev_specific_enable_acs(struct pci_dev *dev);
555int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
556#else
557static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
558 u16 acs_flags)
559{
560 return -ENOTTY;
561}
562static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
563{
564 return -ENOTTY;
565}
566static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
567{
568 return -ENOTTY;
569}
570#endif
571
572/* PCI error reporting and recovery */
573pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
574 pci_channel_state_t state,
575 pci_ers_result_t (*reset_subordinates)(struct pci_dev *pdev));
576
577bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
578#ifdef CONFIG_PCIEASPM
579void pcie_aspm_init_link_state(struct pci_dev *pdev);
580void pcie_aspm_exit_link_state(struct pci_dev *pdev);
581void pcie_aspm_pm_state_change(struct pci_dev *pdev);
582void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
583#else
584static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
585static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
586static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { }
587static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
588#endif
589
590#ifdef CONFIG_PCIE_ECRC
591void pcie_set_ecrc_checking(struct pci_dev *dev);
592void pcie_ecrc_get_policy(char *str);
593#else
594static inline void pcie_set_ecrc_checking(struct pci_dev *dev) { }
595static inline void pcie_ecrc_get_policy(char *str) { }
596#endif
597
598#ifdef CONFIG_PCIE_PTM
599void pci_ptm_init(struct pci_dev *dev);
600int pci_enable_ptm(struct pci_dev *dev, u8 *granularity);
601#else
602static inline void pci_ptm_init(struct pci_dev *dev) { }
603static inline int pci_enable_ptm(struct pci_dev *dev, u8 *granularity)
604{ return -EINVAL; }
605#endif
606
607struct pci_dev_reset_methods {
608 u16 vendor;
609 u16 device;
610 int (*reset)(struct pci_dev *dev, int probe);
611};
612
613#ifdef CONFIG_PCI_QUIRKS
614int pci_dev_specific_reset(struct pci_dev *dev, int probe);
615#else
616static inline int pci_dev_specific_reset(struct pci_dev *dev, int probe)
617{
618 return -ENOTTY;
619}
620#endif
621
622#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
623int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
624 struct resource *res);
625#else
626static inline int acpi_get_rc_resources(struct device *dev, const char *hid,
627 u16 segment, struct resource *res)
628{
629 return -ENODEV;
630}
631#endif
632
633int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
634int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
635static inline u64 pci_rebar_size_to_bytes(int size)
636{
637 return 1ULL << (size + 20);
638}
639
640struct device_node;
641
642#ifdef CONFIG_OF
643int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
644int of_get_pci_domain_nr(struct device_node *node);
645int of_pci_get_max_link_speed(struct device_node *node);
646void pci_set_of_node(struct pci_dev *dev);
647void pci_release_of_node(struct pci_dev *dev);
648void pci_set_bus_of_node(struct pci_bus *bus);
649void pci_release_bus_of_node(struct pci_bus *bus);
650
651int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge);
652
653#else
654static inline int
655of_pci_parse_bus_range(struct device_node *node, struct resource *res)
656{
657 return -EINVAL;
658}
659
660static inline int
661of_get_pci_domain_nr(struct device_node *node)
662{
663 return -1;
664}
665
666static inline int
667of_pci_get_max_link_speed(struct device_node *node)
668{
669 return -EINVAL;
670}
671
672static inline void pci_set_of_node(struct pci_dev *dev) { }
673static inline void pci_release_of_node(struct pci_dev *dev) { }
674static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
675static inline void pci_release_bus_of_node(struct pci_bus *bus) { }
676
677static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
678{
679 return 0;
680}
681
682#endif /* CONFIG_OF */
683
684#ifdef CONFIG_PCIEAER
685void pci_no_aer(void);
686void pci_aer_init(struct pci_dev *dev);
687void pci_aer_exit(struct pci_dev *dev);
688extern const struct attribute_group aer_stats_attr_group;
689void pci_aer_clear_fatal_status(struct pci_dev *dev);
690int pci_aer_clear_status(struct pci_dev *dev);
691int pci_aer_raw_clear_status(struct pci_dev *dev);
692#else
693static inline void pci_no_aer(void) { }
694static inline void pci_aer_init(struct pci_dev *d) { }
695static inline void pci_aer_exit(struct pci_dev *d) { }
696static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
697static inline int pci_aer_clear_status(struct pci_dev *dev) { return -EINVAL; }
698static inline int pci_aer_raw_clear_status(struct pci_dev *dev) { return -EINVAL; }
699#endif
700
701#ifdef CONFIG_ACPI
702int pci_acpi_program_hp_params(struct pci_dev *dev);
703extern const struct attribute_group pci_dev_acpi_attr_group;
704#else
705static inline int pci_acpi_program_hp_params(struct pci_dev *dev)
706{
707 return -ENODEV;
708}
709#endif
710
711#ifdef CONFIG_PCIEASPM
712extern const struct attribute_group aspm_ctrl_attr_group;
713#endif
714
715#endif /* DRIVERS_PCI_H */