blob: 1835f3a7aa8d2f5a502a0629bfb0c0cc96420dd4 [file] [log] [blame]
Bjorn Helgaas7328c8f2018-01-26 11:45:16 -06001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * PCI Bus Services, see include/linux/pci.h for further explanation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06005 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
6 * David Mosberger-Tang
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06008 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -050011#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/delay.h>
Mika Westerberg9d26d3a2016-06-02 11:17:12 +030014#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -070016#include <linux/of.h>
17#include <linux/of_pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pci.h>
David Brownell075c1772007-04-26 00:12:06 -070019#include <linux/pm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080023#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053024#include <linux/log2.h>
Zhichang Yuan57453922018-03-15 02:15:53 +080025#include <linux/logic_pio.h>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020026#include <linux/pm_wakeup.h>
Sheng Yang8dd7f802008-10-21 17:38:25 +080027#include <linux/interrupt.h>
Yuji Shimada32a9a6822009-03-16 17:13:39 +090028#include <linux/device.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010029#include <linux/pm_runtime.h>
Alex Williamson608c3882013-08-08 14:09:43 -060030#include <linux/pci_hotplug.h>
Sinan Kaya4d3f1382016-06-10 21:55:11 +020031#include <linux/vmalloc.h>
CQ Tang4ebeb1e2017-05-30 09:25:49 -070032#include <linux/pci-ats.h>
Yuji Shimada32a9a6822009-03-16 17:13:39 +090033#include <asm/setup.h>
Ben Dooks2a2aca32016-06-17 16:05:13 +010034#include <asm/dma.h>
Taku Izumib07461a2015-09-17 10:09:37 -050035#include <linux/aer.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090036#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Alan Stern00240c32009-04-27 13:33:16 -040038const char *pci_power_names[] = {
39 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
40};
41EXPORT_SYMBOL_GPL(pci_power_names);
42
Rafael J. Wysocki93177a72010-01-02 22:57:24 +010043int isa_dma_bridge_buggy;
44EXPORT_SYMBOL(isa_dma_bridge_buggy);
45
46int pci_pci_problems;
47EXPORT_SYMBOL(pci_pci_problems);
48
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010049unsigned int pci_pm_d3_delay;
50
Matthew Garrettdf17e622010-10-04 14:22:29 -040051static void pci_pme_list_scan(struct work_struct *work);
52
53static LIST_HEAD(pci_pme_list);
54static DEFINE_MUTEX(pci_pme_list_mutex);
55static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
56
57struct pci_pme_device {
58 struct list_head list;
59 struct pci_dev *dev;
60};
61
62#define PME_TIMEOUT 1000 /* How long between PME checks */
63
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010064static void pci_dev_d3_sleep(struct pci_dev *dev)
65{
66 unsigned int delay = dev->d3_delay;
67
68 if (delay < pci_pm_d3_delay)
69 delay = pci_pm_d3_delay;
70
Adrian Hunter50b2b542017-03-14 15:21:58 +020071 if (delay)
72 msleep(delay);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010073}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jeff Garzik32a2eea2007-10-11 16:57:27 -040075#ifdef CONFIG_PCI_DOMAINS
76int pci_domains_supported = 1;
77#endif
78
Atsushi Nemoto4516a612007-02-05 16:36:06 -080079#define DEFAULT_CARDBUS_IO_SIZE (256)
80#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
81/* pci=cbmemsize=nnM,cbiosize=nn can override this */
82unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
83unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
84
Eric W. Biederman28760482009-09-09 14:09:24 -070085#define DEFAULT_HOTPLUG_IO_SIZE (256)
86#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
87/* pci=hpmemsize=nnM,hpiosize=nn can override this */
88unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
89unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
90
Keith Busche16b4662016-07-21 21:40:28 -060091#define DEFAULT_HOTPLUG_BUS_SIZE 1
92unsigned long pci_hotplug_bus_size = DEFAULT_HOTPLUG_BUS_SIZE;
93
Keith Busch27d868b2015-08-24 08:48:16 -050094enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_DEFAULT;
Jon Masonb03e7492011-07-20 15:20:54 -050095
Jesse Barnesac1aa472009-10-26 13:20:44 -070096/*
97 * The default CLS is used if arch didn't set CLS explicitly and not
98 * all pci devices agree on the same value. Arch can override either
99 * the dfl or actual value as it sees fit. Don't forget this is
100 * measured in 32-bit words, not bytes.
101 */
Bill Pemberton15856ad2012-11-21 15:35:00 -0500102u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -0700103u8 pci_cache_line_size;
104
Myron Stowe96c55902011-10-28 15:48:38 -0600105/*
106 * If we set up a device for bus mastering, we need to check the latency
107 * timer as certain BIOSes forget to set it properly.
108 */
109unsigned int pcibios_max_latency = 255;
110
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +0100111/* If set, the PCIe ARI capability will not be used. */
112static bool pcie_ari_disabled;
113
Gil Kupfercef74402018-05-10 17:56:02 -0500114/* If set, the PCIe ATS capability will not be used. */
115static bool pcie_ats_disabled;
116
Sinan Kaya11eb0e02018-06-04 22:16:09 -0400117/* If set, the PCI config space of each device is printed during boot. */
118bool pci_early_dump;
119
Gil Kupfercef74402018-05-10 17:56:02 -0500120bool pci_ats_disabled(void)
121{
122 return pcie_ats_disabled;
123}
124
Mika Westerberg9d26d3a2016-06-02 11:17:12 +0300125/* Disable bridge_d3 for all PCIe ports */
126static bool pci_bridge_d3_disable;
127/* Force bridge_d3 for all PCIe ports */
128static bool pci_bridge_d3_force;
129
130static int __init pcie_port_pm_setup(char *str)
131{
132 if (!strcmp(str, "off"))
133 pci_bridge_d3_disable = true;
134 else if (!strcmp(str, "force"))
135 pci_bridge_d3_force = true;
136 return 1;
137}
138__setup("pcie_port_pm=", pcie_port_pm_setup);
139
Sinan Kayaa2758b62018-02-27 14:14:10 -0600140/* Time to wait after a reset for device to become responsive */
141#define PCIE_RESET_READY_POLL_MS 60000
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/**
144 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
145 * @bus: pointer to PCI bus structure to search
146 *
147 * Given a PCI bus, returns the highest PCI bus number present in the set
148 * including the given PCI bus and its list of child PCI buses.
149 */
Ryan Desfosses07656d83082014-04-11 01:01:53 -0400150unsigned char pci_bus_max_busnr(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Yijing Wang94e6a9b2014-02-13 21:14:03 +0800152 struct pci_bus *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned char max, n;
154
Yinghai Lub918c622012-05-17 18:51:11 -0700155 max = bus->busn_res.end;
Yijing Wang94e6a9b2014-02-13 21:14:03 +0800156 list_for_each_entry(tmp, &bus->children, node) {
157 n = pci_bus_max_busnr(tmp);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400158 if (n > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 max = n;
160 }
161 return max;
162}
Kristen Accardib82db5c2006-01-17 16:56:56 -0800163EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Andrew Morton1684f5d2008-12-01 14:30:30 -0800165#ifdef CONFIG_HAS_IOMEM
166void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
167{
Bjorn Helgaas1f7bf3bf2015-03-12 12:30:11 -0500168 struct resource *res = &pdev->resource[bar];
169
Andrew Morton1684f5d2008-12-01 14:30:30 -0800170 /*
171 * Make sure the BAR is actually a memory resource, not an IO resource
172 */
Bjorn Helgaas646c0282015-03-12 12:30:15 -0500173 if (res->flags & IORESOURCE_UNSET || !(res->flags & IORESOURCE_MEM)) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600174 pci_warn(pdev, "can't ioremap BAR %d: %pR\n", bar, res);
Andrew Morton1684f5d2008-12-01 14:30:30 -0800175 return NULL;
176 }
Bjorn Helgaas1f7bf3bf2015-03-12 12:30:11 -0500177 return ioremap_nocache(res->start, resource_size(res));
Andrew Morton1684f5d2008-12-01 14:30:30 -0800178}
179EXPORT_SYMBOL_GPL(pci_ioremap_bar);
Luis R. Rodriguezc43996f2015-08-24 12:13:23 -0700180
181void __iomem *pci_ioremap_wc_bar(struct pci_dev *pdev, int bar)
182{
183 /*
184 * Make sure the BAR is actually a memory resource, not an IO resource
185 */
186 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
187 WARN_ON(1);
188 return NULL;
189 }
190 return ioremap_wc(pci_resource_start(pdev, bar),
191 pci_resource_len(pdev, bar));
192}
193EXPORT_SYMBOL_GPL(pci_ioremap_wc_bar);
Andrew Morton1684f5d2008-12-01 14:30:30 -0800194#endif
195
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600196/**
Logan Gunthorpe45db3372018-07-30 10:18:38 -0600197 * pci_dev_str_match_path - test if a path string matches a device
198 * @dev: the PCI device to test
199 * @p: string to match the device against
200 * @endptr: pointer to the string after the match
201 *
202 * Test if a string (typically from a kernel parameter) formatted as a
203 * path of device/function addresses matches a PCI device. The string must
204 * be of the form:
205 *
206 * [<domain>:]<bus>:<device>.<func>[/<device>.<func>]*
207 *
208 * A path for a device can be obtained using 'lspci -t'. Using a path
209 * is more robust against bus renumbering than using only a single bus,
210 * device and function address.
211 *
212 * Returns 1 if the string matches the device, 0 if it does not and
213 * a negative error code if it fails to parse the string.
214 */
215static int pci_dev_str_match_path(struct pci_dev *dev, const char *path,
216 const char **endptr)
217{
218 int ret;
219 int seg, bus, slot, func;
220 char *wpath, *p;
221 char end;
222
223 *endptr = strchrnul(path, ';');
224
225 wpath = kmemdup_nul(path, *endptr - path, GFP_KERNEL);
226 if (!wpath)
227 return -ENOMEM;
228
229 while (1) {
230 p = strrchr(wpath, '/');
231 if (!p)
232 break;
233 ret = sscanf(p, "/%x.%x%c", &slot, &func, &end);
234 if (ret != 2) {
235 ret = -EINVAL;
236 goto free_and_exit;
237 }
238
239 if (dev->devfn != PCI_DEVFN(slot, func)) {
240 ret = 0;
241 goto free_and_exit;
242 }
243
244 /*
245 * Note: we don't need to get a reference to the upstream
246 * bridge because we hold a reference to the top level
247 * device which should hold a reference to the bridge,
248 * and so on.
249 */
250 dev = pci_upstream_bridge(dev);
251 if (!dev) {
252 ret = 0;
253 goto free_and_exit;
254 }
255
256 *p = 0;
257 }
258
259 ret = sscanf(wpath, "%x:%x:%x.%x%c", &seg, &bus, &slot,
260 &func, &end);
261 if (ret != 4) {
262 seg = 0;
263 ret = sscanf(wpath, "%x:%x.%x%c", &bus, &slot, &func, &end);
264 if (ret != 3) {
265 ret = -EINVAL;
266 goto free_and_exit;
267 }
268 }
269
270 ret = (seg == pci_domain_nr(dev->bus) &&
271 bus == dev->bus->number &&
272 dev->devfn == PCI_DEVFN(slot, func));
273
274free_and_exit:
275 kfree(wpath);
276 return ret;
277}
278
279/**
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600280 * pci_dev_str_match - test if a string matches a device
281 * @dev: the PCI device to test
282 * @p: string to match the device against
283 * @endptr: pointer to the string after the match
284 *
285 * Test if a string (typically from a kernel parameter) matches a specified
286 * PCI device. The string may be of one of the following formats:
287 *
Logan Gunthorpe45db3372018-07-30 10:18:38 -0600288 * [<domain>:]<bus>:<device>.<func>[/<device>.<func>]*
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600289 * pci:<vendor>:<device>[:<subvendor>:<subdevice>]
290 *
291 * The first format specifies a PCI bus/device/function address which
292 * may change if new hardware is inserted, if motherboard firmware changes,
293 * or due to changes caused in kernel parameters. If the domain is
Logan Gunthorpe45db3372018-07-30 10:18:38 -0600294 * left unspecified, it is taken to be 0. In order to be robust against
295 * bus renumbering issues, a path of PCI device/function numbers may be used
296 * to address the specific device. The path for a device can be determined
297 * through the use of 'lspci -t'.
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600298 *
299 * The second format matches devices using IDs in the configuration
300 * space which may match multiple devices in the system. A value of 0
301 * for any field will match all devices. (Note: this differs from
302 * in-kernel code that uses PCI_ANY_ID which is ~0; this is for
303 * legacy reasons and convenience so users don't have to specify
304 * FFFFFFFFs on the command line.)
305 *
306 * Returns 1 if the string matches the device, 0 if it does not and
307 * a negative error code if the string cannot be parsed.
308 */
309static int pci_dev_str_match(struct pci_dev *dev, const char *p,
310 const char **endptr)
311{
312 int ret;
Logan Gunthorpe45db3372018-07-30 10:18:38 -0600313 int count;
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600314 unsigned short vendor, device, subsystem_vendor, subsystem_device;
315
316 if (strncmp(p, "pci:", 4) == 0) {
317 /* PCI vendor/device (subvendor/subdevice) IDs are specified */
318 p += 4;
319 ret = sscanf(p, "%hx:%hx:%hx:%hx%n", &vendor, &device,
320 &subsystem_vendor, &subsystem_device, &count);
321 if (ret != 4) {
322 ret = sscanf(p, "%hx:%hx%n", &vendor, &device, &count);
323 if (ret != 2)
324 return -EINVAL;
325
326 subsystem_vendor = 0;
327 subsystem_device = 0;
328 }
329
330 p += count;
331
332 if ((!vendor || vendor == dev->vendor) &&
333 (!device || device == dev->device) &&
334 (!subsystem_vendor ||
335 subsystem_vendor == dev->subsystem_vendor) &&
336 (!subsystem_device ||
337 subsystem_device == dev->subsystem_device))
338 goto found;
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600339 } else {
Logan Gunthorpe45db3372018-07-30 10:18:38 -0600340 /*
341 * PCI Bus, Device, Function IDs are specified
342 * (optionally, may include a path of devfns following it)
343 */
344 ret = pci_dev_str_match_path(dev, p, &p);
345 if (ret < 0)
346 return ret;
347 else if (ret)
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -0600348 goto found;
349 }
350
351 *endptr = p;
352 return 0;
353
354found:
355 *endptr = p;
356 return 1;
357}
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100358
359static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
360 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700361{
362 u8 id;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700363 u16 ent;
364
365 pci_bus_read_config_byte(bus, devfn, pos, &pos);
Roland Dreier24a4e372005-10-28 17:35:34 -0700366
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100367 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700368 if (pos < 0x40)
369 break;
370 pos &= ~3;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700371 pci_bus_read_config_word(bus, devfn, pos, &ent);
372
373 id = ent & 0xff;
Roland Dreier24a4e372005-10-28 17:35:34 -0700374 if (id == 0xff)
375 break;
376 if (id == cap)
377 return pos;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700378 pos = (ent >> 8);
Roland Dreier24a4e372005-10-28 17:35:34 -0700379 }
380 return 0;
381}
382
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100383static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
384 u8 pos, int cap)
385{
386 int ttl = PCI_FIND_CAP_TTL;
387
388 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
389}
390
Roland Dreier24a4e372005-10-28 17:35:34 -0700391int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
392{
393 return __pci_find_next_cap(dev->bus, dev->devfn,
394 pos + PCI_CAP_LIST_NEXT, cap);
395}
396EXPORT_SYMBOL_GPL(pci_find_next_capability);
397
Michael Ellermand3bac112006-11-22 18:26:16 +1100398static int __pci_bus_find_cap_start(struct pci_bus *bus,
399 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
404 if (!(status & PCI_STATUS_CAP_LIST))
405 return 0;
406
407 switch (hdr_type) {
408 case PCI_HEADER_TYPE_NORMAL:
409 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100410 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100412 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100414
415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418/**
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700419 * pci_find_capability - query for devices' capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * @dev: PCI device to query
421 * @cap: capability code
422 *
423 * Tell if a device supports a given PCI capability.
424 * Returns the address of the requested capability structure within the
425 * device's PCI configuration space or 0 in case the device does not
426 * support it. Possible values for @cap:
427 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700428 * %PCI_CAP_ID_PM Power Management
429 * %PCI_CAP_ID_AGP Accelerated Graphics Port
430 * %PCI_CAP_ID_VPD Vital Product Data
431 * %PCI_CAP_ID_SLOTID Slot Identification
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * %PCI_CAP_ID_MSI Message Signalled Interrupts
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700433 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * %PCI_CAP_ID_PCIX PCI-X
435 * %PCI_CAP_ID_EXP PCI Express
436 */
437int pci_find_capability(struct pci_dev *dev, int cap)
438{
Michael Ellermand3bac112006-11-22 18:26:16 +1100439 int pos;
440
441 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
442 if (pos)
443 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
444
445 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600447EXPORT_SYMBOL(pci_find_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449/**
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700450 * pci_bus_find_capability - query for devices' capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * @bus: the PCI bus to query
452 * @devfn: PCI device to query
453 * @cap: capability code
454 *
455 * Like pci_find_capability() but works for pci devices that do not have a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700456 * pci_dev structure set up yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
458 * Returns the address of the requested capability structure within the
459 * device's PCI configuration space or 0 in case the device does not
460 * support it.
461 */
462int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
463{
Michael Ellermand3bac112006-11-22 18:26:16 +1100464 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 u8 hdr_type;
466
467 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
468
Michael Ellermand3bac112006-11-22 18:26:16 +1100469 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
470 if (pos)
471 pos = __pci_find_next_cap(bus, devfn, pos, cap);
472
473 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600475EXPORT_SYMBOL(pci_bus_find_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477/**
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600478 * pci_find_next_ext_capability - Find an extended capability
479 * @dev: PCI device to query
480 * @start: address at which to start looking (0 to start at beginning of list)
481 * @cap: capability code
482 *
483 * Returns the address of the next matching extended capability structure
484 * within the device's PCI configuration space or 0 if the device does
485 * not support it. Some capabilities can occur several times, e.g., the
486 * vendor-specific capability, and this provides a way to find them all.
487 */
488int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
489{
490 u32 header;
491 int ttl;
492 int pos = PCI_CFG_SPACE_SIZE;
493
494 /* minimum 8 bytes per capability */
495 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
496
497 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
498 return 0;
499
500 if (start)
501 pos = start;
502
503 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
504 return 0;
505
506 /*
507 * If we have no capabilities, this is indicated by cap ID,
508 * cap version and next pointer all being 0.
509 */
510 if (header == 0)
511 return 0;
512
513 while (ttl-- > 0) {
514 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
515 return pos;
516
517 pos = PCI_EXT_CAP_NEXT(header);
518 if (pos < PCI_CFG_SPACE_SIZE)
519 break;
520
521 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
522 break;
523 }
524
525 return 0;
526}
527EXPORT_SYMBOL_GPL(pci_find_next_ext_capability);
528
529/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * pci_find_ext_capability - Find an extended capability
531 * @dev: PCI device to query
532 * @cap: capability code
533 *
534 * Returns the address of the requested extended capability structure
535 * within the device's PCI configuration space or 0 if the device does
536 * not support it. Possible values for @cap:
537 *
538 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
539 * %PCI_EXT_CAP_ID_VC Virtual Channel
540 * %PCI_EXT_CAP_ID_DSN Device Serial Number
541 * %PCI_EXT_CAP_ID_PWR Power Budgeting
542 */
543int pci_find_ext_capability(struct pci_dev *dev, int cap)
544{
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600545 return pci_find_next_ext_capability(dev, 0, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Brice Goglin3a720d72006-05-23 06:10:01 -0400547EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100549static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
550{
551 int rc, ttl = PCI_FIND_CAP_TTL;
552 u8 cap, mask;
553
554 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
555 mask = HT_3BIT_CAP_MASK;
556 else
557 mask = HT_5BIT_CAP_MASK;
558
559 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
560 PCI_CAP_ID_HT, &ttl);
561 while (pos) {
562 rc = pci_read_config_byte(dev, pos + 3, &cap);
563 if (rc != PCIBIOS_SUCCESSFUL)
564 return 0;
565
566 if ((cap & mask) == ht_cap)
567 return pos;
568
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800569 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
570 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100571 PCI_CAP_ID_HT, &ttl);
572 }
573
574 return 0;
575}
576/**
577 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
578 * @dev: PCI device to query
579 * @pos: Position from which to continue searching
580 * @ht_cap: Hypertransport capability code
581 *
582 * To be used in conjunction with pci_find_ht_capability() to search for
583 * all capabilities matching @ht_cap. @pos should always be a value returned
584 * from pci_find_ht_capability().
585 *
586 * NB. To be 100% safe against broken PCI devices, the caller should take
587 * steps to avoid an infinite loop.
588 */
589int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
590{
591 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
592}
593EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
594
595/**
596 * pci_find_ht_capability - query a device's Hypertransport capabilities
597 * @dev: PCI device to query
598 * @ht_cap: Hypertransport capability code
599 *
600 * Tell if a device supports a given Hypertransport capability.
601 * Returns an address within the device's PCI configuration space
602 * or 0 in case the device does not support the request capability.
603 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
604 * which has a Hypertransport capability matching @ht_cap.
605 */
606int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
607{
608 int pos;
609
610 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
611 if (pos)
612 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
613
614 return pos;
615}
616EXPORT_SYMBOL_GPL(pci_find_ht_capability);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/**
619 * pci_find_parent_resource - return resource region of parent bus of given region
620 * @dev: PCI device structure contains resources to be searched
621 * @res: child resource record for which parent is sought
622 *
623 * For given resource region of given device, return the resource
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700624 * region of parent bus the given region is contained in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400626struct resource *pci_find_parent_resource(const struct pci_dev *dev,
627 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 const struct pci_bus *bus = dev->bus;
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700630 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700633 pci_bus_for_each_resource(bus, r, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!r)
635 continue;
Ard Biesheuvel31342332017-04-11 17:33:12 +0100636 if (resource_contains(r, res)) {
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700637
638 /*
639 * If the window is prefetchable but the BAR is
640 * not, the allocator made a mistake.
641 */
642 if (r->flags & IORESOURCE_PREFETCH &&
643 !(res->flags & IORESOURCE_PREFETCH))
644 return NULL;
645
646 /*
647 * If we're below a transparent bridge, there may
648 * be both a positively-decoded aperture and a
649 * subtractively-decoded region that contain the BAR.
650 * We want the positively-decoded one, so this depends
651 * on pci_bus_for_each_resource() giving us those
652 * first.
653 */
654 return r;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700657 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600659EXPORT_SYMBOL(pci_find_parent_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661/**
Mika Westerbergafd29f92016-09-15 11:07:03 +0300662 * pci_find_resource - Return matching PCI device resource
663 * @dev: PCI device to query
664 * @res: Resource to look for
665 *
666 * Goes over standard PCI resources (BARs) and checks if the given resource
667 * is partially or fully contained in any of them. In that case the
668 * matching resource is returned, %NULL otherwise.
669 */
670struct resource *pci_find_resource(struct pci_dev *dev, struct resource *res)
671{
672 int i;
673
674 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
675 struct resource *r = &dev->resource[i];
676
677 if (r->start && resource_contains(r, res))
678 return r;
679 }
680
681 return NULL;
682}
683EXPORT_SYMBOL(pci_find_resource);
684
685/**
Hariprasad Shenaic56d4452015-10-18 19:55:04 +0530686 * pci_find_pcie_root_port - return PCIe Root Port
687 * @dev: PCI device to query
688 *
689 * Traverse up the parent chain and return the PCIe Root Port PCI Device
690 * for a given PCI Device.
691 */
692struct pci_dev *pci_find_pcie_root_port(struct pci_dev *dev)
693{
Thierry Redingb6f6d562017-08-17 13:06:14 +0200694 struct pci_dev *bridge, *highest_pcie_bridge = dev;
Hariprasad Shenaic56d4452015-10-18 19:55:04 +0530695
696 bridge = pci_upstream_bridge(dev);
697 while (bridge && pci_is_pcie(bridge)) {
698 highest_pcie_bridge = bridge;
699 bridge = pci_upstream_bridge(bridge);
700 }
701
Thierry Redingb6f6d562017-08-17 13:06:14 +0200702 if (pci_pcie_type(highest_pcie_bridge) != PCI_EXP_TYPE_ROOT_PORT)
703 return NULL;
Hariprasad Shenaic56d4452015-10-18 19:55:04 +0530704
Thierry Redingb6f6d562017-08-17 13:06:14 +0200705 return highest_pcie_bridge;
Hariprasad Shenaic56d4452015-10-18 19:55:04 +0530706}
707EXPORT_SYMBOL(pci_find_pcie_root_port);
708
709/**
Alex Williamson157e8762013-12-17 16:43:39 -0700710 * pci_wait_for_pending - wait for @mask bit(s) to clear in status word @pos
711 * @dev: the PCI device to operate on
712 * @pos: config space offset of status word
713 * @mask: mask of bit(s) to care about in status word
714 *
715 * Return 1 when mask bit(s) in status word clear, 0 otherwise.
716 */
717int pci_wait_for_pending(struct pci_dev *dev, int pos, u16 mask)
718{
719 int i;
720
721 /* Wait for Transaction Pending bit clean */
722 for (i = 0; i < 4; i++) {
723 u16 status;
724 if (i)
725 msleep((1 << (i - 1)) * 100);
726
727 pci_read_config_word(dev, pos, &status);
728 if (!(status & mask))
729 return 1;
730 }
731
732 return 0;
733}
734
735/**
Wei Yang70675e02015-07-29 16:52:58 +0800736 * pci_restore_bars - restore a device's BAR values (e.g. after wake-up)
John W. Linville064b53db2005-07-27 10:19:44 -0400737 * @dev: PCI device to have its BARs restored
738 *
739 * Restore the BAR values for a given device, so as to make it
740 * accessible by its driver.
741 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400742static void pci_restore_bars(struct pci_dev *dev)
John W. Linville064b53db2005-07-27 10:19:44 -0400743{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800744 int i;
John W. Linville064b53db2005-07-27 10:19:44 -0400745
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800746 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800747 pci_update_resource(dev, i);
John W. Linville064b53db2005-07-27 10:19:44 -0400748}
749
Julia Lawall299f2ff2015-12-06 17:33:45 +0100750static const struct pci_platform_pm_ops *pci_platform_pm;
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200751
Julia Lawall299f2ff2015-12-06 17:33:45 +0100752int pci_set_platform_pm(const struct pci_platform_pm_ops *ops)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200753{
Lukas Wunnercc7cc022016-09-18 05:39:20 +0200754 if (!ops->is_manageable || !ops->set_state || !ops->get_state ||
Rafael J. Wysocki08476842017-06-24 01:57:35 +0200755 !ops->choose_state || !ops->set_wakeup || !ops->need_resume)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200756 return -EINVAL;
757 pci_platform_pm = ops;
758 return 0;
759}
760
761static inline bool platform_pci_power_manageable(struct pci_dev *dev)
762{
763 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
764}
765
766static inline int platform_pci_set_power_state(struct pci_dev *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400767 pci_power_t t)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200768{
769 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
770}
771
Lukas Wunnercc7cc022016-09-18 05:39:20 +0200772static inline pci_power_t platform_pci_get_power_state(struct pci_dev *dev)
773{
774 return pci_platform_pm ? pci_platform_pm->get_state(dev) : PCI_UNKNOWN;
775}
776
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200777static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
778{
779 return pci_platform_pm ?
780 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
781}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700782
Rafael J. Wysocki08476842017-06-24 01:57:35 +0200783static inline int platform_pci_set_wakeup(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200784{
785 return pci_platform_pm ?
Rafael J. Wysocki08476842017-06-24 01:57:35 +0200786 pci_platform_pm->set_wakeup(dev, enable) : -ENODEV;
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100787}
788
Rafael J. Wysockibac2a902015-01-21 02:17:42 +0100789static inline bool platform_pci_need_resume(struct pci_dev *dev)
790{
791 return pci_platform_pm ? pci_platform_pm->need_resume(dev) : false;
792}
793
John W. Linville064b53db2005-07-27 10:19:44 -0400794/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200795 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
796 * given PCI device
797 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200798 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200800 * RETURN VALUE:
801 * -EINVAL if the requested state is invalid.
802 * -EIO if device does not support PCI PM or its PM capabilities register has a
803 * wrong version, or device doesn't support the requested state.
804 * 0 if device already is in the requested state.
805 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100807static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200809 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200810 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100812 /* Check if we're already there */
813 if (dev->current_state == state)
814 return 0;
815
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200816 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700817 return -EIO;
818
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200819 if (state < PCI_D0 || state > PCI_D3hot)
820 return -EINVAL;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* Validate current state:
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700823 * Can enter D0 from any state, but if we can only go deeper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * to sleep if we're already in a low power state
825 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100826 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200827 && dev->current_state > state) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600828 pci_err(dev, "invalid power transition (from state %d to %d)\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -0400829 dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200834 if ((state == PCI_D1 && !dev->d1_support)
835 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700836 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200838 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53db2005-07-27 10:19:44 -0400839
John W. Linville32a36582005-09-14 09:52:42 -0400840 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 * This doesn't affect PME_Status, disables PME_En, and
842 * sets PowerState to 0.
843 */
John W. Linville32a36582005-09-14 09:52:42 -0400844 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400845 case PCI_D0:
846 case PCI_D1:
847 case PCI_D2:
848 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
849 pmcsr |= state;
850 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200851 case PCI_D3hot:
852 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400853 case PCI_UNKNOWN: /* Boot-up */
854 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100855 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200856 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400857 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400858 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400859 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400860 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
863 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200864 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 /* Mandatory power management transition delays */
867 /* see PCI PM 1.1 5.6.1 table 18 */
868 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100869 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100871 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200873 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
874 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
875 if (dev->current_state != state && printk_ratelimit())
Frederick Lawler7506dc72018-01-18 12:55:24 -0600876 pci_info(dev, "Refused to change power state, currently in D%d\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -0400877 dev->current_state);
John W. Linville064b53db2005-07-27 10:19:44 -0400878
Huang Ying448bd852012-06-23 10:23:51 +0800879 /*
880 * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
John W. Linville064b53db2005-07-27 10:19:44 -0400881 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
882 * from D3hot to D0 _may_ perform an internal reset, thereby
883 * going to "D0 Uninitialized" rather than "D0 Initialized".
884 * For example, at least some versions of the 3c905B and the
885 * 3c556B exhibit this behaviour.
886 *
887 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
888 * devices in a D3hot state at boot. Consequently, we need to
889 * restore at least the BARs so that the device will be
890 * accessible to its driver.
891 */
892 if (need_restore)
893 pci_restore_bars(dev);
894
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100895 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800896 pcie_aspm_pm_state_change(dev->bus->self);
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return 0;
899}
900
901/**
Lukas Wunnera6a64022016-09-18 05:39:20 +0200902 * pci_update_current_state - Read power state of given device and cache it
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200903 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100904 * @state: State to cache in case the device doesn't have the PM capability
Lukas Wunnera6a64022016-09-18 05:39:20 +0200905 *
906 * The power state is read from the PMCSR register, which however is
907 * inaccessible in D3cold. The platform firmware is therefore queried first
908 * to detect accessibility of the register. In case the platform firmware
909 * reports an incorrect state or the device isn't power manageable by the
910 * platform at all, we try to detect D3cold by testing accessibility of the
911 * vendor ID in config space.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200912 */
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100913void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200914{
Lukas Wunnera6a64022016-09-18 05:39:20 +0200915 if (platform_pci_get_power_state(dev) == PCI_D3cold ||
916 !pci_device_is_present(dev)) {
917 dev->current_state = PCI_D3cold;
918 } else if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200919 u16 pmcsr;
920
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200921 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200922 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100923 } else {
924 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200925 }
926}
927
928/**
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600929 * pci_power_up - Put the given device into D0 forcibly
930 * @dev: PCI device to power up
931 */
932void pci_power_up(struct pci_dev *dev)
933{
934 if (platform_pci_power_manageable(dev))
935 platform_pci_set_power_state(dev, PCI_D0);
936
937 pci_raw_set_power_state(dev, PCI_D0);
938 pci_update_current_state(dev, PCI_D0);
939}
940
941/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100942 * pci_platform_power_transition - Use platform to change device power state
943 * @dev: PCI device to handle.
944 * @state: State to put the device into.
945 */
946static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
947{
948 int error;
949
950 if (platform_pci_power_manageable(dev)) {
951 error = platform_pci_set_power_state(dev, state);
952 if (!error)
953 pci_update_current_state(dev, state);
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000954 } else
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100955 error = -ENODEV;
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000956
957 if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
958 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100959
960 return error;
961}
962
963/**
Stephen Hemminger0b950f02014-01-10 17:14:48 -0700964 * pci_wakeup - Wake up a PCI device
965 * @pci_dev: Device to handle.
966 * @ign: ignored parameter
967 */
968static int pci_wakeup(struct pci_dev *pci_dev, void *ign)
969{
970 pci_wakeup_event(pci_dev);
971 pm_request_resume(&pci_dev->dev);
972 return 0;
973}
974
975/**
976 * pci_wakeup_bus - Walk given bus and wake up devices on it
977 * @bus: Top bus of the subtree to walk.
978 */
Lukas Wunner2a4d2c42018-03-03 10:53:24 +0100979void pci_wakeup_bus(struct pci_bus *bus)
Stephen Hemminger0b950f02014-01-10 17:14:48 -0700980{
981 if (bus)
982 pci_walk_bus(bus, pci_wakeup, NULL);
983}
984
985/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100986 * __pci_start_power_transition - Start power transition of a PCI device
987 * @dev: PCI device to handle.
988 * @state: State to put the device into.
989 */
990static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
991{
Huang Ying448bd852012-06-23 10:23:51 +0800992 if (state == PCI_D0) {
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100993 pci_platform_power_transition(dev, PCI_D0);
Huang Ying448bd852012-06-23 10:23:51 +0800994 /*
995 * Mandatory power management transition delays, see
996 * PCI Express Base Specification Revision 2.0 Section
997 * 6.6.1: Conventional Reset. Do not delay for
998 * devices powered on/off by corresponding bridge,
999 * because have already delayed for the bridge.
1000 */
1001 if (dev->runtime_d3cold) {
Adrian Hunter50b2b542017-03-14 15:21:58 +02001002 if (dev->d3cold_delay)
1003 msleep(dev->d3cold_delay);
Huang Ying448bd852012-06-23 10:23:51 +08001004 /*
1005 * When powering on a bridge from D3cold, the
1006 * whole hierarchy may be powered on into
1007 * D0uninitialized state, resume them to give
1008 * them a chance to suspend again
1009 */
1010 pci_wakeup_bus(dev->subordinate);
1011 }
1012 }
1013}
1014
1015/**
1016 * __pci_dev_set_current_state - Set current state of a PCI device
1017 * @dev: Device to handle
1018 * @data: pointer to state to be set
1019 */
1020static int __pci_dev_set_current_state(struct pci_dev *dev, void *data)
1021{
1022 pci_power_t state = *(pci_power_t *)data;
1023
1024 dev->current_state = state;
1025 return 0;
1026}
1027
1028/**
Lukas Wunner2a4d2c42018-03-03 10:53:24 +01001029 * pci_bus_set_current_state - Walk given bus and set current state of devices
Huang Ying448bd852012-06-23 10:23:51 +08001030 * @bus: Top bus of the subtree to walk.
1031 * @state: state to be set
1032 */
Lukas Wunner2a4d2c42018-03-03 10:53:24 +01001033void pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state)
Huang Ying448bd852012-06-23 10:23:51 +08001034{
1035 if (bus)
1036 pci_walk_bus(bus, __pci_dev_set_current_state, &state);
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +01001037}
1038
1039/**
1040 * __pci_complete_power_transition - Complete power transition of a PCI device
1041 * @dev: PCI device to handle.
1042 * @state: State to put the device into.
1043 *
1044 * This function should not be called directly by device drivers.
1045 */
1046int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
1047{
Huang Ying448bd852012-06-23 10:23:51 +08001048 int ret;
1049
Rafael J. Wysockidb288c92012-07-05 15:20:00 -06001050 if (state <= PCI_D0)
Huang Ying448bd852012-06-23 10:23:51 +08001051 return -EINVAL;
1052 ret = pci_platform_power_transition(dev, state);
1053 /* Power off the bridge may power off the whole hierarchy */
1054 if (!ret && state == PCI_D3cold)
Lukas Wunner2a4d2c42018-03-03 10:53:24 +01001055 pci_bus_set_current_state(dev->subordinate, PCI_D3cold);
Huang Ying448bd852012-06-23 10:23:51 +08001056 return ret;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +01001057}
1058EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
1059
1060/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001061 * pci_set_power_state - Set the power state of a PCI device
1062 * @dev: PCI device to handle.
1063 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
1064 *
Nick Andrew877d0312009-01-26 11:06:57 +01001065 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001066 * the device's PCI PM registers.
1067 *
1068 * RETURN VALUE:
1069 * -EINVAL if the requested state is invalid.
1070 * -EIO if device does not support PCI PM or its PM capabilities register has a
1071 * wrong version, or device doesn't support the requested state.
Piotr Gregorab4b8a42017-08-02 20:42:18 +01001072 * 0 if the transition is to D1 or D2 but D1 and D2 are not supported.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001073 * 0 if device already is in the requested state.
Piotr Gregorab4b8a42017-08-02 20:42:18 +01001074 * 0 if the transition is to D3 but D3 is not supported.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001075 * 0 if device's power state has been successfully changed.
1076 */
1077int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
1078{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001079 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001080
1081 /* bound the state we're entering */
Huang Ying448bd852012-06-23 10:23:51 +08001082 if (state > PCI_D3cold)
1083 state = PCI_D3cold;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001084 else if (state < PCI_D0)
1085 state = PCI_D0;
1086 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
1087 /*
1088 * If the device or the parent bridge do not support PCI PM,
1089 * ignore the request if we're doing anything other than putting
1090 * it into D0 (which would only happen on boot).
1091 */
1092 return 0;
1093
Rafael J. Wysockidb288c92012-07-05 15:20:00 -06001094 /* Check if we're already there */
1095 if (dev->current_state == state)
1096 return 0;
1097
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +01001098 __pci_start_power_transition(dev, state);
1099
Alan Cox979b1792008-07-24 17:18:38 +01001100 /* This device is quirked not to be put into D3, so
1101 don't put it in D3 */
Huang Ying448bd852012-06-23 10:23:51 +08001102 if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
Alan Cox979b1792008-07-24 17:18:38 +01001103 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001104
Huang Ying448bd852012-06-23 10:23:51 +08001105 /*
1106 * To put device in D3cold, we put device into D3hot in native
1107 * way, then put device into D3cold with platform ops
1108 */
1109 error = pci_raw_set_power_state(dev, state > PCI_D3hot ?
1110 PCI_D3hot : state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001111
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +01001112 if (!__pci_complete_power_transition(dev, state))
1113 error = 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001114
1115 return error;
1116}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001117EXPORT_SYMBOL(pci_set_power_state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +02001118
1119/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * pci_choose_state - Choose the power state of a PCI device
1121 * @dev: PCI device to be suspended
1122 * @state: target sleep state for the whole system. This is the value
1123 * that is passed to suspend() function.
1124 *
1125 * Returns PCI power state suitable for given device and given system
1126 * message.
1127 */
1128
1129pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
1130{
Shaohua Liab826ca2007-07-20 10:03:22 +08001131 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -05001132
Yijing Wang728cdb72013-06-18 16:22:14 +08001133 if (!dev->pm_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return PCI_D0;
1135
Rafael J. Wysocki961d9122008-07-07 03:32:02 +02001136 ret = platform_pci_choose_state(dev);
1137 if (ret != PCI_POWER_ERROR)
1138 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -07001139
1140 switch (state.event) {
1141 case PM_EVENT_ON:
1142 return PCI_D0;
1143 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -07001144 case PM_EVENT_PRETHAW:
1145 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -07001146 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001147 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -07001148 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 default:
Frederick Lawler7506dc72018-01-18 12:55:24 -06001150 pci_info(dev, "unrecognized suspend event %d\n",
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001151 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 BUG();
1153 }
1154 return PCI_D0;
1155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156EXPORT_SYMBOL(pci_choose_state);
1157
Yu Zhao89858512009-02-16 02:55:47 +08001158#define PCI_EXP_SAVE_REGS 7
1159
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07001160static struct pci_cap_saved_state *_pci_find_saved_cap(struct pci_dev *pci_dev,
1161 u16 cap, bool extended)
Yinghai Lu34a48762012-02-11 00:18:41 -08001162{
1163 struct pci_cap_saved_state *tmp;
Yinghai Lu34a48762012-02-11 00:18:41 -08001164
Sasha Levinb67bfe02013-02-27 17:06:00 -08001165 hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07001166 if (tmp->cap.cap_extended == extended && tmp->cap.cap_nr == cap)
Yinghai Lu34a48762012-02-11 00:18:41 -08001167 return tmp;
1168 }
1169 return NULL;
1170}
1171
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07001172struct pci_cap_saved_state *pci_find_saved_cap(struct pci_dev *dev, char cap)
1173{
1174 return _pci_find_saved_cap(dev, cap, false);
1175}
1176
1177struct pci_cap_saved_state *pci_find_saved_ext_cap(struct pci_dev *dev, u16 cap)
1178{
1179 return _pci_find_saved_cap(dev, cap, true);
1180}
1181
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001182static int pci_save_pcie_state(struct pci_dev *dev)
1183{
Jiang Liu59875ae2012-07-24 17:20:06 +08001184 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001185 struct pci_cap_saved_state *save_state;
1186 u16 *cap;
1187
Jiang Liu59875ae2012-07-24 17:20:06 +08001188 if (!pci_is_pcie(dev))
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001189 return 0;
1190
Eric W. Biederman9f355752007-03-08 13:06:13 -07001191 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001192 if (!save_state) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001193 pci_err(dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001194 return -ENOMEM;
1195 }
Jiang Liu59875ae2012-07-24 17:20:06 +08001196
Alex Williamson24a4742f2011-05-10 10:02:11 -06001197 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +08001198 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &cap[i++]);
1199 pcie_capability_read_word(dev, PCI_EXP_LNKCTL, &cap[i++]);
1200 pcie_capability_read_word(dev, PCI_EXP_SLTCTL, &cap[i++]);
1201 pcie_capability_read_word(dev, PCI_EXP_RTCTL, &cap[i++]);
1202 pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &cap[i++]);
1203 pcie_capability_read_word(dev, PCI_EXP_LNKCTL2, &cap[i++]);
1204 pcie_capability_read_word(dev, PCI_EXP_SLTCTL2, &cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001205
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001206 return 0;
1207}
1208
1209static void pci_restore_pcie_state(struct pci_dev *dev)
1210{
Jiang Liu59875ae2012-07-24 17:20:06 +08001211 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001212 struct pci_cap_saved_state *save_state;
1213 u16 *cap;
1214
1215 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Jiang Liu59875ae2012-07-24 17:20:06 +08001216 if (!save_state)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001217 return;
Jiang Liu59875ae2012-07-24 17:20:06 +08001218
Alex Williamson24a4742f2011-05-10 10:02:11 -06001219 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +08001220 pcie_capability_write_word(dev, PCI_EXP_DEVCTL, cap[i++]);
1221 pcie_capability_write_word(dev, PCI_EXP_LNKCTL, cap[i++]);
1222 pcie_capability_write_word(dev, PCI_EXP_SLTCTL, cap[i++]);
1223 pcie_capability_write_word(dev, PCI_EXP_RTCTL, cap[i++]);
1224 pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, cap[i++]);
1225 pcie_capability_write_word(dev, PCI_EXP_LNKCTL2, cap[i++]);
1226 pcie_capability_write_word(dev, PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001227}
1228
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001229
1230static int pci_save_pcix_state(struct pci_dev *dev)
1231{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001232 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001233 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001234
1235 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Wei Yang0a1a9b42015-06-30 09:16:44 +08001236 if (!pos)
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001237 return 0;
1238
Shaohua Lif34303d2007-12-18 09:56:47 +08001239 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001240 if (!save_state) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001241 pci_err(dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001242 return -ENOMEM;
1243 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001244
Alex Williamson24a4742f2011-05-10 10:02:11 -06001245 pci_read_config_word(dev, pos + PCI_X_CMD,
1246 (u16 *)save_state->cap.data);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001247
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001248 return 0;
1249}
1250
1251static void pci_restore_pcix_state(struct pci_dev *dev)
1252{
1253 int i = 0, pos;
1254 struct pci_cap_saved_state *save_state;
1255 u16 *cap;
1256
1257 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
1258 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Wei Yang0a1a9b42015-06-30 09:16:44 +08001259 if (!save_state || !pos)
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001260 return;
Alex Williamson24a4742f2011-05-10 10:02:11 -06001261 cap = (u16 *)&save_state->cap.data[0];
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001262
1263 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001264}
1265
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267/**
1268 * pci_save_state - save the PCI configuration space of a device before suspending
1269 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001271int pci_save_state(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
1273 int i;
1274 /* XXX: 100% dword access ok here? */
1275 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -02001276 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +01001277 dev->state_saved = true;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001278
1279 i = pci_save_pcie_state(dev);
1280 if (i != 0)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001281 return i;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001282
1283 i = pci_save_pcix_state(dev);
1284 if (i != 0)
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001285 return i;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001286
Quentin Lambert754834b2014-11-06 17:45:55 +01001287 return pci_save_vc_state(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001289EXPORT_SYMBOL(pci_save_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001291static void pci_restore_config_dword(struct pci_dev *pdev, int offset,
1292 u32 saved_val, int retry)
1293{
1294 u32 val;
1295
1296 pci_read_config_dword(pdev, offset, &val);
1297 if (val == saved_val)
1298 return;
1299
1300 for (;;) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001301 pci_dbg(pdev, "restoring config space at offset %#x (was %#x, writing %#x)\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04001302 offset, val, saved_val);
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001303 pci_write_config_dword(pdev, offset, saved_val);
1304 if (retry-- <= 0)
1305 return;
1306
1307 pci_read_config_dword(pdev, offset, &val);
1308 if (val == saved_val)
1309 return;
1310
1311 mdelay(1);
1312 }
1313}
1314
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001315static void pci_restore_config_space_range(struct pci_dev *pdev,
1316 int start, int end, int retry)
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001317{
1318 int index;
1319
1320 for (index = end; index >= start; index--)
1321 pci_restore_config_dword(pdev, 4 * index,
1322 pdev->saved_config_space[index],
1323 retry);
1324}
1325
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001326static void pci_restore_config_space(struct pci_dev *pdev)
1327{
1328 if (pdev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
1329 pci_restore_config_space_range(pdev, 10, 15, 0);
1330 /* Restore BARs before the command register. */
1331 pci_restore_config_space_range(pdev, 4, 9, 10);
1332 pci_restore_config_space_range(pdev, 0, 3, 0);
1333 } else {
1334 pci_restore_config_space_range(pdev, 0, 15, 0);
1335 }
1336}
1337
Christian Königd3252ac2018-06-29 19:54:55 -05001338static void pci_restore_rebar_state(struct pci_dev *pdev)
1339{
1340 unsigned int pos, nbars, i;
1341 u32 ctrl;
1342
1343 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_REBAR);
1344 if (!pos)
1345 return;
1346
1347 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
1348 nbars = (ctrl & PCI_REBAR_CTRL_NBAR_MASK) >>
1349 PCI_REBAR_CTRL_NBAR_SHIFT;
1350
1351 for (i = 0; i < nbars; i++, pos += 8) {
1352 struct resource *res;
1353 int bar_idx, size;
1354
1355 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
1356 bar_idx = ctrl & PCI_REBAR_CTRL_BAR_IDX;
1357 res = pdev->resource + bar_idx;
1358 size = order_base_2((resource_size(res) >> 20) | 1) - 1;
1359 ctrl &= ~PCI_REBAR_CTRL_BAR_SIZE;
Christian Königb1277a22018-06-29 19:55:03 -05001360 ctrl |= size << PCI_REBAR_CTRL_BAR_SHIFT;
Christian Königd3252ac2018-06-29 19:54:55 -05001361 pci_write_config_dword(pdev, pos + PCI_REBAR_CTRL, ctrl);
1362 }
1363}
1364
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001365/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 * pci_restore_state - Restore the saved state of a PCI device
1367 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 */
Jon Mason1d3c16a2010-11-30 17:43:26 -06001369void pci_restore_state(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Alek Duc82f63e2009-08-08 08:46:19 +08001371 if (!dev->state_saved)
Jon Mason1d3c16a2010-11-30 17:43:26 -06001372 return;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001373
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001374 /* PCI Express register must be restored first */
1375 pci_restore_pcie_state(dev);
CQ Tang4ebeb1e2017-05-30 09:25:49 -07001376 pci_restore_pasid_state(dev);
1377 pci_restore_pri_state(dev);
Hao, Xudong1900ca12011-12-17 21:24:40 +08001378 pci_restore_ats_state(dev);
Alex Williamson425c1b22013-12-17 16:43:51 -07001379 pci_restore_vc_state(dev);
Christian Königd3252ac2018-06-29 19:54:55 -05001380 pci_restore_rebar_state(dev);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001381
Taku Izumib07461a2015-09-17 10:09:37 -05001382 pci_cleanup_aer_error_status_regs(dev);
1383
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001384 pci_restore_config_space(dev);
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001385
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001386 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +08001387 pci_restore_msi_state(dev);
Alexander Duyckccbc1752015-07-07 12:24:35 -07001388
1389 /* Restore ACS and IOV configuration state */
1390 pci_enable_acs(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +08001391 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +11001392
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001393 dev->state_saved = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001395EXPORT_SYMBOL(pci_restore_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001397struct pci_saved_state {
1398 u32 config_space[16];
1399 struct pci_cap_saved_data cap[0];
1400};
1401
1402/**
1403 * pci_store_saved_state - Allocate and return an opaque struct containing
1404 * the device saved state.
1405 * @dev: PCI device that we're dealing with
1406 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001407 * Return NULL if no state or error.
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001408 */
1409struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev)
1410{
1411 struct pci_saved_state *state;
1412 struct pci_cap_saved_state *tmp;
1413 struct pci_cap_saved_data *cap;
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001414 size_t size;
1415
1416 if (!dev->state_saved)
1417 return NULL;
1418
1419 size = sizeof(*state) + sizeof(struct pci_cap_saved_data);
1420
Sasha Levinb67bfe02013-02-27 17:06:00 -08001421 hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001422 size += sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1423
1424 state = kzalloc(size, GFP_KERNEL);
1425 if (!state)
1426 return NULL;
1427
1428 memcpy(state->config_space, dev->saved_config_space,
1429 sizeof(state->config_space));
1430
1431 cap = state->cap;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001432 hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001433 size_t len = sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1434 memcpy(cap, &tmp->cap, len);
1435 cap = (struct pci_cap_saved_data *)((u8 *)cap + len);
1436 }
1437 /* Empty cap_save terminates list */
1438
1439 return state;
1440}
1441EXPORT_SYMBOL_GPL(pci_store_saved_state);
1442
1443/**
1444 * pci_load_saved_state - Reload the provided save state into struct pci_dev.
1445 * @dev: PCI device that we're dealing with
1446 * @state: Saved state returned from pci_store_saved_state()
1447 */
Konrad Rzeszutek Wilk98d9b272014-12-03 16:40:31 -05001448int pci_load_saved_state(struct pci_dev *dev,
1449 struct pci_saved_state *state)
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001450{
1451 struct pci_cap_saved_data *cap;
1452
1453 dev->state_saved = false;
1454
1455 if (!state)
1456 return 0;
1457
1458 memcpy(dev->saved_config_space, state->config_space,
1459 sizeof(state->config_space));
1460
1461 cap = state->cap;
1462 while (cap->size) {
1463 struct pci_cap_saved_state *tmp;
1464
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07001465 tmp = _pci_find_saved_cap(dev, cap->cap_nr, cap->cap_extended);
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001466 if (!tmp || tmp->cap.size != cap->size)
1467 return -EINVAL;
1468
1469 memcpy(tmp->cap.data, cap->data, tmp->cap.size);
1470 cap = (struct pci_cap_saved_data *)((u8 *)cap +
1471 sizeof(struct pci_cap_saved_data) + cap->size);
1472 }
1473
1474 dev->state_saved = true;
1475 return 0;
1476}
Konrad Rzeszutek Wilk98d9b272014-12-03 16:40:31 -05001477EXPORT_SYMBOL_GPL(pci_load_saved_state);
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001478
1479/**
1480 * pci_load_and_free_saved_state - Reload the save state pointed to by state,
1481 * and free the memory allocated for it.
1482 * @dev: PCI device that we're dealing with
1483 * @state: Pointer to saved state returned from pci_store_saved_state()
1484 */
1485int pci_load_and_free_saved_state(struct pci_dev *dev,
1486 struct pci_saved_state **state)
1487{
1488 int ret = pci_load_saved_state(dev, *state);
1489 kfree(*state);
1490 *state = NULL;
1491 return ret;
1492}
1493EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
1494
Bjorn Helgaas8a9d5602014-02-26 11:26:00 -07001495int __weak pcibios_enable_device(struct pci_dev *dev, int bars)
1496{
1497 return pci_enable_resources(dev, bars);
1498}
1499
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001500static int do_pci_enable_device(struct pci_dev *dev, int bars)
1501{
1502 int err;
Vidya Sagar1f6ae472014-07-16 15:33:42 +05301503 struct pci_dev *bridge;
Bjorn Helgaas1e2571a2014-01-29 16:13:51 -07001504 u16 cmd;
1505 u8 pin;
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001506
1507 err = pci_set_power_state(dev, PCI_D0);
1508 if (err < 0 && err != -EIO)
1509 return err;
Vidya Sagar1f6ae472014-07-16 15:33:42 +05301510
1511 bridge = pci_upstream_bridge(dev);
1512 if (bridge)
1513 pcie_aspm_powersave_config_link(bridge);
1514
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001515 err = pcibios_enable_device(dev, bars);
1516 if (err < 0)
1517 return err;
1518 pci_fixup_device(pci_fixup_enable, dev);
1519
Bjorn Helgaas866d5412014-03-07 16:06:05 -07001520 if (dev->msi_enabled || dev->msix_enabled)
1521 return 0;
1522
Bjorn Helgaas1e2571a2014-01-29 16:13:51 -07001523 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
1524 if (pin) {
1525 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1526 if (cmd & PCI_COMMAND_INTX_DISABLE)
1527 pci_write_config_word(dev, PCI_COMMAND,
1528 cmd & ~PCI_COMMAND_INTX_DISABLE);
1529 }
1530
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001531 return 0;
1532}
1533
1534/**
Tejun Heo0b62e132007-07-27 14:43:35 +09001535 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001536 * @dev: PCI device to be resumed
1537 *
1538 * Note this function is a backend of pci_default_resume and is not supposed
1539 * to be called by normal code, write proper resume handler and use it instead.
1540 */
Tejun Heo0b62e132007-07-27 14:43:35 +09001541int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001542{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001543 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001544 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
1545 return 0;
1546}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001547EXPORT_SYMBOL(pci_reenable_device);
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001548
Yinghai Lu928bea92013-07-22 14:37:17 -07001549static void pci_enable_bridge(struct pci_dev *dev)
1550{
Bjorn Helgaas79272132013-11-06 10:00:51 -07001551 struct pci_dev *bridge;
Yinghai Lu928bea92013-07-22 14:37:17 -07001552 int retval;
1553
Bjorn Helgaas79272132013-11-06 10:00:51 -07001554 bridge = pci_upstream_bridge(dev);
1555 if (bridge)
1556 pci_enable_bridge(bridge);
Yinghai Lu928bea92013-07-22 14:37:17 -07001557
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001558 if (pci_is_enabled(dev)) {
Bjorn Helgaasfbeeb822013-11-05 13:34:51 -07001559 if (!dev->is_busmaster)
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001560 pci_set_master(dev);
Bjorn Helgaas0f50a492017-09-15 01:33:51 -05001561 return;
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001562 }
1563
Yinghai Lu928bea92013-07-22 14:37:17 -07001564 retval = pci_enable_device(dev);
1565 if (retval)
Frederick Lawler7506dc72018-01-18 12:55:24 -06001566 pci_err(dev, "Error enabling bridge (%d), continuing\n",
Yinghai Lu928bea92013-07-22 14:37:17 -07001567 retval);
1568 pci_set_master(dev);
1569}
1570
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001571static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Bjorn Helgaas79272132013-11-06 10:00:51 -07001573 struct pci_dev *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001575 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Jesse Barnes97c145f2010-11-05 15:16:36 -04001577 /*
1578 * Power state could be unknown at this point, either due to a fresh
1579 * boot or a device removal call. So get the current power state
1580 * so that things like MSI message writing will behave as expected
1581 * (e.g. if the device really is in D0 at enable time).
1582 */
1583 if (dev->pm_cap) {
1584 u16 pmcsr;
1585 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1586 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
1587 }
1588
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001589 if (atomic_inc_return(&dev->enable_cnt) > 1)
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001590 return 0; /* already enabled */
1591
Bjorn Helgaas79272132013-11-06 10:00:51 -07001592 bridge = pci_upstream_bridge(dev);
Bjorn Helgaas0f50a492017-09-15 01:33:51 -05001593 if (bridge)
Bjorn Helgaas79272132013-11-06 10:00:51 -07001594 pci_enable_bridge(bridge);
Yinghai Lu928bea92013-07-22 14:37:17 -07001595
Yinghai Lu497f16f2011-12-17 18:33:37 -08001596 /* only skip sriov related */
1597 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
1598 if (dev->resource[i].flags & flags)
1599 bars |= (1 << i);
1600 for (i = PCI_BRIDGE_RESOURCES; i < DEVICE_COUNT_RESOURCE; i++)
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001601 if (dev->resource[i].flags & flags)
1602 bars |= (1 << i);
1603
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001604 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -07001605 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001606 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001607 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
1610/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001611 * pci_enable_device_io - Initialize a device for use with IO space
1612 * @dev: PCI device to be initialized
1613 *
1614 * Initialize device before it's used by a driver. Ask low-level code
1615 * to enable I/O resources. Wake up the device if it was suspended.
1616 * Beware, this function can fail.
1617 */
1618int pci_enable_device_io(struct pci_dev *dev)
1619{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001620 return pci_enable_device_flags(dev, IORESOURCE_IO);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001621}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001622EXPORT_SYMBOL(pci_enable_device_io);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001623
1624/**
1625 * pci_enable_device_mem - Initialize a device for use with Memory space
1626 * @dev: PCI device to be initialized
1627 *
1628 * Initialize device before it's used by a driver. Ask low-level code
1629 * to enable Memory resources. Wake up the device if it was suspended.
1630 * Beware, this function can fail.
1631 */
1632int pci_enable_device_mem(struct pci_dev *dev)
1633{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001634 return pci_enable_device_flags(dev, IORESOURCE_MEM);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001635}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001636EXPORT_SYMBOL(pci_enable_device_mem);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638/**
1639 * pci_enable_device - Initialize device before it's used by a driver.
1640 * @dev: PCI device to be initialized
1641 *
1642 * Initialize device before it's used by a driver. Ask low-level code
1643 * to enable I/O and memory. Wake up the device if it was suspended.
1644 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001645 *
1646 * Note we don't actually enable the device many times if we call
1647 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001649int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001651 return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001653EXPORT_SYMBOL(pci_enable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Tejun Heo9ac78492007-01-20 16:00:26 +09001655/*
1656 * Managed PCI resources. This manages device on/off, intx/msi/msix
1657 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1658 * there's no need to track it separately. pci_devres is initialized
1659 * when a device is enabled using managed PCI device enable interface.
1660 */
1661struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001662 unsigned int enabled:1;
1663 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001664 unsigned int orig_intx:1;
1665 unsigned int restore_intx:1;
Heiner Kallweitfc0f9f42017-12-12 07:40:56 +01001666 unsigned int mwi:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001667 u32 region_mask;
1668};
1669
1670static void pcim_release(struct device *gendev, void *res)
1671{
Geliang Tangf3d2f1652016-01-08 12:05:39 -06001672 struct pci_dev *dev = to_pci_dev(gendev);
Tejun Heo9ac78492007-01-20 16:00:26 +09001673 struct pci_devres *this = res;
1674 int i;
1675
1676 if (dev->msi_enabled)
1677 pci_disable_msi(dev);
1678 if (dev->msix_enabled)
1679 pci_disable_msix(dev);
1680
1681 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1682 if (this->region_mask & (1 << i))
1683 pci_release_region(dev, i);
1684
Heiner Kallweitfc0f9f42017-12-12 07:40:56 +01001685 if (this->mwi)
1686 pci_clear_mwi(dev);
1687
Tejun Heo9ac78492007-01-20 16:00:26 +09001688 if (this->restore_intx)
1689 pci_intx(dev, this->orig_intx);
1690
Tejun Heo7f375f32007-02-25 04:36:01 -08001691 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001692 pci_disable_device(dev);
1693}
1694
Ryan Desfosses07656d83082014-04-11 01:01:53 -04001695static struct pci_devres *get_pci_dr(struct pci_dev *pdev)
Tejun Heo9ac78492007-01-20 16:00:26 +09001696{
1697 struct pci_devres *dr, *new_dr;
1698
1699 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1700 if (dr)
1701 return dr;
1702
1703 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1704 if (!new_dr)
1705 return NULL;
1706 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1707}
1708
Ryan Desfosses07656d83082014-04-11 01:01:53 -04001709static struct pci_devres *find_pci_dr(struct pci_dev *pdev)
Tejun Heo9ac78492007-01-20 16:00:26 +09001710{
1711 if (pci_is_managed(pdev))
1712 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1713 return NULL;
1714}
1715
1716/**
1717 * pcim_enable_device - Managed pci_enable_device()
1718 * @pdev: PCI device to be initialized
1719 *
1720 * Managed pci_enable_device().
1721 */
1722int pcim_enable_device(struct pci_dev *pdev)
1723{
1724 struct pci_devres *dr;
1725 int rc;
1726
1727 dr = get_pci_dr(pdev);
1728 if (unlikely(!dr))
1729 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001730 if (dr->enabled)
1731 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001732
1733 rc = pci_enable_device(pdev);
1734 if (!rc) {
1735 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001736 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001737 }
1738 return rc;
1739}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001740EXPORT_SYMBOL(pcim_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001741
1742/**
1743 * pcim_pin_device - Pin managed PCI device
1744 * @pdev: PCI device to pin
1745 *
1746 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1747 * driver detach. @pdev must have been enabled with
1748 * pcim_enable_device().
1749 */
1750void pcim_pin_device(struct pci_dev *pdev)
1751{
1752 struct pci_devres *dr;
1753
1754 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001755 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001756 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001757 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001758}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001759EXPORT_SYMBOL(pcim_pin_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001760
Matthew Garretteca0d4672012-12-05 14:33:27 -07001761/*
1762 * pcibios_add_device - provide arch specific hooks when adding device dev
1763 * @dev: the PCI device being added
1764 *
1765 * Permits the platform to provide architecture specific functionality when
1766 * devices are added. This is the default implementation. Architecture
1767 * implementations can override this.
1768 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001769int __weak pcibios_add_device(struct pci_dev *dev)
Matthew Garretteca0d4672012-12-05 14:33:27 -07001770{
1771 return 0;
1772}
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774/**
Sebastian Ott6ae32c52013-06-04 19:18:14 +02001775 * pcibios_release_device - provide arch specific hooks when releasing device dev
1776 * @dev: the PCI device being released
1777 *
1778 * Permits the platform to provide architecture specific functionality when
1779 * devices are released. This is the default implementation. Architecture
1780 * implementations can override this.
1781 */
1782void __weak pcibios_release_device(struct pci_dev *dev) {}
1783
1784/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 * pcibios_disable_device - disable arch specific PCI resources for device dev
1786 * @dev: the PCI device to disable
1787 *
1788 * Disables architecture specific PCI resources for the device. This
1789 * is the default implementation. Architecture implementations can
1790 * override this.
1791 */
Bogicevic Sasaff3ce482015-12-27 13:21:11 -08001792void __weak pcibios_disable_device(struct pci_dev *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Hanjun Guoa43ae582014-05-06 11:29:52 +08001794/**
1795 * pcibios_penalize_isa_irq - penalize an ISA IRQ
1796 * @irq: ISA IRQ to penalize
1797 * @active: IRQ active or not
1798 *
1799 * Permits the platform to provide architecture-specific functionality when
1800 * penalizing ISA IRQs. This is the default implementation. Architecture
1801 * implementations can override this.
1802 */
1803void __weak pcibios_penalize_isa_irq(int irq, int active) {}
1804
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001805static void do_pci_disable_device(struct pci_dev *dev)
1806{
1807 u16 pci_command;
1808
1809 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1810 if (pci_command & PCI_COMMAND_MASTER) {
1811 pci_command &= ~PCI_COMMAND_MASTER;
1812 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1813 }
1814
1815 pcibios_disable_device(dev);
1816}
1817
1818/**
1819 * pci_disable_enabled_device - Disable device without updating enable_cnt
1820 * @dev: PCI device to disable
1821 *
1822 * NOTE: This function is a backend of PCI power management routines and is
1823 * not supposed to be called drivers.
1824 */
1825void pci_disable_enabled_device(struct pci_dev *dev)
1826{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001827 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001828 do_pci_disable_device(dev);
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/**
1832 * pci_disable_device - Disable PCI device after use
1833 * @dev: PCI device to be disabled
1834 *
1835 * Signal to the system that the PCI device is not in use by the system
1836 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001837 *
1838 * Note we don't actually disable the device until all callers of
Roman Fietzeee6583f2010-05-18 14:45:47 +02001839 * pci_enable_device() have called pci_disable_device().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001841void pci_disable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
Tejun Heo9ac78492007-01-20 16:00:26 +09001843 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001844
Tejun Heo9ac78492007-01-20 16:00:26 +09001845 dr = find_pci_dr(dev);
1846 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001847 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001848
Konstantin Khlebnikovfd6dcea2013-02-04 15:56:01 +04001849 dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
1850 "disabling already-disabled device");
1851
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001852 if (atomic_dec_return(&dev->enable_cnt) != 0)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001853 return;
1854
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001855 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001857 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001859EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001862 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001863 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001864 * @state: Reset state to enter into
1865 *
1866 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001867 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001868 * implementation. Architecture implementations can override this.
1869 */
Bjorn Helgaasd6d88c82012-06-19 06:54:49 -06001870int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
1871 enum pcie_reset_state state)
Brian Kingf7bdd122007-04-06 16:39:36 -05001872{
1873 return -EINVAL;
1874}
1875
1876/**
1877 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001878 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001879 * @state: Reset state to enter into
1880 *
1881 *
1882 * Sets the PCI reset state for the device.
1883 */
1884int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1885{
1886 return pcibios_set_pcie_reset_state(dev, state);
1887}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001888EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Brian Kingf7bdd122007-04-06 16:39:36 -05001889
1890/**
Bjorn Helgaasdcb04532018-03-09 11:06:53 -06001891 * pcie_clear_root_pme_status - Clear root port PME interrupt status.
1892 * @dev: PCIe root port or event collector.
1893 */
1894void pcie_clear_root_pme_status(struct pci_dev *dev)
1895{
1896 pcie_capability_set_dword(dev, PCI_EXP_RTSTA, PCI_EXP_RTSTA_PME);
1897}
1898
1899/**
Rafael J. Wysocki58ff4632010-02-17 23:36:58 +01001900 * pci_check_pme_status - Check if given device has generated PME.
1901 * @dev: Device to check.
1902 *
1903 * Check the PME status of the device and if set, clear it and clear PME enable
1904 * (if set). Return 'true' if PME status and PME enable were both set or
1905 * 'false' otherwise.
1906 */
1907bool pci_check_pme_status(struct pci_dev *dev)
1908{
1909 int pmcsr_pos;
1910 u16 pmcsr;
1911 bool ret = false;
1912
1913 if (!dev->pm_cap)
1914 return false;
1915
1916 pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
1917 pci_read_config_word(dev, pmcsr_pos, &pmcsr);
1918 if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
1919 return false;
1920
1921 /* Clear PME status. */
1922 pmcsr |= PCI_PM_CTRL_PME_STATUS;
1923 if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
1924 /* Disable PME to avoid interrupt flood. */
1925 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1926 ret = true;
1927 }
1928
1929 pci_write_config_word(dev, pmcsr_pos, pmcsr);
1930
1931 return ret;
1932}
1933
1934/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001935 * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
1936 * @dev: Device to handle.
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001937 * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001938 *
1939 * Check if @dev has generated PME and queue a resume request for it in that
1940 * case.
1941 */
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001942static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001943{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001944 if (pme_poll_reset && dev->pme_poll)
1945 dev->pme_poll = false;
1946
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001947 if (pci_check_pme_status(dev)) {
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001948 pci_wakeup_event(dev);
Rafael J. Wysocki0f953bf2010-12-29 13:22:08 +01001949 pm_request_resume(&dev->dev);
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001950 }
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001951 return 0;
1952}
1953
1954/**
1955 * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
1956 * @bus: Top bus of the subtree to walk.
1957 */
1958void pci_pme_wakeup_bus(struct pci_bus *bus)
1959{
1960 if (bus)
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001961 pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001962}
1963
Huang Ying448bd852012-06-23 10:23:51 +08001964
1965/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001966 * pci_pme_capable - check the capability of PCI device to generate PME#
1967 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001968 * @state: PCI state from which device will issue PME#.
1969 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001970bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001971{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001972 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001973 return false;
1974
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001975 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001976}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001977EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001978
Matthew Garrettdf17e622010-10-04 14:22:29 -04001979static void pci_pme_list_scan(struct work_struct *work)
1980{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001981 struct pci_pme_device *pme_dev, *n;
Matthew Garrettdf17e622010-10-04 14:22:29 -04001982
1983 mutex_lock(&pci_pme_list_mutex);
Bjorn Helgaasce300002014-01-24 09:51:06 -07001984 list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
1985 if (pme_dev->dev->pme_poll) {
1986 struct pci_dev *bridge;
Zheng Yan71a83bd2012-06-23 10:23:49 +08001987
Bjorn Helgaasce300002014-01-24 09:51:06 -07001988 bridge = pme_dev->dev->bus->self;
1989 /*
1990 * If bridge is in low power state, the
1991 * configuration space of subordinate devices
1992 * may be not accessible
1993 */
1994 if (bridge && bridge->current_state != PCI_D0)
1995 continue;
1996 pci_pme_wakeup(pme_dev->dev, NULL);
1997 } else {
1998 list_del(&pme_dev->list);
1999 kfree(pme_dev);
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02002000 }
Matthew Garrettdf17e622010-10-04 14:22:29 -04002001 }
Bjorn Helgaasce300002014-01-24 09:51:06 -07002002 if (!list_empty(&pci_pme_list))
Lukas Wunnerea003532017-04-18 20:44:30 +02002003 queue_delayed_work(system_freezable_wq, &pci_pme_work,
2004 msecs_to_jiffies(PME_TIMEOUT));
Matthew Garrettdf17e622010-10-04 14:22:29 -04002005 mutex_unlock(&pci_pme_list_mutex);
2006}
2007
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002008static void __pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002009{
2010 u16 pmcsr;
2011
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00002012 if (!dev->pme_support)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002013 return;
2014
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002015 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002016 /* Clear PME_Status by writing 1 to it and enable PME# */
2017 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
2018 if (!enable)
2019 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
2020
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002021 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002022}
2023
Rafael J. Wysocki0ce3fca2017-07-12 03:05:39 +02002024/**
2025 * pci_pme_restore - Restore PME configuration after config space restore.
2026 * @dev: PCI device to update.
2027 */
2028void pci_pme_restore(struct pci_dev *dev)
Rafael J. Wysockidc15e712017-06-12 22:53:36 +02002029{
2030 u16 pmcsr;
2031
2032 if (!dev->pme_support)
2033 return;
2034
2035 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
2036 if (dev->wakeup_prepared) {
2037 pmcsr |= PCI_PM_CTRL_PME_ENABLE;
Rafael J. Wysocki0ce3fca2017-07-12 03:05:39 +02002038 pmcsr &= ~PCI_PM_CTRL_PME_STATUS;
Rafael J. Wysockidc15e712017-06-12 22:53:36 +02002039 } else {
2040 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
2041 pmcsr |= PCI_PM_CTRL_PME_STATUS;
2042 }
2043 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
2044}
2045
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002046/**
2047 * pci_pme_active - enable or disable PCI device's PME# function
2048 * @dev: PCI device to handle.
2049 * @enable: 'true' to enable PME# generation; 'false' to disable it.
2050 *
2051 * The caller must verify that the device is capable of generating PME# before
2052 * calling this function with @enable equal to 'true'.
2053 */
2054void pci_pme_active(struct pci_dev *dev, bool enable)
2055{
2056 __pci_pme_active(dev, enable);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002057
Huang Ying6e965e02012-10-26 13:07:51 +08002058 /*
2059 * PCI (as opposed to PCIe) PME requires that the device have
2060 * its PME# line hooked up correctly. Not all hardware vendors
2061 * do this, so the PME never gets delivered and the device
2062 * remains asleep. The easiest way around this is to
2063 * periodically walk the list of suspended devices and check
2064 * whether any have their PME flag set. The assumption is that
2065 * we'll wake up often enough anyway that this won't be a huge
2066 * hit, and the power savings from the devices will still be a
2067 * win.
2068 *
2069 * Although PCIe uses in-band PME message instead of PME# line
2070 * to report PME, PME does not work for some PCIe devices in
2071 * reality. For example, there are devices that set their PME
2072 * status bits, but don't really bother to send a PME message;
2073 * there are PCI Express Root Ports that don't bother to
2074 * trigger interrupts when they receive PME messages from the
2075 * devices below. So PME poll is used for PCIe devices too.
2076 */
Matthew Garrettdf17e622010-10-04 14:22:29 -04002077
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02002078 if (dev->pme_poll) {
Matthew Garrettdf17e622010-10-04 14:22:29 -04002079 struct pci_pme_device *pme_dev;
2080 if (enable) {
2081 pme_dev = kmalloc(sizeof(struct pci_pme_device),
2082 GFP_KERNEL);
Bjorn Helgaas0394cb12013-10-16 12:32:53 -06002083 if (!pme_dev) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002084 pci_warn(dev, "can't enable PME#\n");
Bjorn Helgaas0394cb12013-10-16 12:32:53 -06002085 return;
2086 }
Matthew Garrettdf17e622010-10-04 14:22:29 -04002087 pme_dev->dev = dev;
2088 mutex_lock(&pci_pme_list_mutex);
2089 list_add(&pme_dev->list, &pci_pme_list);
2090 if (list_is_singular(&pci_pme_list))
Lukas Wunnerea003532017-04-18 20:44:30 +02002091 queue_delayed_work(system_freezable_wq,
2092 &pci_pme_work,
2093 msecs_to_jiffies(PME_TIMEOUT));
Matthew Garrettdf17e622010-10-04 14:22:29 -04002094 mutex_unlock(&pci_pme_list_mutex);
2095 } else {
2096 mutex_lock(&pci_pme_list_mutex);
2097 list_for_each_entry(pme_dev, &pci_pme_list, list) {
2098 if (pme_dev->dev == dev) {
2099 list_del(&pme_dev->list);
2100 kfree(pme_dev);
2101 break;
2102 }
2103 }
2104 mutex_unlock(&pci_pme_list_mutex);
2105 }
2106 }
2107
Frederick Lawler7506dc72018-01-18 12:55:24 -06002108 pci_dbg(dev, "PME# %s\n", enable ? "enabled" : "disabled");
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002109}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002110EXPORT_SYMBOL(pci_pme_active);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002111
2112/**
Rafael J. Wysockicfcadfa2018-05-09 00:18:32 +02002113 * __pci_enable_wake - enable PCI device as wakeup event source
David Brownell075c1772007-04-26 00:12:06 -07002114 * @dev: PCI device affected
2115 * @state: PCI state from which device will issue wakeup events
2116 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 *
David Brownell075c1772007-04-26 00:12:06 -07002118 * This enables the device as a wakeup event source, or disables it.
2119 * When such events involves platform-specific hooks, those hooks are
2120 * called automatically by this routine.
2121 *
2122 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002123 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07002124 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002125 * RETURN VALUE:
2126 * 0 is returned on success
2127 * -EINVAL is returned if device is not supposed to wake up the system
2128 * Error code depending on the platform is returned if both the platform and
2129 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 */
Rafael J. Wysockicfcadfa2018-05-09 00:18:32 +02002131static int __pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002133 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Rafael J. Wysockibaecc472017-07-21 14:38:08 +02002135 /*
2136 * Bridges can only signal wakeup on behalf of subordinate devices,
2137 * but that is set up elsewhere, so skip them.
2138 */
2139 if (pci_has_subordinate(dev))
2140 return 0;
2141
Rafael J. Wysocki0ce3fca2017-07-12 03:05:39 +02002142 /* Don't do the same thing twice in a row for one device. */
2143 if (!!enable == !!dev->wakeup_prepared)
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02002144 return 0;
2145
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002146 /*
2147 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
2148 * Anderson we should be doing PME# wake enable followed by ACPI wake
2149 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07002150 */
2151
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002152 if (enable) {
2153 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002154
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002155 if (pci_pme_capable(dev, state))
2156 pci_pme_active(dev, true);
2157 else
2158 ret = 1;
Rafael J. Wysocki08476842017-06-24 01:57:35 +02002159 error = platform_pci_set_wakeup(dev, true);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002160 if (ret)
2161 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02002162 if (!ret)
2163 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002164 } else {
Rafael J. Wysocki08476842017-06-24 01:57:35 +02002165 platform_pci_set_wakeup(dev, false);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002166 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02002167 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002168 }
2169
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02002170 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002171}
Rafael J. Wysockicfcadfa2018-05-09 00:18:32 +02002172
2173/**
2174 * pci_enable_wake - change wakeup settings for a PCI device
2175 * @pci_dev: Target device
2176 * @state: PCI state from which device will issue wakeup events
2177 * @enable: Whether or not to enable event generation
2178 *
2179 * If @enable is set, check device_may_wakeup() for the device before calling
2180 * __pci_enable_wake() for it.
2181 */
2182int pci_enable_wake(struct pci_dev *pci_dev, pci_power_t state, bool enable)
2183{
2184 if (enable && !device_may_wakeup(&pci_dev->dev))
2185 return -EINVAL;
2186
2187 return __pci_enable_wake(pci_dev, state, enable);
2188}
Rafael J. Wysocki08476842017-06-24 01:57:35 +02002189EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002190
2191/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002192 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
2193 * @dev: PCI device to prepare
2194 * @enable: True to enable wake-up event generation; false to disable
2195 *
2196 * Many drivers want the device to wake up the system from D3_hot or D3_cold
2197 * and this function allows them to set that up cleanly - pci_enable_wake()
2198 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
2199 * ordering constraints.
2200 *
Rafael J. Wysockicfcadfa2018-05-09 00:18:32 +02002201 * This function only returns error code if the device is not allowed to wake
2202 * up the system from sleep or it is not capable of generating PME# from both
2203 * D3_hot and D3_cold and the platform is unable to enable wake-up power for it.
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002204 */
2205int pci_wake_from_d3(struct pci_dev *dev, bool enable)
2206{
2207 return pci_pme_capable(dev, PCI_D3cold) ?
2208 pci_enable_wake(dev, PCI_D3cold, enable) :
2209 pci_enable_wake(dev, PCI_D3hot, enable);
2210}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002211EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002212
2213/**
Jesse Barnes37139072008-07-28 11:49:26 -07002214 * pci_target_state - find an appropriate low power state for a given PCI dev
2215 * @dev: PCI device
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002216 * @wakeup: Whether or not wakeup functionality will be enabled for the device.
Jesse Barnes37139072008-07-28 11:49:26 -07002217 *
2218 * Use underlying platform code to find a supported low power state for @dev.
2219 * If the platform can't manage @dev, return the deepest state from which it
2220 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002221 */
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002222static pci_power_t pci_target_state(struct pci_dev *dev, bool wakeup)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002223{
2224 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002225
2226 if (platform_pci_power_manageable(dev)) {
2227 /*
Rafael J. Wysocki60ee031a2018-05-21 13:11:12 +02002228 * Call the platform to find the target state for the device.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002229 */
2230 pci_power_t state = platform_pci_choose_state(dev);
2231
2232 switch (state) {
2233 case PCI_POWER_ERROR:
2234 case PCI_UNKNOWN:
2235 break;
2236 case PCI_D1:
2237 case PCI_D2:
2238 if (pci_no_d1d2(dev))
2239 break;
Gustavo A. R. Silvad6488ac2018-07-05 09:56:00 -05002240 /* else: fall through */
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002241 default:
2242 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002243 }
Lukas Wunner4132a572016-09-18 05:39:20 +02002244
2245 return target_state;
2246 }
2247
2248 if (!dev->pm_cap)
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02002249 target_state = PCI_D0;
Lukas Wunner4132a572016-09-18 05:39:20 +02002250
2251 /*
2252 * If the device is in D3cold even though it's not power-manageable by
2253 * the platform, it may have been powered down by non-standard means.
2254 * Best to let it slumber.
2255 */
2256 if (dev->current_state == PCI_D3cold)
2257 target_state = PCI_D3cold;
2258
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002259 if (wakeup) {
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002260 /*
2261 * Find the deepest state from which the device can generate
Rafael J. Wysocki60ee031a2018-05-21 13:11:12 +02002262 * PME#.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002263 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002264 if (dev->pme_support) {
2265 while (target_state
2266 && !(dev->pme_support & (1 << target_state)))
2267 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002268 }
2269 }
2270
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002271 return target_state;
2272}
2273
2274/**
2275 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
2276 * @dev: Device to handle.
2277 *
2278 * Choose the power state appropriate for the device depending on whether
2279 * it can wake up the system and/or is power manageable by the platform
2280 * (PCI_D3hot is the default) and put the device into that state.
2281 */
2282int pci_prepare_to_sleep(struct pci_dev *dev)
2283{
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002284 bool wakeup = device_may_wakeup(&dev->dev);
2285 pci_power_t target_state = pci_target_state(dev, wakeup);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002286 int error;
2287
2288 if (target_state == PCI_POWER_ERROR)
2289 return -EIO;
2290
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002291 pci_enable_wake(dev, target_state, wakeup);
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02002292
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002293 error = pci_set_power_state(dev, target_state);
2294
2295 if (error)
2296 pci_enable_wake(dev, target_state, false);
2297
2298 return error;
2299}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002300EXPORT_SYMBOL(pci_prepare_to_sleep);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002301
2302/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07002303 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002304 * @dev: Device to handle.
2305 *
Thomas Weber88393162010-03-16 11:47:56 +01002306 * Disable device's system wake-up capability and put it into D0.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002307 */
2308int pci_back_from_sleep(struct pci_dev *dev)
2309{
2310 pci_enable_wake(dev, PCI_D0, false);
2311 return pci_set_power_state(dev, PCI_D0);
2312}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002313EXPORT_SYMBOL(pci_back_from_sleep);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002314
2315/**
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01002316 * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
2317 * @dev: PCI device being suspended.
2318 *
2319 * Prepare @dev to generate wake-up events at run time and put it into a low
2320 * power state.
2321 */
2322int pci_finish_runtime_suspend(struct pci_dev *dev)
2323{
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002324 pci_power_t target_state;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01002325 int error;
2326
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002327 target_state = pci_target_state(dev, device_can_wakeup(&dev->dev));
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01002328 if (target_state == PCI_POWER_ERROR)
2329 return -EIO;
2330
Huang Ying448bd852012-06-23 10:23:51 +08002331 dev->runtime_d3cold = target_state == PCI_D3cold;
2332
Rafael J. Wysockicfcadfa2018-05-09 00:18:32 +02002333 __pci_enable_wake(dev, target_state, pci_dev_run_wake(dev));
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01002334
2335 error = pci_set_power_state(dev, target_state);
2336
Huang Ying448bd852012-06-23 10:23:51 +08002337 if (error) {
Rafael J. Wysocki08476842017-06-24 01:57:35 +02002338 pci_enable_wake(dev, target_state, false);
Huang Ying448bd852012-06-23 10:23:51 +08002339 dev->runtime_d3cold = false;
2340 }
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01002341
2342 return error;
2343}
2344
2345/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002346 * pci_dev_run_wake - Check if device can generate run-time wake-up events.
2347 * @dev: Device to check.
2348 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002349 * Return true if the device itself is capable of generating wake-up events
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002350 * (through the platform or using the native PCIe PME) or if the device supports
2351 * PME and one of its upstream bridges can generate wake-up events.
2352 */
2353bool pci_dev_run_wake(struct pci_dev *dev)
2354{
2355 struct pci_bus *bus = dev->bus;
2356
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002357 if (!dev->pme_support)
2358 return false;
2359
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002360 /* PME-capable in principle, but not from the target power state */
Kai Heng Feng8feaec32018-05-07 14:11:20 +08002361 if (!pci_pme_capable(dev, pci_target_state(dev, true)))
Alan Stern6496ebd2016-10-21 16:45:38 -04002362 return false;
2363
Kai Heng Feng8feaec32018-05-07 14:11:20 +08002364 if (device_can_wakeup(&dev->dev))
2365 return true;
2366
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002367 while (bus->parent) {
2368 struct pci_dev *bridge = bus->self;
2369
Rafael J. Wysockide3ef1e2017-06-24 01:58:53 +02002370 if (device_can_wakeup(&bridge->dev))
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002371 return true;
2372
2373 bus = bus->parent;
2374 }
2375
2376 /* We have reached the root bus. */
2377 if (bus->bridge)
Rafael J. Wysockide3ef1e2017-06-24 01:58:53 +02002378 return device_can_wakeup(bus->bridge);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002379
2380 return false;
2381}
2382EXPORT_SYMBOL_GPL(pci_dev_run_wake);
2383
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002384/**
2385 * pci_dev_keep_suspended - Check if the device can stay in the suspended state.
2386 * @pci_dev: Device to check.
2387 *
2388 * Return 'true' if the device is runtime-suspended, it doesn't have to be
2389 * reconfigured due to wakeup settings difference between system and runtime
2390 * suspend and the current power state of it is suitable for the upcoming
2391 * (system) transition.
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002392 *
2393 * If the device is not configured for system wakeup, disable PME for it before
2394 * returning 'true' to prevent it from waking up the system unnecessarily.
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002395 */
2396bool pci_dev_keep_suspended(struct pci_dev *pci_dev)
2397{
2398 struct device *dev = &pci_dev->dev;
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002399 bool wakeup = device_may_wakeup(dev);
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002400
2401 if (!pm_runtime_suspended(dev)
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002402 || pci_target_state(pci_dev, wakeup) != pci_dev->current_state
Rafael J. Wysockic2eac4d2017-10-25 14:16:46 +02002403 || platform_pci_need_resume(pci_dev))
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002404 return false;
2405
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002406 /*
2407 * At this point the device is good to go unless it's been configured
2408 * to generate PME at the runtime suspend time, but it is not supposed
2409 * to wake up the system. In that case, simply disable PME for it
2410 * (it will have to be re-enabled on exit from system resume).
2411 *
2412 * If the device's power state is D3cold and the platform check above
2413 * hasn't triggered, the device's configuration is suitable and we don't
2414 * need to manipulate it at all.
2415 */
2416 spin_lock_irq(&dev->power.lock);
2417
2418 if (pm_runtime_suspended(dev) && pci_dev->current_state < PCI_D3cold &&
Rafael J. Wysocki666ff6f2017-06-23 14:58:11 +02002419 !wakeup)
Rafael J. Wysocki2cef5482015-09-30 01:10:24 +02002420 __pci_pme_active(pci_dev, false);
2421
2422 spin_unlock_irq(&dev->power.lock);
2423 return true;
2424}
2425
2426/**
2427 * pci_dev_complete_resume - Finalize resume from system sleep for a device.
2428 * @pci_dev: Device to handle.
2429 *
2430 * If the device is runtime suspended and wakeup-capable, enable PME for it as
2431 * it might have been disabled during the prepare phase of system suspend if
2432 * the device was not configured for system wakeup.
2433 */
2434void pci_dev_complete_resume(struct pci_dev *pci_dev)
2435{
2436 struct device *dev = &pci_dev->dev;
2437
2438 if (!pci_dev_run_wake(pci_dev))
2439 return;
2440
2441 spin_lock_irq(&dev->power.lock);
2442
2443 if (pm_runtime_suspended(dev) && pci_dev->current_state < PCI_D3cold)
2444 __pci_pme_active(pci_dev, true);
2445
2446 spin_unlock_irq(&dev->power.lock);
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002447}
2448
Huang Yingb3c32c42012-10-25 09:36:03 +08002449void pci_config_pm_runtime_get(struct pci_dev *pdev)
2450{
2451 struct device *dev = &pdev->dev;
2452 struct device *parent = dev->parent;
2453
2454 if (parent)
2455 pm_runtime_get_sync(parent);
2456 pm_runtime_get_noresume(dev);
2457 /*
2458 * pdev->current_state is set to PCI_D3cold during suspending,
2459 * so wait until suspending completes
2460 */
2461 pm_runtime_barrier(dev);
2462 /*
2463 * Only need to resume devices in D3cold, because config
2464 * registers are still accessible for devices suspended but
2465 * not in D3cold.
2466 */
2467 if (pdev->current_state == PCI_D3cold)
2468 pm_runtime_resume(dev);
2469}
2470
2471void pci_config_pm_runtime_put(struct pci_dev *pdev)
2472{
2473 struct device *dev = &pdev->dev;
2474 struct device *parent = dev->parent;
2475
2476 pm_runtime_put(dev);
2477 if (parent)
2478 pm_runtime_put_sync(parent);
2479}
2480
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002481/**
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002482 * pci_bridge_d3_possible - Is it possible to put the bridge into D3
2483 * @bridge: Bridge to check
2484 *
2485 * This function checks if it is possible to move the bridge to D3.
Lukas Wunner47a8e232018-07-19 17:28:00 -05002486 * Currently we only allow D3 for recent enough PCIe ports and Thunderbolt.
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002487 */
Lukas Wunnerc6a63302016-10-28 10:52:06 +02002488bool pci_bridge_d3_possible(struct pci_dev *bridge)
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002489{
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002490 if (!pci_is_pcie(bridge))
2491 return false;
2492
2493 switch (pci_pcie_type(bridge)) {
2494 case PCI_EXP_TYPE_ROOT_PORT:
2495 case PCI_EXP_TYPE_UPSTREAM:
2496 case PCI_EXP_TYPE_DOWNSTREAM:
2497 if (pci_bridge_d3_disable)
2498 return false;
Lukas Wunner97a90ae2016-10-28 10:52:06 +02002499
2500 /*
Lukas Wunnereb3b5bf2018-07-19 17:27:59 -05002501 * Hotplug ports handled by firmware in System Management Mode
Lukas Wunner97a90ae2016-10-28 10:52:06 +02002502 * may not be put into D3 by the OS (Thunderbolt on non-Macs).
Lukas Wunner97a90ae2016-10-28 10:52:06 +02002503 */
Lukas Wunnereb3b5bf2018-07-19 17:27:59 -05002504 if (bridge->is_hotplug_bridge && !pciehp_is_native(bridge))
Lukas Wunner97a90ae2016-10-28 10:52:06 +02002505 return false;
2506
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002507 if (pci_bridge_d3_force)
2508 return true;
2509
Lukas Wunner47a8e232018-07-19 17:28:00 -05002510 /* Even the oldest 2010 Thunderbolt controller supports D3. */
2511 if (bridge->is_thunderbolt)
2512 return true;
2513
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002514 /*
Lukas Wunnereb3b5bf2018-07-19 17:27:59 -05002515 * Hotplug ports handled natively by the OS were not validated
2516 * by vendors for runtime D3 at least until 2018 because there
2517 * was no OS support.
2518 */
2519 if (bridge->is_hotplug_bridge)
2520 return false;
2521
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002522 /*
2523 * It should be safe to put PCIe ports from 2015 or newer
2524 * to D3.
2525 */
Andy Shevchenkoac950902018-02-22 14:59:23 +02002526 if (dmi_get_bios_year() >= 2015)
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002527 return true;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002528 break;
2529 }
2530
2531 return false;
2532}
2533
2534static int pci_dev_check_d3cold(struct pci_dev *dev, void *data)
2535{
2536 bool *d3cold_ok = data;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002537
Lukas Wunner718a0602016-10-28 10:52:06 +02002538 if (/* The device needs to be allowed to go D3cold ... */
2539 dev->no_d3cold || !dev->d3cold_allowed ||
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002540
Lukas Wunner718a0602016-10-28 10:52:06 +02002541 /* ... and if it is wakeup capable to do so from D3cold. */
2542 (device_may_wakeup(&dev->dev) &&
2543 !pci_pme_capable(dev, PCI_D3cold)) ||
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002544
Lukas Wunner718a0602016-10-28 10:52:06 +02002545 /* If it is a bridge it must be allowed to go to D3. */
Bjorn Helgaasd98e0922017-02-03 08:53:51 -06002546 !pci_power_manageable(dev))
Lukas Wunner718a0602016-10-28 10:52:06 +02002547
2548 *d3cold_ok = false;
2549
2550 return !*d3cold_ok;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002551}
2552
2553/*
2554 * pci_bridge_d3_update - Update bridge D3 capabilities
2555 * @dev: PCI device which is changed
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002556 *
2557 * Update upstream bridge PM capabilities accordingly depending on if the
2558 * device PM configuration was changed or the device is being removed. The
2559 * change is also propagated upstream.
2560 */
Lukas Wunner1ed276a2016-10-28 10:52:06 +02002561void pci_bridge_d3_update(struct pci_dev *dev)
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002562{
Lukas Wunner1ed276a2016-10-28 10:52:06 +02002563 bool remove = !device_is_registered(&dev->dev);
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002564 struct pci_dev *bridge;
2565 bool d3cold_ok = true;
2566
2567 bridge = pci_upstream_bridge(dev);
2568 if (!bridge || !pci_bridge_d3_possible(bridge))
2569 return;
2570
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002571 /*
Lukas Wunnere8559b712016-10-28 10:52:06 +02002572 * If D3 is currently allowed for the bridge, removing one of its
2573 * children won't change that.
2574 */
2575 if (remove && bridge->bridge_d3)
2576 return;
2577
2578 /*
2579 * If D3 is currently allowed for the bridge and a child is added or
2580 * changed, disallowance of D3 can only be caused by that child, so
2581 * we only need to check that single device, not any of its siblings.
2582 *
2583 * If D3 is currently not allowed for the bridge, checking the device
2584 * first may allow us to skip checking its siblings.
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002585 */
2586 if (!remove)
2587 pci_dev_check_d3cold(dev, &d3cold_ok);
2588
Lukas Wunnere8559b712016-10-28 10:52:06 +02002589 /*
2590 * If D3 is currently not allowed for the bridge, this may be caused
2591 * either by the device being changed/removed or any of its siblings,
2592 * so we need to go through all children to find out if one of them
2593 * continues to block D3.
2594 */
2595 if (d3cold_ok && !bridge->bridge_d3)
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002596 pci_walk_bus(bridge->subordinate, pci_dev_check_d3cold,
2597 &d3cold_ok);
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002598
2599 if (bridge->bridge_d3 != d3cold_ok) {
2600 bridge->bridge_d3 = d3cold_ok;
2601 /* Propagate change to upstream bridges */
Lukas Wunner1ed276a2016-10-28 10:52:06 +02002602 pci_bridge_d3_update(bridge);
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002603 }
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002604}
2605
2606/**
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002607 * pci_d3cold_enable - Enable D3cold for device
2608 * @dev: PCI device to handle
2609 *
2610 * This function can be used in drivers to enable D3cold from the device
2611 * they handle. It also updates upstream PCI bridge PM capabilities
2612 * accordingly.
2613 */
2614void pci_d3cold_enable(struct pci_dev *dev)
2615{
2616 if (dev->no_d3cold) {
2617 dev->no_d3cold = false;
Lukas Wunner1ed276a2016-10-28 10:52:06 +02002618 pci_bridge_d3_update(dev);
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002619 }
2620}
2621EXPORT_SYMBOL_GPL(pci_d3cold_enable);
2622
2623/**
2624 * pci_d3cold_disable - Disable D3cold for device
2625 * @dev: PCI device to handle
2626 *
2627 * This function can be used in drivers to disable D3cold from the device
2628 * they handle. It also updates upstream PCI bridge PM capabilities
2629 * accordingly.
2630 */
2631void pci_d3cold_disable(struct pci_dev *dev)
2632{
2633 if (!dev->no_d3cold) {
2634 dev->no_d3cold = true;
Lukas Wunner1ed276a2016-10-28 10:52:06 +02002635 pci_bridge_d3_update(dev);
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002636 }
2637}
2638EXPORT_SYMBOL_GPL(pci_d3cold_disable);
2639
2640/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002641 * pci_pm_init - Initialize PM functions of given PCI device
2642 * @dev: PCI device to handle.
2643 */
2644void pci_pm_init(struct pci_dev *dev)
2645{
2646 int pm;
2647 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07002648
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01002649 pm_runtime_forbid(&dev->dev);
Huang Ying967577b2012-11-20 16:08:22 +08002650 pm_runtime_set_active(&dev->dev);
2651 pm_runtime_enable(&dev->dev);
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +01002652 device_enable_async_suspend(&dev->dev);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02002653 dev->wakeup_prepared = false;
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01002654
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002655 dev->pm_cap = 0;
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00002656 dev->pme_support = 0;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 /* find PCI PM capability in list */
2659 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07002660 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08002661 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002663 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002665 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002666 pci_err(dev, "unsupported PM cap regs version (%u)\n",
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002667 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08002668 return;
David Brownell075c1772007-04-26 00:12:06 -07002669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002671 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002672 dev->d3_delay = PCI_PM_D3_WAIT;
Huang Ying448bd852012-06-23 10:23:51 +08002673 dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
Mika Westerberg9d26d3a2016-06-02 11:17:12 +03002674 dev->bridge_d3 = pci_bridge_d3_possible(dev);
Huang Ying4f9c1392012-08-08 09:07:38 +08002675 dev->d3cold_allowed = true;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002676
2677 dev->d1_support = false;
2678 dev->d2_support = false;
2679 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002680 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002681 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002682 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002683 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002684
2685 if (dev->d1_support || dev->d2_support)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002686 pci_printk(KERN_DEBUG, dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07002687 dev->d1_support ? " D1" : "",
2688 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002689 }
2690
2691 pmc &= PCI_PM_CAP_PME_MASK;
2692 if (pmc) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002693 pci_printk(KERN_DEBUG, dev, "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002694 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
2695 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
2696 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
2697 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
2698 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002699 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02002700 dev->pme_poll = true;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002701 /*
2702 * Make device's PM flags reflect the wake-up capability, but
2703 * let the user space enable it to wake up the system as needed.
2704 */
2705 device_set_wakeup_capable(&dev->dev, true);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002706 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002707 pci_pme_active(dev, false);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
Sean O. Stalley938174e2015-10-29 17:35:39 -05002711static unsigned long pci_ea_flags(struct pci_dev *dev, u8 prop)
2712{
Alex Williamson92efb1b2016-05-16 15:12:02 -05002713 unsigned long flags = IORESOURCE_PCI_FIXED | IORESOURCE_PCI_EA_BEI;
Sean O. Stalley938174e2015-10-29 17:35:39 -05002714
2715 switch (prop) {
2716 case PCI_EA_P_MEM:
2717 case PCI_EA_P_VF_MEM:
2718 flags |= IORESOURCE_MEM;
2719 break;
2720 case PCI_EA_P_MEM_PREFETCH:
2721 case PCI_EA_P_VF_MEM_PREFETCH:
2722 flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
2723 break;
2724 case PCI_EA_P_IO:
2725 flags |= IORESOURCE_IO;
2726 break;
2727 default:
2728 return 0;
2729 }
2730
2731 return flags;
2732}
2733
2734static struct resource *pci_ea_get_resource(struct pci_dev *dev, u8 bei,
2735 u8 prop)
2736{
2737 if (bei <= PCI_EA_BEI_BAR5 && prop <= PCI_EA_P_IO)
2738 return &dev->resource[bei];
David Daney11183992015-10-29 17:35:40 -05002739#ifdef CONFIG_PCI_IOV
2740 else if (bei >= PCI_EA_BEI_VF_BAR0 && bei <= PCI_EA_BEI_VF_BAR5 &&
2741 (prop == PCI_EA_P_VF_MEM || prop == PCI_EA_P_VF_MEM_PREFETCH))
2742 return &dev->resource[PCI_IOV_RESOURCES +
2743 bei - PCI_EA_BEI_VF_BAR0];
2744#endif
Sean O. Stalley938174e2015-10-29 17:35:39 -05002745 else if (bei == PCI_EA_BEI_ROM)
2746 return &dev->resource[PCI_ROM_RESOURCE];
2747 else
2748 return NULL;
2749}
2750
2751/* Read an Enhanced Allocation (EA) entry */
2752static int pci_ea_read(struct pci_dev *dev, int offset)
2753{
2754 struct resource *res;
2755 int ent_size, ent_offset = offset;
2756 resource_size_t start, end;
2757 unsigned long flags;
Bjorn Helgaas26635112015-10-29 17:35:40 -05002758 u32 dw0, bei, base, max_offset;
Sean O. Stalley938174e2015-10-29 17:35:39 -05002759 u8 prop;
2760 bool support_64 = (sizeof(resource_size_t) >= 8);
2761
2762 pci_read_config_dword(dev, ent_offset, &dw0);
2763 ent_offset += 4;
2764
2765 /* Entry size field indicates DWORDs after 1st */
2766 ent_size = ((dw0 & PCI_EA_ES) + 1) << 2;
2767
2768 if (!(dw0 & PCI_EA_ENABLE)) /* Entry not enabled */
2769 goto out;
2770
Bjorn Helgaas26635112015-10-29 17:35:40 -05002771 bei = (dw0 & PCI_EA_BEI) >> 4;
2772 prop = (dw0 & PCI_EA_PP) >> 8;
2773
Sean O. Stalley938174e2015-10-29 17:35:39 -05002774 /*
2775 * If the Property is in the reserved range, try the Secondary
2776 * Property instead.
2777 */
2778 if (prop > PCI_EA_P_BRIDGE_IO && prop < PCI_EA_P_MEM_RESERVED)
Bjorn Helgaas26635112015-10-29 17:35:40 -05002779 prop = (dw0 & PCI_EA_SP) >> 16;
Sean O. Stalley938174e2015-10-29 17:35:39 -05002780 if (prop > PCI_EA_P_BRIDGE_IO)
2781 goto out;
2782
Bjorn Helgaas26635112015-10-29 17:35:40 -05002783 res = pci_ea_get_resource(dev, bei, prop);
Sean O. Stalley938174e2015-10-29 17:35:39 -05002784 if (!res) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002785 pci_err(dev, "Unsupported EA entry BEI: %u\n", bei);
Sean O. Stalley938174e2015-10-29 17:35:39 -05002786 goto out;
2787 }
2788
2789 flags = pci_ea_flags(dev, prop);
2790 if (!flags) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002791 pci_err(dev, "Unsupported EA properties: %#x\n", prop);
Sean O. Stalley938174e2015-10-29 17:35:39 -05002792 goto out;
2793 }
2794
2795 /* Read Base */
2796 pci_read_config_dword(dev, ent_offset, &base);
2797 start = (base & PCI_EA_FIELD_MASK);
2798 ent_offset += 4;
2799
2800 /* Read MaxOffset */
2801 pci_read_config_dword(dev, ent_offset, &max_offset);
2802 ent_offset += 4;
2803
2804 /* Read Base MSBs (if 64-bit entry) */
2805 if (base & PCI_EA_IS_64) {
2806 u32 base_upper;
2807
2808 pci_read_config_dword(dev, ent_offset, &base_upper);
2809 ent_offset += 4;
2810
2811 flags |= IORESOURCE_MEM_64;
2812
2813 /* entry starts above 32-bit boundary, can't use */
2814 if (!support_64 && base_upper)
2815 goto out;
2816
2817 if (support_64)
2818 start |= ((u64)base_upper << 32);
2819 }
2820
2821 end = start + (max_offset | 0x03);
2822
2823 /* Read MaxOffset MSBs (if 64-bit entry) */
2824 if (max_offset & PCI_EA_IS_64) {
2825 u32 max_offset_upper;
2826
2827 pci_read_config_dword(dev, ent_offset, &max_offset_upper);
2828 ent_offset += 4;
2829
2830 flags |= IORESOURCE_MEM_64;
2831
2832 /* entry too big, can't use */
2833 if (!support_64 && max_offset_upper)
2834 goto out;
2835
2836 if (support_64)
2837 end += ((u64)max_offset_upper << 32);
2838 }
2839
2840 if (end < start) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002841 pci_err(dev, "EA Entry crosses address boundary\n");
Sean O. Stalley938174e2015-10-29 17:35:39 -05002842 goto out;
2843 }
2844
2845 if (ent_size != ent_offset - offset) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002846 pci_err(dev, "EA Entry Size (%d) does not match length read (%d)\n",
Sean O. Stalley938174e2015-10-29 17:35:39 -05002847 ent_size, ent_offset - offset);
2848 goto out;
2849 }
2850
2851 res->name = pci_name(dev);
2852 res->start = start;
2853 res->end = end;
2854 res->flags = flags;
Bjorn Helgaas597becb2015-10-29 17:35:40 -05002855
2856 if (bei <= PCI_EA_BEI_BAR5)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002857 pci_printk(KERN_DEBUG, dev, "BAR %d: %pR (from Enhanced Allocation, properties %#02x)\n",
Bjorn Helgaas597becb2015-10-29 17:35:40 -05002858 bei, res, prop);
2859 else if (bei == PCI_EA_BEI_ROM)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002860 pci_printk(KERN_DEBUG, dev, "ROM: %pR (from Enhanced Allocation, properties %#02x)\n",
Bjorn Helgaas597becb2015-10-29 17:35:40 -05002861 res, prop);
2862 else if (bei >= PCI_EA_BEI_VF_BAR0 && bei <= PCI_EA_BEI_VF_BAR5)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002863 pci_printk(KERN_DEBUG, dev, "VF BAR %d: %pR (from Enhanced Allocation, properties %#02x)\n",
Bjorn Helgaas597becb2015-10-29 17:35:40 -05002864 bei - PCI_EA_BEI_VF_BAR0, res, prop);
2865 else
Frederick Lawler7506dc72018-01-18 12:55:24 -06002866 pci_printk(KERN_DEBUG, dev, "BEI %d res: %pR (from Enhanced Allocation, properties %#02x)\n",
Bjorn Helgaas597becb2015-10-29 17:35:40 -05002867 bei, res, prop);
2868
Sean O. Stalley938174e2015-10-29 17:35:39 -05002869out:
2870 return offset + ent_size;
2871}
2872
Colin Ian Kingdcbb4082016-04-05 12:12:45 -05002873/* Enhanced Allocation Initialization */
Sean O. Stalley938174e2015-10-29 17:35:39 -05002874void pci_ea_init(struct pci_dev *dev)
2875{
2876 int ea;
2877 u8 num_ent;
2878 int offset;
2879 int i;
2880
2881 /* find PCI EA capability in list */
2882 ea = pci_find_capability(dev, PCI_CAP_ID_EA);
2883 if (!ea)
2884 return;
2885
2886 /* determine the number of entries */
2887 pci_bus_read_config_byte(dev->bus, dev->devfn, ea + PCI_EA_NUM_ENT,
2888 &num_ent);
2889 num_ent &= PCI_EA_NUM_ENT_MASK;
2890
2891 offset = ea + PCI_EA_FIRST_ENT;
2892
2893 /* Skip DWORD 2 for type 1 functions */
2894 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE)
2895 offset += 4;
2896
2897 /* parse each EA entry */
2898 for (i = 0; i < num_ent; ++i)
2899 offset = pci_ea_read(dev, offset);
2900}
2901
Yinghai Lu34a48762012-02-11 00:18:41 -08002902static void pci_add_saved_cap(struct pci_dev *pci_dev,
2903 struct pci_cap_saved_state *new_cap)
2904{
2905 hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space);
2906}
2907
Jesse Barneseb9c39d2008-12-17 12:10:05 -08002908/**
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002909 * _pci_add_cap_save_buffer - allocate buffer for saving given
2910 * capability registers
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002911 * @dev: the PCI device
2912 * @cap: the capability to allocate the buffer for
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002913 * @extended: Standard or Extended capability ID
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002914 * @size: requested size of the buffer
2915 */
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002916static int _pci_add_cap_save_buffer(struct pci_dev *dev, u16 cap,
2917 bool extended, unsigned int size)
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002918{
2919 int pos;
2920 struct pci_cap_saved_state *save_state;
2921
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002922 if (extended)
2923 pos = pci_find_ext_capability(dev, cap);
2924 else
2925 pos = pci_find_capability(dev, cap);
2926
Wei Yang0a1a9b42015-06-30 09:16:44 +08002927 if (!pos)
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002928 return 0;
2929
2930 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
2931 if (!save_state)
2932 return -ENOMEM;
2933
Alex Williamson24a4742f2011-05-10 10:02:11 -06002934 save_state->cap.cap_nr = cap;
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002935 save_state->cap.cap_extended = extended;
Alex Williamson24a4742f2011-05-10 10:02:11 -06002936 save_state->cap.size = size;
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002937 pci_add_saved_cap(dev, save_state);
2938
2939 return 0;
2940}
2941
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002942int pci_add_cap_save_buffer(struct pci_dev *dev, char cap, unsigned int size)
2943{
2944 return _pci_add_cap_save_buffer(dev, cap, false, size);
2945}
2946
2947int pci_add_ext_cap_save_buffer(struct pci_dev *dev, u16 cap, unsigned int size)
2948{
2949 return _pci_add_cap_save_buffer(dev, cap, true, size);
2950}
2951
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002952/**
2953 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
2954 * @dev: the PCI device
2955 */
2956void pci_allocate_cap_save_buffers(struct pci_dev *dev)
2957{
2958 int error;
2959
Yu Zhao89858512009-02-16 02:55:47 +08002960 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
2961 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002962 if (error)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002963 pci_err(dev, "unable to preallocate PCI Express save buffer\n");
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002964
2965 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
2966 if (error)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002967 pci_err(dev, "unable to preallocate PCI-X save buffer\n");
Alex Williamson425c1b22013-12-17 16:43:51 -07002968
2969 pci_allocate_vc_save_buffers(dev);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002970}
2971
Yinghai Luf7968412012-02-11 00:18:30 -08002972void pci_free_cap_save_buffers(struct pci_dev *dev)
2973{
2974 struct pci_cap_saved_state *tmp;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002975 struct hlist_node *n;
Yinghai Luf7968412012-02-11 00:18:30 -08002976
Sasha Levinb67bfe02013-02-27 17:06:00 -08002977 hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
Yinghai Luf7968412012-02-11 00:18:30 -08002978 kfree(tmp);
2979}
2980
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002981/**
Yijing Wang31ab2472013-01-15 11:12:17 +08002982 * pci_configure_ari - enable or disable ARI forwarding
Yu Zhao58c3a722008-10-14 14:02:53 +08002983 * @dev: the PCI device
Yijing Wangb0cc6022013-01-15 11:12:16 +08002984 *
2985 * If @dev and its upstream bridge both support ARI, enable ARI in the
2986 * bridge. Otherwise, disable ARI in the bridge.
Yu Zhao58c3a722008-10-14 14:02:53 +08002987 */
Yijing Wang31ab2472013-01-15 11:12:17 +08002988void pci_configure_ari(struct pci_dev *dev)
Yu Zhao58c3a722008-10-14 14:02:53 +08002989{
Yu Zhao58c3a722008-10-14 14:02:53 +08002990 u32 cap;
Zhao, Yu81135872008-10-23 13:15:39 +08002991 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08002992
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01002993 if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08002994 return;
2995
Zhao, Yu81135872008-10-23 13:15:39 +08002996 bridge = dev->bus->self;
Myron Stowecb97ae32012-06-01 15:16:31 -06002997 if (!bridge)
Zhao, Yu81135872008-10-23 13:15:39 +08002998 return;
2999
Jiang Liu59875ae2012-07-24 17:20:06 +08003000 pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08003001 if (!(cap & PCI_EXP_DEVCAP2_ARI))
3002 return;
3003
Yijing Wangb0cc6022013-01-15 11:12:16 +08003004 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI)) {
3005 pcie_capability_set_word(bridge, PCI_EXP_DEVCTL2,
3006 PCI_EXP_DEVCTL2_ARI);
3007 bridge->ari_enabled = 1;
3008 } else {
3009 pcie_capability_clear_word(bridge, PCI_EXP_DEVCTL2,
3010 PCI_EXP_DEVCTL2_ARI);
3011 bridge->ari_enabled = 0;
3012 }
Yu Zhao58c3a722008-10-14 14:02:53 +08003013}
3014
Chris Wright5d990b62009-12-04 12:15:21 -08003015static int pci_acs_enable;
3016
3017/**
3018 * pci_request_acs - ask for ACS to be enabled if supported
3019 */
3020void pci_request_acs(void)
3021{
3022 pci_acs_enable = 1;
3023}
3024
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06003025static const char *disable_acs_redir_param;
3026
3027/**
3028 * pci_disable_acs_redir - disable ACS redirect capabilities
3029 * @dev: the PCI device
3030 *
3031 * For only devices specified in the disable_acs_redir parameter.
3032 */
3033static void pci_disable_acs_redir(struct pci_dev *dev)
3034{
3035 int ret = 0;
3036 const char *p;
3037 int pos;
3038 u16 ctrl;
3039
3040 if (!disable_acs_redir_param)
3041 return;
3042
3043 p = disable_acs_redir_param;
3044 while (*p) {
3045 ret = pci_dev_str_match(dev, p, &p);
3046 if (ret < 0) {
3047 pr_info_once("PCI: Can't parse disable_acs_redir parameter: %s\n",
3048 disable_acs_redir_param);
3049
3050 break;
3051 } else if (ret == 1) {
3052 /* Found a match */
3053 break;
3054 }
3055
3056 if (*p != ';' && *p != ',') {
3057 /* End of param or invalid format */
3058 break;
3059 }
3060 p++;
3061 }
3062
3063 if (ret != 1)
3064 return;
3065
Logan Gunthorpe73c47dde2018-08-09 16:51:43 -05003066 if (!pci_dev_specific_disable_acs_redir(dev))
3067 return;
3068
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06003069 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
3070 if (!pos) {
3071 pci_warn(dev, "cannot disable ACS redirect for this hardware as it does not have ACS capabilities\n");
3072 return;
3073 }
3074
3075 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
3076
3077 /* P2P Request & Completion Redirect */
3078 ctrl &= ~(PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_EC);
3079
3080 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
3081
3082 pci_info(dev, "disabled ACS redirect\n");
3083}
3084
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003085/**
Alex Williamson2c744242014-02-03 14:27:33 -07003086 * pci_std_enable_acs - enable ACS on devices using standard ACS capabilites
Allen Kayae21ee62009-10-07 10:27:17 -07003087 * @dev: the PCI device
3088 */
Alex Williamsonc1d61c92016-03-31 16:34:32 -06003089static void pci_std_enable_acs(struct pci_dev *dev)
Allen Kayae21ee62009-10-07 10:27:17 -07003090{
3091 int pos;
3092 u16 cap;
3093 u16 ctrl;
3094
Allen Kayae21ee62009-10-07 10:27:17 -07003095 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
3096 if (!pos)
Alex Williamsonc1d61c92016-03-31 16:34:32 -06003097 return;
Allen Kayae21ee62009-10-07 10:27:17 -07003098
3099 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
3100 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
3101
3102 /* Source Validation */
3103 ctrl |= (cap & PCI_ACS_SV);
3104
3105 /* P2P Request Redirect */
3106 ctrl |= (cap & PCI_ACS_RR);
3107
3108 /* P2P Completion Redirect */
3109 ctrl |= (cap & PCI_ACS_CR);
3110
3111 /* Upstream Forwarding */
3112 ctrl |= (cap & PCI_ACS_UF);
3113
3114 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
Alex Williamson2c744242014-02-03 14:27:33 -07003115}
3116
3117/**
3118 * pci_enable_acs - enable ACS if hardware support it
3119 * @dev: the PCI device
3120 */
3121void pci_enable_acs(struct pci_dev *dev)
3122{
3123 if (!pci_acs_enable)
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06003124 goto disable_acs_redir;
Alex Williamson2c744242014-02-03 14:27:33 -07003125
Alex Williamsonc1d61c92016-03-31 16:34:32 -06003126 if (!pci_dev_specific_enable_acs(dev))
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06003127 goto disable_acs_redir;
Alex Williamson2c744242014-02-03 14:27:33 -07003128
Alex Williamsonc1d61c92016-03-31 16:34:32 -06003129 pci_std_enable_acs(dev);
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06003130
3131disable_acs_redir:
3132 /*
3133 * Note: pci_disable_acs_redir() must be called even if ACS was not
3134 * enabled by the kernel because it may have been enabled by
3135 * platform firmware. So if we are told to disable it, we should
3136 * always disable it after setting the kernel's default
3137 * preferences.
3138 */
3139 pci_disable_acs_redir(dev);
Allen Kayae21ee62009-10-07 10:27:17 -07003140}
3141
Alex Williamson0a671192013-06-27 16:39:48 -06003142static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
3143{
3144 int pos;
Alex Williamson83db7e02013-06-27 16:39:54 -06003145 u16 cap, ctrl;
Alex Williamson0a671192013-06-27 16:39:48 -06003146
3147 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
3148 if (!pos)
3149 return false;
3150
Alex Williamson83db7e02013-06-27 16:39:54 -06003151 /*
3152 * Except for egress control, capabilities are either required
3153 * or only required if controllable. Features missing from the
3154 * capability field can therefore be assumed as hard-wired enabled.
3155 */
3156 pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
3157 acs_flags &= (cap | PCI_ACS_EC);
3158
Alex Williamson0a671192013-06-27 16:39:48 -06003159 pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
3160 return (ctrl & acs_flags) == acs_flags;
3161}
3162
Allen Kayae21ee62009-10-07 10:27:17 -07003163/**
Alex Williamsonad805752012-06-11 05:27:07 +00003164 * pci_acs_enabled - test ACS against required flags for a given device
3165 * @pdev: device to test
3166 * @acs_flags: required PCI ACS flags
3167 *
3168 * Return true if the device supports the provided flags. Automatically
3169 * filters out flags that are not implemented on multifunction devices.
Alex Williamson0a671192013-06-27 16:39:48 -06003170 *
3171 * Note that this interface checks the effective ACS capabilities of the
3172 * device rather than the actual capabilities. For instance, most single
3173 * function endpoints are not required to support ACS because they have no
3174 * opportunity for peer-to-peer access. We therefore return 'true'
3175 * regardless of whether the device exposes an ACS capability. This makes
3176 * it much easier for callers of this function to ignore the actual type
3177 * or topology of the device when testing ACS support.
Alex Williamsonad805752012-06-11 05:27:07 +00003178 */
3179bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
3180{
Alex Williamson0a671192013-06-27 16:39:48 -06003181 int ret;
Alex Williamsonad805752012-06-11 05:27:07 +00003182
3183 ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
3184 if (ret >= 0)
3185 return ret > 0;
3186
Alex Williamson0a671192013-06-27 16:39:48 -06003187 /*
3188 * Conventional PCI and PCI-X devices never support ACS, either
3189 * effectively or actually. The shared bus topology implies that
3190 * any device on the bus can receive or snoop DMA.
3191 */
Alex Williamsonad805752012-06-11 05:27:07 +00003192 if (!pci_is_pcie(pdev))
3193 return false;
3194
Alex Williamson0a671192013-06-27 16:39:48 -06003195 switch (pci_pcie_type(pdev)) {
3196 /*
3197 * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003198 * but since their primary interface is PCI/X, we conservatively
Alex Williamson0a671192013-06-27 16:39:48 -06003199 * handle them as we would a non-PCIe device.
3200 */
3201 case PCI_EXP_TYPE_PCIE_BRIDGE:
3202 /*
3203 * PCIe 3.0, 6.12.1 excludes ACS on these devices. "ACS is never
3204 * applicable... must never implement an ACS Extended Capability...".
3205 * This seems arbitrary, but we take a conservative interpretation
3206 * of this statement.
3207 */
3208 case PCI_EXP_TYPE_PCI_BRIDGE:
3209 case PCI_EXP_TYPE_RC_EC:
3210 return false;
3211 /*
3212 * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
3213 * implement ACS in order to indicate their peer-to-peer capabilities,
3214 * regardless of whether they are single- or multi-function devices.
3215 */
3216 case PCI_EXP_TYPE_DOWNSTREAM:
3217 case PCI_EXP_TYPE_ROOT_PORT:
3218 return pci_acs_flags_enabled(pdev, acs_flags);
3219 /*
3220 * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
3221 * implemented by the remaining PCIe types to indicate peer-to-peer
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003222 * capabilities, but only when they are part of a multifunction
Alex Williamson0a671192013-06-27 16:39:48 -06003223 * device. The footnote for section 6.12 indicates the specific
3224 * PCIe types included here.
3225 */
3226 case PCI_EXP_TYPE_ENDPOINT:
3227 case PCI_EXP_TYPE_UPSTREAM:
3228 case PCI_EXP_TYPE_LEG_END:
3229 case PCI_EXP_TYPE_RC_END:
3230 if (!pdev->multifunction)
3231 break;
3232
Alex Williamson0a671192013-06-27 16:39:48 -06003233 return pci_acs_flags_enabled(pdev, acs_flags);
Alex Williamsonad805752012-06-11 05:27:07 +00003234 }
3235
Alex Williamson0a671192013-06-27 16:39:48 -06003236 /*
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003237 * PCIe 3.0, 6.12.1.3 specifies no ACS capabilities are applicable
Alex Williamson0a671192013-06-27 16:39:48 -06003238 * to single function devices with the exception of downstream ports.
3239 */
Alex Williamsonad805752012-06-11 05:27:07 +00003240 return true;
3241}
3242
3243/**
3244 * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
3245 * @start: starting downstream device
3246 * @end: ending upstream device or NULL to search to the root bus
3247 * @acs_flags: required flags
3248 *
3249 * Walk up a device tree from start to end testing PCI ACS support. If
3250 * any step along the way does not support the required flags, return false.
3251 */
3252bool pci_acs_path_enabled(struct pci_dev *start,
3253 struct pci_dev *end, u16 acs_flags)
3254{
3255 struct pci_dev *pdev, *parent = start;
3256
3257 do {
3258 pdev = parent;
3259
3260 if (!pci_acs_enabled(pdev, acs_flags))
3261 return false;
3262
3263 if (pci_is_root_bus(pdev->bus))
3264 return (end == NULL);
3265
3266 parent = pdev->bus->self;
3267 } while (pdev != end);
3268
3269 return true;
3270}
3271
3272/**
Christian König276b7382017-10-24 14:40:20 -05003273 * pci_rebar_find_pos - find position of resize ctrl reg for BAR
3274 * @pdev: PCI device
3275 * @bar: BAR to find
3276 *
3277 * Helper to find the position of the ctrl register for a BAR.
3278 * Returns -ENOTSUPP if resizable BARs are not supported at all.
3279 * Returns -ENOENT if no ctrl register for the BAR could be found.
3280 */
3281static int pci_rebar_find_pos(struct pci_dev *pdev, int bar)
3282{
3283 unsigned int pos, nbars, i;
3284 u32 ctrl;
3285
3286 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_REBAR);
3287 if (!pos)
3288 return -ENOTSUPP;
3289
3290 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
3291 nbars = (ctrl & PCI_REBAR_CTRL_NBAR_MASK) >>
3292 PCI_REBAR_CTRL_NBAR_SHIFT;
3293
3294 for (i = 0; i < nbars; i++, pos += 8) {
3295 int bar_idx;
3296
3297 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
3298 bar_idx = ctrl & PCI_REBAR_CTRL_BAR_IDX;
3299 if (bar_idx == bar)
3300 return pos;
3301 }
3302
3303 return -ENOENT;
3304}
3305
3306/**
3307 * pci_rebar_get_possible_sizes - get possible sizes for BAR
3308 * @pdev: PCI device
3309 * @bar: BAR to query
3310 *
3311 * Get the possible sizes of a resizable BAR as bitmask defined in the spec
3312 * (bit 0=1MB, bit 19=512GB). Returns 0 if BAR isn't resizable.
3313 */
3314u32 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar)
3315{
3316 int pos;
3317 u32 cap;
3318
3319 pos = pci_rebar_find_pos(pdev, bar);
3320 if (pos < 0)
3321 return 0;
3322
3323 pci_read_config_dword(pdev, pos + PCI_REBAR_CAP, &cap);
3324 return (cap & PCI_REBAR_CAP_SIZES) >> 4;
3325}
3326
3327/**
3328 * pci_rebar_get_current_size - get the current size of a BAR
3329 * @pdev: PCI device
3330 * @bar: BAR to set size to
3331 *
3332 * Read the size of a BAR from the resizable BAR config.
3333 * Returns size if found or negative error code.
3334 */
3335int pci_rebar_get_current_size(struct pci_dev *pdev, int bar)
3336{
3337 int pos;
3338 u32 ctrl;
3339
3340 pos = pci_rebar_find_pos(pdev, bar);
3341 if (pos < 0)
3342 return pos;
3343
3344 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
Christian Königb1277a22018-06-29 19:55:03 -05003345 return (ctrl & PCI_REBAR_CTRL_BAR_SIZE) >> PCI_REBAR_CTRL_BAR_SHIFT;
Christian König276b7382017-10-24 14:40:20 -05003346}
3347
3348/**
3349 * pci_rebar_set_size - set a new size for a BAR
3350 * @pdev: PCI device
3351 * @bar: BAR to set size to
3352 * @size: new size as defined in the spec (0=1MB, 19=512GB)
3353 *
3354 * Set the new size of a BAR as defined in the spec.
3355 * Returns zero if resizing was successful, error code otherwise.
3356 */
3357int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size)
3358{
3359 int pos;
3360 u32 ctrl;
3361
3362 pos = pci_rebar_find_pos(pdev, bar);
3363 if (pos < 0)
3364 return pos;
3365
3366 pci_read_config_dword(pdev, pos + PCI_REBAR_CTRL, &ctrl);
3367 ctrl &= ~PCI_REBAR_CTRL_BAR_SIZE;
Christian Königb1277a22018-06-29 19:55:03 -05003368 ctrl |= size << PCI_REBAR_CTRL_BAR_SHIFT;
Christian König276b7382017-10-24 14:40:20 -05003369 pci_write_config_dword(pdev, pos + PCI_REBAR_CTRL, ctrl);
3370 return 0;
3371}
3372
3373/**
Jay Cornwall430a2362018-01-04 19:44:59 -05003374 * pci_enable_atomic_ops_to_root - enable AtomicOp requests to root port
3375 * @dev: the PCI device
3376 * @cap_mask: mask of desired AtomicOp sizes, including one or more of:
3377 * PCI_EXP_DEVCAP2_ATOMIC_COMP32
3378 * PCI_EXP_DEVCAP2_ATOMIC_COMP64
3379 * PCI_EXP_DEVCAP2_ATOMIC_COMP128
3380 *
3381 * Return 0 if all upstream bridges support AtomicOp routing, egress
3382 * blocking is disabled on all upstream ports, and the root port supports
3383 * the requested completion capabilities (32-bit, 64-bit and/or 128-bit
3384 * AtomicOp completion), or negative otherwise.
3385 */
3386int pci_enable_atomic_ops_to_root(struct pci_dev *dev, u32 cap_mask)
3387{
3388 struct pci_bus *bus = dev->bus;
3389 struct pci_dev *bridge;
3390 u32 cap, ctl2;
3391
3392 if (!pci_is_pcie(dev))
3393 return -EINVAL;
3394
3395 /*
3396 * Per PCIe r4.0, sec 6.15, endpoints and root ports may be
3397 * AtomicOp requesters. For now, we only support endpoints as
3398 * requesters and root ports as completers. No endpoints as
3399 * completers, and no peer-to-peer.
3400 */
3401
3402 switch (pci_pcie_type(dev)) {
3403 case PCI_EXP_TYPE_ENDPOINT:
3404 case PCI_EXP_TYPE_LEG_END:
3405 case PCI_EXP_TYPE_RC_END:
3406 break;
3407 default:
3408 return -EINVAL;
3409 }
3410
3411 while (bus->parent) {
3412 bridge = bus->self;
3413
3414 pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
3415
3416 switch (pci_pcie_type(bridge)) {
3417 /* Ensure switch ports support AtomicOp routing */
3418 case PCI_EXP_TYPE_UPSTREAM:
3419 case PCI_EXP_TYPE_DOWNSTREAM:
3420 if (!(cap & PCI_EXP_DEVCAP2_ATOMIC_ROUTE))
3421 return -EINVAL;
3422 break;
3423
3424 /* Ensure root port supports all the sizes we care about */
3425 case PCI_EXP_TYPE_ROOT_PORT:
3426 if ((cap & cap_mask) != cap_mask)
3427 return -EINVAL;
3428 break;
3429 }
3430
3431 /* Ensure upstream ports don't block AtomicOps on egress */
3432 if (!bridge->has_secondary_link) {
3433 pcie_capability_read_dword(bridge, PCI_EXP_DEVCTL2,
3434 &ctl2);
3435 if (ctl2 & PCI_EXP_DEVCTL2_ATOMIC_EGRESS_BLOCK)
3436 return -EINVAL;
3437 }
3438
3439 bus = bus->parent;
3440 }
3441
3442 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
3443 PCI_EXP_DEVCTL2_ATOMIC_REQ);
3444 return 0;
3445}
3446EXPORT_SYMBOL(pci_enable_atomic_ops_to_root);
3447
3448/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003449 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
3450 * @dev: the PCI device
Wang Sheng-Huibb5c2de2013-05-28 11:17:41 +08003451 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003452 *
3453 * Perform INTx swizzling for a device behind one level of bridge. This is
3454 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07003455 * behind bridges on add-in cards. For devices with ARI enabled, the slot
3456 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
3457 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003458 */
John Crispin3df425f2012-04-12 17:33:07 +02003459u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003460{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07003461 int slot;
3462
3463 if (pci_ari_enabled(dev->bus))
3464 slot = 0;
3465 else
3466 slot = PCI_SLOT(dev->devfn);
3467
3468 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003469}
3470
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003471int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
3473 u8 pin;
3474
Kristen Accardi514d2072005-11-02 16:24:39 -08003475 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 if (!pin)
3477 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07003478
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09003479 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07003480 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 dev = dev->bus->self;
3482 }
3483 *bridge = dev;
3484 return pin;
3485}
3486
3487/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07003488 * pci_common_swizzle - swizzle INTx all the way to root bridge
3489 * @dev: the PCI device
3490 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
3491 *
3492 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
3493 * bridges all the way up to a PCI root bus.
3494 */
3495u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
3496{
3497 u8 pin = *pinp;
3498
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09003499 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07003500 pin = pci_swizzle_interrupt_pin(dev, pin);
3501 dev = dev->bus->self;
3502 }
3503 *pinp = pin;
3504 return PCI_SLOT(dev->devfn);
3505}
Ray Juie6b29de2015-04-08 11:21:33 -07003506EXPORT_SYMBOL_GPL(pci_common_swizzle);
Bjorn Helgaas68feac82008-12-16 21:36:55 -07003507
3508/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 * pci_release_region - Release a PCI bar
3510 * @pdev: PCI device whose resources were previously reserved by pci_request_region
3511 * @bar: BAR to release
3512 *
3513 * Releases the PCI I/O and memory resources previously reserved by a
3514 * successful call to pci_request_region. Call this function only
3515 * after all use of the PCI regions has ceased.
3516 */
3517void pci_release_region(struct pci_dev *pdev, int bar)
3518{
Tejun Heo9ac78492007-01-20 16:00:26 +09003519 struct pci_devres *dr;
3520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 if (pci_resource_len(pdev, bar) == 0)
3522 return;
3523 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
3524 release_region(pci_resource_start(pdev, bar),
3525 pci_resource_len(pdev, bar));
3526 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
3527 release_mem_region(pci_resource_start(pdev, bar),
3528 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09003529
3530 dr = find_pci_dr(pdev);
3531 if (dr)
3532 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003534EXPORT_SYMBOL(pci_release_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003537 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 * @pdev: PCI device whose resources are to be reserved
3539 * @bar: BAR to be reserved
3540 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003541 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 *
3543 * Mark the PCI region associated with PCI device @pdev BR @bar as
3544 * being reserved by owner @res_name. Do not access any
3545 * address inside the PCI regions unless this call returns
3546 * successfully.
3547 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003548 * If @exclusive is set, then the region is marked so that userspace
3549 * is explicitly not allowed to map the resource via /dev/mem or
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003550 * sysfs MMIO access.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003551 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 * Returns 0 on success, or %EBUSY on error. A warning
3553 * message is also printed on failure.
3554 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003555static int __pci_request_region(struct pci_dev *pdev, int bar,
3556 const char *res_name, int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557{
Tejun Heo9ac78492007-01-20 16:00:26 +09003558 struct pci_devres *dr;
3559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 if (pci_resource_len(pdev, bar) == 0)
3561 return 0;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
3564 if (!request_region(pci_resource_start(pdev, bar),
3565 pci_resource_len(pdev, bar), res_name))
3566 goto err_out;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003567 } else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07003568 if (!__request_mem_region(pci_resource_start(pdev, bar),
3569 pci_resource_len(pdev, bar), res_name,
3570 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 goto err_out;
3572 }
Tejun Heo9ac78492007-01-20 16:00:26 +09003573
3574 dr = find_pci_dr(pdev);
3575 if (dr)
3576 dr->region_mask |= 1 << bar;
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 return 0;
3579
3580err_out:
Frederick Lawler7506dc72018-01-18 12:55:24 -06003581 pci_warn(pdev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11003582 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 return -EBUSY;
3584}
3585
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003586/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003587 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07003588 * @pdev: PCI device whose resources are to be reserved
3589 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003590 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07003591 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08003592 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07003593 * being reserved by owner @res_name. Do not access any
3594 * address inside the PCI regions unless this call returns
3595 * successfully.
3596 *
3597 * Returns 0 on success, or %EBUSY on error. A warning
3598 * message is also printed on failure.
3599 */
3600int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
3601{
3602 return __pci_request_region(pdev, bar, res_name, 0);
3603}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003604EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07003605
3606/**
3607 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
3608 * @pdev: PCI device whose resources are to be reserved
3609 * @bar: BAR to be reserved
3610 * @res_name: Name to be associated with resource.
3611 *
3612 * Mark the PCI region associated with PCI device @pdev BR @bar as
3613 * being reserved by owner @res_name. Do not access any
3614 * address inside the PCI regions unless this call returns
3615 * successfully.
3616 *
3617 * Returns 0 on success, or %EBUSY on error. A warning
3618 * message is also printed on failure.
3619 *
3620 * The key difference that _exclusive makes it that userspace is
3621 * explicitly not allowed to map the resource via /dev/mem or
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003622 * sysfs.
Arjan van de Vene8de1482008-10-22 19:55:31 -07003623 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003624int pci_request_region_exclusive(struct pci_dev *pdev, int bar,
3625 const char *res_name)
Arjan van de Vene8de1482008-10-22 19:55:31 -07003626{
3627 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
3628}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003629EXPORT_SYMBOL(pci_request_region_exclusive);
3630
Arjan van de Vene8de1482008-10-22 19:55:31 -07003631/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003632 * pci_release_selected_regions - Release selected PCI I/O and memory resources
3633 * @pdev: PCI device whose resources were previously reserved
3634 * @bars: Bitmask of BARs to be released
3635 *
3636 * Release selected PCI I/O and memory resources previously reserved.
3637 * Call this function only after all use of the PCI regions has ceased.
3638 */
3639void pci_release_selected_regions(struct pci_dev *pdev, int bars)
3640{
3641 int i;
3642
3643 for (i = 0; i < 6; i++)
3644 if (bars & (1 << i))
3645 pci_release_region(pdev, i);
3646}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003647EXPORT_SYMBOL(pci_release_selected_regions);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003648
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06003649static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003650 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003651{
3652 int i;
3653
3654 for (i = 0; i < 6; i++)
3655 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07003656 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003657 goto err_out;
3658 return 0;
3659
3660err_out:
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003661 while (--i >= 0)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003662 if (bars & (1 << i))
3663 pci_release_region(pdev, i);
3664
3665 return -EBUSY;
3666}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
Arjan van de Vene8de1482008-10-22 19:55:31 -07003668
3669/**
3670 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
3671 * @pdev: PCI device whose resources are to be reserved
3672 * @bars: Bitmask of BARs to be requested
3673 * @res_name: Name to be associated with resource
3674 */
3675int pci_request_selected_regions(struct pci_dev *pdev, int bars,
3676 const char *res_name)
3677{
3678 return __pci_request_selected_regions(pdev, bars, res_name, 0);
3679}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003680EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07003681
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003682int pci_request_selected_regions_exclusive(struct pci_dev *pdev, int bars,
3683 const char *res_name)
Arjan van de Vene8de1482008-10-22 19:55:31 -07003684{
3685 return __pci_request_selected_regions(pdev, bars, res_name,
3686 IORESOURCE_EXCLUSIVE);
3687}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003688EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Arjan van de Vene8de1482008-10-22 19:55:31 -07003689
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690/**
3691 * pci_release_regions - Release reserved PCI I/O and memory resources
3692 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
3693 *
3694 * Releases all PCI I/O and memory resources previously reserved by a
3695 * successful call to pci_request_regions. Call this function only
3696 * after all use of the PCI regions has ceased.
3697 */
3698
3699void pci_release_regions(struct pci_dev *pdev)
3700{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003701 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003703EXPORT_SYMBOL(pci_release_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
3705/**
3706 * pci_request_regions - Reserved PCI I/O and memory resources
3707 * @pdev: PCI device whose resources are to be reserved
3708 * @res_name: Name to be associated with resource.
3709 *
3710 * Mark all PCI regions associated with PCI device @pdev as
3711 * being reserved by owner @res_name. Do not access any
3712 * address inside the PCI regions unless this call returns
3713 * successfully.
3714 *
3715 * Returns 0 on success, or %EBUSY on error. A warning
3716 * message is also printed on failure.
3717 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05003718int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09003720 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003722EXPORT_SYMBOL(pci_request_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07003725 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
3726 * @pdev: PCI device whose resources are to be reserved
3727 * @res_name: Name to be associated with resource.
3728 *
3729 * Mark all PCI regions associated with PCI device @pdev as
3730 * being reserved by owner @res_name. Do not access any
3731 * address inside the PCI regions unless this call returns
3732 * successfully.
3733 *
3734 * pci_request_regions_exclusive() will mark the region so that
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003735 * /dev/mem and the sysfs MMIO access will not be allowed.
Arjan van de Vene8de1482008-10-22 19:55:31 -07003736 *
3737 * Returns 0 on success, or %EBUSY on error. A warning
3738 * message is also printed on failure.
3739 */
3740int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
3741{
3742 return pci_request_selected_regions_exclusive(pdev,
3743 ((1 << 6) - 1), res_name);
3744}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003745EXPORT_SYMBOL(pci_request_regions_exclusive);
Arjan van de Vene8de1482008-10-22 19:55:31 -07003746
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003747/*
3748 * Record the PCI IO range (expressed as CPU physical address + size).
3749 * Return a negative value if an error has occured, zero otherwise
3750 */
Gabriele Paolonifcfaab32018-03-15 02:15:52 +08003751int pci_register_io_range(struct fwnode_handle *fwnode, phys_addr_t addr,
3752 resource_size_t size)
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003753{
Zhichang Yuan57453922018-03-15 02:15:53 +08003754 int ret = 0;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003755#ifdef PCI_IOBASE
Zhichang Yuan57453922018-03-15 02:15:53 +08003756 struct logic_pio_hwaddr *range;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003757
Zhichang Yuan57453922018-03-15 02:15:53 +08003758 if (!size || addr + size < addr)
3759 return -EINVAL;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003760
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003761 range = kzalloc(sizeof(*range), GFP_ATOMIC);
Zhichang Yuan57453922018-03-15 02:15:53 +08003762 if (!range)
3763 return -ENOMEM;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003764
Zhichang Yuan57453922018-03-15 02:15:53 +08003765 range->fwnode = fwnode;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003766 range->size = size;
Zhichang Yuan57453922018-03-15 02:15:53 +08003767 range->hw_start = addr;
3768 range->flags = LOGIC_PIO_CPU_MMIO;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003769
Zhichang Yuan57453922018-03-15 02:15:53 +08003770 ret = logic_pio_register_range(range);
3771 if (ret)
3772 kfree(range);
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003773#endif
3774
Zhichang Yuan57453922018-03-15 02:15:53 +08003775 return ret;
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003776}
3777
3778phys_addr_t pci_pio_to_address(unsigned long pio)
3779{
3780 phys_addr_t address = (phys_addr_t)OF_BAD_ADDR;
3781
3782#ifdef PCI_IOBASE
Zhichang Yuan57453922018-03-15 02:15:53 +08003783 if (pio >= MMIO_UPPER_LIMIT)
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003784 return address;
3785
Zhichang Yuan57453922018-03-15 02:15:53 +08003786 address = logic_pio_to_hwaddr(pio);
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003787#endif
3788
3789 return address;
3790}
3791
3792unsigned long __weak pci_address_to_pio(phys_addr_t address)
3793{
3794#ifdef PCI_IOBASE
Zhichang Yuan57453922018-03-15 02:15:53 +08003795 return logic_pio_trans_cpuaddr(address);
Tomasz Nowickic5076cf2016-05-11 17:34:51 -05003796#else
3797 if (address > IO_SPACE_LIMIT)
3798 return (unsigned long)-1;
3799
3800 return (unsigned long) address;
3801#endif
3802}
3803
Liviu Dudau8b921ac2014-09-29 15:29:30 +01003804/**
3805 * pci_remap_iospace - Remap the memory mapped I/O space
3806 * @res: Resource describing the I/O space
3807 * @phys_addr: physical address of range to be mapped
3808 *
3809 * Remap the memory mapped I/O space described by the @res
3810 * and the CPU physical address @phys_addr into virtual address space.
3811 * Only architectures that have memory mapped IO functions defined
3812 * (and the PCI_IOBASE value defined) should call this function.
3813 */
Lorenzo Pieralisi7b309ae2017-04-19 17:48:50 +01003814int pci_remap_iospace(const struct resource *res, phys_addr_t phys_addr)
Liviu Dudau8b921ac2014-09-29 15:29:30 +01003815{
3816#if defined(PCI_IOBASE) && defined(CONFIG_MMU)
3817 unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
3818
3819 if (!(res->flags & IORESOURCE_IO))
3820 return -EINVAL;
3821
3822 if (res->end > IO_SPACE_LIMIT)
3823 return -EINVAL;
3824
3825 return ioremap_page_range(vaddr, vaddr + resource_size(res), phys_addr,
3826 pgprot_device(PAGE_KERNEL));
3827#else
3828 /* this architecture does not have memory mapped I/O space,
3829 so this function should never be called */
3830 WARN_ONCE(1, "This architecture does not support memory mapped I/O\n");
3831 return -ENODEV;
3832#endif
3833}
Brian Norrisf90b0872017-03-09 18:46:16 -08003834EXPORT_SYMBOL(pci_remap_iospace);
Liviu Dudau8b921ac2014-09-29 15:29:30 +01003835
Sinan Kaya4d3f1382016-06-10 21:55:11 +02003836/**
3837 * pci_unmap_iospace - Unmap the memory mapped I/O space
3838 * @res: resource to be unmapped
3839 *
3840 * Unmap the CPU virtual address @res from virtual address space.
3841 * Only architectures that have memory mapped IO functions defined
3842 * (and the PCI_IOBASE value defined) should call this function.
3843 */
3844void pci_unmap_iospace(struct resource *res)
3845{
3846#if defined(PCI_IOBASE) && defined(CONFIG_MMU)
3847 unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
3848
3849 unmap_kernel_range(vaddr, resource_size(res));
3850#endif
3851}
Brian Norrisf90b0872017-03-09 18:46:16 -08003852EXPORT_SYMBOL(pci_unmap_iospace);
Sinan Kaya4d3f1382016-06-10 21:55:11 +02003853
Sergei Shtylyova5fb9fb2018-07-18 15:40:26 -05003854static void devm_pci_unmap_iospace(struct device *dev, void *ptr)
3855{
3856 struct resource **res = ptr;
3857
3858 pci_unmap_iospace(*res);
3859}
3860
3861/**
3862 * devm_pci_remap_iospace - Managed pci_remap_iospace()
3863 * @dev: Generic device to remap IO address for
3864 * @res: Resource describing the I/O space
3865 * @phys_addr: physical address of range to be mapped
3866 *
3867 * Managed pci_remap_iospace(). Map is automatically unmapped on driver
3868 * detach.
3869 */
3870int devm_pci_remap_iospace(struct device *dev, const struct resource *res,
3871 phys_addr_t phys_addr)
3872{
3873 const struct resource **ptr;
3874 int error;
3875
3876 ptr = devres_alloc(devm_pci_unmap_iospace, sizeof(*ptr), GFP_KERNEL);
3877 if (!ptr)
3878 return -ENOMEM;
3879
3880 error = pci_remap_iospace(res, phys_addr);
3881 if (error) {
3882 devres_free(ptr);
3883 } else {
3884 *ptr = res;
3885 devres_add(dev, ptr);
3886 }
3887
3888 return error;
3889}
3890EXPORT_SYMBOL(devm_pci_remap_iospace);
3891
Lorenzo Pieralisi490cb6d2017-04-19 17:48:55 +01003892/**
3893 * devm_pci_remap_cfgspace - Managed pci_remap_cfgspace()
3894 * @dev: Generic device to remap IO address for
3895 * @offset: Resource address to map
3896 * @size: Size of map
3897 *
3898 * Managed pci_remap_cfgspace(). Map is automatically unmapped on driver
3899 * detach.
3900 */
3901void __iomem *devm_pci_remap_cfgspace(struct device *dev,
3902 resource_size_t offset,
3903 resource_size_t size)
3904{
3905 void __iomem **ptr, *addr;
3906
3907 ptr = devres_alloc(devm_ioremap_release, sizeof(*ptr), GFP_KERNEL);
3908 if (!ptr)
3909 return NULL;
3910
3911 addr = pci_remap_cfgspace(offset, size);
3912 if (addr) {
3913 *ptr = addr;
3914 devres_add(dev, ptr);
3915 } else
3916 devres_free(ptr);
3917
3918 return addr;
3919}
3920EXPORT_SYMBOL(devm_pci_remap_cfgspace);
3921
3922/**
3923 * devm_pci_remap_cfg_resource - check, request region and ioremap cfg resource
3924 * @dev: generic device to handle the resource for
3925 * @res: configuration space resource to be handled
3926 *
3927 * Checks that a resource is a valid memory region, requests the memory
3928 * region and ioremaps with pci_remap_cfgspace() API that ensures the
3929 * proper PCI configuration space memory attributes are guaranteed.
3930 *
3931 * All operations are managed and will be undone on driver detach.
3932 *
3933 * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
Randy Dunlap505fb742017-10-29 17:07:11 -07003934 * on failure. Usage example::
Lorenzo Pieralisi490cb6d2017-04-19 17:48:55 +01003935 *
3936 * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3937 * base = devm_pci_remap_cfg_resource(&pdev->dev, res);
3938 * if (IS_ERR(base))
3939 * return PTR_ERR(base);
3940 */
3941void __iomem *devm_pci_remap_cfg_resource(struct device *dev,
3942 struct resource *res)
3943{
3944 resource_size_t size;
3945 const char *name;
3946 void __iomem *dest_ptr;
3947
3948 BUG_ON(!dev);
3949
3950 if (!res || resource_type(res) != IORESOURCE_MEM) {
3951 dev_err(dev, "invalid resource\n");
3952 return IOMEM_ERR_PTR(-EINVAL);
3953 }
3954
3955 size = resource_size(res);
3956 name = res->name ?: dev_name(dev);
3957
3958 if (!devm_request_mem_region(dev, res->start, size, name)) {
3959 dev_err(dev, "can't request region for resource %pR\n", res);
3960 return IOMEM_ERR_PTR(-EBUSY);
3961 }
3962
3963 dest_ptr = devm_pci_remap_cfgspace(dev, res->start, size);
3964 if (!dest_ptr) {
3965 dev_err(dev, "ioremap failed for resource %pR\n", res);
3966 devm_release_mem_region(dev, res->start, size);
3967 dest_ptr = IOMEM_ERR_PTR(-ENOMEM);
3968 }
3969
3970 return dest_ptr;
3971}
3972EXPORT_SYMBOL(devm_pci_remap_cfg_resource);
3973
Ben Hutchings6a479072008-12-23 03:08:29 +00003974static void __pci_set_master(struct pci_dev *dev, bool enable)
3975{
3976 u16 old_cmd, cmd;
3977
3978 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
3979 if (enable)
3980 cmd = old_cmd | PCI_COMMAND_MASTER;
3981 else
3982 cmd = old_cmd & ~PCI_COMMAND_MASTER;
3983 if (cmd != old_cmd) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06003984 pci_dbg(dev, "%s bus mastering\n",
Ben Hutchings6a479072008-12-23 03:08:29 +00003985 enable ? "enabling" : "disabling");
3986 pci_write_config_word(dev, PCI_COMMAND, cmd);
3987 }
3988 dev->is_busmaster = enable;
3989}
Arjan van de Vene8de1482008-10-22 19:55:31 -07003990
3991/**
Myron Stowe2b6f2c32012-06-25 21:30:57 -06003992 * pcibios_setup - process "pci=" kernel boot arguments
3993 * @str: string used to pass in "pci=" kernel boot arguments
3994 *
3995 * Process kernel boot arguments. This is the default implementation.
3996 * Architecture specific implementations can override this as necessary.
3997 */
3998char * __weak __init pcibios_setup(char *str)
3999{
4000 return str;
4001}
4002
4003/**
Myron Stowe96c55902011-10-28 15:48:38 -06004004 * pcibios_set_master - enable PCI bus-mastering for device dev
4005 * @dev: the PCI device to enable
4006 *
4007 * Enables PCI bus-mastering for the device. This is the default
4008 * implementation. Architecture specific implementations can override
4009 * this if necessary.
4010 */
4011void __weak pcibios_set_master(struct pci_dev *dev)
4012{
4013 u8 lat;
4014
Myron Stowef6766782011-10-28 15:49:20 -06004015 /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
4016 if (pci_is_pcie(dev))
4017 return;
4018
Myron Stowe96c55902011-10-28 15:48:38 -06004019 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
4020 if (lat < 16)
4021 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
4022 else if (lat > pcibios_max_latency)
4023 lat = pcibios_max_latency;
4024 else
4025 return;
Bjorn Helgaasa0064822013-09-23 15:25:26 -06004026
Myron Stowe96c55902011-10-28 15:48:38 -06004027 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
4028}
4029
4030/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 * pci_set_master - enables bus-mastering for device dev
4032 * @dev: the PCI device to enable
4033 *
4034 * Enables bus-mastering on the device and calls pcibios_set_master()
4035 * to do the needed arch specific settings.
4036 */
Ben Hutchings6a479072008-12-23 03:08:29 +00004037void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
Ben Hutchings6a479072008-12-23 03:08:29 +00004039 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 pcibios_set_master(dev);
4041}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004042EXPORT_SYMBOL(pci_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Ben Hutchings6a479072008-12-23 03:08:29 +00004044/**
4045 * pci_clear_master - disables bus-mastering for device dev
4046 * @dev: the PCI device to disable
4047 */
4048void pci_clear_master(struct pci_dev *dev)
4049{
4050 __pci_set_master(dev, false);
4051}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004052EXPORT_SYMBOL(pci_clear_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00004053
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06004055 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
4056 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06004058 * Helper function for pci_set_mwi.
4059 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
4061 *
4062 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
4063 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09004064int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065{
4066 u8 cacheline_size;
4067
4068 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09004069 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
4071 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
4072 equal to or multiple of the right value. */
4073 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
4074 if (cacheline_size >= pci_cache_line_size &&
4075 (cacheline_size % pci_cache_line_size) == 0)
4076 return 0;
4077
4078 /* Write the correct value. */
4079 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
4080 /* Read it back. */
4081 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
4082 if (cacheline_size == pci_cache_line_size)
4083 return 0;
4084
Frederick Lawler7506dc72018-01-18 12:55:24 -06004085 pci_printk(KERN_DEBUG, dev, "cache line size of %d is not supported\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04004086 pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
4088 return -EINVAL;
4089}
Tejun Heo15ea76d2009-09-22 17:34:48 +09004090EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
4091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092/**
4093 * pci_set_mwi - enables memory-write-invalidate PCI transaction
4094 * @dev: the PCI device for which MWI is enabled
4095 *
Randy Dunlap694625c2007-07-09 11:55:54 -07004096 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 *
4098 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
4099 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004100int pci_set_mwi(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004102#ifdef PCI_DISABLE_MWI
4103 return 0;
4104#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 int rc;
4106 u16 cmd;
4107
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06004108 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 if (rc)
4110 return rc;
4111
4112 pci_read_config_word(dev, PCI_COMMAND, &cmd);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004113 if (!(cmd & PCI_COMMAND_INVALIDATE)) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06004114 pci_dbg(dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 cmd |= PCI_COMMAND_INVALIDATE;
4116 pci_write_config_word(dev, PCI_COMMAND, cmd);
4117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 return 0;
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004121EXPORT_SYMBOL(pci_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
4123/**
Heiner Kallweitfc0f9f42017-12-12 07:40:56 +01004124 * pcim_set_mwi - a device-managed pci_set_mwi()
4125 * @dev: the PCI device for which MWI is enabled
4126 *
4127 * Managed pci_set_mwi().
4128 *
4129 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
4130 */
4131int pcim_set_mwi(struct pci_dev *dev)
4132{
4133 struct pci_devres *dr;
4134
4135 dr = find_pci_dr(dev);
4136 if (!dr)
4137 return -ENOMEM;
4138
4139 dr->mwi = 1;
4140 return pci_set_mwi(dev);
4141}
4142EXPORT_SYMBOL(pcim_set_mwi);
4143
4144/**
Randy Dunlap694625c2007-07-09 11:55:54 -07004145 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
4146 * @dev: the PCI device for which MWI is enabled
4147 *
4148 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
4149 * Callers are not required to check the return value.
4150 *
4151 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
4152 */
4153int pci_try_set_mwi(struct pci_dev *dev)
4154{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004155#ifdef PCI_DISABLE_MWI
4156 return 0;
4157#else
4158 return pci_set_mwi(dev);
4159#endif
Randy Dunlap694625c2007-07-09 11:55:54 -07004160}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004161EXPORT_SYMBOL(pci_try_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07004162
4163/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
4165 * @dev: the PCI device to disable
4166 *
4167 * Disables PCI Memory-Write-Invalidate transaction on the device
4168 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004169void pci_clear_mwi(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004171#ifndef PCI_DISABLE_MWI
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 u16 cmd;
4173
4174 pci_read_config_word(dev, PCI_COMMAND, &cmd);
4175 if (cmd & PCI_COMMAND_INVALIDATE) {
4176 cmd &= ~PCI_COMMAND_INVALIDATE;
4177 pci_write_config_word(dev, PCI_COMMAND, cmd);
4178 }
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004181EXPORT_SYMBOL(pci_clear_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Brett M Russa04ce0f2005-08-15 15:23:41 -04004183/**
4184 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07004185 * @pdev: the PCI device to operate on
4186 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04004187 *
4188 * Enables/disables PCI INTx for device dev
4189 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004190void pci_intx(struct pci_dev *pdev, int enable)
Brett M Russa04ce0f2005-08-15 15:23:41 -04004191{
4192 u16 pci_command, new;
4193
4194 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
4195
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004196 if (enable)
Brett M Russa04ce0f2005-08-15 15:23:41 -04004197 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004198 else
Brett M Russa04ce0f2005-08-15 15:23:41 -04004199 new = pci_command | PCI_COMMAND_INTX_DISABLE;
Brett M Russa04ce0f2005-08-15 15:23:41 -04004200
4201 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09004202 struct pci_devres *dr;
4203
Brett M Russ2fd9d742005-09-09 10:02:22 -07004204 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09004205
4206 dr = find_pci_dr(pdev);
4207 if (dr && !dr->restore_intx) {
4208 dr->restore_intx = 1;
4209 dr->orig_intx = !enable;
4210 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04004211 }
4212}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004213EXPORT_SYMBOL_GPL(pci_intx);
Brett M Russa04ce0f2005-08-15 15:23:41 -04004214
Jan Kiszkaa2e27782011-11-04 09:46:00 +01004215static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
4216{
4217 struct pci_bus *bus = dev->bus;
4218 bool mask_updated = true;
4219 u32 cmd_status_dword;
4220 u16 origcmd, newcmd;
4221 unsigned long flags;
4222 bool irq_pending;
4223
4224 /*
4225 * We do a single dword read to retrieve both command and status.
4226 * Document assumptions that make this possible.
4227 */
4228 BUILD_BUG_ON(PCI_COMMAND % 4);
4229 BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
4230
4231 raw_spin_lock_irqsave(&pci_lock, flags);
4232
4233 bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
4234
4235 irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
4236
4237 /*
4238 * Check interrupt status register to see whether our device
4239 * triggered the interrupt (when masking) or the next IRQ is
4240 * already pending (when unmasking).
4241 */
4242 if (mask != irq_pending) {
4243 mask_updated = false;
4244 goto done;
4245 }
4246
4247 origcmd = cmd_status_dword;
4248 newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
4249 if (mask)
4250 newcmd |= PCI_COMMAND_INTX_DISABLE;
4251 if (newcmd != origcmd)
4252 bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
4253
4254done:
4255 raw_spin_unlock_irqrestore(&pci_lock, flags);
4256
4257 return mask_updated;
4258}
4259
4260/**
4261 * pci_check_and_mask_intx - mask INTx on pending interrupt
Randy Dunlap6e9292c2012-01-21 11:02:35 -08004262 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01004263 *
4264 * Check if the device dev has its INTx line asserted, mask it and
Piotr Gregor99b3c582017-05-26 22:02:25 +01004265 * return true in that case. False is returned if no interrupt was
Jan Kiszkaa2e27782011-11-04 09:46:00 +01004266 * pending.
4267 */
4268bool pci_check_and_mask_intx(struct pci_dev *dev)
4269{
4270 return pci_check_and_set_intx_mask(dev, true);
4271}
4272EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
4273
4274/**
Bjorn Helgaasebd50b92014-01-14 17:10:39 -07004275 * pci_check_and_unmask_intx - unmask INTx if no interrupt is pending
Randy Dunlap6e9292c2012-01-21 11:02:35 -08004276 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01004277 *
4278 * Check if the device dev has its INTx line asserted, unmask it if not
4279 * and return true. False is returned and the mask remains active if
4280 * there was still an interrupt pending.
4281 */
4282bool pci_check_and_unmask_intx(struct pci_dev *dev)
4283{
4284 return pci_check_and_set_intx_mask(dev, false);
4285}
4286EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
4287
Casey Leedom3775a202013-08-06 15:48:36 +05304288/**
4289 * pci_wait_for_pending_transaction - waits for pending transaction
4290 * @dev: the PCI device to operate on
4291 *
4292 * Return 0 if transaction is pending 1 otherwise.
4293 */
4294int pci_wait_for_pending_transaction(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08004295{
Alex Williamson157e8762013-12-17 16:43:39 -07004296 if (!pci_is_pcie(dev))
4297 return 1;
Sheng Yang8dd7f802008-10-21 17:38:25 +08004298
Gavin Shand0b4cc42014-05-19 13:06:46 +10004299 return pci_wait_for_pending(dev, pci_pcie_cap(dev) + PCI_EXP_DEVSTA,
4300 PCI_EXP_DEVSTA_TRPND);
Casey Leedom3775a202013-08-06 15:48:36 +05304301}
4302EXPORT_SYMBOL(pci_wait_for_pending_transaction);
Sheng Yang5fe5db02009-02-09 14:53:47 +08004303
Sinan Kayaa2758b62018-02-27 14:14:10 -06004304static int pci_dev_wait(struct pci_dev *dev, char *reset_type, int timeout)
Alex Williamson5adecf82016-02-22 13:05:48 -07004305{
Sinan Kayaa2758b62018-02-27 14:14:10 -06004306 int delay = 1;
Alex Williamson5adecf82016-02-22 13:05:48 -07004307 u32 id;
4308
Sinan Kaya821cdad2017-08-29 14:45:45 -05004309 /*
Sinan Kayaa2758b62018-02-27 14:14:10 -06004310 * After reset, the device should not silently discard config
Sinan Kaya821cdad2017-08-29 14:45:45 -05004311 * requests, but it may still indicate that it needs more time by
4312 * responding to them with CRS completions. The Root Port will
4313 * generally synthesize ~0 data to complete the read (except when
4314 * CRS SV is enabled and the read was for the Vendor ID; in that
4315 * case it synthesizes 0x0001 data).
4316 *
4317 * Wait for the device to return a non-CRS completion. Read the
4318 * Command register instead of Vendor ID so we don't have to
4319 * contend with the CRS SV value.
4320 */
4321 pci_read_config_dword(dev, PCI_COMMAND, &id);
4322 while (id == ~0) {
4323 if (delay > timeout) {
Sinan Kayaa2758b62018-02-27 14:14:10 -06004324 pci_warn(dev, "not ready %dms after %s; giving up\n",
4325 delay - 1, reset_type);
Sinan Kaya91295d72018-02-27 14:14:08 -06004326 return -ENOTTY;
Sinan Kaya821cdad2017-08-29 14:45:45 -05004327 }
4328
4329 if (delay > 1000)
Sinan Kayaa2758b62018-02-27 14:14:10 -06004330 pci_info(dev, "not ready %dms after %s; waiting\n",
4331 delay - 1, reset_type);
Sinan Kaya821cdad2017-08-29 14:45:45 -05004332
4333 msleep(delay);
4334 delay *= 2;
4335 pci_read_config_dword(dev, PCI_COMMAND, &id);
4336 }
4337
4338 if (delay > 1000)
Sinan Kayaa2758b62018-02-27 14:14:10 -06004339 pci_info(dev, "ready %dms after %s\n", delay - 1,
4340 reset_type);
Sinan Kaya91295d72018-02-27 14:14:08 -06004341
4342 return 0;
Alex Williamson5adecf82016-02-22 13:05:48 -07004343}
4344
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004345/**
4346 * pcie_has_flr - check if a device supports function level resets
4347 * @dev: device to check
4348 *
4349 * Returns true if the device advertises support for PCIe function level
4350 * resets.
4351 */
Alex Williamson2d2917f2018-08-09 14:04:14 -06004352bool pcie_has_flr(struct pci_dev *dev)
Casey Leedom3775a202013-08-06 15:48:36 +05304353{
4354 u32 cap;
4355
Sasha Neftinf65fd1a2017-04-03 16:02:50 -05004356 if (dev->dev_flags & PCI_DEV_FLAGS_NO_FLR_RESET)
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004357 return false;
Sasha Neftinf65fd1a2017-04-03 16:02:50 -05004358
Casey Leedom3775a202013-08-06 15:48:36 +05304359 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004360 return cap & PCI_EXP_DEVCAP_FLR;
4361}
Alex Williamson2d2917f2018-08-09 14:04:14 -06004362EXPORT_SYMBOL_GPL(pcie_has_flr);
Casey Leedom3775a202013-08-06 15:48:36 +05304363
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004364/**
4365 * pcie_flr - initiate a PCIe function level reset
4366 * @dev: device to reset
4367 *
4368 * Initiate a function level reset on @dev. The caller should ensure the
4369 * device supports FLR before calling this function, e.g. by using the
4370 * pcie_has_flr() helper.
4371 */
Sinan Kaya91295d72018-02-27 14:14:08 -06004372int pcie_flr(struct pci_dev *dev)
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004373{
Casey Leedom3775a202013-08-06 15:48:36 +05304374 if (!pci_wait_for_pending_transaction(dev))
Frederick Lawler7506dc72018-01-18 12:55:24 -06004375 pci_err(dev, "timed out waiting for pending transaction; performing function level reset anyway\n");
Casey Leedom3775a202013-08-06 15:48:36 +05304376
Jiang Liu59875ae2012-07-24 17:20:06 +08004377 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
Sinan Kayaa2758b62018-02-27 14:14:10 -06004378
4379 /*
4380 * Per PCIe r4.0, sec 6.6.2, a device must complete an FLR within
4381 * 100ms, but may silently discard requests while the FLR is in
4382 * progress. Wait 100ms before trying to access the device.
4383 */
4384 msleep(100);
4385
4386 return pci_dev_wait(dev, "FLR", PCIE_RESET_READY_POLL_MS);
Sheng Yang8dd7f802008-10-21 17:38:25 +08004387}
Christoph Hellwiga60a2b72017-04-14 21:11:25 +02004388EXPORT_SYMBOL_GPL(pcie_flr);
Sheng Yangd91cdc72008-11-11 17:17:47 +08004389
Yu Zhao8c1c6992009-06-13 15:52:13 +08004390static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08004391{
Yu Zhao8c1c6992009-06-13 15:52:13 +08004392 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08004393 u8 cap;
4394
Yu Zhao8c1c6992009-06-13 15:52:13 +08004395 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
4396 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08004397 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08004398
Sasha Neftinf65fd1a2017-04-03 16:02:50 -05004399 if (dev->dev_flags & PCI_DEV_FLAGS_NO_FLR_RESET)
4400 return -ENOTTY;
4401
Yu Zhao8c1c6992009-06-13 15:52:13 +08004402 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08004403 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
4404 return -ENOTTY;
4405
4406 if (probe)
4407 return 0;
4408
Alex Williamsond066c942014-06-17 15:40:13 -06004409 /*
4410 * Wait for Transaction Pending bit to clear. A word-aligned test
4411 * is used, so we use the conrol offset rather than status and shift
4412 * the test bit to match.
4413 */
Gavin Shanbb383e22014-11-12 13:41:51 +11004414 if (!pci_wait_for_pending(dev, pos + PCI_AF_CTRL,
Alex Williamsond066c942014-06-17 15:40:13 -06004415 PCI_AF_STATUS_TP << 8))
Frederick Lawler7506dc72018-01-18 12:55:24 -06004416 pci_err(dev, "timed out waiting for pending transaction; performing AF function level reset anyway\n");
Yu Zhao8c1c6992009-06-13 15:52:13 +08004417
Yu Zhao8c1c6992009-06-13 15:52:13 +08004418 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sinan Kayaa2758b62018-02-27 14:14:10 -06004419
4420 /*
4421 * Per Advanced Capabilities for Conventional PCI ECN, 13 April 2006,
4422 * updated 27 July 2006; a device must complete an FLR within
4423 * 100ms, but may silently discard requests while the FLR is in
4424 * progress. Wait 100ms before trying to access the device.
4425 */
4426 msleep(100);
4427
4428 return pci_dev_wait(dev, "AF_FLR", PCIE_RESET_READY_POLL_MS);
Sheng Yang1ca88792008-11-11 17:17:48 +08004429}
4430
Rafael J. Wysocki83d74e02011-03-05 21:48:44 +01004431/**
4432 * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
4433 * @dev: Device to reset.
4434 * @probe: If set, only check if the device can be reset this way.
4435 *
4436 * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
4437 * unset, it will be reinitialized internally when going from PCI_D3hot to
4438 * PCI_D0. If that's the case and the device is not in a low-power state
4439 * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
4440 *
4441 * NOTE: This causes the caller to sleep for twice the device power transition
4442 * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
Bjorn Helgaasf7625982013-11-14 11:28:18 -07004443 * by default (i.e. unless the @dev's d3_delay field has a different value).
Rafael J. Wysocki83d74e02011-03-05 21:48:44 +01004444 * Moreover, only devices in D0 can be reset by this function.
4445 */
Yu Zhaof85876b2009-06-13 15:52:14 +08004446static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08004447{
Yu Zhaof85876b2009-06-13 15:52:14 +08004448 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08004449
Alex Williamson51e53732014-11-21 11:24:08 -07004450 if (!dev->pm_cap || dev->dev_flags & PCI_DEV_FLAGS_NO_PM_RESET)
Yu Zhaof85876b2009-06-13 15:52:14 +08004451 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08004452
Yu Zhaof85876b2009-06-13 15:52:14 +08004453 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
4454 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
4455 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08004456
Yu Zhaof85876b2009-06-13 15:52:14 +08004457 if (probe)
4458 return 0;
4459
4460 if (dev->current_state != PCI_D0)
4461 return -EINVAL;
4462
4463 csr &= ~PCI_PM_CTRL_STATE_MASK;
4464 csr |= PCI_D3hot;
4465 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01004466 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08004467
4468 csr &= ~PCI_PM_CTRL_STATE_MASK;
4469 csr |= PCI_D0;
4470 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01004471 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08004472
Sinan Kayaabbcf0e2018-02-27 14:14:10 -06004473 return pci_dev_wait(dev, "PM D3->D0", PCIE_RESET_READY_POLL_MS);
Yu Zhaof85876b2009-06-13 15:52:14 +08004474}
Oza Pawandeep9f5a70f12018-05-17 16:44:11 -05004475/**
4476 * pcie_wait_for_link - Wait until link is active or inactive
4477 * @pdev: Bridge device
4478 * @active: waiting for active or inactive?
4479 *
4480 * Use this to wait till link becomes active or inactive.
4481 */
4482bool pcie_wait_for_link(struct pci_dev *pdev, bool active)
4483{
4484 int timeout = 1000;
4485 bool ret;
4486 u16 lnk_status;
4487
4488 for (;;) {
4489 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
4490 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
4491 if (ret == active)
4492 return true;
4493 if (timeout <= 0)
4494 break;
4495 msleep(10);
4496 timeout -= 10;
4497 }
4498
4499 pci_info(pdev, "Data Link Layer Link Active not %s in 1000 msec\n",
4500 active ? "set" : "cleared");
4501
4502 return false;
4503}
Yu Zhaof85876b2009-06-13 15:52:14 +08004504
Gavin Shan9e330022014-06-19 17:22:44 +10004505void pci_reset_secondary_bus(struct pci_dev *dev)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08004506{
4507 u16 ctrl;
Alex Williamson64e86742013-08-08 14:09:24 -06004508
4509 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
4510 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
4511 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06004512
Alex Williamsonde0c5482013-08-08 14:10:13 -06004513 /*
4514 * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double
Bjorn Helgaasf7625982013-11-14 11:28:18 -07004515 * this to 2ms to ensure that we meet the minimum requirement.
Alex Williamsonde0c5482013-08-08 14:10:13 -06004516 */
4517 msleep(2);
Alex Williamson64e86742013-08-08 14:09:24 -06004518
4519 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
4520 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Alex Williamsonde0c5482013-08-08 14:10:13 -06004521
4522 /*
4523 * Trhfa for conventional PCI is 2^25 clock cycles.
4524 * Assuming a minimum 33MHz clock this results in a 1s
4525 * delay before we can consider subordinate devices to
4526 * be re-initialized. PCIe has some ways to shorten this,
4527 * but we don't make use of them yet.
4528 */
4529 ssleep(1);
Alex Williamson64e86742013-08-08 14:09:24 -06004530}
Gavin Shand92a2082014-04-24 18:00:24 +10004531
Gavin Shan9e330022014-06-19 17:22:44 +10004532void __weak pcibios_reset_secondary_bus(struct pci_dev *dev)
4533{
4534 pci_reset_secondary_bus(dev);
4535}
4536
Gavin Shand92a2082014-04-24 18:00:24 +10004537/**
Sinan Kaya381634c2018-07-19 18:04:11 -05004538 * pci_bridge_secondary_bus_reset - Reset the secondary bus on a PCI bridge.
Gavin Shand92a2082014-04-24 18:00:24 +10004539 * @dev: Bridge device
4540 *
4541 * Use the bridge control register to assert reset on the secondary bus.
4542 * Devices on the secondary bus are left in power-on state.
4543 */
Sinan Kaya381634c2018-07-19 18:04:11 -05004544int pci_bridge_secondary_bus_reset(struct pci_dev *dev)
Gavin Shand92a2082014-04-24 18:00:24 +10004545{
4546 pcibios_reset_secondary_bus(dev);
Sinan Kaya01fd61c2018-02-27 14:14:11 -06004547
Sinan Kaya6b2f13512018-02-27 14:14:12 -06004548 return pci_dev_wait(dev, "bus reset", PCIE_RESET_READY_POLL_MS);
Gavin Shand92a2082014-04-24 18:00:24 +10004549}
Dennis Dalessandrobfc45602018-08-31 10:34:14 -07004550EXPORT_SYMBOL_GPL(pci_bridge_secondary_bus_reset);
Alex Williamson64e86742013-08-08 14:09:24 -06004551
4552static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
4553{
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08004554 struct pci_dev *pdev;
4555
Alex Williamsonf331a852015-01-15 18:16:04 -06004556 if (pci_is_root_bus(dev->bus) || dev->subordinate ||
4557 !dev->bus->self || dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08004558 return -ENOTTY;
4559
4560 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
4561 if (pdev != dev)
4562 return -ENOTTY;
4563
4564 if (probe)
4565 return 0;
4566
Sinan Kaya381634c2018-07-19 18:04:11 -05004567 return pci_bridge_secondary_bus_reset(dev->bus->self);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08004568}
4569
Alex Williamson608c3882013-08-08 14:09:43 -06004570static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
4571{
4572 int rc = -ENOTTY;
4573
4574 if (!hotplug || !try_module_get(hotplug->ops->owner))
4575 return rc;
4576
4577 if (hotplug->ops->reset_slot)
4578 rc = hotplug->ops->reset_slot(hotplug, probe);
4579
4580 module_put(hotplug->ops->owner);
4581
4582 return rc;
4583}
4584
4585static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
4586{
4587 struct pci_dev *pdev;
4588
Alex Williamsonf331a852015-01-15 18:16:04 -06004589 if (dev->subordinate || !dev->slot ||
4590 dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET)
Alex Williamson608c3882013-08-08 14:09:43 -06004591 return -ENOTTY;
4592
4593 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
4594 if (pdev != dev && pdev->slot == dev->slot)
4595 return -ENOTTY;
4596
4597 return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
4598}
4599
Alex Williamson77cb9852013-08-08 14:09:49 -06004600static void pci_dev_lock(struct pci_dev *dev)
4601{
4602 pci_cfg_access_lock(dev);
4603 /* block PM suspend, driver probe, etc. */
4604 device_lock(&dev->dev);
4605}
4606
Alex Williamson61cf16d2013-12-16 15:14:31 -07004607/* Return 1 on successful lock, 0 on contention */
4608static int pci_dev_trylock(struct pci_dev *dev)
4609{
4610 if (pci_cfg_access_trylock(dev)) {
4611 if (device_trylock(&dev->dev))
4612 return 1;
4613 pci_cfg_access_unlock(dev);
4614 }
4615
4616 return 0;
4617}
4618
Alex Williamson77cb9852013-08-08 14:09:49 -06004619static void pci_dev_unlock(struct pci_dev *dev)
4620{
4621 device_unlock(&dev->dev);
4622 pci_cfg_access_unlock(dev);
4623}
4624
Christoph Hellwig775755e2017-06-01 13:10:38 +02004625static void pci_dev_save_and_disable(struct pci_dev *dev)
Keith Busch3ebe7f92014-05-02 10:40:42 -06004626{
4627 const struct pci_error_handlers *err_handler =
4628 dev->driver ? dev->driver->err_handler : NULL;
Keith Busch3ebe7f92014-05-02 10:40:42 -06004629
Christoph Hellwigb014e962017-06-01 13:10:37 +02004630 /*
Christoph Hellwig775755e2017-06-01 13:10:38 +02004631 * dev->driver->err_handler->reset_prepare() is protected against
Christoph Hellwigb014e962017-06-01 13:10:37 +02004632 * races with ->remove() by the device lock, which must be held by
4633 * the caller.
4634 */
Christoph Hellwig775755e2017-06-01 13:10:38 +02004635 if (err_handler && err_handler->reset_prepare)
4636 err_handler->reset_prepare(dev);
Keith Busch3ebe7f92014-05-02 10:40:42 -06004637
Alex Williamsona6cbaad2013-08-08 14:10:02 -06004638 /*
4639 * Wake-up device prior to save. PM registers default to D0 after
4640 * reset and a simple register restore doesn't reliably return
4641 * to a non-D0 state anyway.
4642 */
4643 pci_set_power_state(dev, PCI_D0);
4644
Alex Williamson77cb9852013-08-08 14:09:49 -06004645 pci_save_state(dev);
4646 /*
4647 * Disable the device by clearing the Command register, except for
4648 * INTx-disable which is set. This not only disables MMIO and I/O port
4649 * BARs, but also prevents the device from being Bus Master, preventing
4650 * DMA from the device including MSI/MSI-X interrupts. For PCI 2.3
4651 * compliant devices, INTx-disable prevents legacy interrupts.
4652 */
4653 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
4654}
4655
4656static void pci_dev_restore(struct pci_dev *dev)
4657{
Christoph Hellwig775755e2017-06-01 13:10:38 +02004658 const struct pci_error_handlers *err_handler =
4659 dev->driver ? dev->driver->err_handler : NULL;
4660
Alex Williamson77cb9852013-08-08 14:09:49 -06004661 pci_restore_state(dev);
Alex Williamson77cb9852013-08-08 14:09:49 -06004662
Christoph Hellwig775755e2017-06-01 13:10:38 +02004663 /*
4664 * dev->driver->err_handler->reset_done() is protected against
4665 * races with ->remove() by the device lock, which must be held by
4666 * the caller.
4667 */
4668 if (err_handler && err_handler->reset_done)
4669 err_handler->reset_done(dev);
Sheng Yangd91cdc72008-11-11 17:17:47 +08004670}
Keith Busch3ebe7f92014-05-02 10:40:42 -06004671
Sheng Yangd91cdc72008-11-11 17:17:47 +08004672/**
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05004673 * __pci_reset_function_locked - reset a PCI device function while holding
4674 * the @dev mutex lock.
4675 * @dev: PCI device to reset
4676 *
4677 * Some devices allow an individual function to be reset without affecting
4678 * other functions in the same device. The PCI device must be responsive
4679 * to PCI config space in order to use this function.
4680 *
4681 * The device function is presumed to be unused and the caller is holding
4682 * the device mutex lock when this function is called.
4683 * Resetting the device will make the contents of PCI configuration space
4684 * random, so any caller of this must be prepared to reinitialise the
4685 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
4686 * etc.
4687 *
4688 * Returns 0 if the device function was successfully reset or negative if the
4689 * device doesn't support resetting a single function.
4690 */
4691int __pci_reset_function_locked(struct pci_dev *dev)
4692{
Christoph Hellwig52354b92017-06-01 13:10:39 +02004693 int rc;
4694
4695 might_sleep();
4696
Bjorn Helgaas832c418a2017-10-25 17:09:24 -05004697 /*
4698 * A reset method returns -ENOTTY if it doesn't support this device
4699 * and we should try the next method.
4700 *
4701 * If it returns 0 (success), we're finished. If it returns any
4702 * other error, we're also finished: this indicates that further
4703 * reset mechanisms might be broken on the device.
4704 */
Christoph Hellwig52354b92017-06-01 13:10:39 +02004705 rc = pci_dev_specific_reset(dev, 0);
4706 if (rc != -ENOTTY)
4707 return rc;
4708 if (pcie_has_flr(dev)) {
Sinan Kaya91295d72018-02-27 14:14:08 -06004709 rc = pcie_flr(dev);
4710 if (rc != -ENOTTY)
4711 return rc;
Christoph Hellwig52354b92017-06-01 13:10:39 +02004712 }
4713 rc = pci_af_flr(dev, 0);
4714 if (rc != -ENOTTY)
4715 return rc;
4716 rc = pci_pm_reset(dev, 0);
4717 if (rc != -ENOTTY)
4718 return rc;
4719 rc = pci_dev_reset_slot_function(dev, 0);
4720 if (rc != -ENOTTY)
4721 return rc;
4722 return pci_parent_bus_reset(dev, 0);
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05004723}
4724EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
4725
4726/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03004727 * pci_probe_reset_function - check whether the device can be safely reset
4728 * @dev: PCI device to reset
4729 *
4730 * Some devices allow an individual function to be reset without affecting
4731 * other functions in the same device. The PCI device must be responsive
4732 * to PCI config space in order to use this function.
4733 *
4734 * Returns 0 if the device function can be reset or negative if the
4735 * device doesn't support resetting a single function.
4736 */
4737int pci_probe_reset_function(struct pci_dev *dev)
4738{
Christoph Hellwig52354b92017-06-01 13:10:39 +02004739 int rc;
4740
4741 might_sleep();
4742
4743 rc = pci_dev_specific_reset(dev, 1);
4744 if (rc != -ENOTTY)
4745 return rc;
4746 if (pcie_has_flr(dev))
4747 return 0;
4748 rc = pci_af_flr(dev, 1);
4749 if (rc != -ENOTTY)
4750 return rc;
4751 rc = pci_pm_reset(dev, 1);
4752 if (rc != -ENOTTY)
4753 return rc;
4754 rc = pci_dev_reset_slot_function(dev, 1);
4755 if (rc != -ENOTTY)
4756 return rc;
4757
4758 return pci_parent_bus_reset(dev, 1);
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03004759}
4760
4761/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08004762 * pci_reset_function - quiesce and reset a PCI device function
4763 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08004764 *
4765 * Some devices allow an individual function to be reset without affecting
4766 * other functions in the same device. The PCI device must be responsive
4767 * to PCI config space in order to use this function.
4768 *
4769 * This function does not just reset the PCI portion of a device, but
4770 * clears all the state associated with the device. This function differs
Jan H. Schönherr79e699b2017-09-06 01:21:23 +02004771 * from __pci_reset_function_locked() in that it saves and restores device state
4772 * over the reset and takes the PCI device lock.
Sheng Yang8dd7f802008-10-21 17:38:25 +08004773 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08004774 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08004775 * device doesn't support resetting a single function.
4776 */
4777int pci_reset_function(struct pci_dev *dev)
4778{
Yu Zhao8c1c6992009-06-13 15:52:13 +08004779 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08004780
Bjorn Helgaas204f4af2018-02-16 15:22:39 -06004781 if (!dev->reset_fn)
4782 return -ENOTTY;
Sheng Yang8dd7f802008-10-21 17:38:25 +08004783
Christoph Hellwigb014e962017-06-01 13:10:37 +02004784 pci_dev_lock(dev);
Alex Williamson77cb9852013-08-08 14:09:49 -06004785 pci_dev_save_and_disable(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08004786
Christoph Hellwig52354b92017-06-01 13:10:39 +02004787 rc = __pci_reset_function_locked(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08004788
Alex Williamson77cb9852013-08-08 14:09:49 -06004789 pci_dev_restore(dev);
Christoph Hellwigb014e962017-06-01 13:10:37 +02004790 pci_dev_unlock(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08004791
Yu Zhao8c1c6992009-06-13 15:52:13 +08004792 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08004793}
4794EXPORT_SYMBOL_GPL(pci_reset_function);
4795
Alex Williamson61cf16d2013-12-16 15:14:31 -07004796/**
Marc Zyngiera477b9c2017-08-01 20:11:02 -05004797 * pci_reset_function_locked - quiesce and reset a PCI device function
4798 * @dev: PCI device to reset
4799 *
4800 * Some devices allow an individual function to be reset without affecting
4801 * other functions in the same device. The PCI device must be responsive
4802 * to PCI config space in order to use this function.
4803 *
4804 * This function does not just reset the PCI portion of a device, but
4805 * clears all the state associated with the device. This function differs
Jan H. Schönherr79e699b2017-09-06 01:21:23 +02004806 * from __pci_reset_function_locked() in that it saves and restores device state
Marc Zyngiera477b9c2017-08-01 20:11:02 -05004807 * over the reset. It also differs from pci_reset_function() in that it
4808 * requires the PCI device lock to be held.
4809 *
4810 * Returns 0 if the device function was successfully reset or negative if the
4811 * device doesn't support resetting a single function.
4812 */
4813int pci_reset_function_locked(struct pci_dev *dev)
4814{
4815 int rc;
4816
Bjorn Helgaas204f4af2018-02-16 15:22:39 -06004817 if (!dev->reset_fn)
4818 return -ENOTTY;
Marc Zyngiera477b9c2017-08-01 20:11:02 -05004819
4820 pci_dev_save_and_disable(dev);
4821
4822 rc = __pci_reset_function_locked(dev);
4823
4824 pci_dev_restore(dev);
4825
4826 return rc;
4827}
4828EXPORT_SYMBOL_GPL(pci_reset_function_locked);
4829
4830/**
Alex Williamson61cf16d2013-12-16 15:14:31 -07004831 * pci_try_reset_function - quiesce and reset a PCI device function
4832 * @dev: PCI device to reset
4833 *
4834 * Same as above, except return -EAGAIN if unable to lock device.
4835 */
4836int pci_try_reset_function(struct pci_dev *dev)
4837{
4838 int rc;
4839
Bjorn Helgaas204f4af2018-02-16 15:22:39 -06004840 if (!dev->reset_fn)
4841 return -ENOTTY;
Alex Williamson61cf16d2013-12-16 15:14:31 -07004842
Christoph Hellwigb014e962017-06-01 13:10:37 +02004843 if (!pci_dev_trylock(dev))
4844 return -EAGAIN;
Alex Williamson61cf16d2013-12-16 15:14:31 -07004845
Christoph Hellwigb014e962017-06-01 13:10:37 +02004846 pci_dev_save_and_disable(dev);
Christoph Hellwig52354b92017-06-01 13:10:39 +02004847 rc = __pci_reset_function_locked(dev);
Sinan Kayacb5e0d02018-02-27 14:14:08 -06004848 pci_dev_restore(dev);
Christoph Hellwigb014e962017-06-01 13:10:37 +02004849 pci_dev_unlock(dev);
Alex Williamson61cf16d2013-12-16 15:14:31 -07004850
Alex Williamson61cf16d2013-12-16 15:14:31 -07004851 return rc;
4852}
4853EXPORT_SYMBOL_GPL(pci_try_reset_function);
4854
Alex Williamsonf331a852015-01-15 18:16:04 -06004855/* Do any devices on or below this bus prevent a bus reset? */
4856static bool pci_bus_resetable(struct pci_bus *bus)
4857{
4858 struct pci_dev *dev;
4859
David Daney35702772017-09-08 10:10:31 +02004860
4861 if (bus->self && (bus->self->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET))
4862 return false;
4863
Alex Williamsonf331a852015-01-15 18:16:04 -06004864 list_for_each_entry(dev, &bus->devices, bus_list) {
4865 if (dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET ||
4866 (dev->subordinate && !pci_bus_resetable(dev->subordinate)))
4867 return false;
4868 }
4869
4870 return true;
4871}
4872
Alex Williamson090a3c52013-08-08 14:09:55 -06004873/* Lock devices from the top of the tree down */
4874static void pci_bus_lock(struct pci_bus *bus)
4875{
4876 struct pci_dev *dev;
4877
4878 list_for_each_entry(dev, &bus->devices, bus_list) {
4879 pci_dev_lock(dev);
4880 if (dev->subordinate)
4881 pci_bus_lock(dev->subordinate);
4882 }
4883}
4884
4885/* Unlock devices from the bottom of the tree up */
4886static void pci_bus_unlock(struct pci_bus *bus)
4887{
4888 struct pci_dev *dev;
4889
4890 list_for_each_entry(dev, &bus->devices, bus_list) {
4891 if (dev->subordinate)
4892 pci_bus_unlock(dev->subordinate);
4893 pci_dev_unlock(dev);
4894 }
4895}
4896
Alex Williamson61cf16d2013-12-16 15:14:31 -07004897/* Return 1 on successful lock, 0 on contention */
4898static int pci_bus_trylock(struct pci_bus *bus)
4899{
4900 struct pci_dev *dev;
4901
4902 list_for_each_entry(dev, &bus->devices, bus_list) {
4903 if (!pci_dev_trylock(dev))
4904 goto unlock;
4905 if (dev->subordinate) {
4906 if (!pci_bus_trylock(dev->subordinate)) {
4907 pci_dev_unlock(dev);
4908 goto unlock;
4909 }
4910 }
4911 }
4912 return 1;
4913
4914unlock:
4915 list_for_each_entry_continue_reverse(dev, &bus->devices, bus_list) {
4916 if (dev->subordinate)
4917 pci_bus_unlock(dev->subordinate);
4918 pci_dev_unlock(dev);
4919 }
4920 return 0;
4921}
4922
Alex Williamsonf331a852015-01-15 18:16:04 -06004923/* Do any devices on or below this slot prevent a bus reset? */
4924static bool pci_slot_resetable(struct pci_slot *slot)
4925{
4926 struct pci_dev *dev;
4927
Jan Glauber33ba90a2017-09-08 10:10:33 +02004928 if (slot->bus->self &&
4929 (slot->bus->self->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET))
4930 return false;
4931
Alex Williamsonf331a852015-01-15 18:16:04 -06004932 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
4933 if (!dev->slot || dev->slot != slot)
4934 continue;
4935 if (dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET ||
4936 (dev->subordinate && !pci_bus_resetable(dev->subordinate)))
4937 return false;
4938 }
4939
4940 return true;
4941}
4942
Alex Williamson090a3c52013-08-08 14:09:55 -06004943/* Lock devices from the top of the tree down */
4944static void pci_slot_lock(struct pci_slot *slot)
4945{
4946 struct pci_dev *dev;
4947
4948 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
4949 if (!dev->slot || dev->slot != slot)
4950 continue;
4951 pci_dev_lock(dev);
4952 if (dev->subordinate)
4953 pci_bus_lock(dev->subordinate);
4954 }
4955}
4956
4957/* Unlock devices from the bottom of the tree up */
4958static void pci_slot_unlock(struct pci_slot *slot)
4959{
4960 struct pci_dev *dev;
4961
4962 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
4963 if (!dev->slot || dev->slot != slot)
4964 continue;
4965 if (dev->subordinate)
4966 pci_bus_unlock(dev->subordinate);
4967 pci_dev_unlock(dev);
4968 }
4969}
4970
Alex Williamson61cf16d2013-12-16 15:14:31 -07004971/* Return 1 on successful lock, 0 on contention */
4972static int pci_slot_trylock(struct pci_slot *slot)
4973{
4974 struct pci_dev *dev;
4975
4976 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
4977 if (!dev->slot || dev->slot != slot)
4978 continue;
4979 if (!pci_dev_trylock(dev))
4980 goto unlock;
4981 if (dev->subordinate) {
4982 if (!pci_bus_trylock(dev->subordinate)) {
4983 pci_dev_unlock(dev);
4984 goto unlock;
4985 }
4986 }
4987 }
4988 return 1;
4989
4990unlock:
4991 list_for_each_entry_continue_reverse(dev,
4992 &slot->bus->devices, bus_list) {
4993 if (!dev->slot || dev->slot != slot)
4994 continue;
4995 if (dev->subordinate)
4996 pci_bus_unlock(dev->subordinate);
4997 pci_dev_unlock(dev);
4998 }
4999 return 0;
5000}
5001
Alex Williamson090a3c52013-08-08 14:09:55 -06005002/* Save and disable devices from the top of the tree down */
5003static void pci_bus_save_and_disable(struct pci_bus *bus)
5004{
5005 struct pci_dev *dev;
5006
5007 list_for_each_entry(dev, &bus->devices, bus_list) {
Christoph Hellwigb014e962017-06-01 13:10:37 +02005008 pci_dev_lock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005009 pci_dev_save_and_disable(dev);
Christoph Hellwigb014e962017-06-01 13:10:37 +02005010 pci_dev_unlock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005011 if (dev->subordinate)
5012 pci_bus_save_and_disable(dev->subordinate);
5013 }
5014}
5015
5016/*
5017 * Restore devices from top of the tree down - parent bridges need to be
5018 * restored before we can get to subordinate devices.
5019 */
5020static void pci_bus_restore(struct pci_bus *bus)
5021{
5022 struct pci_dev *dev;
5023
5024 list_for_each_entry(dev, &bus->devices, bus_list) {
Christoph Hellwigb014e962017-06-01 13:10:37 +02005025 pci_dev_lock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005026 pci_dev_restore(dev);
Christoph Hellwigb014e962017-06-01 13:10:37 +02005027 pci_dev_unlock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005028 if (dev->subordinate)
5029 pci_bus_restore(dev->subordinate);
5030 }
5031}
5032
5033/* Save and disable devices from the top of the tree down */
5034static void pci_slot_save_and_disable(struct pci_slot *slot)
5035{
5036 struct pci_dev *dev;
5037
5038 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
5039 if (!dev->slot || dev->slot != slot)
5040 continue;
5041 pci_dev_save_and_disable(dev);
5042 if (dev->subordinate)
5043 pci_bus_save_and_disable(dev->subordinate);
5044 }
5045}
5046
5047/*
5048 * Restore devices from top of the tree down - parent bridges need to be
5049 * restored before we can get to subordinate devices.
5050 */
5051static void pci_slot_restore(struct pci_slot *slot)
5052{
5053 struct pci_dev *dev;
5054
5055 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
5056 if (!dev->slot || dev->slot != slot)
5057 continue;
Sinan Kayacb5e0d02018-02-27 14:14:08 -06005058 pci_dev_lock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005059 pci_dev_restore(dev);
Sinan Kayacb5e0d02018-02-27 14:14:08 -06005060 pci_dev_unlock(dev);
Alex Williamson090a3c52013-08-08 14:09:55 -06005061 if (dev->subordinate)
5062 pci_bus_restore(dev->subordinate);
5063 }
5064}
5065
5066static int pci_slot_reset(struct pci_slot *slot, int probe)
5067{
5068 int rc;
5069
Alex Williamsonf331a852015-01-15 18:16:04 -06005070 if (!slot || !pci_slot_resetable(slot))
Alex Williamson090a3c52013-08-08 14:09:55 -06005071 return -ENOTTY;
5072
5073 if (!probe)
5074 pci_slot_lock(slot);
5075
5076 might_sleep();
5077
5078 rc = pci_reset_hotplug_slot(slot->hotplug, probe);
5079
5080 if (!probe)
5081 pci_slot_unlock(slot);
5082
5083 return rc;
5084}
5085
5086/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06005087 * pci_probe_reset_slot - probe whether a PCI slot can be reset
5088 * @slot: PCI slot to probe
5089 *
5090 * Return 0 if slot can be reset, negative if a slot reset is not supported.
5091 */
5092int pci_probe_reset_slot(struct pci_slot *slot)
5093{
5094 return pci_slot_reset(slot, 1);
5095}
5096EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
5097
5098/**
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005099 * __pci_reset_slot - Try to reset a PCI slot
Alex Williamson090a3c52013-08-08 14:09:55 -06005100 * @slot: PCI slot to reset
5101 *
5102 * A PCI bus may host multiple slots, each slot may support a reset mechanism
5103 * independent of other slots. For instance, some slots may support slot power
5104 * control. In the case of a 1:1 bus to slot architecture, this function may
5105 * wrap the bus reset to avoid spurious slot related events such as hotplug.
5106 * Generally a slot reset should be attempted before a bus reset. All of the
5107 * function of the slot and any subordinate buses behind the slot are reset
5108 * through this function. PCI config space of all devices in the slot and
5109 * behind the slot is saved before and restored after reset.
5110 *
Alex Williamson61cf16d2013-12-16 15:14:31 -07005111 * Same as above except return -EAGAIN if the slot cannot be locked
5112 */
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005113static int __pci_reset_slot(struct pci_slot *slot)
Alex Williamson61cf16d2013-12-16 15:14:31 -07005114{
5115 int rc;
5116
5117 rc = pci_slot_reset(slot, 1);
5118 if (rc)
5119 return rc;
5120
5121 pci_slot_save_and_disable(slot);
5122
5123 if (pci_slot_trylock(slot)) {
5124 might_sleep();
5125 rc = pci_reset_hotplug_slot(slot->hotplug, 0);
5126 pci_slot_unlock(slot);
5127 } else
5128 rc = -EAGAIN;
5129
5130 pci_slot_restore(slot);
5131
5132 return rc;
5133}
Alex Williamson61cf16d2013-12-16 15:14:31 -07005134
Alex Williamson090a3c52013-08-08 14:09:55 -06005135static int pci_bus_reset(struct pci_bus *bus, int probe)
5136{
Sinan Kaya18426232018-07-19 18:04:09 -05005137 int ret;
5138
Alex Williamsonf331a852015-01-15 18:16:04 -06005139 if (!bus->self || !pci_bus_resetable(bus))
Alex Williamson090a3c52013-08-08 14:09:55 -06005140 return -ENOTTY;
5141
5142 if (probe)
5143 return 0;
5144
5145 pci_bus_lock(bus);
5146
5147 might_sleep();
5148
Sinan Kaya381634c2018-07-19 18:04:11 -05005149 ret = pci_bridge_secondary_bus_reset(bus->self);
Alex Williamson090a3c52013-08-08 14:09:55 -06005150
5151 pci_bus_unlock(bus);
5152
Sinan Kaya18426232018-07-19 18:04:09 -05005153 return ret;
Alex Williamson090a3c52013-08-08 14:09:55 -06005154}
5155
5156/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06005157 * pci_probe_reset_bus - probe whether a PCI bus can be reset
5158 * @bus: PCI bus to probe
5159 *
5160 * Return 0 if bus can be reset, negative if a bus reset is not supported.
5161 */
5162int pci_probe_reset_bus(struct pci_bus *bus)
5163{
5164 return pci_bus_reset(bus, 1);
5165}
5166EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
5167
5168/**
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005169 * __pci_reset_bus - Try to reset a PCI bus
Alex Williamson61cf16d2013-12-16 15:14:31 -07005170 * @bus: top level PCI bus to reset
5171 *
5172 * Same as above except return -EAGAIN if the bus cannot be locked
5173 */
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005174static int __pci_reset_bus(struct pci_bus *bus)
Alex Williamson61cf16d2013-12-16 15:14:31 -07005175{
5176 int rc;
5177
5178 rc = pci_bus_reset(bus, 1);
5179 if (rc)
5180 return rc;
5181
5182 pci_bus_save_and_disable(bus);
5183
5184 if (pci_bus_trylock(bus)) {
5185 might_sleep();
Sinan Kaya381634c2018-07-19 18:04:11 -05005186 rc = pci_bridge_secondary_bus_reset(bus->self);
Alex Williamson61cf16d2013-12-16 15:14:31 -07005187 pci_bus_unlock(bus);
5188 } else
5189 rc = -EAGAIN;
5190
5191 pci_bus_restore(bus);
5192
5193 return rc;
5194}
Sinan Kaya811c5cb2018-07-19 18:04:12 -05005195
5196/**
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005197 * pci_reset_bus - Try to reset a PCI bus
Sinan Kaya811c5cb2018-07-19 18:04:12 -05005198 * @pdev: top level PCI device to reset via slot/bus
5199 *
5200 * Same as above except return -EAGAIN if the bus cannot be locked
5201 */
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005202int pci_reset_bus(struct pci_dev *pdev)
Sinan Kaya811c5cb2018-07-19 18:04:12 -05005203{
Dennis Dalessandrod8a52812018-09-05 16:08:03 +00005204 return (!pci_probe_reset_slot(pdev->slot)) ?
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005205 __pci_reset_slot(pdev->slot) : __pci_reset_bus(pdev->bus);
Sinan Kaya811c5cb2018-07-19 18:04:12 -05005206}
Sinan Kayac6a44ba2018-07-19 18:04:15 -05005207EXPORT_SYMBOL_GPL(pci_reset_bus);
Alex Williamson61cf16d2013-12-16 15:14:31 -07005208
5209/**
Peter Orubad556ad42007-05-15 13:59:13 +02005210 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
5211 * @dev: PCI device to query
5212 *
5213 * Returns mmrbc: maximum designed memory read count in bytes
5214 * or appropriate error value.
5215 */
5216int pcix_get_max_mmrbc(struct pci_dev *dev)
5217{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005218 int cap;
Peter Orubad556ad42007-05-15 13:59:13 +02005219 u32 stat;
5220
5221 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
5222 if (!cap)
5223 return -EINVAL;
5224
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005225 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
Peter Orubad556ad42007-05-15 13:59:13 +02005226 return -EINVAL;
5227
Dean Nelson25daeb52010-03-09 22:26:40 -05005228 return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
Peter Orubad556ad42007-05-15 13:59:13 +02005229}
5230EXPORT_SYMBOL(pcix_get_max_mmrbc);
5231
5232/**
5233 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
5234 * @dev: PCI device to query
5235 *
5236 * Returns mmrbc: maximum memory read count in bytes
5237 * or appropriate error value.
5238 */
5239int pcix_get_mmrbc(struct pci_dev *dev)
5240{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005241 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05005242 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02005243
5244 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
5245 if (!cap)
5246 return -EINVAL;
5247
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005248 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
5249 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005250
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005251 return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
Peter Orubad556ad42007-05-15 13:59:13 +02005252}
5253EXPORT_SYMBOL(pcix_get_mmrbc);
5254
5255/**
5256 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
5257 * @dev: PCI device to query
5258 * @mmrbc: maximum memory read count in bytes
5259 * valid values are 512, 1024, 2048, 4096
5260 *
5261 * If possible sets maximum memory read byte count, some bridges have erratas
5262 * that prevent this.
5263 */
5264int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
5265{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005266 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05005267 u32 stat, v, o;
5268 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02005269
vignesh babu229f5af2007-08-13 18:23:14 +05305270 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005271 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005272
5273 v = ffs(mmrbc) - 10;
5274
5275 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
5276 if (!cap)
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005277 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005278
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005279 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
5280 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005281
5282 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
5283 return -E2BIG;
5284
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005285 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
5286 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005287
5288 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
5289 if (o != v) {
Bjorn Helgaas809a3bf2012-06-20 16:41:16 -06005290 if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
Peter Orubad556ad42007-05-15 13:59:13 +02005291 return -EIO;
5292
5293 cmd &= ~PCI_X_CMD_MAX_READ;
5294 cmd |= v << 2;
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005295 if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
5296 return -EIO;
Peter Orubad556ad42007-05-15 13:59:13 +02005297 }
Dean Nelson7c9e2b12010-03-09 22:26:55 -05005298 return 0;
Peter Orubad556ad42007-05-15 13:59:13 +02005299}
5300EXPORT_SYMBOL(pcix_set_mmrbc);
5301
5302/**
5303 * pcie_get_readrq - get PCI Express read request size
5304 * @dev: PCI device to query
5305 *
5306 * Returns maximum memory read request in bytes
5307 * or appropriate error value.
5308 */
5309int pcie_get_readrq(struct pci_dev *dev)
5310{
Peter Orubad556ad42007-05-15 13:59:13 +02005311 u16 ctl;
5312
Jiang Liu59875ae2012-07-24 17:20:06 +08005313 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Peter Orubad556ad42007-05-15 13:59:13 +02005314
Jiang Liu59875ae2012-07-24 17:20:06 +08005315 return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
Peter Orubad556ad42007-05-15 13:59:13 +02005316}
5317EXPORT_SYMBOL(pcie_get_readrq);
5318
5319/**
5320 * pcie_set_readrq - set PCI Express maximum memory read request
5321 * @dev: PCI device to query
Randy Dunlap42e61f4a2007-07-23 21:42:11 -07005322 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02005323 * valid values are 128, 256, 512, 1024, 2048, 4096
5324 *
Jon Masonc9b378c2011-06-28 18:26:25 -05005325 * If possible sets maximum memory read request in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02005326 */
5327int pcie_set_readrq(struct pci_dev *dev, int rq)
5328{
Jiang Liu59875ae2012-07-24 17:20:06 +08005329 u16 v;
Peter Orubad556ad42007-05-15 13:59:13 +02005330
vignesh babu229f5af2007-08-13 18:23:14 +05305331 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Jiang Liu59875ae2012-07-24 17:20:06 +08005332 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02005333
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05005334 /*
5335 * If using the "performance" PCIe config, we clamp the
5336 * read rq size to the max packet size to prevent the
5337 * host bridge generating requests larger than we can
5338 * cope with
5339 */
5340 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
5341 int mps = pcie_get_mps(dev);
5342
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05005343 if (mps < rq)
5344 rq = mps;
5345 }
5346
5347 v = (ffs(rq) - 8) << 12;
Peter Orubad556ad42007-05-15 13:59:13 +02005348
Jiang Liu59875ae2012-07-24 17:20:06 +08005349 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
5350 PCI_EXP_DEVCTL_READRQ, v);
Peter Orubad556ad42007-05-15 13:59:13 +02005351}
5352EXPORT_SYMBOL(pcie_set_readrq);
5353
5354/**
Jon Masonb03e7492011-07-20 15:20:54 -05005355 * pcie_get_mps - get PCI Express maximum payload size
5356 * @dev: PCI device to query
5357 *
5358 * Returns maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05005359 */
5360int pcie_get_mps(struct pci_dev *dev)
5361{
Jon Masonb03e7492011-07-20 15:20:54 -05005362 u16 ctl;
5363
Jiang Liu59875ae2012-07-24 17:20:06 +08005364 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Jon Masonb03e7492011-07-20 15:20:54 -05005365
Jiang Liu59875ae2012-07-24 17:20:06 +08005366 return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
Jon Masonb03e7492011-07-20 15:20:54 -05005367}
Yijing Wangf1c66c42013-09-24 12:08:06 -06005368EXPORT_SYMBOL(pcie_get_mps);
Jon Masonb03e7492011-07-20 15:20:54 -05005369
5370/**
5371 * pcie_set_mps - set PCI Express maximum payload size
5372 * @dev: PCI device to query
Randy Dunlap47c08f32011-08-20 11:49:43 -07005373 * @mps: maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05005374 * valid values are 128, 256, 512, 1024, 2048, 4096
5375 *
5376 * If possible sets maximum payload size
5377 */
5378int pcie_set_mps(struct pci_dev *dev, int mps)
5379{
Jiang Liu59875ae2012-07-24 17:20:06 +08005380 u16 v;
Jon Masonb03e7492011-07-20 15:20:54 -05005381
5382 if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
Jiang Liu59875ae2012-07-24 17:20:06 +08005383 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05005384
5385 v = ffs(mps) - 8;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07005386 if (v > dev->pcie_mpss)
Jiang Liu59875ae2012-07-24 17:20:06 +08005387 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05005388 v <<= 5;
5389
Jiang Liu59875ae2012-07-24 17:20:06 +08005390 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
5391 PCI_EXP_DEVCTL_PAYLOAD, v);
Jon Masonb03e7492011-07-20 15:20:54 -05005392}
Yijing Wangf1c66c42013-09-24 12:08:06 -06005393EXPORT_SYMBOL(pcie_set_mps);
Jon Masonb03e7492011-07-20 15:20:54 -05005394
5395/**
Tal Gilboa6db79a82018-03-30 08:37:44 -05005396 * pcie_bandwidth_available - determine minimum link settings of a PCIe
5397 * device and its bandwidth limitation
5398 * @dev: PCI device to query
5399 * @limiting_dev: storage for device causing the bandwidth limitation
5400 * @speed: storage for speed of limiting device
5401 * @width: storage for width of limiting device
5402 *
5403 * Walk up the PCI device chain and find the point where the minimum
5404 * bandwidth is available. Return the bandwidth available there and (if
5405 * limiting_dev, speed, and width pointers are supplied) information about
5406 * that point. The bandwidth returned is in Mb/s, i.e., megabits/second of
5407 * raw bandwidth.
5408 */
5409u32 pcie_bandwidth_available(struct pci_dev *dev, struct pci_dev **limiting_dev,
5410 enum pci_bus_speed *speed,
5411 enum pcie_link_width *width)
5412{
5413 u16 lnksta;
5414 enum pci_bus_speed next_speed;
5415 enum pcie_link_width next_width;
5416 u32 bw, next_bw;
5417
5418 if (speed)
5419 *speed = PCI_SPEED_UNKNOWN;
5420 if (width)
5421 *width = PCIE_LNK_WIDTH_UNKNOWN;
5422
5423 bw = 0;
5424
5425 while (dev) {
5426 pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
5427
5428 next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
5429 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
5430 PCI_EXP_LNKSTA_NLW_SHIFT;
5431
5432 next_bw = next_width * PCIE_SPEED2MBS_ENC(next_speed);
5433
5434 /* Check if current device limits the total bandwidth */
5435 if (!bw || next_bw <= bw) {
5436 bw = next_bw;
5437
5438 if (limiting_dev)
5439 *limiting_dev = dev;
5440 if (speed)
5441 *speed = next_speed;
5442 if (width)
5443 *width = next_width;
5444 }
5445
5446 dev = pci_upstream_bridge(dev);
5447 }
5448
5449 return bw;
5450}
5451EXPORT_SYMBOL(pcie_bandwidth_available);
5452
5453/**
Tal Gilboa6cf57be2018-03-30 07:44:05 -05005454 * pcie_get_speed_cap - query for the PCI device's link speed capability
5455 * @dev: PCI device to query
5456 *
5457 * Query the PCI device speed capability. Return the maximum link speed
5458 * supported by the device.
5459 */
5460enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev)
5461{
5462 u32 lnkcap2, lnkcap;
5463
5464 /*
5465 * PCIe r4.0 sec 7.5.3.18 recommends using the Supported Link
5466 * Speeds Vector in Link Capabilities 2 when supported, falling
5467 * back to Max Link Speed in Link Capabilities otherwise.
5468 */
5469 pcie_capability_read_dword(dev, PCI_EXP_LNKCAP2, &lnkcap2);
5470 if (lnkcap2) { /* PCIe r3.0-compliant */
5471 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_16_0GB)
5472 return PCIE_SPEED_16_0GT;
5473 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
5474 return PCIE_SPEED_8_0GT;
5475 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
5476 return PCIE_SPEED_5_0GT;
5477 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
5478 return PCIE_SPEED_2_5GT;
5479 return PCI_SPEED_UNKNOWN;
5480 }
5481
5482 pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &lnkcap);
5483 if (lnkcap) {
5484 if (lnkcap & PCI_EXP_LNKCAP_SLS_16_0GB)
5485 return PCIE_SPEED_16_0GT;
5486 else if (lnkcap & PCI_EXP_LNKCAP_SLS_8_0GB)
5487 return PCIE_SPEED_8_0GT;
5488 else if (lnkcap & PCI_EXP_LNKCAP_SLS_5_0GB)
5489 return PCIE_SPEED_5_0GT;
5490 else if (lnkcap & PCI_EXP_LNKCAP_SLS_2_5GB)
5491 return PCIE_SPEED_2_5GT;
5492 }
5493
5494 return PCI_SPEED_UNKNOWN;
5495}
Alex Deucher576c7212018-06-25 13:17:41 -05005496EXPORT_SYMBOL(pcie_get_speed_cap);
Tal Gilboa6cf57be2018-03-30 07:44:05 -05005497
5498/**
Tal Gilboac70b65f2018-03-30 08:24:36 -05005499 * pcie_get_width_cap - query for the PCI device's link width capability
5500 * @dev: PCI device to query
5501 *
5502 * Query the PCI device width capability. Return the maximum link width
5503 * supported by the device.
5504 */
5505enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev)
5506{
5507 u32 lnkcap;
5508
5509 pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &lnkcap);
5510 if (lnkcap)
5511 return (lnkcap & PCI_EXP_LNKCAP_MLW) >> 4;
5512
5513 return PCIE_LNK_WIDTH_UNKNOWN;
5514}
Alex Deucher576c7212018-06-25 13:17:41 -05005515EXPORT_SYMBOL(pcie_get_width_cap);
Tal Gilboac70b65f2018-03-30 08:24:36 -05005516
5517/**
Tal Gilboab852f632018-03-30 08:32:03 -05005518 * pcie_bandwidth_capable - calculate a PCI device's link bandwidth capability
5519 * @dev: PCI device
5520 * @speed: storage for link speed
5521 * @width: storage for link width
5522 *
5523 * Calculate a PCI device's link bandwidth by querying for its link speed
5524 * and width, multiplying them, and applying encoding overhead. The result
5525 * is in Mb/s, i.e., megabits/second of raw bandwidth.
5526 */
5527u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed,
5528 enum pcie_link_width *width)
5529{
5530 *speed = pcie_get_speed_cap(dev);
5531 *width = pcie_get_width_cap(dev);
5532
5533 if (*speed == PCI_SPEED_UNKNOWN || *width == PCIE_LNK_WIDTH_UNKNOWN)
5534 return 0;
5535
5536 return *width * PCIE_SPEED2MBS_ENC(*speed);
5537}
5538
5539/**
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005540 * __pcie_print_link_status - Report the PCI device's link speed and width
Tal Gilboa9e506a72018-03-30 08:56:47 -05005541 * @dev: PCI device to query
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005542 * @verbose: Print info even when enough bandwidth is available
Tal Gilboa9e506a72018-03-30 08:56:47 -05005543 *
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005544 * If the available bandwidth at the device is less than the device is
5545 * capable of, report the device's maximum possible bandwidth and the
5546 * upstream link that limits its performance. If @verbose, always print
5547 * the available bandwidth, even if the device isn't constrained.
Tal Gilboa9e506a72018-03-30 08:56:47 -05005548 */
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005549void __pcie_print_link_status(struct pci_dev *dev, bool verbose)
Tal Gilboa9e506a72018-03-30 08:56:47 -05005550{
5551 enum pcie_link_width width, width_cap;
5552 enum pci_bus_speed speed, speed_cap;
5553 struct pci_dev *limiting_dev = NULL;
5554 u32 bw_avail, bw_cap;
5555
5556 bw_cap = pcie_bandwidth_capable(dev, &speed_cap, &width_cap);
5557 bw_avail = pcie_bandwidth_available(dev, &limiting_dev, &speed, &width);
5558
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005559 if (bw_avail >= bw_cap && verbose)
Jakub Kicinski0cf22d62018-04-20 12:56:36 -05005560 pci_info(dev, "%u.%03u Gb/s available PCIe bandwidth (%s x%d link)\n",
Tal Gilboa9e506a72018-03-30 08:56:47 -05005561 bw_cap / 1000, bw_cap % 1000,
5562 PCIE_SPEED2STR(speed_cap), width_cap);
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005563 else if (bw_avail < bw_cap)
Jakub Kicinski0cf22d62018-04-20 12:56:36 -05005564 pci_info(dev, "%u.%03u Gb/s available PCIe bandwidth, limited by %s x%d link at %s (capable of %u.%03u Gb/s with %s x%d link)\n",
Tal Gilboa9e506a72018-03-30 08:56:47 -05005565 bw_avail / 1000, bw_avail % 1000,
5566 PCIE_SPEED2STR(speed), width,
5567 limiting_dev ? pci_name(limiting_dev) : "<unknown>",
5568 bw_cap / 1000, bw_cap % 1000,
5569 PCIE_SPEED2STR(speed_cap), width_cap);
5570}
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05005571
5572/**
5573 * pcie_print_link_status - Report the PCI device's link speed and width
5574 * @dev: PCI device to query
5575 *
5576 * Report the available bandwidth at the device.
5577 */
5578void pcie_print_link_status(struct pci_dev *dev)
5579{
5580 __pcie_print_link_status(dev, true);
5581}
Tal Gilboa9e506a72018-03-30 08:56:47 -05005582EXPORT_SYMBOL(pcie_print_link_status);
5583
5584/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09005585 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08005586 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09005587 * @flags: resource type mask to be selected
5588 *
5589 * This helper routine makes bar mask from the type of resource.
5590 */
5591int pci_select_bars(struct pci_dev *dev, unsigned long flags)
5592{
5593 int i, bars = 0;
5594 for (i = 0; i < PCI_NUM_RESOURCES; i++)
5595 if (pci_resource_flags(dev, i) & flags)
5596 bars |= (1 << i);
5597 return bars;
5598}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06005599EXPORT_SYMBOL(pci_select_bars);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09005600
Mike Travis95a8b6e2010-02-02 14:38:13 -08005601/* Some architectures require additional programming to enable VGA */
5602static arch_set_vga_state_t arch_set_vga_state;
5603
5604void __init pci_register_set_vga_state(arch_set_vga_state_t func)
5605{
5606 arch_set_vga_state = func; /* NULL disables */
5607}
5608
5609static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04005610 unsigned int command_bits, u32 flags)
Mike Travis95a8b6e2010-02-02 14:38:13 -08005611{
5612 if (arch_set_vga_state)
5613 return arch_set_vga_state(dev, decode, command_bits,
Dave Airlie7ad35cf2011-05-25 14:00:49 +10005614 flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08005615 return 0;
5616}
5617
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005618/**
5619 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07005620 * @dev: the PCI device
5621 * @decode: true = enable decoding, false = disable decoding
5622 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
Randy Dunlap3f37d622011-05-25 19:21:25 -07005623 * @flags: traverse ancestors and change bridges
Dave Airlie3448a192010-06-01 15:32:24 +10005624 * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005625 */
5626int pci_set_vga_state(struct pci_dev *dev, bool decode,
Dave Airlie3448a192010-06-01 15:32:24 +10005627 unsigned int command_bits, u32 flags)
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005628{
5629 struct pci_bus *bus;
5630 struct pci_dev *bridge;
5631 u16 cmd;
Mike Travis95a8b6e2010-02-02 14:38:13 -08005632 int rc;
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005633
Bjorn Helgaas67ebd812014-04-05 15:14:22 -06005634 WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) && (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005635
Mike Travis95a8b6e2010-02-02 14:38:13 -08005636 /* ARCH specific VGA enables */
Dave Airlie3448a192010-06-01 15:32:24 +10005637 rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08005638 if (rc)
5639 return rc;
5640
Dave Airlie3448a192010-06-01 15:32:24 +10005641 if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
5642 pci_read_config_word(dev, PCI_COMMAND, &cmd);
5643 if (decode == true)
5644 cmd |= command_bits;
5645 else
5646 cmd &= ~command_bits;
5647 pci_write_config_word(dev, PCI_COMMAND, cmd);
5648 }
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005649
Dave Airlie3448a192010-06-01 15:32:24 +10005650 if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10005651 return 0;
5652
5653 bus = dev->bus;
5654 while (bus) {
5655 bridge = bus->self;
5656 if (bridge) {
5657 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
5658 &cmd);
5659 if (decode == true)
5660 cmd |= PCI_BRIDGE_CTL_VGA;
5661 else
5662 cmd &= ~PCI_BRIDGE_CTL_VGA;
5663 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
5664 cmd);
5665 }
5666 bus = bus->parent;
5667 }
5668 return 0;
5669}
5670
Bjorn Helgaasf0af9592016-02-24 13:43:45 -06005671/**
5672 * pci_add_dma_alias - Add a DMA devfn alias for a device
5673 * @dev: the PCI device for which alias is added
5674 * @devfn: alias slot and function
5675 *
Logan Gunthorpef778a0d2018-05-30 14:13:11 -06005676 * This helper encodes an 8-bit devfn as a bit number in dma_alias_mask
5677 * which is used to program permissible bus-devfn source addresses for DMA
5678 * requests in an IOMMU. These aliases factor into IOMMU group creation
5679 * and are useful for devices generating DMA requests beyond or different
5680 * from their logical bus-devfn. Examples include device quirks where the
5681 * device simply uses the wrong devfn, as well as non-transparent bridges
5682 * where the alias may be a proxy for devices in another domain.
5683 *
5684 * IOMMU group creation is performed during device discovery or addition,
5685 * prior to any potential DMA mapping and therefore prior to driver probing
5686 * (especially for userspace assigned devices where IOMMU group definition
5687 * cannot be left as a userspace activity). DMA aliases should therefore
5688 * be configured via quirks, such as the PCI fixup header quirk.
Bjorn Helgaasf0af9592016-02-24 13:43:45 -06005689 */
5690void pci_add_dma_alias(struct pci_dev *dev, u8 devfn)
5691{
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +01005692 if (!dev->dma_alias_mask)
5693 dev->dma_alias_mask = kcalloc(BITS_TO_LONGS(U8_MAX),
5694 sizeof(long), GFP_KERNEL);
5695 if (!dev->dma_alias_mask) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06005696 pci_warn(dev, "Unable to allocate DMA alias mask\n");
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +01005697 return;
5698 }
5699
5700 set_bit(devfn, dev->dma_alias_mask);
Frederick Lawler7506dc72018-01-18 12:55:24 -06005701 pci_info(dev, "Enabling fixed DMA alias to %02x.%d\n",
Bjorn Helgaas48c83082016-02-24 13:43:54 -06005702 PCI_SLOT(devfn), PCI_FUNC(devfn));
Bjorn Helgaasf0af9592016-02-24 13:43:45 -06005703}
5704
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +01005705bool pci_devs_are_dma_aliases(struct pci_dev *dev1, struct pci_dev *dev2)
5706{
5707 return (dev1->dma_alias_mask &&
5708 test_bit(dev2->devfn, dev1->dma_alias_mask)) ||
5709 (dev2->dma_alias_mask &&
5710 test_bit(dev1->devfn, dev2->dma_alias_mask));
5711}
5712
Rafael J. Wysocki8496e852013-12-01 02:34:37 +01005713bool pci_device_is_present(struct pci_dev *pdev)
5714{
5715 u32 v;
5716
Keith Buschfe2bd752017-03-29 22:49:17 -05005717 if (pci_dev_is_disconnected(pdev))
5718 return false;
Rafael J. Wysocki8496e852013-12-01 02:34:37 +01005719 return pci_bus_read_dev_vendor_id(pdev->bus, pdev->devfn, &v, 0);
5720}
5721EXPORT_SYMBOL_GPL(pci_device_is_present);
5722
Rafael J. Wysocki08249652015-04-13 16:23:36 +02005723void pci_ignore_hotplug(struct pci_dev *dev)
5724{
5725 struct pci_dev *bridge = dev->bus->self;
5726
5727 dev->ignore_hotplug = 1;
5728 /* Propagate the "ignore hotplug" setting to the parent bridge. */
5729 if (bridge)
5730 bridge->ignore_hotplug = 1;
5731}
5732EXPORT_SYMBOL_GPL(pci_ignore_hotplug);
5733
Yongji Xie0a701aa2017-04-10 19:58:12 +08005734resource_size_t __weak pcibios_default_alignment(void)
5735{
5736 return 0;
5737}
5738
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005739#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
5740static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00005741static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005742
5743/**
5744 * pci_specified_resource_alignment - get resource alignment specified by user.
5745 * @dev: the PCI device to get
Yongji Xiee3adec72017-04-10 19:58:14 +08005746 * @resize: whether or not to change resources' size when reassigning alignment
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005747 *
5748 * RETURNS: Resource alignment if it is specified.
5749 * Zero if it is not specified.
5750 */
Yongji Xiee3adec72017-04-10 19:58:14 +08005751static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev,
5752 bool *resize)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005753{
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -06005754 int align_order, count;
Yongji Xie0a701aa2017-04-10 19:58:12 +08005755 resource_size_t align = pcibios_default_alignment();
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -06005756 const char *p;
5757 int ret;
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005758
5759 spin_lock(&resource_alignment_lock);
5760 p = resource_alignment_param;
Yongji Xie0a701aa2017-04-10 19:58:12 +08005761 if (!*p && !align)
Yongji Xief0b99f72016-09-13 17:00:31 +08005762 goto out;
5763 if (pci_has_flag(PCI_PROBE_ONLY)) {
Yongji Xie0a701aa2017-04-10 19:58:12 +08005764 align = 0;
Yongji Xief0b99f72016-09-13 17:00:31 +08005765 pr_info_once("PCI: Ignoring requested alignments (PCI_PROBE_ONLY)\n");
5766 goto out;
5767 }
5768
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005769 while (*p) {
5770 count = 0;
5771 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
5772 p[count] == '@') {
5773 p += count + 1;
5774 } else {
5775 align_order = -1;
5776 }
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -06005777
5778 ret = pci_dev_str_match(dev, p, &p);
5779 if (ret == 1) {
5780 *resize = true;
5781 if (align_order == -1)
5782 align = PAGE_SIZE;
5783 else
5784 align = 1 << align_order;
5785 break;
5786 } else if (ret < 0) {
5787 pr_err("PCI: Can't parse resource_alignment parameter: %s\n",
5788 p);
5789 break;
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005790 }
Logan Gunthorpe07d8d7e2018-07-30 10:18:37 -06005791
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005792 if (*p != ';' && *p != ',') {
5793 /* End of param or invalid format */
5794 break;
5795 }
5796 p++;
5797 }
Yongji Xief0b99f72016-09-13 17:00:31 +08005798out:
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005799 spin_unlock(&resource_alignment_lock);
5800 return align;
5801}
5802
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005803static void pci_request_resource_alignment(struct pci_dev *dev, int bar,
Yongji Xiee3adec72017-04-10 19:58:14 +08005804 resource_size_t align, bool resize)
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005805{
5806 struct resource *r = &dev->resource[bar];
5807 resource_size_t size;
5808
5809 if (!(r->flags & IORESOURCE_MEM))
5810 return;
5811
5812 if (r->flags & IORESOURCE_PCI_FIXED) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06005813 pci_info(dev, "BAR%d %pR: ignoring requested alignment %#llx\n",
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005814 bar, r, (unsigned long long)align);
5815 return;
5816 }
5817
5818 size = resource_size(r);
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005819 if (size >= align)
5820 return;
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005821
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005822 /*
Yongji Xiee3adec72017-04-10 19:58:14 +08005823 * Increase the alignment of the resource. There are two ways we
5824 * can do this:
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005825 *
Yongji Xiee3adec72017-04-10 19:58:14 +08005826 * 1) Increase the size of the resource. BARs are aligned on their
5827 * size, so when we reallocate space for this resource, we'll
5828 * allocate it with the larger alignment. This also prevents
5829 * assignment of any other BARs inside the alignment region, so
5830 * if we're requesting page alignment, this means no other BARs
5831 * will share the page.
5832 *
5833 * The disadvantage is that this makes the resource larger than
5834 * the hardware BAR, which may break drivers that compute things
5835 * based on the resource size, e.g., to find registers at a
5836 * fixed offset before the end of the BAR.
5837 *
5838 * 2) Retain the resource size, but use IORESOURCE_STARTALIGN and
5839 * set r->start to the desired alignment. By itself this
5840 * doesn't prevent other BARs being put inside the alignment
5841 * region, but if we realign *every* resource of every device in
5842 * the system, none of them will share an alignment region.
5843 *
5844 * When the user has requested alignment for only some devices via
5845 * the "pci=resource_alignment" argument, "resize" is true and we
5846 * use the first method. Otherwise we assume we're aligning all
5847 * devices and we use the second.
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005848 */
Yongji Xiee3adec72017-04-10 19:58:14 +08005849
Frederick Lawler7506dc72018-01-18 12:55:24 -06005850 pci_info(dev, "BAR%d %pR: requesting alignment to %#llx\n",
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005851 bar, r, (unsigned long long)align);
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005852
Yongji Xiee3adec72017-04-10 19:58:14 +08005853 if (resize) {
5854 r->start = 0;
5855 r->end = align - 1;
5856 } else {
5857 r->flags &= ~IORESOURCE_SIZEALIGN;
5858 r->flags |= IORESOURCE_STARTALIGN;
5859 r->start = align;
5860 r->end = r->start + size - 1;
5861 }
Bjorn Helgaas0dde1c02017-04-17 15:20:58 -05005862 r->flags |= IORESOURCE_UNSET;
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005863}
5864
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005865/*
5866 * This function disables memory decoding and releases memory resources
5867 * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
5868 * It also rounds up size to specified alignment.
5869 * Later on, the kernel will assign page-aligned memory resource back
5870 * to the device.
5871 */
5872void pci_reassigndev_resource_alignment(struct pci_dev *dev)
5873{
5874 int i;
5875 struct resource *r;
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005876 resource_size_t align;
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005877 u16 command;
Yongji Xiee3adec72017-04-10 19:58:14 +08005878 bool resize = false;
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005879
Yongji Xie62d9a782016-09-13 17:00:32 +08005880 /*
5881 * VF BARs are read-only zero according to SR-IOV spec r1.1, sec
5882 * 3.4.1.11. Their resources are allocated from the space
5883 * described by the VF BARx register in the PF's SR-IOV capability.
5884 * We can't influence their alignment here.
5885 */
5886 if (dev->is_virtfn)
5887 return;
5888
Yinghai Lu10c463a2012-03-18 22:46:26 -07005889 /* check if specified PCI is target device to reassign */
Yongji Xiee3adec72017-04-10 19:58:14 +08005890 align = pci_specified_resource_alignment(dev, &resize);
Yinghai Lu10c463a2012-03-18 22:46:26 -07005891 if (!align)
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005892 return;
5893
5894 if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
5895 (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06005896 pci_warn(dev, "Can't reassign resources to host bridge\n");
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005897 return;
5898 }
5899
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005900 pci_read_config_word(dev, PCI_COMMAND, &command);
5901 command &= ~PCI_COMMAND_MEMORY;
5902 pci_write_config_word(dev, PCI_COMMAND, command);
5903
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005904 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
Yongji Xiee3adec72017-04-10 19:58:14 +08005905 pci_request_resource_alignment(dev, i, align, resize);
Yongji Xief0b99f72016-09-13 17:00:31 +08005906
Bjorn Helgaas81a5e702017-04-14 14:12:06 -05005907 /*
5908 * Need to disable bridge's resource window,
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005909 * to enable the kernel to reassign new resource
5910 * window later on.
5911 */
5912 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
5913 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
5914 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
5915 r = &dev->resource[i];
5916 if (!(r->flags & IORESOURCE_MEM))
5917 continue;
Bjorn Helgaasbd064f02014-02-26 11:25:58 -07005918 r->flags |= IORESOURCE_UNSET;
Yinghai Lu2069ecf2012-02-15 21:40:31 -08005919 r->end = resource_size(r) - 1;
5920 r->start = 0;
5921 }
5922 pci_disable_bridge_window(dev);
5923 }
5924}
5925
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06005926static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005927{
5928 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
5929 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
5930 spin_lock(&resource_alignment_lock);
5931 strncpy(resource_alignment_param, buf, count);
5932 resource_alignment_param[count] = '\0';
5933 spin_unlock(&resource_alignment_lock);
5934 return count;
5935}
5936
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06005937static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005938{
5939 size_t count;
5940 spin_lock(&resource_alignment_lock);
5941 count = snprintf(buf, size, "%s", resource_alignment_param);
5942 spin_unlock(&resource_alignment_lock);
5943 return count;
5944}
5945
5946static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
5947{
5948 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
5949}
5950
5951static ssize_t pci_resource_alignment_store(struct bus_type *bus,
5952 const char *buf, size_t count)
5953{
5954 return pci_set_resource_alignment_param(buf, count);
5955}
5956
Ben Dooks21751a92016-06-09 11:42:13 +01005957static BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005958 pci_resource_alignment_store);
5959
5960static int __init pci_resource_alignment_sysfs_init(void)
5961{
5962 return bus_create_file(&pci_bus_type,
5963 &bus_attr_resource_alignment);
5964}
Yuji Shimada32a9a6822009-03-16 17:13:39 +09005965late_initcall(pci_resource_alignment_sysfs_init);
5966
Bill Pemberton15856ad2012-11-21 15:35:00 -05005967static void pci_no_domains(void)
Jeff Garzik32a2eea2007-10-11 16:57:27 -04005968{
5969#ifdef CONFIG_PCI_DOMAINS
5970 pci_domains_supported = 0;
5971#endif
5972}
5973
Jan Kiszkaae07b782018-05-15 11:07:00 +02005974#ifdef CONFIG_PCI_DOMAINS_GENERIC
Liviu Dudau41e5c0f2014-09-29 15:29:27 +01005975static atomic_t __domain_nr = ATOMIC_INIT(-1);
5976
Jan Kiszkaae07b782018-05-15 11:07:00 +02005977static int pci_get_new_domain_nr(void)
Liviu Dudau41e5c0f2014-09-29 15:29:27 +01005978{
5979 return atomic_inc_return(&__domain_nr);
5980}
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07005981
Tomasz Nowicki1a4f93f2016-06-10 21:55:15 +02005982static int of_pci_bus_find_domain_nr(struct device *parent)
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07005983{
5984 static int use_dt_domains = -1;
Krzysztof =?utf-8?Q?Ha=C5=82asa?=54c6e2d2016-03-01 07:07:18 +01005985 int domain = -1;
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07005986
Krzysztof =?utf-8?Q?Ha=C5=82asa?=54c6e2d2016-03-01 07:07:18 +01005987 if (parent)
5988 domain = of_get_pci_domain_nr(parent->of_node);
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07005989 /*
5990 * Check DT domain and use_dt_domains values.
5991 *
5992 * If DT domain property is valid (domain >= 0) and
5993 * use_dt_domains != 0, the DT assignment is valid since this means
5994 * we have not previously allocated a domain number by using
5995 * pci_get_new_domain_nr(); we should also update use_dt_domains to
5996 * 1, to indicate that we have just assigned a domain number from
5997 * DT.
5998 *
5999 * If DT domain property value is not valid (ie domain < 0), and we
6000 * have not previously assigned a domain number from DT
6001 * (use_dt_domains != 1) we should assign a domain number by
6002 * using the:
6003 *
6004 * pci_get_new_domain_nr()
6005 *
6006 * API and update the use_dt_domains value to keep track of method we
6007 * are using to assign domain numbers (use_dt_domains = 0).
6008 *
6009 * All other combinations imply we have a platform that is trying
6010 * to mix domain numbers obtained from DT and pci_get_new_domain_nr(),
6011 * which is a recipe for domain mishandling and it is prevented by
6012 * invalidating the domain value (domain = -1) and printing a
6013 * corresponding error.
6014 */
6015 if (domain >= 0 && use_dt_domains) {
6016 use_dt_domains = 1;
6017 } else if (domain < 0 && use_dt_domains != 1) {
6018 use_dt_domains = 0;
6019 domain = pci_get_new_domain_nr();
6020 } else {
Shawn Lin9df1c6e2018-03-01 09:26:55 +08006021 if (parent)
6022 pr_err("Node %pOF has ", parent->of_node);
6023 pr_err("Inconsistent \"linux,pci-domain\" property in DT\n");
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07006024 domain = -1;
6025 }
6026
Tomasz Nowicki9c7cb892016-06-10 21:55:14 +02006027 return domain;
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07006028}
Tomasz Nowicki1a4f93f2016-06-10 21:55:15 +02006029
6030int pci_bus_find_domain_nr(struct pci_bus *bus, struct device *parent)
6031{
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -05006032 return acpi_disabled ? of_pci_bus_find_domain_nr(parent) :
6033 acpi_pci_bus_find_domain_nr(bus);
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07006034}
6035#endif
Liviu Dudau41e5c0f2014-09-29 15:29:27 +01006036
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07006037/**
Taku Izumi642c92d2012-10-30 15:26:18 +09006038 * pci_ext_cfg_avail - can we access extended PCI config space?
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07006039 *
6040 * Returns 1 if we can access PCI extended config space (offsets
6041 * greater than 0xff). This is the default implementation. Architecture
6042 * implementations can override this.
6043 */
Taku Izumi642c92d2012-10-30 15:26:18 +09006044int __weak pci_ext_cfg_avail(void)
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07006045{
6046 return 1;
6047}
6048
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11006049void __weak pci_fixup_cardbus(struct pci_bus *bus)
6050{
6051}
6052EXPORT_SYMBOL(pci_fixup_cardbus);
6053
Al Viroad04d312008-11-22 17:37:14 +00006054static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055{
6056 while (str) {
6057 char *k = strchr(str, ',');
6058 if (k)
6059 *k++ = 0;
6060 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07006061 if (!strcmp(str, "nomsi")) {
6062 pci_no_msi();
Gil Kupfercef74402018-05-10 17:56:02 -05006063 } else if (!strncmp(str, "noats", 5)) {
6064 pr_info("PCIe: ATS is disabled\n");
6065 pcie_ats_disabled = true;
Randy Dunlap7f785762007-10-05 13:17:58 -07006066 } else if (!strcmp(str, "noaer")) {
6067 pci_no_aer();
Sinan Kaya11eb0e02018-06-04 22:16:09 -04006068 } else if (!strcmp(str, "earlydump")) {
6069 pci_early_dump = true;
Yinghai Lub55438f2012-02-23 19:23:30 -08006070 } else if (!strncmp(str, "realloc=", 8)) {
6071 pci_realloc_get_opt(str + 8);
Ram Paif483d392011-07-07 11:19:10 -07006072 } else if (!strncmp(str, "realloc", 7)) {
Yinghai Lub55438f2012-02-23 19:23:30 -08006073 pci_realloc_get_opt("on");
Jeff Garzik32a2eea2007-10-11 16:57:27 -04006074 } else if (!strcmp(str, "nodomains")) {
6075 pci_no_domains();
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01006076 } else if (!strncmp(str, "noari", 5)) {
6077 pcie_ari_disabled = true;
Atsushi Nemoto4516a612007-02-05 16:36:06 -08006078 } else if (!strncmp(str, "cbiosize=", 9)) {
6079 pci_cardbus_io_size = memparse(str + 9, &str);
6080 } else if (!strncmp(str, "cbmemsize=", 10)) {
6081 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09006082 } else if (!strncmp(str, "resource_alignment=", 19)) {
6083 pci_set_resource_alignment_param(str + 19,
6084 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06006085 } else if (!strncmp(str, "ecrc=", 5)) {
6086 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07006087 } else if (!strncmp(str, "hpiosize=", 9)) {
6088 pci_hotplug_io_size = memparse(str + 9, &str);
6089 } else if (!strncmp(str, "hpmemsize=", 10)) {
6090 pci_hotplug_mem_size = memparse(str + 10, &str);
Keith Busche16b4662016-07-21 21:40:28 -06006091 } else if (!strncmp(str, "hpbussize=", 10)) {
6092 pci_hotplug_bus_size =
6093 simple_strtoul(str + 10, &str, 0);
6094 if (pci_hotplug_bus_size > 0xff)
6095 pci_hotplug_bus_size = DEFAULT_HOTPLUG_BUS_SIZE;
Jon Mason5f39e672011-10-03 09:50:20 -05006096 } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
6097 pcie_bus_config = PCIE_BUS_TUNE_OFF;
Jon Masonb03e7492011-07-20 15:20:54 -05006098 } else if (!strncmp(str, "pcie_bus_safe", 13)) {
6099 pcie_bus_config = PCIE_BUS_SAFE;
6100 } else if (!strncmp(str, "pcie_bus_perf", 13)) {
6101 pcie_bus_config = PCIE_BUS_PERFORMANCE;
Jon Mason5f39e672011-10-03 09:50:20 -05006102 } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
6103 pcie_bus_config = PCIE_BUS_PEER2PEER;
Bjorn Helgaas284f5f92012-04-30 15:21:02 -06006104 } else if (!strncmp(str, "pcie_scan_all", 13)) {
6105 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
Logan Gunthorpeaaca43f2018-07-30 10:18:40 -06006106 } else if (!strncmp(str, "disable_acs_redir=", 18)) {
6107 disable_acs_redir_param = str + 18;
Matthew Wilcox309e57d2006-03-05 22:33:34 -07006108 } else {
6109 printk(KERN_ERR "PCI: Unknown option `%s'\n",
6110 str);
6111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 }
6113 str = k;
6114 }
Andi Kleen0637a702006-09-26 10:52:41 +02006115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116}
Andi Kleen0637a702006-09-26 10:52:41 +02006117early_param("pci", pci_setup);