blob: bc7f3a10ff601a7924a26a5e407d312740024959 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Zhao, Yu557848c2008-10-13 19:18:07 +08002#ifndef DRIVERS_PCI_H
3#define DRIVERS_PCI_H
4
Alexandru Gagniuc2209e062018-11-28 16:28:04 -06005#include <linux/pci.h>
6
James Sewartf8bf2ae2019-12-10 15:51:33 -06007/* Number of possible devfns: 0.0 to 1f.7 inclusive */
8#define MAX_NR_DEVFNS 256
9
Wei Yangfff905f2015-06-30 09:16:41 +080010#define PCI_FIND_CAP_TTL 48
11
Lukas Wunner8531e282017-03-10 21:23:45 +010012#define PCI_VSEC_ID_INTEL_TBT 0x1234 /* Thunderbolt */
13
Jacob Keller343e51a2013-07-31 06:53:16 +000014extern const unsigned char pcie_link_speed[];
Sinan Kaya11eb0e02018-06-04 22:16:09 -040015extern bool pci_early_dump;
Jacob Keller343e51a2013-07-31 06:53:16 +000016
Yinghai Lu7a1562d2014-11-11 12:09:46 -080017bool pcie_cap_has_lnkctl(const struct pci_dev *dev);
Patel, Mayurkumaraf65d1a2019-10-18 16:52:21 +000018bool pcie_cap_has_rtctl(const struct pci_dev *dev);
Yinghai Lu7a1562d2014-11-11 12:09:46 -080019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/* Functions internal to the PCI core code */
21
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060022int pci_create_sysfs_dev_files(struct pci_dev *pdev);
23void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060024void pci_cleanup_rom(struct pci_dev *dev);
Krzysztof Wilczyński506140f2021-04-27 10:49:16 -050025#ifdef CONFIG_DMI
26extern const struct attribute_group pci_dev_smbios_attr_group;
27#endif
David Woodhousef7195822017-04-12 13:25:59 +010028
Martin Wilck3b519e42010-11-10 11:03:21 +010029enum 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};
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060033int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
34 enum pci_mmap_api mmap_api);
David Woodhousef7195822017-04-12 13:25:59 +010035
Amey Narkhedee20afa02021-08-17 23:34:54 +053036bool pci_reset_supported(struct pci_dev *dev);
37void pci_init_reset_methods(struct pci_dev *dev);
Sinan Kaya381634c2018-07-19 18:04:11 -050038int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
Keith Buschc4eed622018-09-20 10:27:11 -060039int pci_bus_error_reset(struct pci_dev *dev);
Kumar Galace5ccde2007-07-16 23:27:10 -050040
Bjorn Helgaasf0ab0012021-08-02 17:17:28 -050041struct pci_cap_saved_data {
42 u16 cap_nr;
43 bool cap_extended;
44 unsigned int size;
45 u32 data[];
46};
47
48struct pci_cap_saved_state {
49 struct hlist_node next;
50 struct pci_cap_saved_data cap;
51};
52
53void pci_allocate_cap_save_buffers(struct pci_dev *dev);
54void pci_free_cap_save_buffers(struct pci_dev *dev);
55int pci_add_cap_save_buffer(struct pci_dev *dev, char cap, unsigned int size);
56int pci_add_ext_cap_save_buffer(struct pci_dev *dev,
57 u16 cap, unsigned int size);
58struct pci_cap_saved_state *pci_find_saved_cap(struct pci_dev *dev, char cap);
59struct pci_cap_saved_state *pci_find_saved_ext_cap(struct pci_dev *dev,
60 u16 cap);
61
Bjorn Helgaas638c133e2020-09-29 14:24:11 -050062#define PCI_PM_D2_DELAY 200 /* usec; see PCIe r4.0, sec 5.9.1 */
63#define PCI_PM_D3HOT_WAIT 10 /* msec */
64#define PCI_PM_D3COLD_WAIT 100 /* msec */
Kelsey Skunbergc776dd52019-07-24 17:38:38 -060065
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020066/**
Randy Dunlapb33bfde2009-01-09 17:04:26 -080067 * struct pci_platform_pm_ops - Firmware PM callbacks
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020068 *
Mika Westerberg26ad34d2018-09-27 16:57:14 -050069 * @bridge_d3: Does the bridge allow entering into D3
70 *
Randy Dunlapb33bfde2009-01-09 17:04:26 -080071 * @is_manageable: returns 'true' if given device is power manageable by the
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -060072 * platform firmware
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020073 *
Randy Dunlapb33bfde2009-01-09 17:04:26 -080074 * @set_state: invokes the platform firmware to set the device's power state
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020075 *
Lukas Wunnercc7cc022016-09-18 05:39:20 +020076 * @get_state: queries the platform firmware for a device's current power state
77 *
Rafael J. Wysockib51033e2019-06-25 14:09:12 +020078 * @refresh_state: asks the platform to refresh the device's power state data
79 *
Randy Dunlapb33bfde2009-01-09 17:04:26 -080080 * @choose_state: returns PCI power state of given device preferred by the
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -060081 * platform; to be used during system-wide transitions from a
82 * sleeping state to the working state and vice versa
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020083 *
Rafael J. Wysocki08476842017-06-24 01:57:35 +020084 * @set_wakeup: enables/disables wakeup capability for the device
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010085 *
Rafael J. Wysockibac2a902015-01-21 02:17:42 +010086 * @need_resume: returns 'true' if the given device (which is currently
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -060087 * suspended) needs to be resumed to be configured for system
88 * wakeup.
Rafael J. Wysockibac2a902015-01-21 02:17:42 +010089 *
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020090 * If given platform is generally capable of power managing PCI devices, all of
91 * these callbacks are mandatory.
92 */
93struct pci_platform_pm_ops {
Mika Westerberg26ad34d2018-09-27 16:57:14 -050094 bool (*bridge_d3)(struct pci_dev *dev);
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020095 bool (*is_manageable)(struct pci_dev *dev);
96 int (*set_state)(struct pci_dev *dev, pci_power_t state);
Lukas Wunnercc7cc022016-09-18 05:39:20 +020097 pci_power_t (*get_state)(struct pci_dev *dev);
Rafael J. Wysockib51033e2019-06-25 14:09:12 +020098 void (*refresh_state)(struct pci_dev *dev);
Rafael J. Wysocki961d9122008-07-07 03:32:02 +020099 pci_power_t (*choose_state)(struct pci_dev *dev);
Rafael J. Wysocki08476842017-06-24 01:57:35 +0200100 int (*set_wakeup)(struct pci_dev *dev, bool enable);
Rafael J. Wysockibac2a902015-01-21 02:17:42 +0100101 bool (*need_resume)(struct pci_dev *dev);
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200102};
103
Julia Lawall299f2ff2015-12-06 17:33:45 +0100104int pci_set_platform_pm(const struct pci_platform_pm_ops *ops);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600105void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
Rafael J. Wysockib51033e2019-06-25 14:09:12 +0200106void pci_refresh_power_state(struct pci_dev *dev);
Rafael J. Wysockiadfac8f2019-11-05 11:27:49 +0100107int pci_power_up(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600108void pci_disable_enabled_device(struct pci_dev *dev);
109int pci_finish_runtime_suspend(struct pci_dev *dev);
Bjorn Helgaas600a5b42020-07-16 17:34:30 -0500110void pcie_clear_device_status(struct pci_dev *dev);
Bjorn Helgaasdcb04532018-03-09 11:06:53 -0600111void pcie_clear_root_pme_status(struct pci_dev *dev);
Kelsey Skunberg669696e2019-07-24 17:38:39 -0600112bool pci_check_pme_status(struct pci_dev *dev);
113void pci_pme_wakeup_bus(struct pci_bus *bus);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600114int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
Rafael J. Wysocki0ce3fca2017-07-12 03:05:39 +0200115void pci_pme_restore(struct pci_dev *dev);
Rafael J. Wysocki0c7376a2019-06-07 00:32:31 +0200116bool pci_dev_need_resume(struct pci_dev *dev);
117void pci_dev_adjust_pme(struct pci_dev *dev);
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +0200118void pci_dev_complete_resume(struct pci_dev *pci_dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600119void pci_config_pm_runtime_get(struct pci_dev *dev);
120void pci_config_pm_runtime_put(struct pci_dev *dev);
121void pci_pm_init(struct pci_dev *dev);
Sean O. Stalley938174e2015-10-29 17:35:39 -0500122void pci_ea_init(struct pci_dev *dev);
Bjorn Helgaascbc40d52020-12-03 12:51:08 -0600123void pci_msi_init(struct pci_dev *dev);
124void pci_msix_init(struct pci_dev *dev);
Lukas Wunnerc6a63302016-10-28 10:52:06 +0200125bool pci_bridge_d3_possible(struct pci_dev *dev);
Lukas Wunner1ed276a2016-10-28 10:52:06 +0200126void pci_bridge_d3_update(struct pci_dev *dev);
Mika Westerbergad9001f2019-11-12 12:16:17 +0300127void pci_bridge_wait_for_secondary_bus(struct pci_dev *dev);
Mingchuang Qiaoe1b0d0b2021-10-12 15:56:14 +0800128void pci_bridge_reconfigure_ltr(struct pci_dev *dev);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100129
Rafael J. Wysockib6e335a2010-12-29 13:21:23 +0100130static inline void pci_wakeup_event(struct pci_dev *dev)
131{
132 /* Wait 100 ms before the system can be put into a sleep state. */
133 pm_wakeup_event(&dev->dev, 100);
134}
135
Yijing Wang326c1cd2014-05-04 12:23:36 +0800136static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100137{
138 return !!(pci_dev->subordinate);
139}
David Shaohua Li0f644742005-03-19 00:15:48 -0500140
Mika Westerberg9d26d3a2016-06-02 11:17:12 +0300141static inline bool pci_power_manageable(struct pci_dev *pci_dev)
142{
143 /*
144 * Currently we allow normal PCI devices and PCI bridges transition
145 * into D3 if their bridge_d3 is set.
146 */
147 return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
148}
149
Mika Westerberg984998e2019-08-22 11:55:52 +0300150static inline bool pcie_downstream_port(const struct pci_dev *dev)
151{
152 int type = pci_pcie_type(dev);
153
154 return type == PCI_EXP_TYPE_ROOT_PORT ||
155 type == PCI_EXP_TYPE_DOWNSTREAM ||
156 type == PCI_EXP_TYPE_PCIE_BRIDGE;
157}
158
Heiner Kallweite947e7b2021-04-01 18:37:47 +0200159void pci_vpd_init(struct pci_dev *dev);
Bjorn Helgaas64379072016-02-22 13:58:06 -0600160void pci_vpd_release(struct pci_dev *dev);
Krzysztof Wilczyńskid93f8392021-04-16 20:58:40 +0000161extern const struct attribute_group pci_dev_vpd_attr_group;
Ben Hutchings94e61082008-03-05 16:52:39 +0000162
Kelsey Skunberg440589d2019-07-24 17:38:41 -0600163/* PCI Virtual Channel */
164int pci_save_vc_state(struct pci_dev *dev);
165void pci_restore_vc_state(struct pci_dev *dev);
166void pci_allocate_vc_save_buffers(struct pci_dev *dev);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* PCI /proc functions */
169#ifdef CONFIG_PROC_FS
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600170int pci_proc_attach_device(struct pci_dev *dev);
171int pci_proc_detach_device(struct pci_dev *dev);
172int pci_proc_detach_bus(struct pci_bus *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#else
174static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
175static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
177#endif
178
179/* Functions for PCI Hotplug drivers to use */
Yinghai Lua8e4b9c2012-05-18 13:46:34 -0600180int pci_hp_add_bridge(struct pci_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000182#ifdef HAVE_PCI_LEGACY
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600183void pci_create_legacy_files(struct pci_bus *bus);
184void pci_remove_legacy_files(struct pci_bus *bus);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000185#else
186static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
187static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/* Lock for read/write access to pci device and bus lists */
Zhang Yanmind71374d2006-06-02 12:35:43 +0800191extern struct rw_semaphore pci_bus_sem;
Keith Buschc4eed622018-09-20 10:27:11 -0600192extern struct mutex pci_slot_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jan Kiszkaa2e27782011-11-04 09:46:00 +0100194extern raw_spinlock_t pci_lock;
195
Krzysztof Wilczyński3789af92020-07-30 21:08:48 +0000196extern unsigned int pci_pm_d3hot_delay;
Michael Ellerman88187df2007-01-25 19:34:07 +1100197
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700198#ifdef CONFIG_PCI_MSI
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700199void pci_no_msi(void);
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700200#else
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700201static inline void pci_no_msi(void) { }
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700202#endif
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100203
Yinghai Lub55438f2012-02-23 19:23:30 -0800204void pci_realloc_get_opt(char *);
Ram Paif483d392011-07-07 11:19:10 -0700205
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700206static inline int pci_no_d1d2(struct pci_dev *dev)
207{
208 unsigned int parent_dstates = 0;
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700209
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700210 if (dev->bus->self)
211 parent_dstates = dev->bus->self->no_d1d2;
212 return (dev->no_d1d2 || parent_dstates);
213
214}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700215extern const struct attribute_group *pci_dev_groups[];
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700216extern const struct attribute_group *pcibus_groups[];
Bhumika Goyal69f2dc22017-09-12 16:43:33 +0530217extern const struct device_type pci_dev_type;
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600218extern const struct attribute_group *pci_bus_groups[];
Alex Chiang705b1aa2009-03-20 14:56:31 -0600219
Kelsey Skunberg003d3b22019-07-24 17:38:42 -0600220extern unsigned long pci_hotplug_io_size;
Nicholas Johnsond7b8a212019-10-23 12:12:29 +0000221extern unsigned long pci_hotplug_mmio_size;
222extern unsigned long pci_hotplug_mmio_pref_size;
Kelsey Skunberg003d3b22019-07-24 17:38:42 -0600223extern unsigned long pci_hotplug_bus_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225/**
226 * pci_match_one_device - Tell if a PCI device structure has a matching
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600227 * PCI device id structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * @id: single PCI device id structure to match
229 * @dev: the PCI device structure to match against
Greg Kroah-Hartman367b09f2008-01-30 15:21:33 -0800230 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * Returns the matching pci_device_id structure or %NULL if there is no match.
232 */
233static inline const struct pci_device_id *
234pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
235{
236 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
237 (id->device == PCI_ANY_ID || id->device == dev->device) &&
238 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
239 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
240 !((id->class ^ dev->class) & id->class_mask))
241 return id;
242 return NULL;
243}
244
Alex Chiangf46753c2008-06-10 15:28:50 -0600245/* PCI slot sysfs helper code */
246#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
247
248extern struct kset *pci_slots_kset;
249
250struct pci_slot_attribute {
251 struct attribute attr;
252 ssize_t (*show)(struct pci_slot *, char *);
253 ssize_t (*store)(struct pci_slot *, const char *, size_t);
254};
255#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
256
Yu Zhao0b400c72008-11-22 02:40:40 +0800257enum pci_bar_type {
258 pci_bar_unknown, /* Standard PCI BAR probe */
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600259 pci_bar_io, /* An I/O port BAR */
Yu Zhao0b400c72008-11-22 02:40:40 +0800260 pci_bar_mem32, /* A 32-bit memory BAR */
261 pci_bar_mem64, /* A 64-bit memory BAR */
262};
263
Kelsey Skunberg975e1ac2019-07-24 17:38:40 -0600264struct device *pci_get_host_bridge_device(struct pci_dev *dev);
265void pci_put_host_bridge_device(struct device *dev);
266
Sinan Kaya62ce94a2017-07-12 00:04:14 -0400267int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
Yinghai Luefdc87d2012-01-27 10:55:10 -0800268bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
269 int crs_timeout);
James Puthukattukaranaa667c62018-07-09 11:31:25 -0400270bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
271 int crs_timeout);
272int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
273
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600274int pci_setup_device(struct pci_dev *dev);
275int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
276 struct resource *res, unsigned int reg);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600277void pci_configure_ari(struct pci_dev *dev);
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -0600278void __pci_bus_size_bridges(struct pci_bus *bus,
Jiang Liud66ecb72013-06-23 01:01:35 +0200279 struct list_head *realloc_head);
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -0600280void __pci_bus_assign_resources(const struct pci_bus *bus,
281 struct list_head *realloc_head,
282 struct list_head *fail_head);
Yinghai Lu0f7e7ae2015-01-15 16:21:49 -0600283bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
Bjorn Helgaas939de1d2013-01-26 17:35:58 -0700284
Yinghai Lu2069ecf2012-02-15 21:40:31 -0800285void pci_reassigndev_resource_alignment(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600286void pci_disable_bridge_window(struct pci_dev *dev);
Kelsey Skunbergecd29c12019-07-24 17:38:43 -0600287struct pci_bus *pci_bus_get(struct pci_bus *bus);
288void pci_bus_put(struct pci_bus *bus);
Yuji Shimada32a9a6822009-03-16 17:13:39 +0900289
Yicong Yang757bfaa2020-02-17 19:13:03 +0800290/* PCIe link information from Link Capabilities 2 */
291#define PCIE_LNKCAP2_SLS2SPEED(lnkcap2) \
Gustavo Pimentel34191742020-11-18 23:49:20 +0100292 ((lnkcap2) & PCI_EXP_LNKCAP2_SLS_64_0GB ? PCIE_SPEED_64_0GT : \
293 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_32_0GB ? PCIE_SPEED_32_0GT : \
Yicong Yang757bfaa2020-02-17 19:13:03 +0800294 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_16_0GB ? PCIE_SPEED_16_0GT : \
295 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_8_0GB ? PCIE_SPEED_8_0GT : \
296 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_5_0GB ? PCIE_SPEED_5_0GT : \
297 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_2_5GB ? PCIE_SPEED_2_5GT : \
298 PCI_SPEED_UNKNOWN)
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500299
Tal Gilboab852f632018-03-30 08:32:03 -0500300/* PCIe speed to Mb/s reduced by encoding overhead */
301#define PCIE_SPEED2MBS_ENC(speed) \
Gustavo Pimentel34191742020-11-18 23:49:20 +0100302 ((speed) == PCIE_SPEED_64_0GT ? 64000*128/130 : \
303 (speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \
Yicong Yang9cb39852020-02-17 19:12:55 +0800304 (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
Tal Gilboab852f632018-03-30 08:32:03 -0500305 (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \
306 (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \
307 (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \
308 0)
309
Bjorn Helgaase56faff2020-02-28 15:02:03 -0600310const char *pci_speed_string(enum pci_bus_speed speed);
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500311enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
Tal Gilboac70b65f2018-03-30 08:24:36 -0500312enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
Tal Gilboab852f632018-03-30 08:32:03 -0500313u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
314 enum pcie_link_width *width);
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -0500315void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
Lukas Wunner0fa635a2019-03-20 12:05:30 +0100316void pcie_report_downtraining(struct pci_dev *dev);
Kelsey Skunberg5da78d92019-07-24 17:38:44 -0600317void pcie_update_link_speed(struct pci_bus *bus, u16 link_status);
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500318
Yu Zhaod1b054d2009-03-20 11:25:11 +0800319/* Single Root I/O Virtualization */
320struct pci_sriov {
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600321 int pos; /* Capability position */
322 int nres; /* Number of resources */
323 u32 cap; /* SR-IOV Capabilities */
324 u16 ctrl; /* SR-IOV Control */
325 u16 total_VFs; /* Total VFs associated with the PF */
326 u16 initial_VFs; /* Initial VFs associated with the PF */
327 u16 num_VFs; /* Number of VFs available */
328 u16 offset; /* First VF Routing ID offset */
329 u16 stride; /* Following VF stride */
330 u16 vf_device; /* VF device ID */
331 u32 pgsz; /* Page size for BAR alignment */
332 u8 link; /* Function Dependency Link */
333 u8 max_VF_buses; /* Max buses consumed by VFs */
334 u16 driver_max_VFs; /* Max num VFs driver supports */
335 struct pci_dev *dev; /* Lowest numbered PF */
336 struct pci_dev *self; /* This PF */
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +0100337 u32 class; /* VF device */
338 u8 hdr_type; /* VF header type */
339 u16 subsystem_vendor; /* VF subsystem vendor */
340 u16 subsystem_device; /* VF subsystem device */
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600341 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
342 bool drivers_autoprobe; /* Auto probing of VFs by driver */
Yu Zhaod1b054d2009-03-20 11:25:11 +0800343};
344
Keith Buscha6bd1012018-09-20 10:27:16 -0600345/**
346 * pci_dev_set_io_state - Set the new error state if possible.
347 *
Krzysztof Wilczyński347269c2021-07-03 15:13:02 +0000348 * @dev: PCI device to set new error_state
349 * @new: the state we want dev to be in
Keith Buscha6bd1012018-09-20 10:27:16 -0600350 *
351 * Must be called with device_lock held.
352 *
353 * Returns true if state has been changed to the requested state.
354 */
355static inline bool pci_dev_set_io_state(struct pci_dev *dev,
356 pci_channel_state_t new)
357{
358 bool changed = false;
359
360 device_lock_assert(&dev->dev);
361 switch (new) {
362 case pci_channel_io_perm_failure:
363 switch (dev->error_state) {
364 case pci_channel_io_frozen:
365 case pci_channel_io_normal:
366 case pci_channel_io_perm_failure:
367 changed = true;
368 break;
369 }
370 break;
371 case pci_channel_io_frozen:
372 switch (dev->error_state) {
373 case pci_channel_io_frozen:
374 case pci_channel_io_normal:
375 changed = true;
376 break;
377 }
378 break;
379 case pci_channel_io_normal:
380 switch (dev->error_state) {
381 case pci_channel_io_frozen:
382 case pci_channel_io_normal:
383 changed = true;
384 break;
385 }
386 break;
387 }
388 if (changed)
389 dev->error_state = new;
390 return changed;
391}
Keith Busch89ee9f72017-03-29 22:48:59 -0500392
393static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
394{
Keith Buscha6bd1012018-09-20 10:27:16 -0600395 device_lock(&dev->dev);
396 pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
397 device_unlock(&dev->dev);
398
Keith Busch89ee9f72017-03-29 22:48:59 -0500399 return 0;
400}
401
402static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
403{
Keith Buscha6bd1012018-09-20 10:27:16 -0600404 return dev->error_state == pci_channel_io_perm_failure;
Keith Busch89ee9f72017-03-29 22:48:59 -0500405}
406
Keith Buscha6bd1012018-09-20 10:27:16 -0600407/* pci_dev priv_flags */
408#define PCI_DEV_ADDED 0
Lukas Wunnera97396c2021-05-01 10:29:00 +0200409#define PCI_DPC_RECOVERED 1
410#define PCI_DPC_RECOVERING 2
Keith Buscha6bd1012018-09-20 10:27:16 -0600411
Hari Vyas44bda4b2018-07-03 14:35:41 +0530412static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
413{
414 assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
415}
416
417static inline bool pci_dev_is_added(const struct pci_dev *dev)
418{
419 return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
420}
421
Keith Busch1e451162018-07-19 16:16:55 -0500422#ifdef CONFIG_PCIEAER
423#include <linux/aer.h>
424
425#define AER_MAX_MULTI_ERR_DEVICES 5 /* Not likely to have more */
426
427struct aer_err_info {
428 struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
429 int error_dev_num;
430
431 unsigned int id:16;
432
433 unsigned int severity:2; /* 0:NONFATAL | 1:FATAL | 2:COR */
434 unsigned int __pad1:5;
435 unsigned int multi_error_valid:1;
436
437 unsigned int first_error:5;
438 unsigned int __pad2:2;
439 unsigned int tlp_header_valid:1;
440
441 unsigned int status; /* COR/UNCOR Error Status */
442 unsigned int mask; /* COR/UNCOR Error Mask */
443 struct aer_header_log_regs tlp; /* TLP Header */
444};
445
446int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
447void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
448#endif /* CONFIG_PCIEAER */
449
Sean V Kelley90655632020-11-20 16:10:24 -0800450#ifdef CONFIG_PCIEPORTBUS
451/* Cached RCEC Endpoint Association */
452struct rcec_ea {
453 u8 nextbusn;
454 u8 lastbusn;
455 u32 bitmap;
456};
457#endif
458
Keith Busch4f802172018-09-20 10:27:08 -0600459#ifdef CONFIG_PCIE_DPC
460void pci_save_dpc_state(struct pci_dev *dev);
461void pci_restore_dpc_state(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan27005612020-03-23 17:26:04 -0700462void pci_dpc_init(struct pci_dev *pdev);
Kuppuswamy Sathyanarayananaea47412020-03-23 17:26:06 -0700463void dpc_process_error(struct pci_dev *pdev);
464pci_ers_result_t dpc_reset_link(struct pci_dev *pdev);
Lukas Wunnera97396c2021-05-01 10:29:00 +0200465bool pci_dpc_recovered(struct pci_dev *pdev);
Keith Busch4f802172018-09-20 10:27:08 -0600466#else
467static inline void pci_save_dpc_state(struct pci_dev *dev) {}
468static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
Kuppuswamy Sathyanarayanan27005612020-03-23 17:26:04 -0700469static inline void pci_dpc_init(struct pci_dev *pdev) {}
Lukas Wunnera97396c2021-05-01 10:29:00 +0200470static inline bool pci_dpc_recovered(struct pci_dev *pdev) { return false; }
Keith Busch4f802172018-09-20 10:27:08 -0600471#endif
472
Sean V Kelley90655632020-11-20 16:10:24 -0800473#ifdef CONFIG_PCIEPORTBUS
474void pci_rcec_init(struct pci_dev *dev);
475void pci_rcec_exit(struct pci_dev *dev);
Sean V Kelley507b4602020-11-20 16:10:32 -0800476void pcie_link_rcec(struct pci_dev *rcec);
Sean V Kelleyaf113552020-11-20 16:10:34 -0800477void pcie_walk_rcec(struct pci_dev *rcec,
478 int (*cb)(struct pci_dev *, void *),
479 void *userdata);
Sean V Kelley90655632020-11-20 16:10:24 -0800480#else
481static inline void pci_rcec_init(struct pci_dev *dev) {}
482static inline void pci_rcec_exit(struct pci_dev *dev) {}
Sean V Kelley507b4602020-11-20 16:10:32 -0800483static inline void pcie_link_rcec(struct pci_dev *rcec) {}
Sean V Kelleyaf113552020-11-20 16:10:34 -0800484static inline void pcie_walk_rcec(struct pci_dev *rcec,
485 int (*cb)(struct pci_dev *, void *),
486 void *userdata) {}
Sean V Kelley90655632020-11-20 16:10:24 -0800487#endif
488
Hao, Xudong1900ca12011-12-17 21:24:40 +0800489#ifdef CONFIG_PCI_ATS
Kelsey Skunbergb92b5122019-07-24 17:38:45 -0600490/* Address Translation Service */
491void pci_ats_init(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600492void pci_restore_ats_state(struct pci_dev *dev);
Hao, Xudong1900ca12011-12-17 21:24:40 +0800493#else
Kelsey Skunbergb92b5122019-07-24 17:38:45 -0600494static inline void pci_ats_init(struct pci_dev *d) { }
495static inline void pci_restore_ats_state(struct pci_dev *dev) { }
Hao, Xudong1900ca12011-12-17 21:24:40 +0800496#endif /* CONFIG_PCI_ATS */
497
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500498#ifdef CONFIG_PCI_PRI
499void pci_pri_init(struct pci_dev *dev);
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500500void pci_restore_pri_state(struct pci_dev *pdev);
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500501#else
502static inline void pci_pri_init(struct pci_dev *dev) { }
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500503static inline void pci_restore_pri_state(struct pci_dev *pdev) { }
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500504#endif
505
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500506#ifdef CONFIG_PCI_PASID
507void pci_pasid_init(struct pci_dev *dev);
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500508void pci_restore_pasid_state(struct pci_dev *pdev);
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500509#else
510static inline void pci_pasid_init(struct pci_dev *dev) { }
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500511static inline void pci_restore_pasid_state(struct pci_dev *pdev) { }
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500512#endif
513
Yu Zhaod1b054d2009-03-20 11:25:11 +0800514#ifdef CONFIG_PCI_IOV
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600515int pci_iov_init(struct pci_dev *dev);
516void pci_iov_release(struct pci_dev *dev);
Jakub Kicinski38972372018-06-29 15:08:52 -0500517void pci_iov_remove(struct pci_dev *dev);
Bjorn Helgaas6ffa2482016-11-28 09:15:52 -0600518void pci_iov_update_resource(struct pci_dev *dev, int resno);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600519resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
520void pci_restore_iov_state(struct pci_dev *dev);
521int pci_iov_bus_range(struct pci_bus *bus);
Leon Romanovskyc3d5c2d2021-04-04 10:22:18 +0300522extern const struct attribute_group sriov_pf_dev_attr_group;
523extern const struct attribute_group sriov_vf_dev_attr_group;
Yu Zhaod1b054d2009-03-20 11:25:11 +0800524#else
525static inline int pci_iov_init(struct pci_dev *dev)
526{
527 return -ENODEV;
528}
529static inline void pci_iov_release(struct pci_dev *dev)
530
531{
532}
Jakub Kicinski38972372018-06-29 15:08:52 -0500533static inline void pci_iov_remove(struct pci_dev *dev)
534{
535}
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800536static inline void pci_restore_iov_state(struct pci_dev *dev)
537{
538}
Yu Zhaoa28724b2009-03-20 11:25:13 +0800539static inline int pci_iov_bus_range(struct pci_bus *bus)
540{
541 return 0;
542}
Yu Zhao302b4212009-05-18 13:51:32 +0800543
Yu Zhaod1b054d2009-03-20 11:25:11 +0800544#endif /* CONFIG_PCI_IOV */
545
David E. Box39850ed2020-12-07 14:39:50 -0800546#ifdef CONFIG_PCIE_PTM
547void pci_save_ptm_state(struct pci_dev *dev);
548void pci_restore_ptm_state(struct pci_dev *dev);
David E. Boxa697f072020-12-07 14:39:51 -0800549void pci_disable_ptm(struct pci_dev *dev);
David E. Box39850ed2020-12-07 14:39:50 -0800550#else
551static inline void pci_save_ptm_state(struct pci_dev *dev) { }
552static inline void pci_restore_ptm_state(struct pci_dev *dev) { }
David E. Boxa697f072020-12-07 14:39:51 -0800553static inline void pci_disable_ptm(struct pci_dev *dev) { }
David E. Box39850ed2020-12-07 14:39:50 -0800554#endif
555
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600556unsigned long pci_cardbus_resource_alignment(struct resource *);
Ram Pai0a2daa12011-07-25 13:08:41 -0700557
Cam Macdonell0e522472010-09-07 17:25:20 -0700558static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600559 struct resource *res)
Chris Wright6faf17f2009-08-28 13:00:06 -0700560{
561#ifdef CONFIG_PCI_IOV
562 int resno = res - dev->resource;
563
564 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
565 return pci_sriov_resource_alignment(dev, resno);
566#endif
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600567 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
Ram Pai0a2daa12011-07-25 13:08:41 -0700568 return pci_cardbus_resource_alignment(res);
Chris Wright6faf17f2009-08-28 13:00:06 -0700569 return resource_alignment(res);
570}
571
Rajat Jain52fbf5b2020-07-07 15:46:02 -0700572void pci_acs_init(struct pci_dev *dev);
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500573#ifdef CONFIG_PCI_QUIRKS
574int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
575int pci_dev_specific_enable_acs(struct pci_dev *dev);
Logan Gunthorpe73c47dde2018-08-09 16:51:43 -0500576int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500577#else
578static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
579 u16 acs_flags)
580{
581 return -ENOTTY;
582}
583static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
584{
585 return -ENOTTY;
586}
Logan Gunthorpe73c47dde2018-08-09 16:51:43 -0500587static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
588{
589 return -ENOTTY;
590}
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500591#endif
Allen Kayae21ee62009-10-07 10:27:17 -0700592
Oza Pawandeep2e28bc82018-05-17 16:44:15 -0500593/* PCI error reporting and recovery */
Kuppuswamy Sathyanarayanane8e5ff22020-03-23 17:26:03 -0700594pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
Sean V Kelley8f1bbfb2020-11-20 16:10:25 -0800595 pci_channel_state_t state,
596 pci_ers_result_t (*reset_subordinates)(struct pci_dev *pdev));
Oza Pawandeep2e28bc82018-05-17 16:44:15 -0500597
Oza Pawandeep9f5a70f12018-05-17 16:44:11 -0500598bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
Bjorn Helgaas7d8e7d12017-12-15 08:57:28 -0600599#ifdef CONFIG_PCIEASPM
600void pcie_aspm_init_link_state(struct pci_dev *pdev);
601void pcie_aspm_exit_link_state(struct pci_dev *pdev);
602void pcie_aspm_pm_state_change(struct pci_dev *pdev);
603void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
604#else
605static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
606static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
607static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { }
608static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
609#endif
610
Kelsey Skunberg72bde9c2019-07-24 17:38:46 -0600611#ifdef CONFIG_PCIE_ECRC
612void pcie_set_ecrc_checking(struct pci_dev *dev);
613void pcie_ecrc_get_policy(char *str);
614#else
615static inline void pcie_set_ecrc_checking(struct pci_dev *dev) { }
616static inline void pcie_ecrc_get_policy(char *str) { }
617#endif
618
Jonathan Yong9bb04a02016-06-11 14:13:38 -0500619#ifdef CONFIG_PCIE_PTM
620void pci_ptm_init(struct pci_dev *dev);
621#else
622static inline void pci_ptm_init(struct pci_dev *dev) { }
623#endif
624
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800625struct pci_dev_reset_methods {
626 u16 vendor;
627 u16 device;
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530628 int (*reset)(struct pci_dev *dev, bool probe);
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800629};
630
Amey Narkhedee20afa02021-08-17 23:34:54 +0530631struct pci_reset_fn_method {
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530632 int (*reset_fn)(struct pci_dev *pdev, bool probe);
Amey Narkhedee20afa02021-08-17 23:34:54 +0530633 char *name;
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800634};
635
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100636#ifdef CONFIG_PCI_QUIRKS
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530637int pci_dev_specific_reset(struct pci_dev *dev, bool probe);
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100638#else
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530639static inline int pci_dev_specific_reset(struct pci_dev *dev, bool probe)
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100640{
641 return -ENOTTY;
642}
643#endif
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800644
Dongdong Liu169de962016-12-01 00:33:42 -0600645#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
646int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
647 struct resource *res);
Arnd Bergmann16f7ae592021-03-08 16:24:47 +0100648#else
649static inline int acpi_get_rc_resources(struct device *dev, const char *hid,
650 u16 segment, struct resource *res)
651{
652 return -ENODEV;
653}
Dongdong Liu169de962016-12-01 00:33:42 -0600654#endif
655
Christian König276b7382017-10-24 14:40:20 -0500656int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
657int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
658static inline u64 pci_rebar_size_to_bytes(int size)
659{
660 return 1ULL << (size + 20);
661}
662
Rob Herring9e2aee82018-05-11 12:15:30 -0500663struct device_node;
664
665#ifdef CONFIG_OF
666int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
667int of_get_pci_domain_nr(struct device_node *node);
668int of_pci_get_max_link_speed(struct device_node *node);
Kelsey Skunberg621f7e32019-07-24 17:38:48 -0600669void pci_set_of_node(struct pci_dev *dev);
670void pci_release_of_node(struct pci_dev *dev);
671void pci_set_bus_of_node(struct pci_bus *bus);
672void pci_release_bus_of_node(struct pci_bus *bus);
Rob Herring9e2aee82018-05-11 12:15:30 -0500673
Rob Herring669cbc72020-07-21 20:25:13 -0600674int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge);
675
Rob Herring9e2aee82018-05-11 12:15:30 -0500676#else
677static inline int
678of_pci_parse_bus_range(struct device_node *node, struct resource *res)
679{
680 return -EINVAL;
681}
682
683static inline int
684of_get_pci_domain_nr(struct device_node *node)
685{
686 return -1;
687}
688
689static inline int
690of_pci_get_max_link_speed(struct device_node *node)
691{
692 return -EINVAL;
693}
Kelsey Skunberg621f7e32019-07-24 17:38:48 -0600694
695static inline void pci_set_of_node(struct pci_dev *dev) { }
696static inline void pci_release_of_node(struct pci_dev *dev) { }
697static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
698static inline void pci_release_bus_of_node(struct pci_bus *bus) { }
Rob Herring669cbc72020-07-21 20:25:13 -0600699
700static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
701{
702 return 0;
703}
704
Rob Herring9e2aee82018-05-11 12:15:30 -0500705#endif /* CONFIG_OF */
706
Rajat Jain60ed9822018-06-21 16:48:26 -0700707#ifdef CONFIG_PCIEAER
708void pci_no_aer(void);
709void pci_aer_init(struct pci_dev *dev);
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500710void pci_aer_exit(struct pci_dev *dev);
Rajat Jain81aa5202018-06-21 16:48:28 -0700711extern const struct attribute_group aer_stats_attr_group;
Bjorn Helgaas7ab92e82018-07-19 17:55:58 -0500712void pci_aer_clear_fatal_status(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan894020f2020-03-23 17:26:08 -0700713int pci_aer_clear_status(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan20e15e62020-03-23 17:26:05 -0700714int pci_aer_raw_clear_status(struct pci_dev *dev);
Rajat Jain60ed9822018-06-21 16:48:26 -0700715#else
716static inline void pci_no_aer(void) { }
Jisheng Zhang31f996e2019-04-12 06:43:06 +0000717static inline void pci_aer_init(struct pci_dev *d) { }
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500718static inline void pci_aer_exit(struct pci_dev *d) { }
Bjorn Helgaas7ab92e82018-07-19 17:55:58 -0500719static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
Kuppuswamy Sathyanarayanan894020f2020-03-23 17:26:08 -0700720static inline int pci_aer_clear_status(struct pci_dev *dev) { return -EINVAL; }
Kuppuswamy Sathyanarayanan20e15e62020-03-23 17:26:05 -0700721static inline int pci_aer_raw_clear_status(struct pci_dev *dev) { return -EINVAL; }
Rajat Jain60ed9822018-06-21 16:48:26 -0700722#endif
723
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200724#ifdef CONFIG_ACPI
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200725int pci_acpi_program_hp_params(struct pci_dev *dev);
Krzysztof Wilczyński506140f2021-04-27 10:49:16 -0500726extern const struct attribute_group pci_dev_acpi_attr_group;
Shanker Donthineni3a159552021-08-17 23:34:57 +0530727void pci_set_acpi_fwnode(struct pci_dev *dev);
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530728int pci_dev_acpi_reset(struct pci_dev *dev, bool probe);
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200729#else
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530730static inline int pci_dev_acpi_reset(struct pci_dev *dev, bool probe)
Shanker Donthineni6937b7d2021-08-17 23:34:59 +0530731{
732 return -ENOTTY;
733}
734
Shanker Donthineni3a159552021-08-17 23:34:57 +0530735static inline void pci_set_acpi_fwnode(struct pci_dev *dev) {}
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200736static inline int pci_acpi_program_hp_params(struct pci_dev *dev)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200737{
738 return -ENODEV;
739}
740#endif
741
Heiner Kallweit72ea91a2019-10-05 14:07:56 +0200742#ifdef CONFIG_PCIEASPM
743extern const struct attribute_group aspm_ctrl_attr_group;
744#endif
745
Amey Narkheded88f5212021-08-17 23:34:56 +0530746extern const struct attribute_group pci_dev_reset_method_attr_group;
747
Zhao, Yu557848c2008-10-13 19:18:07 +0800748#endif /* DRIVERS_PCI_H */