blob: 2475098f65182dd2b5cf4aeb41d209034a1a78ae [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 Kaya11eb0e0e2018-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);
Maciej W. Rozycki503fa232022-09-17 13:03:09 +010018bool pcie_cap_has_lnkctl2(const struct pci_dev *dev);
Patel, Mayurkumaraf65d1a2019-10-18 16:52:21 +000019bool pcie_cap_has_rtctl(const struct pci_dev *dev);
Yinghai Lu7a1562d2014-11-11 12:09:46 -080020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/* Functions internal to the PCI core code */
22
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060023int pci_create_sysfs_dev_files(struct pci_dev *pdev);
24void pci_remove_sysfs_dev_files(struct pci_dev *pdev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060025void pci_cleanup_rom(struct pci_dev *dev);
Krzysztof Wilczyński506140f2021-04-27 10:49:16 -050026#ifdef CONFIG_DMI
27extern const struct attribute_group pci_dev_smbios_attr_group;
28#endif
David Woodhousef7195822017-04-12 13:25:59 +010029
Martin Wilck3b519e42010-11-10 11:03:21 +010030enum pci_mmap_api {
31 PCI_MMAP_SYSFS, /* mmap on /sys/bus/pci/devices/<BDF>/resource<N> */
32 PCI_MMAP_PROCFS /* mmap on /proc/bus/pci/<BDF> */
33};
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060034int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
35 enum pci_mmap_api mmap_api);
David Woodhousef7195822017-04-12 13:25:59 +010036
Amey Narkhedee20afa02021-08-17 23:34:54 +053037bool pci_reset_supported(struct pci_dev *dev);
38void pci_init_reset_methods(struct pci_dev *dev);
Sinan Kaya381634c2018-07-19 18:04:11 -050039int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
Keith Buschc4eed622018-09-20 10:27:11 -060040int pci_bus_error_reset(struct pci_dev *dev);
Kumar Galace5ccde2007-07-16 23:27:10 -050041
Bjorn Helgaasf0ab0012021-08-02 17:17:28 -050042struct pci_cap_saved_data {
43 u16 cap_nr;
44 bool cap_extended;
45 unsigned int size;
46 u32 data[];
47};
48
49struct pci_cap_saved_state {
50 struct hlist_node next;
51 struct pci_cap_saved_data cap;
52};
53
54void pci_allocate_cap_save_buffers(struct pci_dev *dev);
55void pci_free_cap_save_buffers(struct pci_dev *dev);
56int pci_add_cap_save_buffer(struct pci_dev *dev, char cap, unsigned int size);
57int pci_add_ext_cap_save_buffer(struct pci_dev *dev,
58 u16 cap, unsigned int size);
59struct pci_cap_saved_state *pci_find_saved_cap(struct pci_dev *dev, char cap);
60struct pci_cap_saved_state *pci_find_saved_ext_cap(struct pci_dev *dev,
61 u16 cap);
62
Bjorn Helgaas638c133e2020-09-29 14:24:11 -050063#define PCI_PM_D2_DELAY 200 /* usec; see PCIe r4.0, sec 5.9.1 */
64#define PCI_PM_D3HOT_WAIT 10 /* msec */
65#define PCI_PM_D3COLD_WAIT 100 /* msec */
Kelsey Skunbergc776dd52019-07-24 17:38:38 -060066
Lukas Wunnerac91e692023-01-15 09:20:32 +010067/*
68 * Following exit from Conventional Reset, devices must be ready within 1 sec
69 * (PCIe r6.0 sec 6.6.1). A D3cold to D0 transition implies a Conventional
70 * Reset (PCIe r6.0 sec 5.8).
71 */
72#define PCI_RESET_WAIT 1000 /* msec */
73
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060074void pci_update_current_state(struct pci_dev *dev, pci_power_t state);
Rafael J. Wysockib51033e2019-06-25 14:09:12 +020075void pci_refresh_power_state(struct pci_dev *dev);
Rafael J. Wysockiadfac8f2019-11-05 11:27:49 +010076int pci_power_up(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060077void pci_disable_enabled_device(struct pci_dev *dev);
78int pci_finish_runtime_suspend(struct pci_dev *dev);
Bjorn Helgaas600a5b42020-07-16 17:34:30 -050079void pcie_clear_device_status(struct pci_dev *dev);
Bjorn Helgaasdcb04532018-03-09 11:06:53 -060080void pcie_clear_root_pme_status(struct pci_dev *dev);
Kelsey Skunberg669696e2019-07-24 17:38:39 -060081bool pci_check_pme_status(struct pci_dev *dev);
82void pci_pme_wakeup_bus(struct pci_bus *bus);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060083int __pci_pme_wakeup(struct pci_dev *dev, void *ign);
Rafael J. Wysocki0ce3fca2017-07-12 03:05:39 +020084void pci_pme_restore(struct pci_dev *dev);
Rafael J. Wysocki0c7376a2019-06-07 00:32:31 +020085bool pci_dev_need_resume(struct pci_dev *dev);
86void pci_dev_adjust_pme(struct pci_dev *dev);
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +020087void pci_dev_complete_resume(struct pci_dev *pci_dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -060088void pci_config_pm_runtime_get(struct pci_dev *dev);
89void pci_config_pm_runtime_put(struct pci_dev *dev);
90void pci_pm_init(struct pci_dev *dev);
Sean O. Stalley938174e2015-10-29 17:35:39 -050091void pci_ea_init(struct pci_dev *dev);
Bjorn Helgaascbc40d52020-12-03 12:51:08 -060092void pci_msi_init(struct pci_dev *dev);
93void pci_msix_init(struct pci_dev *dev);
Lukas Wunnerc6a63302016-10-28 10:52:06 +020094bool pci_bridge_d3_possible(struct pci_dev *dev);
Lukas Wunner1ed276a2016-10-28 10:52:06 +020095void pci_bridge_d3_update(struct pci_dev *dev);
Mingchuang Qiaoe1b0d0b2021-10-12 15:56:14 +080096void pci_bridge_reconfigure_ltr(struct pci_dev *dev);
Mika Westerberge74b2b52023-04-04 15:32:55 -050097int pci_bridge_wait_for_secondary_bus(struct pci_dev *dev, char *reset_type);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +010098
Rafael J. Wysockib6e335a2010-12-29 13:21:23 +010099static inline void pci_wakeup_event(struct pci_dev *dev)
100{
101 /* Wait 100 ms before the system can be put into a sleep state. */
102 pm_wakeup_event(&dev->dev, 100);
103}
104
Yijing Wang326c1cd2014-05-04 12:23:36 +0800105static inline bool pci_has_subordinate(struct pci_dev *pci_dev)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100106{
107 return !!(pci_dev->subordinate);
108}
David Shaohua Li0f644742005-03-19 00:15:48 -0500109
Mika Westerberg9d26d3a2016-06-02 11:17:12 +0300110static inline bool pci_power_manageable(struct pci_dev *pci_dev)
111{
112 /*
113 * Currently we allow normal PCI devices and PCI bridges transition
114 * into D3 if their bridge_d3 is set.
115 */
116 return !pci_has_subordinate(pci_dev) || pci_dev->bridge_d3;
117}
118
Mika Westerberg984998e2019-08-22 11:55:52 +0300119static inline bool pcie_downstream_port(const struct pci_dev *dev)
120{
121 int type = pci_pcie_type(dev);
122
123 return type == PCI_EXP_TYPE_ROOT_PORT ||
124 type == PCI_EXP_TYPE_DOWNSTREAM ||
125 type == PCI_EXP_TYPE_PCIE_BRIDGE;
126}
127
Heiner Kallweite947e7b2021-04-01 18:37:47 +0200128void pci_vpd_init(struct pci_dev *dev);
Bjorn Helgaas64379072016-02-22 13:58:06 -0600129void pci_vpd_release(struct pci_dev *dev);
Krzysztof Wilczyńskid93f8392021-04-16 20:58:40 +0000130extern const struct attribute_group pci_dev_vpd_attr_group;
Ben Hutchings94e61082008-03-05 16:52:39 +0000131
Kelsey Skunberg440589d2019-07-24 17:38:41 -0600132/* PCI Virtual Channel */
133int pci_save_vc_state(struct pci_dev *dev);
134void pci_restore_vc_state(struct pci_dev *dev);
135void pci_allocate_vc_save_buffers(struct pci_dev *dev);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* PCI /proc functions */
138#ifdef CONFIG_PROC_FS
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600139int pci_proc_attach_device(struct pci_dev *dev);
140int pci_proc_detach_device(struct pci_dev *dev);
141int pci_proc_detach_bus(struct pci_bus *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#else
143static inline int pci_proc_attach_device(struct pci_dev *dev) { return 0; }
144static inline int pci_proc_detach_device(struct pci_dev *dev) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static inline int pci_proc_detach_bus(struct pci_bus *bus) { return 0; }
146#endif
147
148/* Functions for PCI Hotplug drivers to use */
Yinghai Lua8e4b9c2012-05-18 13:46:34 -0600149int pci_hp_add_bridge(struct pci_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000151#ifdef HAVE_PCI_LEGACY
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600152void pci_create_legacy_files(struct pci_bus *bus);
153void pci_remove_legacy_files(struct pci_bus *bus);
Benjamin Herrenschmidtf19aeb12008-10-03 19:49:32 +1000154#else
155static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
156static inline void pci_remove_legacy_files(struct pci_bus *bus) { return; }
157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/* Lock for read/write access to pci device and bus lists */
Zhang Yanmind71374d2006-06-02 12:35:43 +0800160extern struct rw_semaphore pci_bus_sem;
Keith Buschc4eed622018-09-20 10:27:11 -0600161extern struct mutex pci_slot_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Jan Kiszkaa2e27782011-11-04 09:46:00 +0100163extern raw_spinlock_t pci_lock;
164
Krzysztof Wilczyński3789af92020-07-30 21:08:48 +0000165extern unsigned int pci_pm_d3hot_delay;
Michael Ellerman88187df2007-01-25 19:34:07 +1100166
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700167#ifdef CONFIG_PCI_MSI
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700168void pci_no_msi(void);
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700169#else
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700170static inline void pci_no_msi(void) { }
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700171#endif
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100172
Yinghai Lub55438f2012-02-23 19:23:30 -0800173void pci_realloc_get_opt(char *);
Ram Paif483d392011-07-07 11:19:10 -0700174
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700175static inline int pci_no_d1d2(struct pci_dev *dev)
176{
177 unsigned int parent_dstates = 0;
Andrew Morton4b47b0e2005-08-16 15:16:05 -0700178
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700179 if (dev->bus->self)
180 parent_dstates = dev->bus->self->no_d1d2;
181 return (dev->no_d1d2 || parent_dstates);
182
183}
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -0700184extern const struct attribute_group *pci_dev_groups[];
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700185extern const struct attribute_group *pcibus_groups[];
Bhumika Goyal69f2dc22017-09-12 16:43:33 +0530186extern const struct device_type pci_dev_type;
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -0600187extern const struct attribute_group *pci_bus_groups[];
Alex Chiang705b1aa2009-03-20 14:56:31 -0600188
Kelsey Skunberg003d3b22019-07-24 17:38:42 -0600189extern unsigned long pci_hotplug_io_size;
Nicholas Johnsond7b8a212019-10-23 12:12:29 +0000190extern unsigned long pci_hotplug_mmio_size;
191extern unsigned long pci_hotplug_mmio_pref_size;
Kelsey Skunberg003d3b22019-07-24 17:38:42 -0600192extern unsigned long pci_hotplug_bus_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/**
195 * pci_match_one_device - Tell if a PCI device structure has a matching
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600196 * PCI device id structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * @id: single PCI device id structure to match
198 * @dev: the PCI device structure to match against
Greg Kroah-Hartman367b09f2008-01-30 15:21:33 -0800199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * Returns the matching pci_device_id structure or %NULL if there is no match.
201 */
202static inline const struct pci_device_id *
203pci_match_one_device(const struct pci_device_id *id, const struct pci_dev *dev)
204{
205 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) &&
206 (id->device == PCI_ANY_ID || id->device == dev->device) &&
207 (id->subvendor == PCI_ANY_ID || id->subvendor == dev->subsystem_vendor) &&
208 (id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
209 !((id->class ^ dev->class) & id->class_mask))
210 return id;
211 return NULL;
212}
213
Alex Chiangf46753c2008-06-10 15:28:50 -0600214/* PCI slot sysfs helper code */
215#define to_pci_slot(s) container_of(s, struct pci_slot, kobj)
216
217extern struct kset *pci_slots_kset;
218
219struct pci_slot_attribute {
220 struct attribute attr;
221 ssize_t (*show)(struct pci_slot *, char *);
222 ssize_t (*store)(struct pci_slot *, const char *, size_t);
223};
224#define to_pci_slot_attr(s) container_of(s, struct pci_slot_attribute, attr)
225
Yu Zhao0b400c72008-11-22 02:40:40 +0800226enum pci_bar_type {
227 pci_bar_unknown, /* Standard PCI BAR probe */
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600228 pci_bar_io, /* An I/O port BAR */
Yu Zhao0b400c72008-11-22 02:40:40 +0800229 pci_bar_mem32, /* A 32-bit memory BAR */
230 pci_bar_mem64, /* A 64-bit memory BAR */
231};
232
Kelsey Skunberg975e1ac2019-07-24 17:38:40 -0600233struct device *pci_get_host_bridge_device(struct pci_dev *dev);
234void pci_put_host_bridge_device(struct device *dev);
235
Sinan Kaya62ce94a2017-07-12 00:04:14 -0400236int pci_configure_extended_tags(struct pci_dev *dev, void *ign);
Yinghai Luefdc87d2012-01-27 10:55:10 -0800237bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
238 int crs_timeout);
James Puthukattukaranaa667c62018-07-09 11:31:25 -0400239bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *pl,
240 int crs_timeout);
241int pci_idt_bus_quirk(struct pci_bus *bus, int devfn, u32 *pl, int crs_timeout);
242
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600243int pci_setup_device(struct pci_dev *dev);
244int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
245 struct resource *res, unsigned int reg);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600246void pci_configure_ari(struct pci_dev *dev);
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -0600247void __pci_bus_size_bridges(struct pci_bus *bus,
Jiang Liud66ecb72013-06-23 01:01:35 +0200248 struct list_head *realloc_head);
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -0600249void __pci_bus_assign_resources(const struct pci_bus *bus,
250 struct list_head *realloc_head,
251 struct list_head *fail_head);
Yinghai Lu0f7e7ae2015-01-15 16:21:49 -0600252bool pci_bus_clip_resource(struct pci_dev *dev, int idx);
Bjorn Helgaas939de1d2013-01-26 17:35:58 -0700253
Yinghai Lu2069ecf2012-02-15 21:40:31 -0800254void pci_reassigndev_resource_alignment(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600255void pci_disable_bridge_window(struct pci_dev *dev);
Kelsey Skunbergecd29c12019-07-24 17:38:43 -0600256struct pci_bus *pci_bus_get(struct pci_bus *bus);
257void pci_bus_put(struct pci_bus *bus);
Yuji Shimada32a9a6822009-03-16 17:13:39 +0900258
Yicong Yang757bfaa2020-02-17 19:13:03 +0800259/* PCIe link information from Link Capabilities 2 */
260#define PCIE_LNKCAP2_SLS2SPEED(lnkcap2) \
Gustavo Pimentel34191742020-11-18 23:49:20 +0100261 ((lnkcap2) & PCI_EXP_LNKCAP2_SLS_64_0GB ? PCIE_SPEED_64_0GT : \
262 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_32_0GB ? PCIE_SPEED_32_0GT : \
Yicong Yang757bfaa2020-02-17 19:13:03 +0800263 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_16_0GB ? PCIE_SPEED_16_0GT : \
264 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_8_0GB ? PCIE_SPEED_8_0GT : \
265 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_5_0GB ? PCIE_SPEED_5_0GT : \
266 (lnkcap2) & PCI_EXP_LNKCAP2_SLS_2_5GB ? PCIE_SPEED_2_5GT : \
267 PCI_SPEED_UNKNOWN)
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500268
Tal Gilboab852f632018-03-30 08:32:03 -0500269/* PCIe speed to Mb/s reduced by encoding overhead */
270#define PCIE_SPEED2MBS_ENC(speed) \
Gustavo Pimentel34191742020-11-18 23:49:20 +0100271 ((speed) == PCIE_SPEED_64_0GT ? 64000*128/130 : \
272 (speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \
Yicong Yang9cb39852020-02-17 19:12:55 +0800273 (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \
Tal Gilboab852f632018-03-30 08:32:03 -0500274 (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \
275 (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \
276 (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \
277 0)
278
Bjorn Helgaase56faff2020-02-28 15:02:03 -0600279const char *pci_speed_string(enum pci_bus_speed speed);
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500280enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
Tal Gilboac70b65f2018-03-30 08:24:36 -0500281enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
Tal Gilboab852f632018-03-30 08:32:03 -0500282u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
283 enum pcie_link_width *width);
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -0500284void __pcie_print_link_status(struct pci_dev *dev, bool verbose);
Lukas Wunner0fa635a2019-03-20 12:05:30 +0100285void pcie_report_downtraining(struct pci_dev *dev);
Kelsey Skunberg5da78d92019-07-24 17:38:44 -0600286void pcie_update_link_speed(struct pci_bus *bus, u16 link_status);
Tal Gilboa6cf57be2018-03-30 07:44:05 -0500287
Yu Zhaod1b054d2009-03-20 11:25:11 +0800288/* Single Root I/O Virtualization */
289struct pci_sriov {
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600290 int pos; /* Capability position */
291 int nres; /* Number of resources */
292 u32 cap; /* SR-IOV Capabilities */
293 u16 ctrl; /* SR-IOV Control */
294 u16 total_VFs; /* Total VFs associated with the PF */
295 u16 initial_VFs; /* Initial VFs associated with the PF */
296 u16 num_VFs; /* Number of VFs available */
297 u16 offset; /* First VF Routing ID offset */
298 u16 stride; /* Following VF stride */
299 u16 vf_device; /* VF device ID */
300 u32 pgsz; /* Page size for BAR alignment */
301 u8 link; /* Function Dependency Link */
302 u8 max_VF_buses; /* Max buses consumed by VFs */
303 u16 driver_max_VFs; /* Max num VFs driver supports */
304 struct pci_dev *dev; /* Lowest numbered PF */
305 struct pci_dev *self; /* This PF */
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +0100306 u32 class; /* VF device */
307 u8 hdr_type; /* VF header type */
308 u16 subsystem_vendor; /* VF subsystem vendor */
309 u16 subsystem_device; /* VF subsystem device */
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600310 resource_size_t barsz[PCI_SRIOV_NUM_BARS]; /* VF BAR size */
311 bool drivers_autoprobe; /* Auto probing of VFs by driver */
Yu Zhaod1b054d2009-03-20 11:25:11 +0800312};
313
Lukas Wunnerac048402023-03-11 15:40:12 +0100314#ifdef CONFIG_PCI_DOE
315void pci_doe_init(struct pci_dev *pdev);
316void pci_doe_destroy(struct pci_dev *pdev);
317void pci_doe_disconnected(struct pci_dev *pdev);
318#else
319static inline void pci_doe_init(struct pci_dev *pdev) { }
320static inline void pci_doe_destroy(struct pci_dev *pdev) { }
321static inline void pci_doe_disconnected(struct pci_dev *pdev) { }
322#endif
323
Keith Buscha6bd1012018-09-20 10:27:16 -0600324/**
325 * pci_dev_set_io_state - Set the new error state if possible.
326 *
Krzysztof Wilczyński347269c2021-07-03 15:13:02 +0000327 * @dev: PCI device to set new error_state
328 * @new: the state we want dev to be in
Keith Buscha6bd1012018-09-20 10:27:16 -0600329 *
Lukas Wunner74ff8862023-01-20 10:19:02 +0100330 * If the device is experiencing perm_failure, it has to remain in that state.
331 * Any other transition is allowed.
Keith Buscha6bd1012018-09-20 10:27:16 -0600332 *
333 * Returns true if state has been changed to the requested state.
334 */
335static inline bool pci_dev_set_io_state(struct pci_dev *dev,
336 pci_channel_state_t new)
337{
Lukas Wunner74ff8862023-01-20 10:19:02 +0100338 pci_channel_state_t old;
Keith Buscha6bd1012018-09-20 10:27:16 -0600339
Keith Buscha6bd1012018-09-20 10:27:16 -0600340 switch (new) {
341 case pci_channel_io_perm_failure:
Lukas Wunner74ff8862023-01-20 10:19:02 +0100342 xchg(&dev->error_state, pci_channel_io_perm_failure);
343 return true;
Keith Buscha6bd1012018-09-20 10:27:16 -0600344 case pci_channel_io_frozen:
Lukas Wunner74ff8862023-01-20 10:19:02 +0100345 old = cmpxchg(&dev->error_state, pci_channel_io_normal,
346 pci_channel_io_frozen);
347 return old != pci_channel_io_perm_failure;
Keith Buscha6bd1012018-09-20 10:27:16 -0600348 case pci_channel_io_normal:
Lukas Wunner74ff8862023-01-20 10:19:02 +0100349 old = cmpxchg(&dev->error_state, pci_channel_io_frozen,
350 pci_channel_io_normal);
351 return old != pci_channel_io_perm_failure;
352 default:
353 return false;
Keith Buscha6bd1012018-09-20 10:27:16 -0600354 }
Keith Buscha6bd1012018-09-20 10:27:16 -0600355}
Keith Busch89ee9f72017-03-29 22:48:59 -0500356
357static inline int pci_dev_set_disconnected(struct pci_dev *dev, void *unused)
358{
Keith Buscha6bd1012018-09-20 10:27:16 -0600359 pci_dev_set_io_state(dev, pci_channel_io_perm_failure);
Lukas Wunnerac048402023-03-11 15:40:12 +0100360 pci_doe_disconnected(dev);
Keith Buscha6bd1012018-09-20 10:27:16 -0600361
Keith Busch89ee9f72017-03-29 22:48:59 -0500362 return 0;
363}
364
365static inline bool pci_dev_is_disconnected(const struct pci_dev *dev)
366{
Keith Buscha6bd1012018-09-20 10:27:16 -0600367 return dev->error_state == pci_channel_io_perm_failure;
Keith Busch89ee9f72017-03-29 22:48:59 -0500368}
369
Keith Buscha6bd1012018-09-20 10:27:16 -0600370/* pci_dev priv_flags */
371#define PCI_DEV_ADDED 0
Lukas Wunnera97396c2021-05-01 10:29:00 +0200372#define PCI_DPC_RECOVERED 1
373#define PCI_DPC_RECOVERING 2
Keith Buscha6bd1012018-09-20 10:27:16 -0600374
Hari Vyas44bda4b2018-07-03 14:35:41 +0530375static inline void pci_dev_assign_added(struct pci_dev *dev, bool added)
376{
377 assign_bit(PCI_DEV_ADDED, &dev->priv_flags, added);
378}
379
380static inline bool pci_dev_is_added(const struct pci_dev *dev)
381{
382 return test_bit(PCI_DEV_ADDED, &dev->priv_flags);
383}
384
Keith Busch1e451162018-07-19 16:16:55 -0500385#ifdef CONFIG_PCIEAER
386#include <linux/aer.h>
387
388#define AER_MAX_MULTI_ERR_DEVICES 5 /* Not likely to have more */
389
390struct aer_err_info {
391 struct pci_dev *dev[AER_MAX_MULTI_ERR_DEVICES];
392 int error_dev_num;
393
394 unsigned int id:16;
395
396 unsigned int severity:2; /* 0:NONFATAL | 1:FATAL | 2:COR */
397 unsigned int __pad1:5;
398 unsigned int multi_error_valid:1;
399
400 unsigned int first_error:5;
401 unsigned int __pad2:2;
402 unsigned int tlp_header_valid:1;
403
404 unsigned int status; /* COR/UNCOR Error Status */
405 unsigned int mask; /* COR/UNCOR Error Mask */
406 struct aer_header_log_regs tlp; /* TLP Header */
407};
408
409int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info);
410void aer_print_error(struct pci_dev *dev, struct aer_err_info *info);
411#endif /* CONFIG_PCIEAER */
412
Sean V Kelley90655632020-11-20 16:10:24 -0800413#ifdef CONFIG_PCIEPORTBUS
414/* Cached RCEC Endpoint Association */
415struct rcec_ea {
416 u8 nextbusn;
417 u8 lastbusn;
418 u32 bitmap;
419};
420#endif
421
Keith Busch4f802172018-09-20 10:27:08 -0600422#ifdef CONFIG_PCIE_DPC
423void pci_save_dpc_state(struct pci_dev *dev);
424void pci_restore_dpc_state(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan27005612020-03-23 17:26:04 -0700425void pci_dpc_init(struct pci_dev *pdev);
Kuppuswamy Sathyanarayananaea47412020-03-23 17:26:06 -0700426void dpc_process_error(struct pci_dev *pdev);
427pci_ers_result_t dpc_reset_link(struct pci_dev *pdev);
Lukas Wunnera97396c2021-05-01 10:29:00 +0200428bool pci_dpc_recovered(struct pci_dev *pdev);
Keith Busch4f802172018-09-20 10:27:08 -0600429#else
430static inline void pci_save_dpc_state(struct pci_dev *dev) {}
431static inline void pci_restore_dpc_state(struct pci_dev *dev) {}
Kuppuswamy Sathyanarayanan27005612020-03-23 17:26:04 -0700432static inline void pci_dpc_init(struct pci_dev *pdev) {}
Lukas Wunnera97396c2021-05-01 10:29:00 +0200433static inline bool pci_dpc_recovered(struct pci_dev *pdev) { return false; }
Keith Busch4f802172018-09-20 10:27:08 -0600434#endif
435
Sean V Kelley90655632020-11-20 16:10:24 -0800436#ifdef CONFIG_PCIEPORTBUS
437void pci_rcec_init(struct pci_dev *dev);
438void pci_rcec_exit(struct pci_dev *dev);
Sean V Kelley507b4602020-11-20 16:10:32 -0800439void pcie_link_rcec(struct pci_dev *rcec);
Sean V Kelleyaf113552020-11-20 16:10:34 -0800440void pcie_walk_rcec(struct pci_dev *rcec,
441 int (*cb)(struct pci_dev *, void *),
442 void *userdata);
Sean V Kelley90655632020-11-20 16:10:24 -0800443#else
444static inline void pci_rcec_init(struct pci_dev *dev) {}
445static inline void pci_rcec_exit(struct pci_dev *dev) {}
Sean V Kelley507b4602020-11-20 16:10:32 -0800446static inline void pcie_link_rcec(struct pci_dev *rcec) {}
Sean V Kelleyaf113552020-11-20 16:10:34 -0800447static inline void pcie_walk_rcec(struct pci_dev *rcec,
448 int (*cb)(struct pci_dev *, void *),
449 void *userdata) {}
Sean V Kelley90655632020-11-20 16:10:24 -0800450#endif
451
Hao, Xudong1900ca12011-12-17 21:24:40 +0800452#ifdef CONFIG_PCI_ATS
Kelsey Skunbergb92b5122019-07-24 17:38:45 -0600453/* Address Translation Service */
454void pci_ats_init(struct pci_dev *dev);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600455void pci_restore_ats_state(struct pci_dev *dev);
Hao, Xudong1900ca12011-12-17 21:24:40 +0800456#else
Kelsey Skunbergb92b5122019-07-24 17:38:45 -0600457static inline void pci_ats_init(struct pci_dev *d) { }
458static inline void pci_restore_ats_state(struct pci_dev *dev) { }
Hao, Xudong1900ca12011-12-17 21:24:40 +0800459#endif /* CONFIG_PCI_ATS */
460
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500461#ifdef CONFIG_PCI_PRI
462void pci_pri_init(struct pci_dev *dev);
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500463void pci_restore_pri_state(struct pci_dev *pdev);
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500464#else
465static inline void pci_pri_init(struct pci_dev *dev) { }
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500466static inline void pci_restore_pri_state(struct pci_dev *pdev) { }
Kuppuswamy Sathyanarayananc0651902019-09-05 14:31:45 -0500467#endif
468
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500469#ifdef CONFIG_PCI_PASID
470void pci_pasid_init(struct pci_dev *dev);
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500471void pci_restore_pasid_state(struct pci_dev *pdev);
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500472#else
473static inline void pci_pasid_init(struct pci_dev *dev) { }
Bjorn Helgaasfef2dd82019-10-09 16:47:15 -0500474static inline void pci_restore_pasid_state(struct pci_dev *pdev) { }
Kuppuswamy Sathyanarayanan751035b2019-09-05 14:31:46 -0500475#endif
476
Yu Zhaod1b054d2009-03-20 11:25:11 +0800477#ifdef CONFIG_PCI_IOV
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600478int pci_iov_init(struct pci_dev *dev);
479void pci_iov_release(struct pci_dev *dev);
Jakub Kicinski38972372018-06-29 15:08:52 -0500480void pci_iov_remove(struct pci_dev *dev);
Bjorn Helgaas6ffa2482016-11-28 09:15:52 -0600481void pci_iov_update_resource(struct pci_dev *dev, int resno);
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600482resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno);
483void pci_restore_iov_state(struct pci_dev *dev);
484int pci_iov_bus_range(struct pci_bus *bus);
Leon Romanovskyc3d5c2d2021-04-04 10:22:18 +0300485extern const struct attribute_group sriov_pf_dev_attr_group;
486extern const struct attribute_group sriov_vf_dev_attr_group;
Yu Zhaod1b054d2009-03-20 11:25:11 +0800487#else
488static inline int pci_iov_init(struct pci_dev *dev)
489{
490 return -ENODEV;
491}
492static inline void pci_iov_release(struct pci_dev *dev)
493
494{
495}
Jakub Kicinski38972372018-06-29 15:08:52 -0500496static inline void pci_iov_remove(struct pci_dev *dev)
497{
498}
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800499static inline void pci_restore_iov_state(struct pci_dev *dev)
500{
501}
Yu Zhaoa28724b2009-03-20 11:25:13 +0800502static inline int pci_iov_bus_range(struct pci_bus *bus)
503{
504 return 0;
505}
Yu Zhao302b4212009-05-18 13:51:32 +0800506
Yu Zhaod1b054d2009-03-20 11:25:11 +0800507#endif /* CONFIG_PCI_IOV */
508
David E. Box39850ed52020-12-07 14:39:50 -0800509#ifdef CONFIG_PCIE_PTM
Bjorn Helgaasd736d292022-09-09 15:25:04 -0500510void pci_ptm_init(struct pci_dev *dev);
David E. Box39850ed52020-12-07 14:39:50 -0800511void pci_save_ptm_state(struct pci_dev *dev);
512void pci_restore_ptm_state(struct pci_dev *dev);
Bjorn Helgaase8bdc5e2022-09-09 15:25:00 -0500513void pci_suspend_ptm(struct pci_dev *dev);
514void pci_resume_ptm(struct pci_dev *dev);
David E. Box39850ed52020-12-07 14:39:50 -0800515#else
Bjorn Helgaasd736d292022-09-09 15:25:04 -0500516static inline void pci_ptm_init(struct pci_dev *dev) { }
David E. Box39850ed52020-12-07 14:39:50 -0800517static inline void pci_save_ptm_state(struct pci_dev *dev) { }
518static inline void pci_restore_ptm_state(struct pci_dev *dev) { }
Bjorn Helgaase8bdc5e2022-09-09 15:25:00 -0500519static inline void pci_suspend_ptm(struct pci_dev *dev) { }
520static inline void pci_resume_ptm(struct pci_dev *dev) { }
David E. Box39850ed52020-12-07 14:39:50 -0800521#endif
522
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600523unsigned long pci_cardbus_resource_alignment(struct resource *);
Ram Pai0a2daa12011-07-25 13:08:41 -0700524
Cam Macdonell0e522472010-09-07 17:25:20 -0700525static inline resource_size_t pci_resource_alignment(struct pci_dev *dev,
Bjorn Helgaasf39d5b72013-04-12 12:02:59 -0600526 struct resource *res)
Chris Wright6faf17f2009-08-28 13:00:06 -0700527{
528#ifdef CONFIG_PCI_IOV
529 int resno = res - dev->resource;
530
531 if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END)
532 return pci_sriov_resource_alignment(dev, resno);
533#endif
Bjorn Helgaas0aa0f5d2017-12-02 13:21:37 -0600534 if (dev->class >> 8 == PCI_CLASS_BRIDGE_CARDBUS)
Ram Pai0a2daa12011-07-25 13:08:41 -0700535 return pci_cardbus_resource_alignment(res);
Chris Wright6faf17f2009-08-28 13:00:06 -0700536 return resource_alignment(res);
537}
538
Rajat Jain52fbf5b2020-07-07 15:46:02 -0700539void pci_acs_init(struct pci_dev *dev);
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500540#ifdef CONFIG_PCI_QUIRKS
541int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
542int pci_dev_specific_enable_acs(struct pci_dev *dev);
Logan Gunthorpe73c47dde2018-08-09 16:51:43 -0500543int pci_dev_specific_disable_acs_redir(struct pci_dev *dev);
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500544#else
545static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev,
546 u16 acs_flags)
547{
548 return -ENOTTY;
549}
550static inline int pci_dev_specific_enable_acs(struct pci_dev *dev)
551{
552 return -ENOTTY;
553}
Logan Gunthorpe73c47dde2018-08-09 16:51:43 -0500554static inline int pci_dev_specific_disable_acs_redir(struct pci_dev *dev)
555{
556 return -ENOTTY;
557}
Bjorn Helgaasbd2e9562018-08-09 16:19:52 -0500558#endif
Allen Kayae21ee62009-10-07 10:27:17 -0700559
Oza Pawandeep2e28bc82018-05-17 16:44:15 -0500560/* PCI error reporting and recovery */
Kuppuswamy Sathyanarayanane8e5ff22020-03-23 17:26:03 -0700561pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
Sean V Kelley8f1bbfb2020-11-20 16:10:25 -0800562 pci_channel_state_t state,
563 pci_ers_result_t (*reset_subordinates)(struct pci_dev *pdev));
Oza Pawandeep2e28bc82018-05-17 16:44:15 -0500564
Oza Pawandeep9f5a70f12018-05-17 16:44:11 -0500565bool pcie_wait_for_link(struct pci_dev *pdev, bool active);
Bjorn Helgaas7d8e7d12017-12-15 08:57:28 -0600566#ifdef CONFIG_PCIEASPM
567void pcie_aspm_init_link_state(struct pci_dev *pdev);
568void pcie_aspm_exit_link_state(struct pci_dev *pdev);
Bjorn Helgaas7d8e7d12017-12-15 08:57:28 -0600569void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
570#else
571static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { }
572static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { }
Bjorn Helgaas7d8e7d12017-12-15 08:57:28 -0600573static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { }
574#endif
575
Kelsey Skunberg72bde9c2019-07-24 17:38:46 -0600576#ifdef CONFIG_PCIE_ECRC
577void pcie_set_ecrc_checking(struct pci_dev *dev);
578void pcie_ecrc_get_policy(char *str);
579#else
580static inline void pcie_set_ecrc_checking(struct pci_dev *dev) { }
581static inline void pcie_ecrc_get_policy(char *str) { }
582#endif
583
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800584struct pci_dev_reset_methods {
585 u16 vendor;
586 u16 device;
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530587 int (*reset)(struct pci_dev *dev, bool probe);
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800588};
589
Amey Narkhedee20afa02021-08-17 23:34:54 +0530590struct pci_reset_fn_method {
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530591 int (*reset_fn)(struct pci_dev *pdev, bool probe);
Amey Narkhedee20afa02021-08-17 23:34:54 +0530592 char *name;
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800593};
594
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100595#ifdef CONFIG_PCI_QUIRKS
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530596int pci_dev_specific_reset(struct pci_dev *dev, bool probe);
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100597#else
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530598static inline int pci_dev_specific_reset(struct pci_dev *dev, bool probe)
Rafael J. Wysocki93177a72010-01-02 22:57:24 +0100599{
600 return -ENOTTY;
601}
602#endif
Dexuan Cuib9c3b262009-12-07 13:03:21 +0800603
Dongdong Liu169de962016-12-01 00:33:42 -0600604#if defined(CONFIG_PCI_QUIRKS) && defined(CONFIG_ARM64)
605int acpi_get_rc_resources(struct device *dev, const char *hid, u16 segment,
606 struct resource *res);
Arnd Bergmann16f7ae592021-03-08 16:24:47 +0100607#else
608static inline int acpi_get_rc_resources(struct device *dev, const char *hid,
609 u16 segment, struct resource *res)
610{
611 return -ENODEV;
612}
Dongdong Liu169de962016-12-01 00:33:42 -0600613#endif
614
Christian König276b7382017-10-24 14:40:20 -0500615int pci_rebar_get_current_size(struct pci_dev *pdev, int bar);
616int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size);
617static inline u64 pci_rebar_size_to_bytes(int size)
618{
619 return 1ULL << (size + 20);
620}
621
Rob Herring9e2aee82018-05-11 12:15:30 -0500622struct device_node;
623
624#ifdef CONFIG_OF
625int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
626int of_get_pci_domain_nr(struct device_node *node);
627int of_pci_get_max_link_speed(struct device_node *node);
Pali Rohár35662422022-04-12 11:49:45 +0200628u32 of_pci_get_slot_power_limit(struct device_node *node,
629 u8 *slot_power_limit_value,
630 u8 *slot_power_limit_scale);
Rob Herring0d21e712023-04-19 14:35:13 -0500631int pci_set_of_node(struct pci_dev *dev);
Kelsey Skunberg621f7e32019-07-24 17:38:48 -0600632void pci_release_of_node(struct pci_dev *dev);
633void pci_set_bus_of_node(struct pci_bus *bus);
634void pci_release_bus_of_node(struct pci_bus *bus);
Rob Herring9e2aee82018-05-11 12:15:30 -0500635
Rob Herring669cbc72020-07-21 20:25:13 -0600636int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge);
637
Rob Herring9e2aee82018-05-11 12:15:30 -0500638#else
639static inline int
640of_pci_parse_bus_range(struct device_node *node, struct resource *res)
641{
642 return -EINVAL;
643}
644
645static inline int
646of_get_pci_domain_nr(struct device_node *node)
647{
648 return -1;
649}
650
651static inline int
652of_pci_get_max_link_speed(struct device_node *node)
653{
654 return -EINVAL;
655}
Kelsey Skunberg621f7e32019-07-24 17:38:48 -0600656
Pali Rohár35662422022-04-12 11:49:45 +0200657static inline u32
658of_pci_get_slot_power_limit(struct device_node *node,
659 u8 *slot_power_limit_value,
660 u8 *slot_power_limit_scale)
661{
662 if (slot_power_limit_value)
663 *slot_power_limit_value = 0;
664 if (slot_power_limit_scale)
665 *slot_power_limit_scale = 0;
666 return 0;
667}
668
Rob Herring0d21e712023-04-19 14:35:13 -0500669static inline int pci_set_of_node(struct pci_dev *dev) { return 0; }
Kelsey Skunberg621f7e32019-07-24 17:38:48 -0600670static inline void pci_release_of_node(struct pci_dev *dev) { }
671static inline void pci_set_bus_of_node(struct pci_bus *bus) { }
672static inline void pci_release_bus_of_node(struct pci_bus *bus) { }
Rob Herring669cbc72020-07-21 20:25:13 -0600673
674static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
675{
676 return 0;
677}
678
Rob Herring9e2aee82018-05-11 12:15:30 -0500679#endif /* CONFIG_OF */
680
Rajat Jain60ed9822018-06-21 16:48:26 -0700681#ifdef CONFIG_PCIEAER
682void pci_no_aer(void);
683void pci_aer_init(struct pci_dev *dev);
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500684void pci_aer_exit(struct pci_dev *dev);
Rajat Jain81aa5202018-06-21 16:48:28 -0700685extern const struct attribute_group aer_stats_attr_group;
Bjorn Helgaas7ab92e82018-07-19 17:55:58 -0500686void pci_aer_clear_fatal_status(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan894020f2020-03-23 17:26:08 -0700687int pci_aer_clear_status(struct pci_dev *dev);
Kuppuswamy Sathyanarayanan20e15e62020-03-23 17:26:05 -0700688int pci_aer_raw_clear_status(struct pci_dev *dev);
Rajat Jain60ed9822018-06-21 16:48:26 -0700689#else
690static inline void pci_no_aer(void) { }
Jisheng Zhang31f996e2019-04-12 06:43:06 +0000691static inline void pci_aer_init(struct pci_dev *d) { }
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500692static inline void pci_aer_exit(struct pci_dev *d) { }
Bjorn Helgaas7ab92e82018-07-19 17:55:58 -0500693static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { }
Kuppuswamy Sathyanarayanan894020f2020-03-23 17:26:08 -0700694static inline int pci_aer_clear_status(struct pci_dev *dev) { return -EINVAL; }
Kuppuswamy Sathyanarayanan20e15e62020-03-23 17:26:05 -0700695static inline int pci_aer_raw_clear_status(struct pci_dev *dev) { return -EINVAL; }
Rajat Jain60ed9822018-06-21 16:48:26 -0700696#endif
697
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200698#ifdef CONFIG_ACPI
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200699int pci_acpi_program_hp_params(struct pci_dev *dev);
Krzysztof Wilczyński506140f2021-04-27 10:49:16 -0500700extern const struct attribute_group pci_dev_acpi_attr_group;
Shanker Donthineni3a159552021-08-17 23:34:57 +0530701void pci_set_acpi_fwnode(struct pci_dev *dev);
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530702int pci_dev_acpi_reset(struct pci_dev *dev, bool probe);
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200703bool acpi_pci_power_manageable(struct pci_dev *dev);
704bool acpi_pci_bridge_d3(struct pci_dev *dev);
705int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state);
706pci_power_t acpi_pci_get_power_state(struct pci_dev *dev);
707void acpi_pci_refresh_power_state(struct pci_dev *dev);
708int acpi_pci_wakeup(struct pci_dev *dev, bool enable);
709bool acpi_pci_need_resume(struct pci_dev *dev);
710pci_power_t acpi_pci_choose_state(struct pci_dev *pdev);
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200711#else
Amey Narkhede9bdc81c2021-08-17 23:35:00 +0530712static inline int pci_dev_acpi_reset(struct pci_dev *dev, bool probe)
Shanker Donthineni6937b7d2021-08-17 23:34:59 +0530713{
714 return -ENOTTY;
715}
Shanker Donthineni3a159552021-08-17 23:34:57 +0530716static inline void pci_set_acpi_fwnode(struct pci_dev *dev) {}
Krzysztof Wilczynski4a2dbed2019-08-27 11:49:51 +0200717static inline int pci_acpi_program_hp_params(struct pci_dev *dev)
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200718{
719 return -ENODEV;
720}
Rafael J. Wysockid97c5d42021-09-20 21:17:08 +0200721static inline bool acpi_pci_power_manageable(struct pci_dev *dev)
722{
723 return false;
724}
725static inline bool acpi_pci_bridge_d3(struct pci_dev *dev)
726{
727 return false;
728}
729static inline int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
730{
731 return -ENODEV;
732}
733static inline pci_power_t acpi_pci_get_power_state(struct pci_dev *dev)
734{
735 return PCI_UNKNOWN;
736}
737static inline void acpi_pci_refresh_power_state(struct pci_dev *dev) {}
738static inline int acpi_pci_wakeup(struct pci_dev *dev, bool enable)
739{
740 return -ENODEV;
741}
742static inline bool acpi_pci_need_resume(struct pci_dev *dev)
743{
744 return false;
745}
746static inline pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
747{
748 return PCI_POWER_ERROR;
749}
Krzysztof Wilczynski8c3aac62019-08-27 11:49:50 +0200750#endif
751
Heiner Kallweit72ea91a2019-10-05 14:07:56 +0200752#ifdef CONFIG_PCIEASPM
753extern const struct attribute_group aspm_ctrl_attr_group;
754#endif
755
Amey Narkheded88f5212021-08-17 23:34:56 +0530756extern const struct attribute_group pci_dev_reset_method_attr_group;
757
Rafael J. Wysockid5b0d882021-09-20 21:16:59 +0200758#ifdef CONFIG_X86_INTEL_MID
759bool pci_use_mid_pm(void);
760int mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state);
761pci_power_t mid_pci_get_power_state(struct pci_dev *pdev);
762#else
763static inline bool pci_use_mid_pm(void)
764{
765 return false;
766}
767static inline int mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state)
768{
769 return -ENODEV;
770}
771static inline pci_power_t mid_pci_get_power_state(struct pci_dev *pdev)
772{
773 return PCI_UNKNOWN;
774}
775#endif
776
Pali Rohár8a9b7ef2022-09-24 11:24:02 +0200777/*
778 * Config Address for PCI Configuration Mechanism #1
779 *
780 * See PCI Local Bus Specification, Revision 3.0,
781 * Section 3.2.2.3.2, Figure 3-2, p. 50.
782 */
783
784#define PCI_CONF1_BUS_SHIFT 16 /* Bus number */
785#define PCI_CONF1_DEV_SHIFT 11 /* Device number */
786#define PCI_CONF1_FUNC_SHIFT 8 /* Function number */
787
788#define PCI_CONF1_BUS_MASK 0xff
789#define PCI_CONF1_DEV_MASK 0x1f
790#define PCI_CONF1_FUNC_MASK 0x7
791#define PCI_CONF1_REG_MASK 0xfc /* Limit aligned offset to a maximum of 256B */
792
793#define PCI_CONF1_ENABLE BIT(31)
794#define PCI_CONF1_BUS(x) (((x) & PCI_CONF1_BUS_MASK) << PCI_CONF1_BUS_SHIFT)
795#define PCI_CONF1_DEV(x) (((x) & PCI_CONF1_DEV_MASK) << PCI_CONF1_DEV_SHIFT)
796#define PCI_CONF1_FUNC(x) (((x) & PCI_CONF1_FUNC_MASK) << PCI_CONF1_FUNC_SHIFT)
797#define PCI_CONF1_REG(x) ((x) & PCI_CONF1_REG_MASK)
798
799#define PCI_CONF1_ADDRESS(bus, dev, func, reg) \
800 (PCI_CONF1_ENABLE | \
801 PCI_CONF1_BUS(bus) | \
802 PCI_CONF1_DEV(dev) | \
803 PCI_CONF1_FUNC(func) | \
804 PCI_CONF1_REG(reg))
805
806/*
807 * Extension of PCI Config Address for accessing extended PCIe registers
808 *
809 * No standardized specification, but used on lot of non-ECAM-compliant ARM SoCs
810 * or on AMD Barcelona and new CPUs. Reserved bits [27:24] of PCI Config Address
811 * are used for specifying additional 4 high bits of PCI Express register.
812 */
813
814#define PCI_CONF1_EXT_REG_SHIFT 16
815#define PCI_CONF1_EXT_REG_MASK 0xf00
816#define PCI_CONF1_EXT_REG(x) (((x) & PCI_CONF1_EXT_REG_MASK) << PCI_CONF1_EXT_REG_SHIFT)
817
818#define PCI_CONF1_EXT_ADDRESS(bus, dev, func, reg) \
819 (PCI_CONF1_ADDRESS(bus, dev, func, reg) | \
820 PCI_CONF1_EXT_REG(reg))
821
Zhao, Yu557848c2008-10-13 19:18:07 +0800822#endif /* DRIVERS_PCI_H */