blob: 8d796c02ee9022f079e71f3270cce1b956480678 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * PCI Bus Services, see include/linux/pci.h for further explanation.
3 *
4 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
5 * David Mosberger-Tang
6 *
7 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
8 */
9
10#include <linux/kernel.h>
11#include <linux/delay.h>
12#include <linux/init.h>
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -070013#include <linux/of.h>
14#include <linux/of_pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pci.h>
David Brownell075c1772007-04-26 00:12:06 -070016#include <linux/pm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080020#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053021#include <linux/log2.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080022#include <linux/pci-aspm.h>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020023#include <linux/pm_wakeup.h>
Sheng Yang8dd7f802008-10-21 17:38:25 +080024#include <linux/interrupt.h>
Yuji Shimada32a9a6822009-03-16 17:13:39 +090025#include <linux/device.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010026#include <linux/pm_runtime.h>
Alex Williamson608c3882013-08-08 14:09:43 -060027#include <linux/pci_hotplug.h>
Bjorn Helgaas284f5f92012-04-30 15:21:02 -060028#include <asm-generic/pci-bridge.h>
Yuji Shimada32a9a6822009-03-16 17:13:39 +090029#include <asm/setup.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090030#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Alan Stern00240c32009-04-27 13:33:16 -040032const char *pci_power_names[] = {
33 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
34};
35EXPORT_SYMBOL_GPL(pci_power_names);
36
Rafael J. Wysocki93177a72010-01-02 22:57:24 +010037int isa_dma_bridge_buggy;
38EXPORT_SYMBOL(isa_dma_bridge_buggy);
39
40int pci_pci_problems;
41EXPORT_SYMBOL(pci_pci_problems);
42
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010043unsigned int pci_pm_d3_delay;
44
Matthew Garrettdf17e622010-10-04 14:22:29 -040045static void pci_pme_list_scan(struct work_struct *work);
46
47static LIST_HEAD(pci_pme_list);
48static DEFINE_MUTEX(pci_pme_list_mutex);
49static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
50
51struct pci_pme_device {
52 struct list_head list;
53 struct pci_dev *dev;
54};
55
56#define PME_TIMEOUT 1000 /* How long between PME checks */
57
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010058static void pci_dev_d3_sleep(struct pci_dev *dev)
59{
60 unsigned int delay = dev->d3_delay;
61
62 if (delay < pci_pm_d3_delay)
63 delay = pci_pm_d3_delay;
64
65 msleep(delay);
66}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Garzik32a2eea2007-10-11 16:57:27 -040068#ifdef CONFIG_PCI_DOMAINS
69int pci_domains_supported = 1;
70#endif
71
Atsushi Nemoto4516a612007-02-05 16:36:06 -080072#define DEFAULT_CARDBUS_IO_SIZE (256)
73#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
74/* pci=cbmemsize=nnM,cbiosize=nn can override this */
75unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
76unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
77
Eric W. Biederman28760482009-09-09 14:09:24 -070078#define DEFAULT_HOTPLUG_IO_SIZE (256)
79#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
80/* pci=hpmemsize=nnM,hpiosize=nn can override this */
81unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
82unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
83
Keith Busch27d868b2015-08-24 08:48:16 -050084enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_DEFAULT;
Jon Masonb03e7492011-07-20 15:20:54 -050085
Jesse Barnesac1aa472009-10-26 13:20:44 -070086/*
87 * The default CLS is used if arch didn't set CLS explicitly and not
88 * all pci devices agree on the same value. Arch can override either
89 * the dfl or actual value as it sees fit. Don't forget this is
90 * measured in 32-bit words, not bytes.
91 */
Bill Pemberton15856ad2012-11-21 15:35:00 -050092u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -070093u8 pci_cache_line_size;
94
Myron Stowe96c55902011-10-28 15:48:38 -060095/*
96 * If we set up a device for bus mastering, we need to check the latency
97 * timer as certain BIOSes forget to set it properly.
98 */
99unsigned int pcibios_max_latency = 255;
100
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +0100101/* If set, the PCIe ARI capability will not be used. */
102static bool pcie_ari_disabled;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/**
105 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
106 * @bus: pointer to PCI bus structure to search
107 *
108 * Given a PCI bus, returns the highest PCI bus number present in the set
109 * including the given PCI bus and its list of child PCI buses.
110 */
Ryan Desfosses07656d83082014-04-11 01:01:53 -0400111unsigned char pci_bus_max_busnr(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Yijing Wang94e6a9b2014-02-13 21:14:03 +0800113 struct pci_bus *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 unsigned char max, n;
115
Yinghai Lub918c622012-05-17 18:51:11 -0700116 max = bus->busn_res.end;
Yijing Wang94e6a9b2014-02-13 21:14:03 +0800117 list_for_each_entry(tmp, &bus->children, node) {
118 n = pci_bus_max_busnr(tmp);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400119 if (n > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 max = n;
121 }
122 return max;
123}
Kristen Accardib82db5c2006-01-17 16:56:56 -0800124EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Andrew Morton1684f5d2008-12-01 14:30:30 -0800126#ifdef CONFIG_HAS_IOMEM
127void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
128{
Bjorn Helgaas1f7bf3bf2015-03-12 12:30:11 -0500129 struct resource *res = &pdev->resource[bar];
130
Andrew Morton1684f5d2008-12-01 14:30:30 -0800131 /*
132 * Make sure the BAR is actually a memory resource, not an IO resource
133 */
Bjorn Helgaas646c0282015-03-12 12:30:15 -0500134 if (res->flags & IORESOURCE_UNSET || !(res->flags & IORESOURCE_MEM)) {
Bjorn Helgaas1f7bf3bf2015-03-12 12:30:11 -0500135 dev_warn(&pdev->dev, "can't ioremap BAR %d: %pR\n", bar, res);
Andrew Morton1684f5d2008-12-01 14:30:30 -0800136 return NULL;
137 }
Bjorn Helgaas1f7bf3bf2015-03-12 12:30:11 -0500138 return ioremap_nocache(res->start, resource_size(res));
Andrew Morton1684f5d2008-12-01 14:30:30 -0800139}
140EXPORT_SYMBOL_GPL(pci_ioremap_bar);
Luis R. Rodriguezc43996f2015-08-24 12:13:23 -0700141
142void __iomem *pci_ioremap_wc_bar(struct pci_dev *pdev, int bar)
143{
144 /*
145 * Make sure the BAR is actually a memory resource, not an IO resource
146 */
147 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
148 WARN_ON(1);
149 return NULL;
150 }
151 return ioremap_wc(pci_resource_start(pdev, bar),
152 pci_resource_len(pdev, bar));
153}
154EXPORT_SYMBOL_GPL(pci_ioremap_wc_bar);
Andrew Morton1684f5d2008-12-01 14:30:30 -0800155#endif
156
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100157
158static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
159 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700160{
161 u8 id;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700162 u16 ent;
163
164 pci_bus_read_config_byte(bus, devfn, pos, &pos);
Roland Dreier24a4e372005-10-28 17:35:34 -0700165
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100166 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700167 if (pos < 0x40)
168 break;
169 pos &= ~3;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700170 pci_bus_read_config_word(bus, devfn, pos, &ent);
171
172 id = ent & 0xff;
Roland Dreier24a4e372005-10-28 17:35:34 -0700173 if (id == 0xff)
174 break;
175 if (id == cap)
176 return pos;
Sean O. Stalley55db3202015-04-02 14:10:19 -0700177 pos = (ent >> 8);
Roland Dreier24a4e372005-10-28 17:35:34 -0700178 }
179 return 0;
180}
181
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100182static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
183 u8 pos, int cap)
184{
185 int ttl = PCI_FIND_CAP_TTL;
186
187 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
188}
189
Roland Dreier24a4e372005-10-28 17:35:34 -0700190int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
191{
192 return __pci_find_next_cap(dev->bus, dev->devfn,
193 pos + PCI_CAP_LIST_NEXT, cap);
194}
195EXPORT_SYMBOL_GPL(pci_find_next_capability);
196
Michael Ellermand3bac112006-11-22 18:26:16 +1100197static int __pci_bus_find_cap_start(struct pci_bus *bus,
198 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
203 if (!(status & PCI_STATUS_CAP_LIST))
204 return 0;
205
206 switch (hdr_type) {
207 case PCI_HEADER_TYPE_NORMAL:
208 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100209 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100211 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100213
214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/**
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700218 * pci_find_capability - query for devices' capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * @dev: PCI device to query
220 * @cap: capability code
221 *
222 * Tell if a device supports a given PCI capability.
223 * Returns the address of the requested capability structure within the
224 * device's PCI configuration space or 0 in case the device does not
225 * support it. Possible values for @cap:
226 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700227 * %PCI_CAP_ID_PM Power Management
228 * %PCI_CAP_ID_AGP Accelerated Graphics Port
229 * %PCI_CAP_ID_VPD Vital Product Data
230 * %PCI_CAP_ID_SLOTID Slot Identification
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * %PCI_CAP_ID_MSI Message Signalled Interrupts
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700232 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * %PCI_CAP_ID_PCIX PCI-X
234 * %PCI_CAP_ID_EXP PCI Express
235 */
236int pci_find_capability(struct pci_dev *dev, int cap)
237{
Michael Ellermand3bac112006-11-22 18:26:16 +1100238 int pos;
239
240 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
241 if (pos)
242 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
243
244 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600246EXPORT_SYMBOL(pci_find_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248/**
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700249 * pci_bus_find_capability - query for devices' capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * @bus: the PCI bus to query
251 * @devfn: PCI device to query
252 * @cap: capability code
253 *
254 * Like pci_find_capability() but works for pci devices that do not have a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700255 * pci_dev structure set up yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
257 * Returns the address of the requested capability structure within the
258 * device's PCI configuration space or 0 in case the device does not
259 * support it.
260 */
261int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
262{
Michael Ellermand3bac112006-11-22 18:26:16 +1100263 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 u8 hdr_type;
265
266 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
267
Michael Ellermand3bac112006-11-22 18:26:16 +1100268 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
269 if (pos)
270 pos = __pci_find_next_cap(bus, devfn, pos, cap);
271
272 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600274EXPORT_SYMBOL(pci_bus_find_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/**
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600277 * pci_find_next_ext_capability - Find an extended capability
278 * @dev: PCI device to query
279 * @start: address at which to start looking (0 to start at beginning of list)
280 * @cap: capability code
281 *
282 * Returns the address of the next matching extended capability structure
283 * within the device's PCI configuration space or 0 if the device does
284 * not support it. Some capabilities can occur several times, e.g., the
285 * vendor-specific capability, and this provides a way to find them all.
286 */
287int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
288{
289 u32 header;
290 int ttl;
291 int pos = PCI_CFG_SPACE_SIZE;
292
293 /* minimum 8 bytes per capability */
294 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
295
296 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
297 return 0;
298
299 if (start)
300 pos = start;
301
302 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
303 return 0;
304
305 /*
306 * If we have no capabilities, this is indicated by cap ID,
307 * cap version and next pointer all being 0.
308 */
309 if (header == 0)
310 return 0;
311
312 while (ttl-- > 0) {
313 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
314 return pos;
315
316 pos = PCI_EXT_CAP_NEXT(header);
317 if (pos < PCI_CFG_SPACE_SIZE)
318 break;
319
320 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
321 break;
322 }
323
324 return 0;
325}
326EXPORT_SYMBOL_GPL(pci_find_next_ext_capability);
327
328/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * pci_find_ext_capability - Find an extended capability
330 * @dev: PCI device to query
331 * @cap: capability code
332 *
333 * Returns the address of the requested extended capability structure
334 * within the device's PCI configuration space or 0 if the device does
335 * not support it. Possible values for @cap:
336 *
337 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
338 * %PCI_EXT_CAP_ID_VC Virtual Channel
339 * %PCI_EXT_CAP_ID_DSN Device Serial Number
340 * %PCI_EXT_CAP_ID_PWR Power Budgeting
341 */
342int pci_find_ext_capability(struct pci_dev *dev, int cap)
343{
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600344 return pci_find_next_ext_capability(dev, 0, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
Brice Goglin3a720d72006-05-23 06:10:01 -0400346EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100348static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
349{
350 int rc, ttl = PCI_FIND_CAP_TTL;
351 u8 cap, mask;
352
353 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
354 mask = HT_3BIT_CAP_MASK;
355 else
356 mask = HT_5BIT_CAP_MASK;
357
358 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
359 PCI_CAP_ID_HT, &ttl);
360 while (pos) {
361 rc = pci_read_config_byte(dev, pos + 3, &cap);
362 if (rc != PCIBIOS_SUCCESSFUL)
363 return 0;
364
365 if ((cap & mask) == ht_cap)
366 return pos;
367
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800368 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
369 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100370 PCI_CAP_ID_HT, &ttl);
371 }
372
373 return 0;
374}
375/**
376 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
377 * @dev: PCI device to query
378 * @pos: Position from which to continue searching
379 * @ht_cap: Hypertransport capability code
380 *
381 * To be used in conjunction with pci_find_ht_capability() to search for
382 * all capabilities matching @ht_cap. @pos should always be a value returned
383 * from pci_find_ht_capability().
384 *
385 * NB. To be 100% safe against broken PCI devices, the caller should take
386 * steps to avoid an infinite loop.
387 */
388int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
389{
390 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
391}
392EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
393
394/**
395 * pci_find_ht_capability - query a device's Hypertransport capabilities
396 * @dev: PCI device to query
397 * @ht_cap: Hypertransport capability code
398 *
399 * Tell if a device supports a given Hypertransport capability.
400 * Returns an address within the device's PCI configuration space
401 * or 0 in case the device does not support the request capability.
402 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
403 * which has a Hypertransport capability matching @ht_cap.
404 */
405int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
406{
407 int pos;
408
409 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
410 if (pos)
411 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
412
413 return pos;
414}
415EXPORT_SYMBOL_GPL(pci_find_ht_capability);
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/**
418 * pci_find_parent_resource - return resource region of parent bus of given region
419 * @dev: PCI device structure contains resources to be searched
420 * @res: child resource record for which parent is sought
421 *
422 * For given resource region of given device, return the resource
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700423 * region of parent bus the given region is contained in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400425struct resource *pci_find_parent_resource(const struct pci_dev *dev,
426 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 const struct pci_bus *bus = dev->bus;
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700429 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700432 pci_bus_for_each_resource(bus, r, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!r)
434 continue;
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700435 if (res->start && resource_contains(r, res)) {
436
437 /*
438 * If the window is prefetchable but the BAR is
439 * not, the allocator made a mistake.
440 */
441 if (r->flags & IORESOURCE_PREFETCH &&
442 !(res->flags & IORESOURCE_PREFETCH))
443 return NULL;
444
445 /*
446 * If we're below a transparent bridge, there may
447 * be both a positively-decoded aperture and a
448 * subtractively-decoded region that contain the BAR.
449 * We want the positively-decoded one, so this depends
450 * on pci_bus_for_each_resource() giving us those
451 * first.
452 */
453 return r;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Bjorn Helgaasf44116a2014-02-26 11:25:58 -0700456 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600458EXPORT_SYMBOL(pci_find_parent_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/**
Alex Williamson157e8762013-12-17 16:43:39 -0700461 * pci_wait_for_pending - wait for @mask bit(s) to clear in status word @pos
462 * @dev: the PCI device to operate on
463 * @pos: config space offset of status word
464 * @mask: mask of bit(s) to care about in status word
465 *
466 * Return 1 when mask bit(s) in status word clear, 0 otherwise.
467 */
468int pci_wait_for_pending(struct pci_dev *dev, int pos, u16 mask)
469{
470 int i;
471
472 /* Wait for Transaction Pending bit clean */
473 for (i = 0; i < 4; i++) {
474 u16 status;
475 if (i)
476 msleep((1 << (i - 1)) * 100);
477
478 pci_read_config_word(dev, pos, &status);
479 if (!(status & mask))
480 return 1;
481 }
482
483 return 0;
484}
485
486/**
John W. Linville064b53db2005-07-27 10:19:44 -0400487 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
488 * @dev: PCI device to have its BARs restored
489 *
490 * Restore the BAR values for a given device, so as to make it
491 * accessible by its driver.
492 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400493static void pci_restore_bars(struct pci_dev *dev)
John W. Linville064b53db2005-07-27 10:19:44 -0400494{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800495 int i;
John W. Linville064b53db2005-07-27 10:19:44 -0400496
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800497 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800498 pci_update_resource(dev, i);
John W. Linville064b53db2005-07-27 10:19:44 -0400499}
500
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200501static struct pci_platform_pm_ops *pci_platform_pm;
502
503int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
504{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200505 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +0100506 || !ops->sleep_wake)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200507 return -EINVAL;
508 pci_platform_pm = ops;
509 return 0;
510}
511
512static inline bool platform_pci_power_manageable(struct pci_dev *dev)
513{
514 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
515}
516
517static inline int platform_pci_set_power_state(struct pci_dev *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400518 pci_power_t t)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200519{
520 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
521}
522
523static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
524{
525 return pci_platform_pm ?
526 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
527}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700528
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200529static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
530{
531 return pci_platform_pm ?
532 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
533}
534
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100535static inline int platform_pci_run_wake(struct pci_dev *dev, bool enable)
536{
537 return pci_platform_pm ?
538 pci_platform_pm->run_wake(dev, enable) : -ENODEV;
539}
540
Rafael J. Wysockibac2a902015-01-21 02:17:42 +0100541static inline bool platform_pci_need_resume(struct pci_dev *dev)
542{
543 return pci_platform_pm ? pci_platform_pm->need_resume(dev) : false;
544}
545
John W. Linville064b53db2005-07-27 10:19:44 -0400546/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200547 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
548 * given PCI device
549 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200550 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200552 * RETURN VALUE:
553 * -EINVAL if the requested state is invalid.
554 * -EIO if device does not support PCI PM or its PM capabilities register has a
555 * wrong version, or device doesn't support the requested state.
556 * 0 if device already is in the requested state.
557 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100559static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200561 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200562 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100564 /* Check if we're already there */
565 if (dev->current_state == state)
566 return 0;
567
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200568 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700569 return -EIO;
570
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200571 if (state < PCI_D0 || state > PCI_D3hot)
572 return -EINVAL;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* Validate current state:
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700575 * Can enter D0 from any state, but if we can only go deeper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * to sleep if we're already in a low power state
577 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100578 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200579 && dev->current_state > state) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400580 dev_err(&dev->dev, "invalid power transition (from state %d to %d)\n",
581 dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200586 if ((state == PCI_D1 && !dev->d1_support)
587 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700588 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200590 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53db2005-07-27 10:19:44 -0400591
John W. Linville32a36582005-09-14 09:52:42 -0400592 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * This doesn't affect PME_Status, disables PME_En, and
594 * sets PowerState to 0.
595 */
John W. Linville32a36582005-09-14 09:52:42 -0400596 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400597 case PCI_D0:
598 case PCI_D1:
599 case PCI_D2:
600 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
601 pmcsr |= state;
602 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200603 case PCI_D3hot:
604 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400605 case PCI_UNKNOWN: /* Boot-up */
606 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100607 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200608 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400609 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400610 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400611 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400612 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
615 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200616 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 /* Mandatory power management transition delays */
619 /* see PCI PM 1.1 5.6.1 table 18 */
620 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100621 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100623 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200625 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
626 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
627 if (dev->current_state != state && printk_ratelimit())
Ryan Desfosses227f0642014-04-18 20:13:50 -0400628 dev_info(&dev->dev, "Refused to change power state, currently in D%d\n",
629 dev->current_state);
John W. Linville064b53db2005-07-27 10:19:44 -0400630
Huang Ying448bd852012-06-23 10:23:51 +0800631 /*
632 * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
John W. Linville064b53db2005-07-27 10:19:44 -0400633 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
634 * from D3hot to D0 _may_ perform an internal reset, thereby
635 * going to "D0 Uninitialized" rather than "D0 Initialized".
636 * For example, at least some versions of the 3c905B and the
637 * 3c556B exhibit this behaviour.
638 *
639 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
640 * devices in a D3hot state at boot. Consequently, we need to
641 * restore at least the BARs so that the device will be
642 * accessible to its driver.
643 */
644 if (need_restore)
645 pci_restore_bars(dev);
646
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100647 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800648 pcie_aspm_pm_state_change(dev->bus->self);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
651}
652
653/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200654 * pci_update_current_state - Read PCI power state of given device from its
655 * PCI PM registers and cache it
656 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100657 * @state: State to cache in case the device doesn't have the PM capability
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200658 */
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100659void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200660{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200661 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200662 u16 pmcsr;
663
Huang Ying448bd852012-06-23 10:23:51 +0800664 /*
665 * Configuration space is not accessible for device in
666 * D3cold, so just keep or set D3cold for safety
667 */
668 if (dev->current_state == PCI_D3cold)
669 return;
670 if (state == PCI_D3cold) {
671 dev->current_state = PCI_D3cold;
672 return;
673 }
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200674 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200675 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100676 } else {
677 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200678 }
679}
680
681/**
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600682 * pci_power_up - Put the given device into D0 forcibly
683 * @dev: PCI device to power up
684 */
685void pci_power_up(struct pci_dev *dev)
686{
687 if (platform_pci_power_manageable(dev))
688 platform_pci_set_power_state(dev, PCI_D0);
689
690 pci_raw_set_power_state(dev, PCI_D0);
691 pci_update_current_state(dev, PCI_D0);
692}
693
694/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100695 * pci_platform_power_transition - Use platform to change device power state
696 * @dev: PCI device to handle.
697 * @state: State to put the device into.
698 */
699static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
700{
701 int error;
702
703 if (platform_pci_power_manageable(dev)) {
704 error = platform_pci_set_power_state(dev, state);
705 if (!error)
706 pci_update_current_state(dev, state);
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000707 } else
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100708 error = -ENODEV;
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000709
710 if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
711 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100712
713 return error;
714}
715
716/**
Stephen Hemminger0b950f02014-01-10 17:14:48 -0700717 * pci_wakeup - Wake up a PCI device
718 * @pci_dev: Device to handle.
719 * @ign: ignored parameter
720 */
721static int pci_wakeup(struct pci_dev *pci_dev, void *ign)
722{
723 pci_wakeup_event(pci_dev);
724 pm_request_resume(&pci_dev->dev);
725 return 0;
726}
727
728/**
729 * pci_wakeup_bus - Walk given bus and wake up devices on it
730 * @bus: Top bus of the subtree to walk.
731 */
732static void pci_wakeup_bus(struct pci_bus *bus)
733{
734 if (bus)
735 pci_walk_bus(bus, pci_wakeup, NULL);
736}
737
738/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100739 * __pci_start_power_transition - Start power transition of a PCI device
740 * @dev: PCI device to handle.
741 * @state: State to put the device into.
742 */
743static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
744{
Huang Ying448bd852012-06-23 10:23:51 +0800745 if (state == PCI_D0) {
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100746 pci_platform_power_transition(dev, PCI_D0);
Huang Ying448bd852012-06-23 10:23:51 +0800747 /*
748 * Mandatory power management transition delays, see
749 * PCI Express Base Specification Revision 2.0 Section
750 * 6.6.1: Conventional Reset. Do not delay for
751 * devices powered on/off by corresponding bridge,
752 * because have already delayed for the bridge.
753 */
754 if (dev->runtime_d3cold) {
755 msleep(dev->d3cold_delay);
756 /*
757 * When powering on a bridge from D3cold, the
758 * whole hierarchy may be powered on into
759 * D0uninitialized state, resume them to give
760 * them a chance to suspend again
761 */
762 pci_wakeup_bus(dev->subordinate);
763 }
764 }
765}
766
767/**
768 * __pci_dev_set_current_state - Set current state of a PCI device
769 * @dev: Device to handle
770 * @data: pointer to state to be set
771 */
772static int __pci_dev_set_current_state(struct pci_dev *dev, void *data)
773{
774 pci_power_t state = *(pci_power_t *)data;
775
776 dev->current_state = state;
777 return 0;
778}
779
780/**
781 * __pci_bus_set_current_state - Walk given bus and set current state of devices
782 * @bus: Top bus of the subtree to walk.
783 * @state: state to be set
784 */
785static void __pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state)
786{
787 if (bus)
788 pci_walk_bus(bus, __pci_dev_set_current_state, &state);
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100789}
790
791/**
792 * __pci_complete_power_transition - Complete power transition of a PCI device
793 * @dev: PCI device to handle.
794 * @state: State to put the device into.
795 *
796 * This function should not be called directly by device drivers.
797 */
798int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
799{
Huang Ying448bd852012-06-23 10:23:51 +0800800 int ret;
801
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600802 if (state <= PCI_D0)
Huang Ying448bd852012-06-23 10:23:51 +0800803 return -EINVAL;
804 ret = pci_platform_power_transition(dev, state);
805 /* Power off the bridge may power off the whole hierarchy */
806 if (!ret && state == PCI_D3cold)
807 __pci_bus_set_current_state(dev->subordinate, PCI_D3cold);
808 return ret;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100809}
810EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
811
812/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200813 * pci_set_power_state - Set the power state of a PCI device
814 * @dev: PCI device to handle.
815 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
816 *
Nick Andrew877d0312009-01-26 11:06:57 +0100817 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200818 * the device's PCI PM registers.
819 *
820 * RETURN VALUE:
821 * -EINVAL if the requested state is invalid.
822 * -EIO if device does not support PCI PM or its PM capabilities register has a
823 * wrong version, or device doesn't support the requested state.
824 * 0 if device already is in the requested state.
825 * 0 if device's power state has been successfully changed.
826 */
827int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
828{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200829 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200830
831 /* bound the state we're entering */
Huang Ying448bd852012-06-23 10:23:51 +0800832 if (state > PCI_D3cold)
833 state = PCI_D3cold;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200834 else if (state < PCI_D0)
835 state = PCI_D0;
836 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
837 /*
838 * If the device or the parent bridge do not support PCI PM,
839 * ignore the request if we're doing anything other than putting
840 * it into D0 (which would only happen on boot).
841 */
842 return 0;
843
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600844 /* Check if we're already there */
845 if (dev->current_state == state)
846 return 0;
847
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100848 __pci_start_power_transition(dev, state);
849
Alan Cox979b1792008-07-24 17:18:38 +0100850 /* This device is quirked not to be put into D3, so
851 don't put it in D3 */
Huang Ying448bd852012-06-23 10:23:51 +0800852 if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
Alan Cox979b1792008-07-24 17:18:38 +0100853 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200854
Huang Ying448bd852012-06-23 10:23:51 +0800855 /*
856 * To put device in D3cold, we put device into D3hot in native
857 * way, then put device into D3cold with platform ops
858 */
859 error = pci_raw_set_power_state(dev, state > PCI_D3hot ?
860 PCI_D3hot : state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200861
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100862 if (!__pci_complete_power_transition(dev, state))
863 error = 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200864
865 return error;
866}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600867EXPORT_SYMBOL(pci_set_power_state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200868
869/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * pci_choose_state - Choose the power state of a PCI device
871 * @dev: PCI device to be suspended
872 * @state: target sleep state for the whole system. This is the value
873 * that is passed to suspend() function.
874 *
875 * Returns PCI power state suitable for given device and given system
876 * message.
877 */
878
879pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
880{
Shaohua Liab826ca2007-07-20 10:03:22 +0800881 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500882
Yijing Wang728cdb72013-06-18 16:22:14 +0800883 if (!dev->pm_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return PCI_D0;
885
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200886 ret = platform_pci_choose_state(dev);
887 if (ret != PCI_POWER_ERROR)
888 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700889
890 switch (state.event) {
891 case PM_EVENT_ON:
892 return PCI_D0;
893 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700894 case PM_EVENT_PRETHAW:
895 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700896 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100897 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700898 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600900 dev_info(&dev->dev, "unrecognized suspend event %d\n",
901 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 BUG();
903 }
904 return PCI_D0;
905}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906EXPORT_SYMBOL(pci_choose_state);
907
Yu Zhao89858512009-02-16 02:55:47 +0800908#define PCI_EXP_SAVE_REGS 7
909
Alex Williamsonfd0f7f72013-12-17 16:43:45 -0700910static struct pci_cap_saved_state *_pci_find_saved_cap(struct pci_dev *pci_dev,
911 u16 cap, bool extended)
Yinghai Lu34a48762012-02-11 00:18:41 -0800912{
913 struct pci_cap_saved_state *tmp;
Yinghai Lu34a48762012-02-11 00:18:41 -0800914
Sasha Levinb67bfe02013-02-27 17:06:00 -0800915 hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
Alex Williamsonfd0f7f72013-12-17 16:43:45 -0700916 if (tmp->cap.cap_extended == extended && tmp->cap.cap_nr == cap)
Yinghai Lu34a48762012-02-11 00:18:41 -0800917 return tmp;
918 }
919 return NULL;
920}
921
Alex Williamsonfd0f7f72013-12-17 16:43:45 -0700922struct pci_cap_saved_state *pci_find_saved_cap(struct pci_dev *dev, char cap)
923{
924 return _pci_find_saved_cap(dev, cap, false);
925}
926
927struct pci_cap_saved_state *pci_find_saved_ext_cap(struct pci_dev *dev, u16 cap)
928{
929 return _pci_find_saved_cap(dev, cap, true);
930}
931
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300932static int pci_save_pcie_state(struct pci_dev *dev)
933{
Jiang Liu59875ae2012-07-24 17:20:06 +0800934 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300935 struct pci_cap_saved_state *save_state;
936 u16 *cap;
937
Jiang Liu59875ae2012-07-24 17:20:06 +0800938 if (!pci_is_pcie(dev))
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300939 return 0;
940
Eric W. Biederman9f355752007-03-08 13:06:13 -0700941 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300942 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800943 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300944 return -ENOMEM;
945 }
Jiang Liu59875ae2012-07-24 17:20:06 +0800946
Alex Williamson24a4742f2011-05-10 10:02:11 -0600947 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +0800948 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &cap[i++]);
949 pcie_capability_read_word(dev, PCI_EXP_LNKCTL, &cap[i++]);
950 pcie_capability_read_word(dev, PCI_EXP_SLTCTL, &cap[i++]);
951 pcie_capability_read_word(dev, PCI_EXP_RTCTL, &cap[i++]);
952 pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &cap[i++]);
953 pcie_capability_read_word(dev, PCI_EXP_LNKCTL2, &cap[i++]);
954 pcie_capability_read_word(dev, PCI_EXP_SLTCTL2, &cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300955
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300956 return 0;
957}
958
959static void pci_restore_pcie_state(struct pci_dev *dev)
960{
Jiang Liu59875ae2012-07-24 17:20:06 +0800961 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300962 struct pci_cap_saved_state *save_state;
963 u16 *cap;
964
965 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Jiang Liu59875ae2012-07-24 17:20:06 +0800966 if (!save_state)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300967 return;
Jiang Liu59875ae2012-07-24 17:20:06 +0800968
Alex Williamson24a4742f2011-05-10 10:02:11 -0600969 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +0800970 pcie_capability_write_word(dev, PCI_EXP_DEVCTL, cap[i++]);
971 pcie_capability_write_word(dev, PCI_EXP_LNKCTL, cap[i++]);
972 pcie_capability_write_word(dev, PCI_EXP_SLTCTL, cap[i++]);
973 pcie_capability_write_word(dev, PCI_EXP_RTCTL, cap[i++]);
974 pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, cap[i++]);
975 pcie_capability_write_word(dev, PCI_EXP_LNKCTL2, cap[i++]);
976 pcie_capability_write_word(dev, PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300977}
978
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800979
980static int pci_save_pcix_state(struct pci_dev *dev)
981{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100982 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800983 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800984
985 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Wei Yang0a1a9b42015-06-30 09:16:44 +0800986 if (!pos)
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800987 return 0;
988
Shaohua Lif34303d2007-12-18 09:56:47 +0800989 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800990 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800991 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800992 return -ENOMEM;
993 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800994
Alex Williamson24a4742f2011-05-10 10:02:11 -0600995 pci_read_config_word(dev, pos + PCI_X_CMD,
996 (u16 *)save_state->cap.data);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100997
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800998 return 0;
999}
1000
1001static void pci_restore_pcix_state(struct pci_dev *dev)
1002{
1003 int i = 0, pos;
1004 struct pci_cap_saved_state *save_state;
1005 u16 *cap;
1006
1007 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
1008 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Wei Yang0a1a9b42015-06-30 09:16:44 +08001009 if (!save_state || !pos)
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001010 return;
Alex Williamson24a4742f2011-05-10 10:02:11 -06001011 cap = (u16 *)&save_state->cap.data[0];
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001012
1013 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001014}
1015
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017/**
1018 * pci_save_state - save the PCI configuration space of a device before suspending
1019 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001021int pci_save_state(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 int i;
1024 /* XXX: 100% dword access ok here? */
1025 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -02001026 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +01001027 dev->state_saved = true;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001028
1029 i = pci_save_pcie_state(dev);
1030 if (i != 0)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001031 return i;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001032
1033 i = pci_save_pcix_state(dev);
1034 if (i != 0)
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001035 return i;
Quentin Lambert79e50e72014-09-07 20:03:32 +02001036
Quentin Lambert754834b2014-11-06 17:45:55 +01001037 return pci_save_vc_state(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001039EXPORT_SYMBOL(pci_save_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001041static void pci_restore_config_dword(struct pci_dev *pdev, int offset,
1042 u32 saved_val, int retry)
1043{
1044 u32 val;
1045
1046 pci_read_config_dword(pdev, offset, &val);
1047 if (val == saved_val)
1048 return;
1049
1050 for (;;) {
Ryan Desfosses227f0642014-04-18 20:13:50 -04001051 dev_dbg(&pdev->dev, "restoring config space at offset %#x (was %#x, writing %#x)\n",
1052 offset, val, saved_val);
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001053 pci_write_config_dword(pdev, offset, saved_val);
1054 if (retry-- <= 0)
1055 return;
1056
1057 pci_read_config_dword(pdev, offset, &val);
1058 if (val == saved_val)
1059 return;
1060
1061 mdelay(1);
1062 }
1063}
1064
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001065static void pci_restore_config_space_range(struct pci_dev *pdev,
1066 int start, int end, int retry)
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001067{
1068 int index;
1069
1070 for (index = end; index >= start; index--)
1071 pci_restore_config_dword(pdev, 4 * index,
1072 pdev->saved_config_space[index],
1073 retry);
1074}
1075
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001076static void pci_restore_config_space(struct pci_dev *pdev)
1077{
1078 if (pdev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
1079 pci_restore_config_space_range(pdev, 10, 15, 0);
1080 /* Restore BARs before the command register. */
1081 pci_restore_config_space_range(pdev, 4, 9, 10);
1082 pci_restore_config_space_range(pdev, 0, 3, 0);
1083 } else {
1084 pci_restore_config_space_range(pdev, 0, 15, 0);
1085 }
1086}
1087
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001088/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 * pci_restore_state - Restore the saved state of a PCI device
1090 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
Jon Mason1d3c16a2010-11-30 17:43:26 -06001092void pci_restore_state(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Alek Duc82f63e2009-08-08 08:46:19 +08001094 if (!dev->state_saved)
Jon Mason1d3c16a2010-11-30 17:43:26 -06001095 return;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001096
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001097 /* PCI Express register must be restored first */
1098 pci_restore_pcie_state(dev);
Hao, Xudong1900ca12011-12-17 21:24:40 +08001099 pci_restore_ats_state(dev);
Alex Williamson425c1b22013-12-17 16:43:51 -07001100 pci_restore_vc_state(dev);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001101
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001102 pci_restore_config_space(dev);
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001103
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001104 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +08001105 pci_restore_msi_state(dev);
Alexander Duyckccbc1752015-07-07 12:24:35 -07001106
1107 /* Restore ACS and IOV configuration state */
1108 pci_enable_acs(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +08001109 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +11001110
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001111 dev->state_saved = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001113EXPORT_SYMBOL(pci_restore_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001115struct pci_saved_state {
1116 u32 config_space[16];
1117 struct pci_cap_saved_data cap[0];
1118};
1119
1120/**
1121 * pci_store_saved_state - Allocate and return an opaque struct containing
1122 * the device saved state.
1123 * @dev: PCI device that we're dealing with
1124 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001125 * Return NULL if no state or error.
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001126 */
1127struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev)
1128{
1129 struct pci_saved_state *state;
1130 struct pci_cap_saved_state *tmp;
1131 struct pci_cap_saved_data *cap;
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001132 size_t size;
1133
1134 if (!dev->state_saved)
1135 return NULL;
1136
1137 size = sizeof(*state) + sizeof(struct pci_cap_saved_data);
1138
Sasha Levinb67bfe02013-02-27 17:06:00 -08001139 hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001140 size += sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1141
1142 state = kzalloc(size, GFP_KERNEL);
1143 if (!state)
1144 return NULL;
1145
1146 memcpy(state->config_space, dev->saved_config_space,
1147 sizeof(state->config_space));
1148
1149 cap = state->cap;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001150 hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001151 size_t len = sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1152 memcpy(cap, &tmp->cap, len);
1153 cap = (struct pci_cap_saved_data *)((u8 *)cap + len);
1154 }
1155 /* Empty cap_save terminates list */
1156
1157 return state;
1158}
1159EXPORT_SYMBOL_GPL(pci_store_saved_state);
1160
1161/**
1162 * pci_load_saved_state - Reload the provided save state into struct pci_dev.
1163 * @dev: PCI device that we're dealing with
1164 * @state: Saved state returned from pci_store_saved_state()
1165 */
Konrad Rzeszutek Wilk98d9b272014-12-03 16:40:31 -05001166int pci_load_saved_state(struct pci_dev *dev,
1167 struct pci_saved_state *state)
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001168{
1169 struct pci_cap_saved_data *cap;
1170
1171 dev->state_saved = false;
1172
1173 if (!state)
1174 return 0;
1175
1176 memcpy(dev->saved_config_space, state->config_space,
1177 sizeof(state->config_space));
1178
1179 cap = state->cap;
1180 while (cap->size) {
1181 struct pci_cap_saved_state *tmp;
1182
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07001183 tmp = _pci_find_saved_cap(dev, cap->cap_nr, cap->cap_extended);
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001184 if (!tmp || tmp->cap.size != cap->size)
1185 return -EINVAL;
1186
1187 memcpy(tmp->cap.data, cap->data, tmp->cap.size);
1188 cap = (struct pci_cap_saved_data *)((u8 *)cap +
1189 sizeof(struct pci_cap_saved_data) + cap->size);
1190 }
1191
1192 dev->state_saved = true;
1193 return 0;
1194}
Konrad Rzeszutek Wilk98d9b272014-12-03 16:40:31 -05001195EXPORT_SYMBOL_GPL(pci_load_saved_state);
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001196
1197/**
1198 * pci_load_and_free_saved_state - Reload the save state pointed to by state,
1199 * and free the memory allocated for it.
1200 * @dev: PCI device that we're dealing with
1201 * @state: Pointer to saved state returned from pci_store_saved_state()
1202 */
1203int pci_load_and_free_saved_state(struct pci_dev *dev,
1204 struct pci_saved_state **state)
1205{
1206 int ret = pci_load_saved_state(dev, *state);
1207 kfree(*state);
1208 *state = NULL;
1209 return ret;
1210}
1211EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
1212
Bjorn Helgaas8a9d5602014-02-26 11:26:00 -07001213int __weak pcibios_enable_device(struct pci_dev *dev, int bars)
1214{
1215 return pci_enable_resources(dev, bars);
1216}
1217
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001218static int do_pci_enable_device(struct pci_dev *dev, int bars)
1219{
1220 int err;
Vidya Sagar1f6ae472014-07-16 15:33:42 +05301221 struct pci_dev *bridge;
Bjorn Helgaas1e2571a2014-01-29 16:13:51 -07001222 u16 cmd;
1223 u8 pin;
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001224
1225 err = pci_set_power_state(dev, PCI_D0);
1226 if (err < 0 && err != -EIO)
1227 return err;
Vidya Sagar1f6ae472014-07-16 15:33:42 +05301228
1229 bridge = pci_upstream_bridge(dev);
1230 if (bridge)
1231 pcie_aspm_powersave_config_link(bridge);
1232
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001233 err = pcibios_enable_device(dev, bars);
1234 if (err < 0)
1235 return err;
1236 pci_fixup_device(pci_fixup_enable, dev);
1237
Bjorn Helgaas866d5412014-03-07 16:06:05 -07001238 if (dev->msi_enabled || dev->msix_enabled)
1239 return 0;
1240
Bjorn Helgaas1e2571a2014-01-29 16:13:51 -07001241 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
1242 if (pin) {
1243 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1244 if (cmd & PCI_COMMAND_INTX_DISABLE)
1245 pci_write_config_word(dev, PCI_COMMAND,
1246 cmd & ~PCI_COMMAND_INTX_DISABLE);
1247 }
1248
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001249 return 0;
1250}
1251
1252/**
Tejun Heo0b62e132007-07-27 14:43:35 +09001253 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001254 * @dev: PCI device to be resumed
1255 *
1256 * Note this function is a backend of pci_default_resume and is not supposed
1257 * to be called by normal code, write proper resume handler and use it instead.
1258 */
Tejun Heo0b62e132007-07-27 14:43:35 +09001259int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001260{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001261 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001262 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
1263 return 0;
1264}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001265EXPORT_SYMBOL(pci_reenable_device);
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001266
Yinghai Lu928bea92013-07-22 14:37:17 -07001267static void pci_enable_bridge(struct pci_dev *dev)
1268{
Bjorn Helgaas79272132013-11-06 10:00:51 -07001269 struct pci_dev *bridge;
Yinghai Lu928bea92013-07-22 14:37:17 -07001270 int retval;
1271
Bjorn Helgaas79272132013-11-06 10:00:51 -07001272 bridge = pci_upstream_bridge(dev);
1273 if (bridge)
1274 pci_enable_bridge(bridge);
Yinghai Lu928bea92013-07-22 14:37:17 -07001275
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001276 if (pci_is_enabled(dev)) {
Bjorn Helgaasfbeeb822013-11-05 13:34:51 -07001277 if (!dev->is_busmaster)
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001278 pci_set_master(dev);
Yinghai Lu928bea92013-07-22 14:37:17 -07001279 return;
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001280 }
1281
Yinghai Lu928bea92013-07-22 14:37:17 -07001282 retval = pci_enable_device(dev);
1283 if (retval)
1284 dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n",
1285 retval);
1286 pci_set_master(dev);
1287}
1288
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001289static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Bjorn Helgaas79272132013-11-06 10:00:51 -07001291 struct pci_dev *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001293 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Jesse Barnes97c145f2010-11-05 15:16:36 -04001295 /*
1296 * Power state could be unknown at this point, either due to a fresh
1297 * boot or a device removal call. So get the current power state
1298 * so that things like MSI message writing will behave as expected
1299 * (e.g. if the device really is in D0 at enable time).
1300 */
1301 if (dev->pm_cap) {
1302 u16 pmcsr;
1303 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1304 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
1305 }
1306
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001307 if (atomic_inc_return(&dev->enable_cnt) > 1)
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001308 return 0; /* already enabled */
1309
Bjorn Helgaas79272132013-11-06 10:00:51 -07001310 bridge = pci_upstream_bridge(dev);
1311 if (bridge)
1312 pci_enable_bridge(bridge);
Yinghai Lu928bea92013-07-22 14:37:17 -07001313
Yinghai Lu497f16f2011-12-17 18:33:37 -08001314 /* only skip sriov related */
1315 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
1316 if (dev->resource[i].flags & flags)
1317 bars |= (1 << i);
1318 for (i = PCI_BRIDGE_RESOURCES; i < DEVICE_COUNT_RESOURCE; i++)
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001319 if (dev->resource[i].flags & flags)
1320 bars |= (1 << i);
1321
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001322 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -07001323 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001324 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001325 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001329 * pci_enable_device_io - Initialize a device for use with IO space
1330 * @dev: PCI device to be initialized
1331 *
1332 * Initialize device before it's used by a driver. Ask low-level code
1333 * to enable I/O resources. Wake up the device if it was suspended.
1334 * Beware, this function can fail.
1335 */
1336int pci_enable_device_io(struct pci_dev *dev)
1337{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001338 return pci_enable_device_flags(dev, IORESOURCE_IO);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001339}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001340EXPORT_SYMBOL(pci_enable_device_io);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001341
1342/**
1343 * pci_enable_device_mem - Initialize a device for use with Memory space
1344 * @dev: PCI device to be initialized
1345 *
1346 * Initialize device before it's used by a driver. Ask low-level code
1347 * to enable Memory resources. Wake up the device if it was suspended.
1348 * Beware, this function can fail.
1349 */
1350int pci_enable_device_mem(struct pci_dev *dev)
1351{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001352 return pci_enable_device_flags(dev, IORESOURCE_MEM);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001353}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001354EXPORT_SYMBOL(pci_enable_device_mem);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/**
1357 * pci_enable_device - Initialize device before it's used by a driver.
1358 * @dev: PCI device to be initialized
1359 *
1360 * Initialize device before it's used by a driver. Ask low-level code
1361 * to enable I/O and memory. Wake up the device if it was suspended.
1362 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001363 *
1364 * Note we don't actually enable the device many times if we call
1365 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001367int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001369 return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001371EXPORT_SYMBOL(pci_enable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Tejun Heo9ac78492007-01-20 16:00:26 +09001373/*
1374 * Managed PCI resources. This manages device on/off, intx/msi/msix
1375 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1376 * there's no need to track it separately. pci_devres is initialized
1377 * when a device is enabled using managed PCI device enable interface.
1378 */
1379struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001380 unsigned int enabled:1;
1381 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001382 unsigned int orig_intx:1;
1383 unsigned int restore_intx:1;
1384 u32 region_mask;
1385};
1386
1387static void pcim_release(struct device *gendev, void *res)
1388{
1389 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1390 struct pci_devres *this = res;
1391 int i;
1392
1393 if (dev->msi_enabled)
1394 pci_disable_msi(dev);
1395 if (dev->msix_enabled)
1396 pci_disable_msix(dev);
1397
1398 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1399 if (this->region_mask & (1 << i))
1400 pci_release_region(dev, i);
1401
1402 if (this->restore_intx)
1403 pci_intx(dev, this->orig_intx);
1404
Tejun Heo7f375f32007-02-25 04:36:01 -08001405 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001406 pci_disable_device(dev);
1407}
1408
Ryan Desfosses07656d83082014-04-11 01:01:53 -04001409static struct pci_devres *get_pci_dr(struct pci_dev *pdev)
Tejun Heo9ac78492007-01-20 16:00:26 +09001410{
1411 struct pci_devres *dr, *new_dr;
1412
1413 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1414 if (dr)
1415 return dr;
1416
1417 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1418 if (!new_dr)
1419 return NULL;
1420 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1421}
1422
Ryan Desfosses07656d83082014-04-11 01:01:53 -04001423static struct pci_devres *find_pci_dr(struct pci_dev *pdev)
Tejun Heo9ac78492007-01-20 16:00:26 +09001424{
1425 if (pci_is_managed(pdev))
1426 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1427 return NULL;
1428}
1429
1430/**
1431 * pcim_enable_device - Managed pci_enable_device()
1432 * @pdev: PCI device to be initialized
1433 *
1434 * Managed pci_enable_device().
1435 */
1436int pcim_enable_device(struct pci_dev *pdev)
1437{
1438 struct pci_devres *dr;
1439 int rc;
1440
1441 dr = get_pci_dr(pdev);
1442 if (unlikely(!dr))
1443 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001444 if (dr->enabled)
1445 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001446
1447 rc = pci_enable_device(pdev);
1448 if (!rc) {
1449 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001450 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001451 }
1452 return rc;
1453}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001454EXPORT_SYMBOL(pcim_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001455
1456/**
1457 * pcim_pin_device - Pin managed PCI device
1458 * @pdev: PCI device to pin
1459 *
1460 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1461 * driver detach. @pdev must have been enabled with
1462 * pcim_enable_device().
1463 */
1464void pcim_pin_device(struct pci_dev *pdev)
1465{
1466 struct pci_devres *dr;
1467
1468 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001469 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001470 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001471 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001472}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001473EXPORT_SYMBOL(pcim_pin_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001474
Matthew Garretteca0d4672012-12-05 14:33:27 -07001475/*
1476 * pcibios_add_device - provide arch specific hooks when adding device dev
1477 * @dev: the PCI device being added
1478 *
1479 * Permits the platform to provide architecture specific functionality when
1480 * devices are added. This is the default implementation. Architecture
1481 * implementations can override this.
1482 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001483int __weak pcibios_add_device(struct pci_dev *dev)
Matthew Garretteca0d4672012-12-05 14:33:27 -07001484{
1485 return 0;
1486}
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488/**
Sebastian Ott6ae32c52013-06-04 19:18:14 +02001489 * pcibios_release_device - provide arch specific hooks when releasing device dev
1490 * @dev: the PCI device being released
1491 *
1492 * Permits the platform to provide architecture specific functionality when
1493 * devices are released. This is the default implementation. Architecture
1494 * implementations can override this.
1495 */
1496void __weak pcibios_release_device(struct pci_dev *dev) {}
1497
1498/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 * pcibios_disable_device - disable arch specific PCI resources for device dev
1500 * @dev: the PCI device to disable
1501 *
1502 * Disables architecture specific PCI resources for the device. This
1503 * is the default implementation. Architecture implementations can
1504 * override this.
1505 */
Bjorn Helgaasd6d88c82012-06-19 06:54:49 -06001506void __weak pcibios_disable_device (struct pci_dev *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Hanjun Guoa43ae582014-05-06 11:29:52 +08001508/**
1509 * pcibios_penalize_isa_irq - penalize an ISA IRQ
1510 * @irq: ISA IRQ to penalize
1511 * @active: IRQ active or not
1512 *
1513 * Permits the platform to provide architecture-specific functionality when
1514 * penalizing ISA IRQs. This is the default implementation. Architecture
1515 * implementations can override this.
1516 */
1517void __weak pcibios_penalize_isa_irq(int irq, int active) {}
1518
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001519static void do_pci_disable_device(struct pci_dev *dev)
1520{
1521 u16 pci_command;
1522
1523 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1524 if (pci_command & PCI_COMMAND_MASTER) {
1525 pci_command &= ~PCI_COMMAND_MASTER;
1526 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1527 }
1528
1529 pcibios_disable_device(dev);
1530}
1531
1532/**
1533 * pci_disable_enabled_device - Disable device without updating enable_cnt
1534 * @dev: PCI device to disable
1535 *
1536 * NOTE: This function is a backend of PCI power management routines and is
1537 * not supposed to be called drivers.
1538 */
1539void pci_disable_enabled_device(struct pci_dev *dev)
1540{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001541 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001542 do_pci_disable_device(dev);
1543}
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545/**
1546 * pci_disable_device - Disable PCI device after use
1547 * @dev: PCI device to be disabled
1548 *
1549 * Signal to the system that the PCI device is not in use by the system
1550 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001551 *
1552 * Note we don't actually disable the device until all callers of
Roman Fietzeee6583f2010-05-18 14:45:47 +02001553 * pci_enable_device() have called pci_disable_device().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001555void pci_disable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Tejun Heo9ac78492007-01-20 16:00:26 +09001557 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001558
Tejun Heo9ac78492007-01-20 16:00:26 +09001559 dr = find_pci_dr(dev);
1560 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001561 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001562
Konstantin Khlebnikovfd6dcea2013-02-04 15:56:01 +04001563 dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
1564 "disabling already-disabled device");
1565
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001566 if (atomic_dec_return(&dev->enable_cnt) != 0)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001567 return;
1568
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001569 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001571 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001573EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001576 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001577 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001578 * @state: Reset state to enter into
1579 *
1580 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001581 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001582 * implementation. Architecture implementations can override this.
1583 */
Bjorn Helgaasd6d88c82012-06-19 06:54:49 -06001584int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
1585 enum pcie_reset_state state)
Brian Kingf7bdd122007-04-06 16:39:36 -05001586{
1587 return -EINVAL;
1588}
1589
1590/**
1591 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001592 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001593 * @state: Reset state to enter into
1594 *
1595 *
1596 * Sets the PCI reset state for the device.
1597 */
1598int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1599{
1600 return pcibios_set_pcie_reset_state(dev, state);
1601}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001602EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Brian Kingf7bdd122007-04-06 16:39:36 -05001603
1604/**
Rafael J. Wysocki58ff4632010-02-17 23:36:58 +01001605 * pci_check_pme_status - Check if given device has generated PME.
1606 * @dev: Device to check.
1607 *
1608 * Check the PME status of the device and if set, clear it and clear PME enable
1609 * (if set). Return 'true' if PME status and PME enable were both set or
1610 * 'false' otherwise.
1611 */
1612bool pci_check_pme_status(struct pci_dev *dev)
1613{
1614 int pmcsr_pos;
1615 u16 pmcsr;
1616 bool ret = false;
1617
1618 if (!dev->pm_cap)
1619 return false;
1620
1621 pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
1622 pci_read_config_word(dev, pmcsr_pos, &pmcsr);
1623 if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
1624 return false;
1625
1626 /* Clear PME status. */
1627 pmcsr |= PCI_PM_CTRL_PME_STATUS;
1628 if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
1629 /* Disable PME to avoid interrupt flood. */
1630 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1631 ret = true;
1632 }
1633
1634 pci_write_config_word(dev, pmcsr_pos, pmcsr);
1635
1636 return ret;
1637}
1638
1639/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001640 * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
1641 * @dev: Device to handle.
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001642 * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001643 *
1644 * Check if @dev has generated PME and queue a resume request for it in that
1645 * case.
1646 */
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001647static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001648{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001649 if (pme_poll_reset && dev->pme_poll)
1650 dev->pme_poll = false;
1651
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001652 if (pci_check_pme_status(dev)) {
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001653 pci_wakeup_event(dev);
Rafael J. Wysocki0f953bf2010-12-29 13:22:08 +01001654 pm_request_resume(&dev->dev);
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001655 }
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001656 return 0;
1657}
1658
1659/**
1660 * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
1661 * @bus: Top bus of the subtree to walk.
1662 */
1663void pci_pme_wakeup_bus(struct pci_bus *bus)
1664{
1665 if (bus)
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001666 pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001667}
1668
Huang Ying448bd852012-06-23 10:23:51 +08001669
1670/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001671 * pci_pme_capable - check the capability of PCI device to generate PME#
1672 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001673 * @state: PCI state from which device will issue PME#.
1674 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001675bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001676{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001677 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001678 return false;
1679
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001680 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001681}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001682EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001683
Matthew Garrettdf17e622010-10-04 14:22:29 -04001684static void pci_pme_list_scan(struct work_struct *work)
1685{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001686 struct pci_pme_device *pme_dev, *n;
Matthew Garrettdf17e622010-10-04 14:22:29 -04001687
1688 mutex_lock(&pci_pme_list_mutex);
Bjorn Helgaasce300002014-01-24 09:51:06 -07001689 list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
1690 if (pme_dev->dev->pme_poll) {
1691 struct pci_dev *bridge;
Zheng Yan71a83bd2012-06-23 10:23:49 +08001692
Bjorn Helgaasce300002014-01-24 09:51:06 -07001693 bridge = pme_dev->dev->bus->self;
1694 /*
1695 * If bridge is in low power state, the
1696 * configuration space of subordinate devices
1697 * may be not accessible
1698 */
1699 if (bridge && bridge->current_state != PCI_D0)
1700 continue;
1701 pci_pme_wakeup(pme_dev->dev, NULL);
1702 } else {
1703 list_del(&pme_dev->list);
1704 kfree(pme_dev);
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001705 }
Matthew Garrettdf17e622010-10-04 14:22:29 -04001706 }
Bjorn Helgaasce300002014-01-24 09:51:06 -07001707 if (!list_empty(&pci_pme_list))
1708 schedule_delayed_work(&pci_pme_work,
1709 msecs_to_jiffies(PME_TIMEOUT));
Matthew Garrettdf17e622010-10-04 14:22:29 -04001710 mutex_unlock(&pci_pme_list_mutex);
1711}
1712
1713/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001714 * pci_pme_active - enable or disable PCI device's PME# function
1715 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001716 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1717 *
1718 * The caller must verify that the device is capable of generating PME# before
1719 * calling this function with @enable equal to 'true'.
1720 */
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02001721void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001722{
1723 u16 pmcsr;
1724
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00001725 if (!dev->pme_support)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001726 return;
1727
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001728 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001729 /* Clear PME_Status by writing 1 to it and enable PME# */
1730 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1731 if (!enable)
1732 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1733
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001734 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001735
Huang Ying6e965e02012-10-26 13:07:51 +08001736 /*
1737 * PCI (as opposed to PCIe) PME requires that the device have
1738 * its PME# line hooked up correctly. Not all hardware vendors
1739 * do this, so the PME never gets delivered and the device
1740 * remains asleep. The easiest way around this is to
1741 * periodically walk the list of suspended devices and check
1742 * whether any have their PME flag set. The assumption is that
1743 * we'll wake up often enough anyway that this won't be a huge
1744 * hit, and the power savings from the devices will still be a
1745 * win.
1746 *
1747 * Although PCIe uses in-band PME message instead of PME# line
1748 * to report PME, PME does not work for some PCIe devices in
1749 * reality. For example, there are devices that set their PME
1750 * status bits, but don't really bother to send a PME message;
1751 * there are PCI Express Root Ports that don't bother to
1752 * trigger interrupts when they receive PME messages from the
1753 * devices below. So PME poll is used for PCIe devices too.
1754 */
Matthew Garrettdf17e622010-10-04 14:22:29 -04001755
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001756 if (dev->pme_poll) {
Matthew Garrettdf17e622010-10-04 14:22:29 -04001757 struct pci_pme_device *pme_dev;
1758 if (enable) {
1759 pme_dev = kmalloc(sizeof(struct pci_pme_device),
1760 GFP_KERNEL);
Bjorn Helgaas0394cb12013-10-16 12:32:53 -06001761 if (!pme_dev) {
1762 dev_warn(&dev->dev, "can't enable PME#\n");
1763 return;
1764 }
Matthew Garrettdf17e622010-10-04 14:22:29 -04001765 pme_dev->dev = dev;
1766 mutex_lock(&pci_pme_list_mutex);
1767 list_add(&pme_dev->list, &pci_pme_list);
1768 if (list_is_singular(&pci_pme_list))
1769 schedule_delayed_work(&pci_pme_work,
1770 msecs_to_jiffies(PME_TIMEOUT));
1771 mutex_unlock(&pci_pme_list_mutex);
1772 } else {
1773 mutex_lock(&pci_pme_list_mutex);
1774 list_for_each_entry(pme_dev, &pci_pme_list, list) {
1775 if (pme_dev->dev == dev) {
1776 list_del(&pme_dev->list);
1777 kfree(pme_dev);
1778 break;
1779 }
1780 }
1781 mutex_unlock(&pci_pme_list_mutex);
1782 }
1783 }
1784
Vincent Palatin85b85822011-12-05 11:51:18 -08001785 dev_dbg(&dev->dev, "PME# %s\n", enable ? "enabled" : "disabled");
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001786}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001787EXPORT_SYMBOL(pci_pme_active);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001788
1789/**
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001790 * __pci_enable_wake - enable PCI device as wakeup event source
David Brownell075c1772007-04-26 00:12:06 -07001791 * @dev: PCI device affected
1792 * @state: PCI state from which device will issue wakeup events
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001793 * @runtime: True if the events are to be generated at run time
David Brownell075c1772007-04-26 00:12:06 -07001794 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 *
David Brownell075c1772007-04-26 00:12:06 -07001796 * This enables the device as a wakeup event source, or disables it.
1797 * When such events involves platform-specific hooks, those hooks are
1798 * called automatically by this routine.
1799 *
1800 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001801 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001802 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001803 * RETURN VALUE:
1804 * 0 is returned on success
1805 * -EINVAL is returned if device is not supposed to wake up the system
1806 * Error code depending on the platform is returned if both the platform and
1807 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001809int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
1810 bool runtime, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001812 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001814 if (enable && !runtime && !device_may_wakeup(&dev->dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001815 return -EINVAL;
1816
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001817 /* Don't do the same thing twice in a row for one device. */
1818 if (!!enable == !!dev->wakeup_prepared)
1819 return 0;
1820
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001821 /*
1822 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1823 * Anderson we should be doing PME# wake enable followed by ACPI wake
1824 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001825 */
1826
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001827 if (enable) {
1828 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001829
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001830 if (pci_pme_capable(dev, state))
1831 pci_pme_active(dev, true);
1832 else
1833 ret = 1;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001834 error = runtime ? platform_pci_run_wake(dev, true) :
1835 platform_pci_sleep_wake(dev, true);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001836 if (ret)
1837 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001838 if (!ret)
1839 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001840 } else {
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001841 if (runtime)
1842 platform_pci_run_wake(dev, false);
1843 else
1844 platform_pci_sleep_wake(dev, false);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001845 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001846 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001847 }
1848
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001849 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001850}
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001851EXPORT_SYMBOL(__pci_enable_wake);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001852
1853/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001854 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1855 * @dev: PCI device to prepare
1856 * @enable: True to enable wake-up event generation; false to disable
1857 *
1858 * Many drivers want the device to wake up the system from D3_hot or D3_cold
1859 * and this function allows them to set that up cleanly - pci_enable_wake()
1860 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1861 * ordering constraints.
1862 *
1863 * This function only returns error code if the device is not capable of
1864 * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1865 * enable wake-up power for it.
1866 */
1867int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1868{
1869 return pci_pme_capable(dev, PCI_D3cold) ?
1870 pci_enable_wake(dev, PCI_D3cold, enable) :
1871 pci_enable_wake(dev, PCI_D3hot, enable);
1872}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001873EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001874
1875/**
Jesse Barnes37139072008-07-28 11:49:26 -07001876 * pci_target_state - find an appropriate low power state for a given PCI dev
1877 * @dev: PCI device
1878 *
1879 * Use underlying platform code to find a supported low power state for @dev.
1880 * If the platform can't manage @dev, return the deepest state from which it
1881 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001882 */
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001883static pci_power_t pci_target_state(struct pci_dev *dev)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001884{
1885 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001886
1887 if (platform_pci_power_manageable(dev)) {
1888 /*
1889 * Call the platform to choose the target state of the device
1890 * and enable wake-up from this state if supported.
1891 */
1892 pci_power_t state = platform_pci_choose_state(dev);
1893
1894 switch (state) {
1895 case PCI_POWER_ERROR:
1896 case PCI_UNKNOWN:
1897 break;
1898 case PCI_D1:
1899 case PCI_D2:
1900 if (pci_no_d1d2(dev))
1901 break;
1902 default:
1903 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001904 }
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02001905 } else if (!dev->pm_cap) {
1906 target_state = PCI_D0;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001907 } else if (device_may_wakeup(&dev->dev)) {
1908 /*
1909 * Find the deepest state from which the device can generate
1910 * wake-up events, make it the target state and enable device
1911 * to generate PME#.
1912 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001913 if (dev->pme_support) {
1914 while (target_state
1915 && !(dev->pme_support & (1 << target_state)))
1916 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001917 }
1918 }
1919
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001920 return target_state;
1921}
1922
1923/**
1924 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1925 * @dev: Device to handle.
1926 *
1927 * Choose the power state appropriate for the device depending on whether
1928 * it can wake up the system and/or is power manageable by the platform
1929 * (PCI_D3hot is the default) and put the device into that state.
1930 */
1931int pci_prepare_to_sleep(struct pci_dev *dev)
1932{
1933 pci_power_t target_state = pci_target_state(dev);
1934 int error;
1935
1936 if (target_state == PCI_POWER_ERROR)
1937 return -EIO;
1938
Rafael J. Wysocki8efb8c72009-03-30 21:46:27 +02001939 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001940
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001941 error = pci_set_power_state(dev, target_state);
1942
1943 if (error)
1944 pci_enable_wake(dev, target_state, false);
1945
1946 return error;
1947}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001948EXPORT_SYMBOL(pci_prepare_to_sleep);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001949
1950/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07001951 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001952 * @dev: Device to handle.
1953 *
Thomas Weber88393162010-03-16 11:47:56 +01001954 * Disable device's system wake-up capability and put it into D0.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001955 */
1956int pci_back_from_sleep(struct pci_dev *dev)
1957{
1958 pci_enable_wake(dev, PCI_D0, false);
1959 return pci_set_power_state(dev, PCI_D0);
1960}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001961EXPORT_SYMBOL(pci_back_from_sleep);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001962
1963/**
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001964 * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
1965 * @dev: PCI device being suspended.
1966 *
1967 * Prepare @dev to generate wake-up events at run time and put it into a low
1968 * power state.
1969 */
1970int pci_finish_runtime_suspend(struct pci_dev *dev)
1971{
1972 pci_power_t target_state = pci_target_state(dev);
1973 int error;
1974
1975 if (target_state == PCI_POWER_ERROR)
1976 return -EIO;
1977
Huang Ying448bd852012-06-23 10:23:51 +08001978 dev->runtime_d3cold = target_state == PCI_D3cold;
1979
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001980 __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
1981
1982 error = pci_set_power_state(dev, target_state);
1983
Huang Ying448bd852012-06-23 10:23:51 +08001984 if (error) {
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001985 __pci_enable_wake(dev, target_state, true, false);
Huang Ying448bd852012-06-23 10:23:51 +08001986 dev->runtime_d3cold = false;
1987 }
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001988
1989 return error;
1990}
1991
1992/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001993 * pci_dev_run_wake - Check if device can generate run-time wake-up events.
1994 * @dev: Device to check.
1995 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001996 * Return true if the device itself is capable of generating wake-up events
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001997 * (through the platform or using the native PCIe PME) or if the device supports
1998 * PME and one of its upstream bridges can generate wake-up events.
1999 */
2000bool pci_dev_run_wake(struct pci_dev *dev)
2001{
2002 struct pci_bus *bus = dev->bus;
2003
2004 if (device_run_wake(&dev->dev))
2005 return true;
2006
2007 if (!dev->pme_support)
2008 return false;
2009
2010 while (bus->parent) {
2011 struct pci_dev *bridge = bus->self;
2012
2013 if (device_run_wake(&bridge->dev))
2014 return true;
2015
2016 bus = bus->parent;
2017 }
2018
2019 /* We have reached the root bus. */
2020 if (bus->bridge)
2021 return device_run_wake(bus->bridge);
2022
2023 return false;
2024}
2025EXPORT_SYMBOL_GPL(pci_dev_run_wake);
2026
Rafael J. Wysockibac2a902015-01-21 02:17:42 +01002027/**
2028 * pci_dev_keep_suspended - Check if the device can stay in the suspended state.
2029 * @pci_dev: Device to check.
2030 *
2031 * Return 'true' if the device is runtime-suspended, it doesn't have to be
2032 * reconfigured due to wakeup settings difference between system and runtime
2033 * suspend and the current power state of it is suitable for the upcoming
2034 * (system) transition.
2035 */
2036bool pci_dev_keep_suspended(struct pci_dev *pci_dev)
2037{
2038 struct device *dev = &pci_dev->dev;
2039
2040 if (!pm_runtime_suspended(dev)
2041 || (device_can_wakeup(dev) && !device_may_wakeup(dev))
2042 || platform_pci_need_resume(pci_dev))
2043 return false;
2044
2045 return pci_target_state(pci_dev) == pci_dev->current_state;
2046}
2047
Huang Yingb3c32c42012-10-25 09:36:03 +08002048void pci_config_pm_runtime_get(struct pci_dev *pdev)
2049{
2050 struct device *dev = &pdev->dev;
2051 struct device *parent = dev->parent;
2052
2053 if (parent)
2054 pm_runtime_get_sync(parent);
2055 pm_runtime_get_noresume(dev);
2056 /*
2057 * pdev->current_state is set to PCI_D3cold during suspending,
2058 * so wait until suspending completes
2059 */
2060 pm_runtime_barrier(dev);
2061 /*
2062 * Only need to resume devices in D3cold, because config
2063 * registers are still accessible for devices suspended but
2064 * not in D3cold.
2065 */
2066 if (pdev->current_state == PCI_D3cold)
2067 pm_runtime_resume(dev);
2068}
2069
2070void pci_config_pm_runtime_put(struct pci_dev *pdev)
2071{
2072 struct device *dev = &pdev->dev;
2073 struct device *parent = dev->parent;
2074
2075 pm_runtime_put(dev);
2076 if (parent)
2077 pm_runtime_put_sync(parent);
2078}
2079
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01002080/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002081 * pci_pm_init - Initialize PM functions of given PCI device
2082 * @dev: PCI device to handle.
2083 */
2084void pci_pm_init(struct pci_dev *dev)
2085{
2086 int pm;
2087 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07002088
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01002089 pm_runtime_forbid(&dev->dev);
Huang Ying967577b2012-11-20 16:08:22 +08002090 pm_runtime_set_active(&dev->dev);
2091 pm_runtime_enable(&dev->dev);
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +01002092 device_enable_async_suspend(&dev->dev);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02002093 dev->wakeup_prepared = false;
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01002094
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002095 dev->pm_cap = 0;
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00002096 dev->pme_support = 0;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* find PCI PM capability in list */
2099 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07002100 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08002101 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002103 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002105 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
2106 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
2107 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08002108 return;
David Brownell075c1772007-04-26 00:12:06 -07002109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002111 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002112 dev->d3_delay = PCI_PM_D3_WAIT;
Huang Ying448bd852012-06-23 10:23:51 +08002113 dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
Huang Ying4f9c1392012-08-08 09:07:38 +08002114 dev->d3cold_allowed = true;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002115
2116 dev->d1_support = false;
2117 dev->d2_support = false;
2118 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002119 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002120 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002121 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002122 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002123
2124 if (dev->d1_support || dev->d2_support)
2125 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07002126 dev->d1_support ? " D1" : "",
2127 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002128 }
2129
2130 pmc &= PCI_PM_CAP_PME_MASK;
2131 if (pmc) {
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07002132 dev_printk(KERN_DEBUG, &dev->dev,
2133 "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06002134 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
2135 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
2136 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
2137 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
2138 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002139 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02002140 dev->pme_poll = true;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002141 /*
2142 * Make device's PM flags reflect the wake-up capability, but
2143 * let the user space enable it to wake up the system as needed.
2144 */
2145 device_set_wakeup_capable(&dev->dev, true);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002146 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002147 pci_pme_active(dev, false);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
Sean O. Stalley938174e2015-10-29 17:35:39 -05002151static unsigned long pci_ea_flags(struct pci_dev *dev, u8 prop)
2152{
2153 unsigned long flags = IORESOURCE_PCI_FIXED;
2154
2155 switch (prop) {
2156 case PCI_EA_P_MEM:
2157 case PCI_EA_P_VF_MEM:
2158 flags |= IORESOURCE_MEM;
2159 break;
2160 case PCI_EA_P_MEM_PREFETCH:
2161 case PCI_EA_P_VF_MEM_PREFETCH:
2162 flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
2163 break;
2164 case PCI_EA_P_IO:
2165 flags |= IORESOURCE_IO;
2166 break;
2167 default:
2168 return 0;
2169 }
2170
2171 return flags;
2172}
2173
2174static struct resource *pci_ea_get_resource(struct pci_dev *dev, u8 bei,
2175 u8 prop)
2176{
2177 if (bei <= PCI_EA_BEI_BAR5 && prop <= PCI_EA_P_IO)
2178 return &dev->resource[bei];
2179 else if (bei == PCI_EA_BEI_ROM)
2180 return &dev->resource[PCI_ROM_RESOURCE];
2181 else
2182 return NULL;
2183}
2184
2185/* Read an Enhanced Allocation (EA) entry */
2186static int pci_ea_read(struct pci_dev *dev, int offset)
2187{
2188 struct resource *res;
2189 int ent_size, ent_offset = offset;
2190 resource_size_t start, end;
2191 unsigned long flags;
2192 u32 dw0, base, max_offset;
2193 u8 prop;
2194 bool support_64 = (sizeof(resource_size_t) >= 8);
2195
2196 pci_read_config_dword(dev, ent_offset, &dw0);
2197 ent_offset += 4;
2198
2199 /* Entry size field indicates DWORDs after 1st */
2200 ent_size = ((dw0 & PCI_EA_ES) + 1) << 2;
2201
2202 if (!(dw0 & PCI_EA_ENABLE)) /* Entry not enabled */
2203 goto out;
2204
2205 prop = PCI_EA_PP(dw0);
2206 /*
2207 * If the Property is in the reserved range, try the Secondary
2208 * Property instead.
2209 */
2210 if (prop > PCI_EA_P_BRIDGE_IO && prop < PCI_EA_P_MEM_RESERVED)
2211 prop = PCI_EA_SP(dw0);
2212 if (prop > PCI_EA_P_BRIDGE_IO)
2213 goto out;
2214
2215 res = pci_ea_get_resource(dev, PCI_EA_BEI(dw0), prop);
2216 if (!res) {
2217 dev_err(&dev->dev, "Unsupported EA entry BEI: %u\n",
2218 PCI_EA_BEI(dw0));
2219 goto out;
2220 }
2221
2222 flags = pci_ea_flags(dev, prop);
2223 if (!flags) {
2224 dev_err(&dev->dev, "Unsupported EA properties: %#x\n", prop);
2225 goto out;
2226 }
2227
2228 /* Read Base */
2229 pci_read_config_dword(dev, ent_offset, &base);
2230 start = (base & PCI_EA_FIELD_MASK);
2231 ent_offset += 4;
2232
2233 /* Read MaxOffset */
2234 pci_read_config_dword(dev, ent_offset, &max_offset);
2235 ent_offset += 4;
2236
2237 /* Read Base MSBs (if 64-bit entry) */
2238 if (base & PCI_EA_IS_64) {
2239 u32 base_upper;
2240
2241 pci_read_config_dword(dev, ent_offset, &base_upper);
2242 ent_offset += 4;
2243
2244 flags |= IORESOURCE_MEM_64;
2245
2246 /* entry starts above 32-bit boundary, can't use */
2247 if (!support_64 && base_upper)
2248 goto out;
2249
2250 if (support_64)
2251 start |= ((u64)base_upper << 32);
2252 }
2253
2254 end = start + (max_offset | 0x03);
2255
2256 /* Read MaxOffset MSBs (if 64-bit entry) */
2257 if (max_offset & PCI_EA_IS_64) {
2258 u32 max_offset_upper;
2259
2260 pci_read_config_dword(dev, ent_offset, &max_offset_upper);
2261 ent_offset += 4;
2262
2263 flags |= IORESOURCE_MEM_64;
2264
2265 /* entry too big, can't use */
2266 if (!support_64 && max_offset_upper)
2267 goto out;
2268
2269 if (support_64)
2270 end += ((u64)max_offset_upper << 32);
2271 }
2272
2273 if (end < start) {
2274 dev_err(&dev->dev, "EA Entry crosses address boundary\n");
2275 goto out;
2276 }
2277
2278 if (ent_size != ent_offset - offset) {
2279 dev_err(&dev->dev,
2280 "EA Entry Size (%d) does not match length read (%d)\n",
2281 ent_size, ent_offset - offset);
2282 goto out;
2283 }
2284
2285 res->name = pci_name(dev);
2286 res->start = start;
2287 res->end = end;
2288 res->flags = flags;
2289 dev_printk(KERN_DEBUG, &dev->dev, "EA - BEI %2u, Prop 0x%02x: %pR\n",
2290 PCI_EA_BEI(dw0), prop, res);
2291out:
2292 return offset + ent_size;
2293}
2294
2295/* Enhanced Allocation Initalization */
2296void pci_ea_init(struct pci_dev *dev)
2297{
2298 int ea;
2299 u8 num_ent;
2300 int offset;
2301 int i;
2302
2303 /* find PCI EA capability in list */
2304 ea = pci_find_capability(dev, PCI_CAP_ID_EA);
2305 if (!ea)
2306 return;
2307
2308 /* determine the number of entries */
2309 pci_bus_read_config_byte(dev->bus, dev->devfn, ea + PCI_EA_NUM_ENT,
2310 &num_ent);
2311 num_ent &= PCI_EA_NUM_ENT_MASK;
2312
2313 offset = ea + PCI_EA_FIRST_ENT;
2314
2315 /* Skip DWORD 2 for type 1 functions */
2316 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE)
2317 offset += 4;
2318
2319 /* parse each EA entry */
2320 for (i = 0; i < num_ent; ++i)
2321 offset = pci_ea_read(dev, offset);
2322}
2323
Yinghai Lu34a48762012-02-11 00:18:41 -08002324static void pci_add_saved_cap(struct pci_dev *pci_dev,
2325 struct pci_cap_saved_state *new_cap)
2326{
2327 hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space);
2328}
2329
Jesse Barneseb9c39d2008-12-17 12:10:05 -08002330/**
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002331 * _pci_add_cap_save_buffer - allocate buffer for saving given
2332 * capability registers
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002333 * @dev: the PCI device
2334 * @cap: the capability to allocate the buffer for
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002335 * @extended: Standard or Extended capability ID
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002336 * @size: requested size of the buffer
2337 */
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002338static int _pci_add_cap_save_buffer(struct pci_dev *dev, u16 cap,
2339 bool extended, unsigned int size)
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002340{
2341 int pos;
2342 struct pci_cap_saved_state *save_state;
2343
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002344 if (extended)
2345 pos = pci_find_ext_capability(dev, cap);
2346 else
2347 pos = pci_find_capability(dev, cap);
2348
Wei Yang0a1a9b42015-06-30 09:16:44 +08002349 if (!pos)
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002350 return 0;
2351
2352 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
2353 if (!save_state)
2354 return -ENOMEM;
2355
Alex Williamson24a4742f2011-05-10 10:02:11 -06002356 save_state->cap.cap_nr = cap;
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002357 save_state->cap.cap_extended = extended;
Alex Williamson24a4742f2011-05-10 10:02:11 -06002358 save_state->cap.size = size;
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002359 pci_add_saved_cap(dev, save_state);
2360
2361 return 0;
2362}
2363
Alex Williamsonfd0f7f72013-12-17 16:43:45 -07002364int pci_add_cap_save_buffer(struct pci_dev *dev, char cap, unsigned int size)
2365{
2366 return _pci_add_cap_save_buffer(dev, cap, false, size);
2367}
2368
2369int pci_add_ext_cap_save_buffer(struct pci_dev *dev, u16 cap, unsigned int size)
2370{
2371 return _pci_add_cap_save_buffer(dev, cap, true, size);
2372}
2373
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002374/**
2375 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
2376 * @dev: the PCI device
2377 */
2378void pci_allocate_cap_save_buffers(struct pci_dev *dev)
2379{
2380 int error;
2381
Yu Zhao89858512009-02-16 02:55:47 +08002382 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
2383 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002384 if (error)
2385 dev_err(&dev->dev,
2386 "unable to preallocate PCI Express save buffer\n");
2387
2388 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
2389 if (error)
2390 dev_err(&dev->dev,
2391 "unable to preallocate PCI-X save buffer\n");
Alex Williamson425c1b22013-12-17 16:43:51 -07002392
2393 pci_allocate_vc_save_buffers(dev);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002394}
2395
Yinghai Luf7968412012-02-11 00:18:30 -08002396void pci_free_cap_save_buffers(struct pci_dev *dev)
2397{
2398 struct pci_cap_saved_state *tmp;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002399 struct hlist_node *n;
Yinghai Luf7968412012-02-11 00:18:30 -08002400
Sasha Levinb67bfe02013-02-27 17:06:00 -08002401 hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
Yinghai Luf7968412012-02-11 00:18:30 -08002402 kfree(tmp);
2403}
2404
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002405/**
Yijing Wang31ab2472013-01-15 11:12:17 +08002406 * pci_configure_ari - enable or disable ARI forwarding
Yu Zhao58c3a722008-10-14 14:02:53 +08002407 * @dev: the PCI device
Yijing Wangb0cc6022013-01-15 11:12:16 +08002408 *
2409 * If @dev and its upstream bridge both support ARI, enable ARI in the
2410 * bridge. Otherwise, disable ARI in the bridge.
Yu Zhao58c3a722008-10-14 14:02:53 +08002411 */
Yijing Wang31ab2472013-01-15 11:12:17 +08002412void pci_configure_ari(struct pci_dev *dev)
Yu Zhao58c3a722008-10-14 14:02:53 +08002413{
Yu Zhao58c3a722008-10-14 14:02:53 +08002414 u32 cap;
Zhao, Yu81135872008-10-23 13:15:39 +08002415 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08002416
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01002417 if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08002418 return;
2419
Zhao, Yu81135872008-10-23 13:15:39 +08002420 bridge = dev->bus->self;
Myron Stowecb97ae32012-06-01 15:16:31 -06002421 if (!bridge)
Zhao, Yu81135872008-10-23 13:15:39 +08002422 return;
2423
Jiang Liu59875ae2012-07-24 17:20:06 +08002424 pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08002425 if (!(cap & PCI_EXP_DEVCAP2_ARI))
2426 return;
2427
Yijing Wangb0cc6022013-01-15 11:12:16 +08002428 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI)) {
2429 pcie_capability_set_word(bridge, PCI_EXP_DEVCTL2,
2430 PCI_EXP_DEVCTL2_ARI);
2431 bridge->ari_enabled = 1;
2432 } else {
2433 pcie_capability_clear_word(bridge, PCI_EXP_DEVCTL2,
2434 PCI_EXP_DEVCTL2_ARI);
2435 bridge->ari_enabled = 0;
2436 }
Yu Zhao58c3a722008-10-14 14:02:53 +08002437}
2438
Chris Wright5d990b62009-12-04 12:15:21 -08002439static int pci_acs_enable;
2440
2441/**
2442 * pci_request_acs - ask for ACS to be enabled if supported
2443 */
2444void pci_request_acs(void)
2445{
2446 pci_acs_enable = 1;
2447}
2448
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002449/**
Alex Williamson2c744242014-02-03 14:27:33 -07002450 * pci_std_enable_acs - enable ACS on devices using standard ACS capabilites
Allen Kayae21ee62009-10-07 10:27:17 -07002451 * @dev: the PCI device
2452 */
Alex Williamson2c744242014-02-03 14:27:33 -07002453static int pci_std_enable_acs(struct pci_dev *dev)
Allen Kayae21ee62009-10-07 10:27:17 -07002454{
2455 int pos;
2456 u16 cap;
2457 u16 ctrl;
2458
Allen Kayae21ee62009-10-07 10:27:17 -07002459 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
2460 if (!pos)
Alex Williamson2c744242014-02-03 14:27:33 -07002461 return -ENODEV;
Allen Kayae21ee62009-10-07 10:27:17 -07002462
2463 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
2464 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
2465
2466 /* Source Validation */
2467 ctrl |= (cap & PCI_ACS_SV);
2468
2469 /* P2P Request Redirect */
2470 ctrl |= (cap & PCI_ACS_RR);
2471
2472 /* P2P Completion Redirect */
2473 ctrl |= (cap & PCI_ACS_CR);
2474
2475 /* Upstream Forwarding */
2476 ctrl |= (cap & PCI_ACS_UF);
2477
2478 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
Alex Williamson2c744242014-02-03 14:27:33 -07002479
2480 return 0;
2481}
2482
2483/**
2484 * pci_enable_acs - enable ACS if hardware support it
2485 * @dev: the PCI device
2486 */
2487void pci_enable_acs(struct pci_dev *dev)
2488{
2489 if (!pci_acs_enable)
2490 return;
2491
2492 if (!pci_std_enable_acs(dev))
2493 return;
2494
2495 pci_dev_specific_enable_acs(dev);
Allen Kayae21ee62009-10-07 10:27:17 -07002496}
2497
Alex Williamson0a671192013-06-27 16:39:48 -06002498static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
2499{
2500 int pos;
Alex Williamson83db7e02013-06-27 16:39:54 -06002501 u16 cap, ctrl;
Alex Williamson0a671192013-06-27 16:39:48 -06002502
2503 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
2504 if (!pos)
2505 return false;
2506
Alex Williamson83db7e02013-06-27 16:39:54 -06002507 /*
2508 * Except for egress control, capabilities are either required
2509 * or only required if controllable. Features missing from the
2510 * capability field can therefore be assumed as hard-wired enabled.
2511 */
2512 pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
2513 acs_flags &= (cap | PCI_ACS_EC);
2514
Alex Williamson0a671192013-06-27 16:39:48 -06002515 pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
2516 return (ctrl & acs_flags) == acs_flags;
2517}
2518
Allen Kayae21ee62009-10-07 10:27:17 -07002519/**
Alex Williamsonad805752012-06-11 05:27:07 +00002520 * pci_acs_enabled - test ACS against required flags for a given device
2521 * @pdev: device to test
2522 * @acs_flags: required PCI ACS flags
2523 *
2524 * Return true if the device supports the provided flags. Automatically
2525 * filters out flags that are not implemented on multifunction devices.
Alex Williamson0a671192013-06-27 16:39:48 -06002526 *
2527 * Note that this interface checks the effective ACS capabilities of the
2528 * device rather than the actual capabilities. For instance, most single
2529 * function endpoints are not required to support ACS because they have no
2530 * opportunity for peer-to-peer access. We therefore return 'true'
2531 * regardless of whether the device exposes an ACS capability. This makes
2532 * it much easier for callers of this function to ignore the actual type
2533 * or topology of the device when testing ACS support.
Alex Williamsonad805752012-06-11 05:27:07 +00002534 */
2535bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2536{
Alex Williamson0a671192013-06-27 16:39:48 -06002537 int ret;
Alex Williamsonad805752012-06-11 05:27:07 +00002538
2539 ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
2540 if (ret >= 0)
2541 return ret > 0;
2542
Alex Williamson0a671192013-06-27 16:39:48 -06002543 /*
2544 * Conventional PCI and PCI-X devices never support ACS, either
2545 * effectively or actually. The shared bus topology implies that
2546 * any device on the bus can receive or snoop DMA.
2547 */
Alex Williamsonad805752012-06-11 05:27:07 +00002548 if (!pci_is_pcie(pdev))
2549 return false;
2550
Alex Williamson0a671192013-06-27 16:39:48 -06002551 switch (pci_pcie_type(pdev)) {
2552 /*
2553 * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002554 * but since their primary interface is PCI/X, we conservatively
Alex Williamson0a671192013-06-27 16:39:48 -06002555 * handle them as we would a non-PCIe device.
2556 */
2557 case PCI_EXP_TYPE_PCIE_BRIDGE:
2558 /*
2559 * PCIe 3.0, 6.12.1 excludes ACS on these devices. "ACS is never
2560 * applicable... must never implement an ACS Extended Capability...".
2561 * This seems arbitrary, but we take a conservative interpretation
2562 * of this statement.
2563 */
2564 case PCI_EXP_TYPE_PCI_BRIDGE:
2565 case PCI_EXP_TYPE_RC_EC:
2566 return false;
2567 /*
2568 * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
2569 * implement ACS in order to indicate their peer-to-peer capabilities,
2570 * regardless of whether they are single- or multi-function devices.
2571 */
2572 case PCI_EXP_TYPE_DOWNSTREAM:
2573 case PCI_EXP_TYPE_ROOT_PORT:
2574 return pci_acs_flags_enabled(pdev, acs_flags);
2575 /*
2576 * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
2577 * implemented by the remaining PCIe types to indicate peer-to-peer
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002578 * capabilities, but only when they are part of a multifunction
Alex Williamson0a671192013-06-27 16:39:48 -06002579 * device. The footnote for section 6.12 indicates the specific
2580 * PCIe types included here.
2581 */
2582 case PCI_EXP_TYPE_ENDPOINT:
2583 case PCI_EXP_TYPE_UPSTREAM:
2584 case PCI_EXP_TYPE_LEG_END:
2585 case PCI_EXP_TYPE_RC_END:
2586 if (!pdev->multifunction)
2587 break;
2588
Alex Williamson0a671192013-06-27 16:39:48 -06002589 return pci_acs_flags_enabled(pdev, acs_flags);
Alex Williamsonad805752012-06-11 05:27:07 +00002590 }
2591
Alex Williamson0a671192013-06-27 16:39:48 -06002592 /*
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002593 * PCIe 3.0, 6.12.1.3 specifies no ACS capabilities are applicable
Alex Williamson0a671192013-06-27 16:39:48 -06002594 * to single function devices with the exception of downstream ports.
2595 */
Alex Williamsonad805752012-06-11 05:27:07 +00002596 return true;
2597}
2598
2599/**
2600 * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
2601 * @start: starting downstream device
2602 * @end: ending upstream device or NULL to search to the root bus
2603 * @acs_flags: required flags
2604 *
2605 * Walk up a device tree from start to end testing PCI ACS support. If
2606 * any step along the way does not support the required flags, return false.
2607 */
2608bool pci_acs_path_enabled(struct pci_dev *start,
2609 struct pci_dev *end, u16 acs_flags)
2610{
2611 struct pci_dev *pdev, *parent = start;
2612
2613 do {
2614 pdev = parent;
2615
2616 if (!pci_acs_enabled(pdev, acs_flags))
2617 return false;
2618
2619 if (pci_is_root_bus(pdev->bus))
2620 return (end == NULL);
2621
2622 parent = pdev->bus->self;
2623 } while (pdev != end);
2624
2625 return true;
2626}
2627
2628/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002629 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
2630 * @dev: the PCI device
Wang Sheng-Huibb5c2de2013-05-28 11:17:41 +08002631 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002632 *
2633 * Perform INTx swizzling for a device behind one level of bridge. This is
2634 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07002635 * behind bridges on add-in cards. For devices with ARI enabled, the slot
2636 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
2637 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002638 */
John Crispin3df425f2012-04-12 17:33:07 +02002639u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002640{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07002641 int slot;
2642
2643 if (pci_ari_enabled(dev->bus))
2644 slot = 0;
2645 else
2646 slot = PCI_SLOT(dev->devfn);
2647
2648 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002649}
2650
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002651int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
2653 u8 pin;
2654
Kristen Accardi514d2072005-11-02 16:24:39 -08002655 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 if (!pin)
2657 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07002658
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09002659 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002660 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 dev = dev->bus->self;
2662 }
2663 *bridge = dev;
2664 return pin;
2665}
2666
2667/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07002668 * pci_common_swizzle - swizzle INTx all the way to root bridge
2669 * @dev: the PCI device
2670 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
2671 *
2672 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
2673 * bridges all the way up to a PCI root bus.
2674 */
2675u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
2676{
2677 u8 pin = *pinp;
2678
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09002679 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07002680 pin = pci_swizzle_interrupt_pin(dev, pin);
2681 dev = dev->bus->self;
2682 }
2683 *pinp = pin;
2684 return PCI_SLOT(dev->devfn);
2685}
Ray Juie6b29de2015-04-08 11:21:33 -07002686EXPORT_SYMBOL_GPL(pci_common_swizzle);
Bjorn Helgaas68feac82008-12-16 21:36:55 -07002687
2688/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 * pci_release_region - Release a PCI bar
2690 * @pdev: PCI device whose resources were previously reserved by pci_request_region
2691 * @bar: BAR to release
2692 *
2693 * Releases the PCI I/O and memory resources previously reserved by a
2694 * successful call to pci_request_region. Call this function only
2695 * after all use of the PCI regions has ceased.
2696 */
2697void pci_release_region(struct pci_dev *pdev, int bar)
2698{
Tejun Heo9ac78492007-01-20 16:00:26 +09002699 struct pci_devres *dr;
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 if (pci_resource_len(pdev, bar) == 0)
2702 return;
2703 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
2704 release_region(pci_resource_start(pdev, bar),
2705 pci_resource_len(pdev, bar));
2706 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
2707 release_mem_region(pci_resource_start(pdev, bar),
2708 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09002709
2710 dr = find_pci_dr(pdev);
2711 if (dr)
2712 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002714EXPORT_SYMBOL(pci_release_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002717 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 * @pdev: PCI device whose resources are to be reserved
2719 * @bar: BAR to be reserved
2720 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002721 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 *
2723 * Mark the PCI region associated with PCI device @pdev BR @bar as
2724 * being reserved by owner @res_name. Do not access any
2725 * address inside the PCI regions unless this call returns
2726 * successfully.
2727 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002728 * If @exclusive is set, then the region is marked so that userspace
2729 * is explicitly not allowed to map the resource via /dev/mem or
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002730 * sysfs MMIO access.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002731 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 * Returns 0 on success, or %EBUSY on error. A warning
2733 * message is also printed on failure.
2734 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002735static int __pci_request_region(struct pci_dev *pdev, int bar,
2736 const char *res_name, int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
Tejun Heo9ac78492007-01-20 16:00:26 +09002738 struct pci_devres *dr;
2739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (pci_resource_len(pdev, bar) == 0)
2741 return 0;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
2744 if (!request_region(pci_resource_start(pdev, bar),
2745 pci_resource_len(pdev, bar), res_name))
2746 goto err_out;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002747 } else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07002748 if (!__request_mem_region(pci_resource_start(pdev, bar),
2749 pci_resource_len(pdev, bar), res_name,
2750 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 goto err_out;
2752 }
Tejun Heo9ac78492007-01-20 16:00:26 +09002753
2754 dr = find_pci_dr(pdev);
2755 if (dr)
2756 dr->region_mask |= 1 << bar;
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 return 0;
2759
2760err_out:
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06002761 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11002762 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 return -EBUSY;
2764}
2765
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002766/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002767 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07002768 * @pdev: PCI device whose resources are to be reserved
2769 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002770 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07002771 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002772 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07002773 * being reserved by owner @res_name. Do not access any
2774 * address inside the PCI regions unless this call returns
2775 * successfully.
2776 *
2777 * Returns 0 on success, or %EBUSY on error. A warning
2778 * message is also printed on failure.
2779 */
2780int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
2781{
2782 return __pci_request_region(pdev, bar, res_name, 0);
2783}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002784EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002785
2786/**
2787 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
2788 * @pdev: PCI device whose resources are to be reserved
2789 * @bar: BAR to be reserved
2790 * @res_name: Name to be associated with resource.
2791 *
2792 * Mark the PCI region associated with PCI device @pdev BR @bar as
2793 * being reserved by owner @res_name. Do not access any
2794 * address inside the PCI regions unless this call returns
2795 * successfully.
2796 *
2797 * Returns 0 on success, or %EBUSY on error. A warning
2798 * message is also printed on failure.
2799 *
2800 * The key difference that _exclusive makes it that userspace is
2801 * explicitly not allowed to map the resource via /dev/mem or
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002802 * sysfs.
Arjan van de Vene8de1482008-10-22 19:55:31 -07002803 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002804int pci_request_region_exclusive(struct pci_dev *pdev, int bar,
2805 const char *res_name)
Arjan van de Vene8de1482008-10-22 19:55:31 -07002806{
2807 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
2808}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002809EXPORT_SYMBOL(pci_request_region_exclusive);
2810
Arjan van de Vene8de1482008-10-22 19:55:31 -07002811/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002812 * pci_release_selected_regions - Release selected PCI I/O and memory resources
2813 * @pdev: PCI device whose resources were previously reserved
2814 * @bars: Bitmask of BARs to be released
2815 *
2816 * Release selected PCI I/O and memory resources previously reserved.
2817 * Call this function only after all use of the PCI regions has ceased.
2818 */
2819void pci_release_selected_regions(struct pci_dev *pdev, int bars)
2820{
2821 int i;
2822
2823 for (i = 0; i < 6; i++)
2824 if (bars & (1 << i))
2825 pci_release_region(pdev, i);
2826}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002827EXPORT_SYMBOL(pci_release_selected_regions);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002828
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06002829static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002830 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002831{
2832 int i;
2833
2834 for (i = 0; i < 6; i++)
2835 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07002836 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002837 goto err_out;
2838 return 0;
2839
2840err_out:
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002841 while (--i >= 0)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002842 if (bars & (1 << i))
2843 pci_release_region(pdev, i);
2844
2845 return -EBUSY;
2846}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Arjan van de Vene8de1482008-10-22 19:55:31 -07002848
2849/**
2850 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
2851 * @pdev: PCI device whose resources are to be reserved
2852 * @bars: Bitmask of BARs to be requested
2853 * @res_name: Name to be associated with resource
2854 */
2855int pci_request_selected_regions(struct pci_dev *pdev, int bars,
2856 const char *res_name)
2857{
2858 return __pci_request_selected_regions(pdev, bars, res_name, 0);
2859}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002860EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002861
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04002862int pci_request_selected_regions_exclusive(struct pci_dev *pdev, int bars,
2863 const char *res_name)
Arjan van de Vene8de1482008-10-22 19:55:31 -07002864{
2865 return __pci_request_selected_regions(pdev, bars, res_name,
2866 IORESOURCE_EXCLUSIVE);
2867}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002868EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870/**
2871 * pci_release_regions - Release reserved PCI I/O and memory resources
2872 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
2873 *
2874 * Releases all PCI I/O and memory resources previously reserved by a
2875 * successful call to pci_request_regions. Call this function only
2876 * after all use of the PCI regions has ceased.
2877 */
2878
2879void pci_release_regions(struct pci_dev *pdev)
2880{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002881 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002883EXPORT_SYMBOL(pci_release_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885/**
2886 * pci_request_regions - Reserved PCI I/O and memory resources
2887 * @pdev: PCI device whose resources are to be reserved
2888 * @res_name: Name to be associated with resource.
2889 *
2890 * Mark all PCI regions associated with PCI device @pdev as
2891 * being reserved by owner @res_name. Do not access any
2892 * address inside the PCI regions unless this call returns
2893 * successfully.
2894 *
2895 * Returns 0 on success, or %EBUSY on error. A warning
2896 * message is also printed on failure.
2897 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05002898int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002900 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002902EXPORT_SYMBOL(pci_request_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07002905 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
2906 * @pdev: PCI device whose resources are to be reserved
2907 * @res_name: Name to be associated with resource.
2908 *
2909 * Mark all PCI regions associated with PCI device @pdev as
2910 * being reserved by owner @res_name. Do not access any
2911 * address inside the PCI regions unless this call returns
2912 * successfully.
2913 *
2914 * pci_request_regions_exclusive() will mark the region so that
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002915 * /dev/mem and the sysfs MMIO access will not be allowed.
Arjan van de Vene8de1482008-10-22 19:55:31 -07002916 *
2917 * Returns 0 on success, or %EBUSY on error. A warning
2918 * message is also printed on failure.
2919 */
2920int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
2921{
2922 return pci_request_selected_regions_exclusive(pdev,
2923 ((1 << 6) - 1), res_name);
2924}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002925EXPORT_SYMBOL(pci_request_regions_exclusive);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002926
Liviu Dudau8b921ac2014-09-29 15:29:30 +01002927/**
2928 * pci_remap_iospace - Remap the memory mapped I/O space
2929 * @res: Resource describing the I/O space
2930 * @phys_addr: physical address of range to be mapped
2931 *
2932 * Remap the memory mapped I/O space described by the @res
2933 * and the CPU physical address @phys_addr into virtual address space.
2934 * Only architectures that have memory mapped IO functions defined
2935 * (and the PCI_IOBASE value defined) should call this function.
2936 */
2937int __weak pci_remap_iospace(const struct resource *res, phys_addr_t phys_addr)
2938{
2939#if defined(PCI_IOBASE) && defined(CONFIG_MMU)
2940 unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
2941
2942 if (!(res->flags & IORESOURCE_IO))
2943 return -EINVAL;
2944
2945 if (res->end > IO_SPACE_LIMIT)
2946 return -EINVAL;
2947
2948 return ioremap_page_range(vaddr, vaddr + resource_size(res), phys_addr,
2949 pgprot_device(PAGE_KERNEL));
2950#else
2951 /* this architecture does not have memory mapped I/O space,
2952 so this function should never be called */
2953 WARN_ONCE(1, "This architecture does not support memory mapped I/O\n");
2954 return -ENODEV;
2955#endif
2956}
2957
Ben Hutchings6a479072008-12-23 03:08:29 +00002958static void __pci_set_master(struct pci_dev *dev, bool enable)
2959{
2960 u16 old_cmd, cmd;
2961
2962 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
2963 if (enable)
2964 cmd = old_cmd | PCI_COMMAND_MASTER;
2965 else
2966 cmd = old_cmd & ~PCI_COMMAND_MASTER;
2967 if (cmd != old_cmd) {
2968 dev_dbg(&dev->dev, "%s bus mastering\n",
2969 enable ? "enabling" : "disabling");
2970 pci_write_config_word(dev, PCI_COMMAND, cmd);
2971 }
2972 dev->is_busmaster = enable;
2973}
Arjan van de Vene8de1482008-10-22 19:55:31 -07002974
2975/**
Myron Stowe2b6f2c32012-06-25 21:30:57 -06002976 * pcibios_setup - process "pci=" kernel boot arguments
2977 * @str: string used to pass in "pci=" kernel boot arguments
2978 *
2979 * Process kernel boot arguments. This is the default implementation.
2980 * Architecture specific implementations can override this as necessary.
2981 */
2982char * __weak __init pcibios_setup(char *str)
2983{
2984 return str;
2985}
2986
2987/**
Myron Stowe96c55902011-10-28 15:48:38 -06002988 * pcibios_set_master - enable PCI bus-mastering for device dev
2989 * @dev: the PCI device to enable
2990 *
2991 * Enables PCI bus-mastering for the device. This is the default
2992 * implementation. Architecture specific implementations can override
2993 * this if necessary.
2994 */
2995void __weak pcibios_set_master(struct pci_dev *dev)
2996{
2997 u8 lat;
2998
Myron Stowef6766782011-10-28 15:49:20 -06002999 /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
3000 if (pci_is_pcie(dev))
3001 return;
3002
Myron Stowe96c55902011-10-28 15:48:38 -06003003 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
3004 if (lat < 16)
3005 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
3006 else if (lat > pcibios_max_latency)
3007 lat = pcibios_max_latency;
3008 else
3009 return;
Bjorn Helgaasa0064822013-09-23 15:25:26 -06003010
Myron Stowe96c55902011-10-28 15:48:38 -06003011 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
3012}
3013
3014/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * pci_set_master - enables bus-mastering for device dev
3016 * @dev: the PCI device to enable
3017 *
3018 * Enables bus-mastering on the device and calls pcibios_set_master()
3019 * to do the needed arch specific settings.
3020 */
Ben Hutchings6a479072008-12-23 03:08:29 +00003021void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
Ben Hutchings6a479072008-12-23 03:08:29 +00003023 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 pcibios_set_master(dev);
3025}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003026EXPORT_SYMBOL(pci_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Ben Hutchings6a479072008-12-23 03:08:29 +00003028/**
3029 * pci_clear_master - disables bus-mastering for device dev
3030 * @dev: the PCI device to disable
3031 */
3032void pci_clear_master(struct pci_dev *dev)
3033{
3034 __pci_set_master(dev, false);
3035}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003036EXPORT_SYMBOL(pci_clear_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00003037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06003039 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
3040 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06003042 * Helper function for pci_set_mwi.
3043 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
3045 *
3046 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
3047 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09003048int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
3050 u8 cacheline_size;
3051
3052 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09003053 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
3055 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
3056 equal to or multiple of the right value. */
3057 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
3058 if (cacheline_size >= pci_cache_line_size &&
3059 (cacheline_size % pci_cache_line_size) == 0)
3060 return 0;
3061
3062 /* Write the correct value. */
3063 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
3064 /* Read it back. */
3065 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
3066 if (cacheline_size == pci_cache_line_size)
3067 return 0;
3068
Ryan Desfosses227f0642014-04-18 20:13:50 -04003069 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not supported\n",
3070 pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
3072 return -EINVAL;
3073}
Tejun Heo15ea76d2009-09-22 17:34:48 +09003074EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
3075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076/**
3077 * pci_set_mwi - enables memory-write-invalidate PCI transaction
3078 * @dev: the PCI device for which MWI is enabled
3079 *
Randy Dunlap694625c2007-07-09 11:55:54 -07003080 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 *
3082 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
3083 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003084int pci_set_mwi(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003086#ifdef PCI_DISABLE_MWI
3087 return 0;
3088#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 int rc;
3090 u16 cmd;
3091
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06003092 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 if (rc)
3094 return rc;
3095
3096 pci_read_config_word(dev, PCI_COMMAND, &cmd);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003097 if (!(cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06003098 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 cmd |= PCI_COMMAND_INVALIDATE;
3100 pci_write_config_word(dev, PCI_COMMAND, cmd);
3101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 return 0;
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003105EXPORT_SYMBOL(pci_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107/**
Randy Dunlap694625c2007-07-09 11:55:54 -07003108 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
3109 * @dev: the PCI device for which MWI is enabled
3110 *
3111 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
3112 * Callers are not required to check the return value.
3113 *
3114 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
3115 */
3116int pci_try_set_mwi(struct pci_dev *dev)
3117{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003118#ifdef PCI_DISABLE_MWI
3119 return 0;
3120#else
3121 return pci_set_mwi(dev);
3122#endif
Randy Dunlap694625c2007-07-09 11:55:54 -07003123}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003124EXPORT_SYMBOL(pci_try_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07003125
3126/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
3128 * @dev: the PCI device to disable
3129 *
3130 * Disables PCI Memory-Write-Invalidate transaction on the device
3131 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003132void pci_clear_mwi(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133{
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003134#ifndef PCI_DISABLE_MWI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 u16 cmd;
3136
3137 pci_read_config_word(dev, PCI_COMMAND, &cmd);
3138 if (cmd & PCI_COMMAND_INVALIDATE) {
3139 cmd &= ~PCI_COMMAND_INVALIDATE;
3140 pci_write_config_word(dev, PCI_COMMAND, cmd);
3141 }
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003144EXPORT_SYMBOL(pci_clear_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Brett M Russa04ce0f2005-08-15 15:23:41 -04003146/**
3147 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07003148 * @pdev: the PCI device to operate on
3149 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04003150 *
3151 * Enables/disables PCI INTx for device dev
3152 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003153void pci_intx(struct pci_dev *pdev, int enable)
Brett M Russa04ce0f2005-08-15 15:23:41 -04003154{
3155 u16 pci_command, new;
3156
3157 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
3158
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003159 if (enable)
Brett M Russa04ce0f2005-08-15 15:23:41 -04003160 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003161 else
Brett M Russa04ce0f2005-08-15 15:23:41 -04003162 new = pci_command | PCI_COMMAND_INTX_DISABLE;
Brett M Russa04ce0f2005-08-15 15:23:41 -04003163
3164 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09003165 struct pci_devres *dr;
3166
Brett M Russ2fd9d742005-09-09 10:02:22 -07003167 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09003168
3169 dr = find_pci_dr(pdev);
3170 if (dr && !dr->restore_intx) {
3171 dr->restore_intx = 1;
3172 dr->orig_intx = !enable;
3173 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04003174 }
3175}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003176EXPORT_SYMBOL_GPL(pci_intx);
Brett M Russa04ce0f2005-08-15 15:23:41 -04003177
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003178/**
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003179 * pci_intx_mask_supported - probe for INTx masking support
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003180 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003181 *
3182 * Check if the device dev support INTx masking via the config space
3183 * command word.
3184 */
3185bool pci_intx_mask_supported(struct pci_dev *dev)
3186{
3187 bool mask_supported = false;
3188 u16 orig, new;
3189
Bjorn Helgaasfbebb9f2012-06-16 14:40:22 -06003190 if (dev->broken_intx_masking)
3191 return false;
3192
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003193 pci_cfg_access_lock(dev);
3194
3195 pci_read_config_word(dev, PCI_COMMAND, &orig);
3196 pci_write_config_word(dev, PCI_COMMAND,
3197 orig ^ PCI_COMMAND_INTX_DISABLE);
3198 pci_read_config_word(dev, PCI_COMMAND, &new);
3199
3200 /*
3201 * There's no way to protect against hardware bugs or detect them
3202 * reliably, but as long as we know what the value should be, let's
3203 * go ahead and check it.
3204 */
3205 if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
Ryan Desfosses227f0642014-04-18 20:13:50 -04003206 dev_err(&dev->dev, "Command register changed from 0x%x to 0x%x: driver or hardware bug?\n",
3207 orig, new);
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003208 } else if ((new ^ orig) & PCI_COMMAND_INTX_DISABLE) {
3209 mask_supported = true;
3210 pci_write_config_word(dev, PCI_COMMAND, orig);
3211 }
3212
3213 pci_cfg_access_unlock(dev);
3214 return mask_supported;
3215}
3216EXPORT_SYMBOL_GPL(pci_intx_mask_supported);
3217
3218static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
3219{
3220 struct pci_bus *bus = dev->bus;
3221 bool mask_updated = true;
3222 u32 cmd_status_dword;
3223 u16 origcmd, newcmd;
3224 unsigned long flags;
3225 bool irq_pending;
3226
3227 /*
3228 * We do a single dword read to retrieve both command and status.
3229 * Document assumptions that make this possible.
3230 */
3231 BUILD_BUG_ON(PCI_COMMAND % 4);
3232 BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
3233
3234 raw_spin_lock_irqsave(&pci_lock, flags);
3235
3236 bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
3237
3238 irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
3239
3240 /*
3241 * Check interrupt status register to see whether our device
3242 * triggered the interrupt (when masking) or the next IRQ is
3243 * already pending (when unmasking).
3244 */
3245 if (mask != irq_pending) {
3246 mask_updated = false;
3247 goto done;
3248 }
3249
3250 origcmd = cmd_status_dword;
3251 newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
3252 if (mask)
3253 newcmd |= PCI_COMMAND_INTX_DISABLE;
3254 if (newcmd != origcmd)
3255 bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
3256
3257done:
3258 raw_spin_unlock_irqrestore(&pci_lock, flags);
3259
3260 return mask_updated;
3261}
3262
3263/**
3264 * pci_check_and_mask_intx - mask INTx on pending interrupt
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003265 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003266 *
3267 * Check if the device dev has its INTx line asserted, mask it and
3268 * return true in that case. False is returned if not interrupt was
3269 * pending.
3270 */
3271bool pci_check_and_mask_intx(struct pci_dev *dev)
3272{
3273 return pci_check_and_set_intx_mask(dev, true);
3274}
3275EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
3276
3277/**
Bjorn Helgaasebd50b92014-01-14 17:10:39 -07003278 * pci_check_and_unmask_intx - unmask INTx if no interrupt is pending
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003279 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003280 *
3281 * Check if the device dev has its INTx line asserted, unmask it if not
3282 * and return true. False is returned and the mask remains active if
3283 * there was still an interrupt pending.
3284 */
3285bool pci_check_and_unmask_intx(struct pci_dev *dev)
3286{
3287 return pci_check_and_set_intx_mask(dev, false);
3288}
3289EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
3290
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08003291int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
3292{
3293 return dma_set_max_seg_size(&dev->dev, size);
3294}
3295EXPORT_SYMBOL(pci_set_dma_max_seg_size);
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08003296
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08003297int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
3298{
3299 return dma_set_seg_boundary(&dev->dev, mask);
3300}
3301EXPORT_SYMBOL(pci_set_dma_seg_boundary);
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08003302
Casey Leedom3775a202013-08-06 15:48:36 +05303303/**
3304 * pci_wait_for_pending_transaction - waits for pending transaction
3305 * @dev: the PCI device to operate on
3306 *
3307 * Return 0 if transaction is pending 1 otherwise.
3308 */
3309int pci_wait_for_pending_transaction(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003310{
Alex Williamson157e8762013-12-17 16:43:39 -07003311 if (!pci_is_pcie(dev))
3312 return 1;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003313
Gavin Shand0b4cc42014-05-19 13:06:46 +10003314 return pci_wait_for_pending(dev, pci_pcie_cap(dev) + PCI_EXP_DEVSTA,
3315 PCI_EXP_DEVSTA_TRPND);
Casey Leedom3775a202013-08-06 15:48:36 +05303316}
3317EXPORT_SYMBOL(pci_wait_for_pending_transaction);
Sheng Yang5fe5db02009-02-09 14:53:47 +08003318
Casey Leedom3775a202013-08-06 15:48:36 +05303319static int pcie_flr(struct pci_dev *dev, int probe)
3320{
3321 u32 cap;
3322
3323 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
3324 if (!(cap & PCI_EXP_DEVCAP_FLR))
3325 return -ENOTTY;
3326
3327 if (probe)
3328 return 0;
3329
3330 if (!pci_wait_for_pending_transaction(dev))
Gavin Shanbb383e22014-11-12 13:41:51 +11003331 dev_err(&dev->dev, "timed out waiting for pending transaction; performing function level reset anyway\n");
Casey Leedom3775a202013-08-06 15:48:36 +05303332
Jiang Liu59875ae2012-07-24 17:20:06 +08003333 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
Yu Zhao8c1c6992009-06-13 15:52:13 +08003334 msleep(100);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003335 return 0;
3336}
Sheng Yangd91cdc72008-11-11 17:17:47 +08003337
Yu Zhao8c1c6992009-06-13 15:52:13 +08003338static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08003339{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003340 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08003341 u8 cap;
3342
Yu Zhao8c1c6992009-06-13 15:52:13 +08003343 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
3344 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08003345 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08003346
3347 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08003348 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
3349 return -ENOTTY;
3350
3351 if (probe)
3352 return 0;
3353
Alex Williamsond066c942014-06-17 15:40:13 -06003354 /*
3355 * Wait for Transaction Pending bit to clear. A word-aligned test
3356 * is used, so we use the conrol offset rather than status and shift
3357 * the test bit to match.
3358 */
Gavin Shanbb383e22014-11-12 13:41:51 +11003359 if (!pci_wait_for_pending(dev, pos + PCI_AF_CTRL,
Alex Williamsond066c942014-06-17 15:40:13 -06003360 PCI_AF_STATUS_TP << 8))
Gavin Shanbb383e22014-11-12 13:41:51 +11003361 dev_err(&dev->dev, "timed out waiting for pending transaction; performing AF function level reset anyway\n");
Yu Zhao8c1c6992009-06-13 15:52:13 +08003362
Yu Zhao8c1c6992009-06-13 15:52:13 +08003363 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sheng Yang1ca88792008-11-11 17:17:48 +08003364 msleep(100);
Sheng Yang1ca88792008-11-11 17:17:48 +08003365 return 0;
3366}
3367
Rafael J. Wysocki83d74e02011-03-05 21:48:44 +01003368/**
3369 * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
3370 * @dev: Device to reset.
3371 * @probe: If set, only check if the device can be reset this way.
3372 *
3373 * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
3374 * unset, it will be reinitialized internally when going from PCI_D3hot to
3375 * PCI_D0. If that's the case and the device is not in a low-power state
3376 * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
3377 *
3378 * NOTE: This causes the caller to sleep for twice the device power transition
3379 * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003380 * by default (i.e. unless the @dev's d3_delay field has a different value).
Rafael J. Wysocki83d74e02011-03-05 21:48:44 +01003381 * Moreover, only devices in D0 can be reset by this function.
3382 */
Yu Zhaof85876b2009-06-13 15:52:14 +08003383static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08003384{
Yu Zhaof85876b2009-06-13 15:52:14 +08003385 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08003386
Alex Williamson51e53732014-11-21 11:24:08 -07003387 if (!dev->pm_cap || dev->dev_flags & PCI_DEV_FLAGS_NO_PM_RESET)
Yu Zhaof85876b2009-06-13 15:52:14 +08003388 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08003389
Yu Zhaof85876b2009-06-13 15:52:14 +08003390 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
3391 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
3392 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08003393
Yu Zhaof85876b2009-06-13 15:52:14 +08003394 if (probe)
3395 return 0;
3396
3397 if (dev->current_state != PCI_D0)
3398 return -EINVAL;
3399
3400 csr &= ~PCI_PM_CTRL_STATE_MASK;
3401 csr |= PCI_D3hot;
3402 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01003403 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08003404
3405 csr &= ~PCI_PM_CTRL_STATE_MASK;
3406 csr |= PCI_D0;
3407 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01003408 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08003409
3410 return 0;
3411}
3412
Gavin Shan9e330022014-06-19 17:22:44 +10003413void pci_reset_secondary_bus(struct pci_dev *dev)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003414{
3415 u16 ctrl;
Alex Williamson64e86742013-08-08 14:09:24 -06003416
3417 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
3418 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
3419 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Alex Williamsonde0c5482013-08-08 14:10:13 -06003420 /*
3421 * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double
Bjorn Helgaasf7625982013-11-14 11:28:18 -07003422 * this to 2ms to ensure that we meet the minimum requirement.
Alex Williamsonde0c5482013-08-08 14:10:13 -06003423 */
3424 msleep(2);
Alex Williamson64e86742013-08-08 14:09:24 -06003425
3426 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
3427 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Alex Williamsonde0c5482013-08-08 14:10:13 -06003428
3429 /*
3430 * Trhfa for conventional PCI is 2^25 clock cycles.
3431 * Assuming a minimum 33MHz clock this results in a 1s
3432 * delay before we can consider subordinate devices to
3433 * be re-initialized. PCIe has some ways to shorten this,
3434 * but we don't make use of them yet.
3435 */
3436 ssleep(1);
Alex Williamson64e86742013-08-08 14:09:24 -06003437}
Gavin Shand92a2082014-04-24 18:00:24 +10003438
Gavin Shan9e330022014-06-19 17:22:44 +10003439void __weak pcibios_reset_secondary_bus(struct pci_dev *dev)
3440{
3441 pci_reset_secondary_bus(dev);
3442}
3443
Gavin Shand92a2082014-04-24 18:00:24 +10003444/**
3445 * pci_reset_bridge_secondary_bus - Reset the secondary bus on a PCI bridge.
3446 * @dev: Bridge device
3447 *
3448 * Use the bridge control register to assert reset on the secondary bus.
3449 * Devices on the secondary bus are left in power-on state.
3450 */
3451void pci_reset_bridge_secondary_bus(struct pci_dev *dev)
3452{
3453 pcibios_reset_secondary_bus(dev);
3454}
Alex Williamson64e86742013-08-08 14:09:24 -06003455EXPORT_SYMBOL_GPL(pci_reset_bridge_secondary_bus);
3456
3457static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
3458{
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003459 struct pci_dev *pdev;
3460
Alex Williamsonf331a852015-01-15 18:16:04 -06003461 if (pci_is_root_bus(dev->bus) || dev->subordinate ||
3462 !dev->bus->self || dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003463 return -ENOTTY;
3464
3465 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3466 if (pdev != dev)
3467 return -ENOTTY;
3468
3469 if (probe)
3470 return 0;
3471
Alex Williamson64e86742013-08-08 14:09:24 -06003472 pci_reset_bridge_secondary_bus(dev->bus->self);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003473
3474 return 0;
3475}
3476
Alex Williamson608c3882013-08-08 14:09:43 -06003477static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
3478{
3479 int rc = -ENOTTY;
3480
3481 if (!hotplug || !try_module_get(hotplug->ops->owner))
3482 return rc;
3483
3484 if (hotplug->ops->reset_slot)
3485 rc = hotplug->ops->reset_slot(hotplug, probe);
3486
3487 module_put(hotplug->ops->owner);
3488
3489 return rc;
3490}
3491
3492static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
3493{
3494 struct pci_dev *pdev;
3495
Alex Williamsonf331a852015-01-15 18:16:04 -06003496 if (dev->subordinate || !dev->slot ||
3497 dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET)
Alex Williamson608c3882013-08-08 14:09:43 -06003498 return -ENOTTY;
3499
3500 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3501 if (pdev != dev && pdev->slot == dev->slot)
3502 return -ENOTTY;
3503
3504 return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
3505}
3506
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003507static int __pci_dev_reset(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003508{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003509 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003510
Yu Zhao8c1c6992009-06-13 15:52:13 +08003511 might_sleep();
Sheng Yang8dd7f802008-10-21 17:38:25 +08003512
Dexuan Cuib9c3b262009-12-07 13:03:21 +08003513 rc = pci_dev_specific_reset(dev, probe);
3514 if (rc != -ENOTTY)
3515 goto done;
3516
Yu Zhao8c1c6992009-06-13 15:52:13 +08003517 rc = pcie_flr(dev, probe);
3518 if (rc != -ENOTTY)
3519 goto done;
3520
3521 rc = pci_af_flr(dev, probe);
Yu Zhaof85876b2009-06-13 15:52:14 +08003522 if (rc != -ENOTTY)
3523 goto done;
3524
3525 rc = pci_pm_reset(dev, probe);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003526 if (rc != -ENOTTY)
3527 goto done;
3528
Alex Williamson608c3882013-08-08 14:09:43 -06003529 rc = pci_dev_reset_slot_function(dev, probe);
3530 if (rc != -ENOTTY)
3531 goto done;
3532
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003533 rc = pci_parent_bus_reset(dev, probe);
Yu Zhao8c1c6992009-06-13 15:52:13 +08003534done:
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003535 return rc;
3536}
3537
Alex Williamson77cb9852013-08-08 14:09:49 -06003538static void pci_dev_lock(struct pci_dev *dev)
3539{
3540 pci_cfg_access_lock(dev);
3541 /* block PM suspend, driver probe, etc. */
3542 device_lock(&dev->dev);
3543}
3544
Alex Williamson61cf16d2013-12-16 15:14:31 -07003545/* Return 1 on successful lock, 0 on contention */
3546static int pci_dev_trylock(struct pci_dev *dev)
3547{
3548 if (pci_cfg_access_trylock(dev)) {
3549 if (device_trylock(&dev->dev))
3550 return 1;
3551 pci_cfg_access_unlock(dev);
3552 }
3553
3554 return 0;
3555}
3556
Alex Williamson77cb9852013-08-08 14:09:49 -06003557static void pci_dev_unlock(struct pci_dev *dev)
3558{
3559 device_unlock(&dev->dev);
3560 pci_cfg_access_unlock(dev);
3561}
3562
Keith Busch3ebe7f92014-05-02 10:40:42 -06003563/**
3564 * pci_reset_notify - notify device driver of reset
3565 * @dev: device to be notified of reset
3566 * @prepare: 'true' if device is about to be reset; 'false' if reset attempt
3567 * completed
3568 *
3569 * Must be called prior to device access being disabled and after device
3570 * access is restored.
3571 */
3572static void pci_reset_notify(struct pci_dev *dev, bool prepare)
3573{
3574 const struct pci_error_handlers *err_handler =
3575 dev->driver ? dev->driver->err_handler : NULL;
3576 if (err_handler && err_handler->reset_notify)
3577 err_handler->reset_notify(dev, prepare);
3578}
3579
Alex Williamson77cb9852013-08-08 14:09:49 -06003580static void pci_dev_save_and_disable(struct pci_dev *dev)
3581{
Keith Busch3ebe7f92014-05-02 10:40:42 -06003582 pci_reset_notify(dev, true);
3583
Alex Williamsona6cbaad2013-08-08 14:10:02 -06003584 /*
3585 * Wake-up device prior to save. PM registers default to D0 after
3586 * reset and a simple register restore doesn't reliably return
3587 * to a non-D0 state anyway.
3588 */
3589 pci_set_power_state(dev, PCI_D0);
3590
Alex Williamson77cb9852013-08-08 14:09:49 -06003591 pci_save_state(dev);
3592 /*
3593 * Disable the device by clearing the Command register, except for
3594 * INTx-disable which is set. This not only disables MMIO and I/O port
3595 * BARs, but also prevents the device from being Bus Master, preventing
3596 * DMA from the device including MSI/MSI-X interrupts. For PCI 2.3
3597 * compliant devices, INTx-disable prevents legacy interrupts.
3598 */
3599 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
3600}
3601
3602static void pci_dev_restore(struct pci_dev *dev)
3603{
3604 pci_restore_state(dev);
Keith Busch3ebe7f92014-05-02 10:40:42 -06003605 pci_reset_notify(dev, false);
Alex Williamson77cb9852013-08-08 14:09:49 -06003606}
3607
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003608static int pci_dev_reset(struct pci_dev *dev, int probe)
3609{
3610 int rc;
3611
Alex Williamson77cb9852013-08-08 14:09:49 -06003612 if (!probe)
3613 pci_dev_lock(dev);
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003614
3615 rc = __pci_dev_reset(dev, probe);
3616
Alex Williamson77cb9852013-08-08 14:09:49 -06003617 if (!probe)
3618 pci_dev_unlock(dev);
3619
Yu Zhao8c1c6992009-06-13 15:52:13 +08003620 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003621}
Keith Busch3ebe7f92014-05-02 10:40:42 -06003622
Sheng Yang8dd7f802008-10-21 17:38:25 +08003623/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08003624 * __pci_reset_function - reset a PCI device function
3625 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08003626 *
3627 * Some devices allow an individual function to be reset without affecting
3628 * other functions in the same device. The PCI device must be responsive
3629 * to PCI config space in order to use this function.
3630 *
3631 * The device function is presumed to be unused when this function is called.
3632 * Resetting the device will make the contents of PCI configuration space
3633 * random, so any caller of this must be prepared to reinitialise the
3634 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3635 * etc.
3636 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08003637 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08003638 * device doesn't support resetting a single function.
3639 */
Yu Zhao8c1c6992009-06-13 15:52:13 +08003640int __pci_reset_function(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003641{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003642 return pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003643}
Yu Zhao8c1c6992009-06-13 15:52:13 +08003644EXPORT_SYMBOL_GPL(__pci_reset_function);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003645
3646/**
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05003647 * __pci_reset_function_locked - reset a PCI device function while holding
3648 * the @dev mutex lock.
3649 * @dev: PCI device to reset
3650 *
3651 * Some devices allow an individual function to be reset without affecting
3652 * other functions in the same device. The PCI device must be responsive
3653 * to PCI config space in order to use this function.
3654 *
3655 * The device function is presumed to be unused and the caller is holding
3656 * the device mutex lock when this function is called.
3657 * Resetting the device will make the contents of PCI configuration space
3658 * random, so any caller of this must be prepared to reinitialise the
3659 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3660 * etc.
3661 *
3662 * Returns 0 if the device function was successfully reset or negative if the
3663 * device doesn't support resetting a single function.
3664 */
3665int __pci_reset_function_locked(struct pci_dev *dev)
3666{
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003667 return __pci_dev_reset(dev, 0);
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05003668}
3669EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
3670
3671/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03003672 * pci_probe_reset_function - check whether the device can be safely reset
3673 * @dev: PCI device to reset
3674 *
3675 * Some devices allow an individual function to be reset without affecting
3676 * other functions in the same device. The PCI device must be responsive
3677 * to PCI config space in order to use this function.
3678 *
3679 * Returns 0 if the device function can be reset or negative if the
3680 * device doesn't support resetting a single function.
3681 */
3682int pci_probe_reset_function(struct pci_dev *dev)
3683{
3684 return pci_dev_reset(dev, 1);
3685}
3686
3687/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08003688 * pci_reset_function - quiesce and reset a PCI device function
3689 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08003690 *
3691 * Some devices allow an individual function to be reset without affecting
3692 * other functions in the same device. The PCI device must be responsive
3693 * to PCI config space in order to use this function.
3694 *
3695 * This function does not just reset the PCI portion of a device, but
3696 * clears all the state associated with the device. This function differs
Yu Zhao8c1c6992009-06-13 15:52:13 +08003697 * from __pci_reset_function in that it saves and restores device state
Sheng Yang8dd7f802008-10-21 17:38:25 +08003698 * over the reset.
3699 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08003700 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08003701 * device doesn't support resetting a single function.
3702 */
3703int pci_reset_function(struct pci_dev *dev)
3704{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003705 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003706
Yu Zhao8c1c6992009-06-13 15:52:13 +08003707 rc = pci_dev_reset(dev, 1);
3708 if (rc)
3709 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003710
Alex Williamson77cb9852013-08-08 14:09:49 -06003711 pci_dev_save_and_disable(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003712
Yu Zhao8c1c6992009-06-13 15:52:13 +08003713 rc = pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003714
Alex Williamson77cb9852013-08-08 14:09:49 -06003715 pci_dev_restore(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003716
Yu Zhao8c1c6992009-06-13 15:52:13 +08003717 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003718}
3719EXPORT_SYMBOL_GPL(pci_reset_function);
3720
Alex Williamson61cf16d2013-12-16 15:14:31 -07003721/**
3722 * pci_try_reset_function - quiesce and reset a PCI device function
3723 * @dev: PCI device to reset
3724 *
3725 * Same as above, except return -EAGAIN if unable to lock device.
3726 */
3727int pci_try_reset_function(struct pci_dev *dev)
3728{
3729 int rc;
3730
3731 rc = pci_dev_reset(dev, 1);
3732 if (rc)
3733 return rc;
3734
3735 pci_dev_save_and_disable(dev);
3736
3737 if (pci_dev_trylock(dev)) {
3738 rc = __pci_dev_reset(dev, 0);
3739 pci_dev_unlock(dev);
3740 } else
3741 rc = -EAGAIN;
3742
3743 pci_dev_restore(dev);
3744
3745 return rc;
3746}
3747EXPORT_SYMBOL_GPL(pci_try_reset_function);
3748
Alex Williamsonf331a852015-01-15 18:16:04 -06003749/* Do any devices on or below this bus prevent a bus reset? */
3750static bool pci_bus_resetable(struct pci_bus *bus)
3751{
3752 struct pci_dev *dev;
3753
3754 list_for_each_entry(dev, &bus->devices, bus_list) {
3755 if (dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET ||
3756 (dev->subordinate && !pci_bus_resetable(dev->subordinate)))
3757 return false;
3758 }
3759
3760 return true;
3761}
3762
Alex Williamson090a3c52013-08-08 14:09:55 -06003763/* Lock devices from the top of the tree down */
3764static void pci_bus_lock(struct pci_bus *bus)
3765{
3766 struct pci_dev *dev;
3767
3768 list_for_each_entry(dev, &bus->devices, bus_list) {
3769 pci_dev_lock(dev);
3770 if (dev->subordinate)
3771 pci_bus_lock(dev->subordinate);
3772 }
3773}
3774
3775/* Unlock devices from the bottom of the tree up */
3776static void pci_bus_unlock(struct pci_bus *bus)
3777{
3778 struct pci_dev *dev;
3779
3780 list_for_each_entry(dev, &bus->devices, bus_list) {
3781 if (dev->subordinate)
3782 pci_bus_unlock(dev->subordinate);
3783 pci_dev_unlock(dev);
3784 }
3785}
3786
Alex Williamson61cf16d2013-12-16 15:14:31 -07003787/* Return 1 on successful lock, 0 on contention */
3788static int pci_bus_trylock(struct pci_bus *bus)
3789{
3790 struct pci_dev *dev;
3791
3792 list_for_each_entry(dev, &bus->devices, bus_list) {
3793 if (!pci_dev_trylock(dev))
3794 goto unlock;
3795 if (dev->subordinate) {
3796 if (!pci_bus_trylock(dev->subordinate)) {
3797 pci_dev_unlock(dev);
3798 goto unlock;
3799 }
3800 }
3801 }
3802 return 1;
3803
3804unlock:
3805 list_for_each_entry_continue_reverse(dev, &bus->devices, bus_list) {
3806 if (dev->subordinate)
3807 pci_bus_unlock(dev->subordinate);
3808 pci_dev_unlock(dev);
3809 }
3810 return 0;
3811}
3812
Alex Williamsonf331a852015-01-15 18:16:04 -06003813/* Do any devices on or below this slot prevent a bus reset? */
3814static bool pci_slot_resetable(struct pci_slot *slot)
3815{
3816 struct pci_dev *dev;
3817
3818 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3819 if (!dev->slot || dev->slot != slot)
3820 continue;
3821 if (dev->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET ||
3822 (dev->subordinate && !pci_bus_resetable(dev->subordinate)))
3823 return false;
3824 }
3825
3826 return true;
3827}
3828
Alex Williamson090a3c52013-08-08 14:09:55 -06003829/* Lock devices from the top of the tree down */
3830static void pci_slot_lock(struct pci_slot *slot)
3831{
3832 struct pci_dev *dev;
3833
3834 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3835 if (!dev->slot || dev->slot != slot)
3836 continue;
3837 pci_dev_lock(dev);
3838 if (dev->subordinate)
3839 pci_bus_lock(dev->subordinate);
3840 }
3841}
3842
3843/* Unlock devices from the bottom of the tree up */
3844static void pci_slot_unlock(struct pci_slot *slot)
3845{
3846 struct pci_dev *dev;
3847
3848 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3849 if (!dev->slot || dev->slot != slot)
3850 continue;
3851 if (dev->subordinate)
3852 pci_bus_unlock(dev->subordinate);
3853 pci_dev_unlock(dev);
3854 }
3855}
3856
Alex Williamson61cf16d2013-12-16 15:14:31 -07003857/* Return 1 on successful lock, 0 on contention */
3858static int pci_slot_trylock(struct pci_slot *slot)
3859{
3860 struct pci_dev *dev;
3861
3862 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3863 if (!dev->slot || dev->slot != slot)
3864 continue;
3865 if (!pci_dev_trylock(dev))
3866 goto unlock;
3867 if (dev->subordinate) {
3868 if (!pci_bus_trylock(dev->subordinate)) {
3869 pci_dev_unlock(dev);
3870 goto unlock;
3871 }
3872 }
3873 }
3874 return 1;
3875
3876unlock:
3877 list_for_each_entry_continue_reverse(dev,
3878 &slot->bus->devices, bus_list) {
3879 if (!dev->slot || dev->slot != slot)
3880 continue;
3881 if (dev->subordinate)
3882 pci_bus_unlock(dev->subordinate);
3883 pci_dev_unlock(dev);
3884 }
3885 return 0;
3886}
3887
Alex Williamson090a3c52013-08-08 14:09:55 -06003888/* Save and disable devices from the top of the tree down */
3889static void pci_bus_save_and_disable(struct pci_bus *bus)
3890{
3891 struct pci_dev *dev;
3892
3893 list_for_each_entry(dev, &bus->devices, bus_list) {
3894 pci_dev_save_and_disable(dev);
3895 if (dev->subordinate)
3896 pci_bus_save_and_disable(dev->subordinate);
3897 }
3898}
3899
3900/*
3901 * Restore devices from top of the tree down - parent bridges need to be
3902 * restored before we can get to subordinate devices.
3903 */
3904static void pci_bus_restore(struct pci_bus *bus)
3905{
3906 struct pci_dev *dev;
3907
3908 list_for_each_entry(dev, &bus->devices, bus_list) {
3909 pci_dev_restore(dev);
3910 if (dev->subordinate)
3911 pci_bus_restore(dev->subordinate);
3912 }
3913}
3914
3915/* Save and disable devices from the top of the tree down */
3916static void pci_slot_save_and_disable(struct pci_slot *slot)
3917{
3918 struct pci_dev *dev;
3919
3920 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3921 if (!dev->slot || dev->slot != slot)
3922 continue;
3923 pci_dev_save_and_disable(dev);
3924 if (dev->subordinate)
3925 pci_bus_save_and_disable(dev->subordinate);
3926 }
3927}
3928
3929/*
3930 * Restore devices from top of the tree down - parent bridges need to be
3931 * restored before we can get to subordinate devices.
3932 */
3933static void pci_slot_restore(struct pci_slot *slot)
3934{
3935 struct pci_dev *dev;
3936
3937 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3938 if (!dev->slot || dev->slot != slot)
3939 continue;
3940 pci_dev_restore(dev);
3941 if (dev->subordinate)
3942 pci_bus_restore(dev->subordinate);
3943 }
3944}
3945
3946static int pci_slot_reset(struct pci_slot *slot, int probe)
3947{
3948 int rc;
3949
Alex Williamsonf331a852015-01-15 18:16:04 -06003950 if (!slot || !pci_slot_resetable(slot))
Alex Williamson090a3c52013-08-08 14:09:55 -06003951 return -ENOTTY;
3952
3953 if (!probe)
3954 pci_slot_lock(slot);
3955
3956 might_sleep();
3957
3958 rc = pci_reset_hotplug_slot(slot->hotplug, probe);
3959
3960 if (!probe)
3961 pci_slot_unlock(slot);
3962
3963 return rc;
3964}
3965
3966/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06003967 * pci_probe_reset_slot - probe whether a PCI slot can be reset
3968 * @slot: PCI slot to probe
3969 *
3970 * Return 0 if slot can be reset, negative if a slot reset is not supported.
3971 */
3972int pci_probe_reset_slot(struct pci_slot *slot)
3973{
3974 return pci_slot_reset(slot, 1);
3975}
3976EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
3977
3978/**
Alex Williamson090a3c52013-08-08 14:09:55 -06003979 * pci_reset_slot - reset a PCI slot
3980 * @slot: PCI slot to reset
3981 *
3982 * A PCI bus may host multiple slots, each slot may support a reset mechanism
3983 * independent of other slots. For instance, some slots may support slot power
3984 * control. In the case of a 1:1 bus to slot architecture, this function may
3985 * wrap the bus reset to avoid spurious slot related events such as hotplug.
3986 * Generally a slot reset should be attempted before a bus reset. All of the
3987 * function of the slot and any subordinate buses behind the slot are reset
3988 * through this function. PCI config space of all devices in the slot and
3989 * behind the slot is saved before and restored after reset.
3990 *
3991 * Return 0 on success, non-zero on error.
3992 */
3993int pci_reset_slot(struct pci_slot *slot)
3994{
3995 int rc;
3996
3997 rc = pci_slot_reset(slot, 1);
3998 if (rc)
3999 return rc;
4000
4001 pci_slot_save_and_disable(slot);
4002
4003 rc = pci_slot_reset(slot, 0);
4004
4005 pci_slot_restore(slot);
4006
4007 return rc;
4008}
4009EXPORT_SYMBOL_GPL(pci_reset_slot);
4010
Alex Williamson61cf16d2013-12-16 15:14:31 -07004011/**
4012 * pci_try_reset_slot - Try to reset a PCI slot
4013 * @slot: PCI slot to reset
4014 *
4015 * Same as above except return -EAGAIN if the slot cannot be locked
4016 */
4017int pci_try_reset_slot(struct pci_slot *slot)
4018{
4019 int rc;
4020
4021 rc = pci_slot_reset(slot, 1);
4022 if (rc)
4023 return rc;
4024
4025 pci_slot_save_and_disable(slot);
4026
4027 if (pci_slot_trylock(slot)) {
4028 might_sleep();
4029 rc = pci_reset_hotplug_slot(slot->hotplug, 0);
4030 pci_slot_unlock(slot);
4031 } else
4032 rc = -EAGAIN;
4033
4034 pci_slot_restore(slot);
4035
4036 return rc;
4037}
4038EXPORT_SYMBOL_GPL(pci_try_reset_slot);
4039
Alex Williamson090a3c52013-08-08 14:09:55 -06004040static int pci_bus_reset(struct pci_bus *bus, int probe)
4041{
Alex Williamsonf331a852015-01-15 18:16:04 -06004042 if (!bus->self || !pci_bus_resetable(bus))
Alex Williamson090a3c52013-08-08 14:09:55 -06004043 return -ENOTTY;
4044
4045 if (probe)
4046 return 0;
4047
4048 pci_bus_lock(bus);
4049
4050 might_sleep();
4051
4052 pci_reset_bridge_secondary_bus(bus->self);
4053
4054 pci_bus_unlock(bus);
4055
4056 return 0;
4057}
4058
4059/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06004060 * pci_probe_reset_bus - probe whether a PCI bus can be reset
4061 * @bus: PCI bus to probe
4062 *
4063 * Return 0 if bus can be reset, negative if a bus reset is not supported.
4064 */
4065int pci_probe_reset_bus(struct pci_bus *bus)
4066{
4067 return pci_bus_reset(bus, 1);
4068}
4069EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
4070
4071/**
Alex Williamson090a3c52013-08-08 14:09:55 -06004072 * pci_reset_bus - reset a PCI bus
4073 * @bus: top level PCI bus to reset
4074 *
4075 * Do a bus reset on the given bus and any subordinate buses, saving
4076 * and restoring state of all devices.
4077 *
4078 * Return 0 on success, non-zero on error.
4079 */
4080int pci_reset_bus(struct pci_bus *bus)
4081{
4082 int rc;
4083
4084 rc = pci_bus_reset(bus, 1);
4085 if (rc)
4086 return rc;
4087
4088 pci_bus_save_and_disable(bus);
4089
4090 rc = pci_bus_reset(bus, 0);
4091
4092 pci_bus_restore(bus);
4093
4094 return rc;
4095}
4096EXPORT_SYMBOL_GPL(pci_reset_bus);
4097
Sheng Yang8dd7f802008-10-21 17:38:25 +08004098/**
Alex Williamson61cf16d2013-12-16 15:14:31 -07004099 * pci_try_reset_bus - Try to reset a PCI bus
4100 * @bus: top level PCI bus to reset
4101 *
4102 * Same as above except return -EAGAIN if the bus cannot be locked
4103 */
4104int pci_try_reset_bus(struct pci_bus *bus)
4105{
4106 int rc;
4107
4108 rc = pci_bus_reset(bus, 1);
4109 if (rc)
4110 return rc;
4111
4112 pci_bus_save_and_disable(bus);
4113
4114 if (pci_bus_trylock(bus)) {
4115 might_sleep();
4116 pci_reset_bridge_secondary_bus(bus->self);
4117 pci_bus_unlock(bus);
4118 } else
4119 rc = -EAGAIN;
4120
4121 pci_bus_restore(bus);
4122
4123 return rc;
4124}
4125EXPORT_SYMBOL_GPL(pci_try_reset_bus);
4126
4127/**
Peter Orubad556ad42007-05-15 13:59:13 +02004128 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
4129 * @dev: PCI device to query
4130 *
4131 * Returns mmrbc: maximum designed memory read count in bytes
4132 * or appropriate error value.
4133 */
4134int pcix_get_max_mmrbc(struct pci_dev *dev)
4135{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004136 int cap;
Peter Orubad556ad42007-05-15 13:59:13 +02004137 u32 stat;
4138
4139 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
4140 if (!cap)
4141 return -EINVAL;
4142
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004143 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
Peter Orubad556ad42007-05-15 13:59:13 +02004144 return -EINVAL;
4145
Dean Nelson25daeb52010-03-09 22:26:40 -05004146 return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
Peter Orubad556ad42007-05-15 13:59:13 +02004147}
4148EXPORT_SYMBOL(pcix_get_max_mmrbc);
4149
4150/**
4151 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
4152 * @dev: PCI device to query
4153 *
4154 * Returns mmrbc: maximum memory read count in bytes
4155 * or appropriate error value.
4156 */
4157int pcix_get_mmrbc(struct pci_dev *dev)
4158{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004159 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05004160 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02004161
4162 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
4163 if (!cap)
4164 return -EINVAL;
4165
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004166 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
4167 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004168
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004169 return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
Peter Orubad556ad42007-05-15 13:59:13 +02004170}
4171EXPORT_SYMBOL(pcix_get_mmrbc);
4172
4173/**
4174 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
4175 * @dev: PCI device to query
4176 * @mmrbc: maximum memory read count in bytes
4177 * valid values are 512, 1024, 2048, 4096
4178 *
4179 * If possible sets maximum memory read byte count, some bridges have erratas
4180 * that prevent this.
4181 */
4182int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
4183{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004184 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05004185 u32 stat, v, o;
4186 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02004187
vignesh babu229f5af2007-08-13 18:23:14 +05304188 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004189 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004190
4191 v = ffs(mmrbc) - 10;
4192
4193 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
4194 if (!cap)
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004195 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004196
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004197 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
4198 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004199
4200 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
4201 return -E2BIG;
4202
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004203 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
4204 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004205
4206 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
4207 if (o != v) {
Bjorn Helgaas809a3bf2012-06-20 16:41:16 -06004208 if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
Peter Orubad556ad42007-05-15 13:59:13 +02004209 return -EIO;
4210
4211 cmd &= ~PCI_X_CMD_MAX_READ;
4212 cmd |= v << 2;
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004213 if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
4214 return -EIO;
Peter Orubad556ad42007-05-15 13:59:13 +02004215 }
Dean Nelson7c9e2b12010-03-09 22:26:55 -05004216 return 0;
Peter Orubad556ad42007-05-15 13:59:13 +02004217}
4218EXPORT_SYMBOL(pcix_set_mmrbc);
4219
4220/**
4221 * pcie_get_readrq - get PCI Express read request size
4222 * @dev: PCI device to query
4223 *
4224 * Returns maximum memory read request in bytes
4225 * or appropriate error value.
4226 */
4227int pcie_get_readrq(struct pci_dev *dev)
4228{
Peter Orubad556ad42007-05-15 13:59:13 +02004229 u16 ctl;
4230
Jiang Liu59875ae2012-07-24 17:20:06 +08004231 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Peter Orubad556ad42007-05-15 13:59:13 +02004232
Jiang Liu59875ae2012-07-24 17:20:06 +08004233 return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
Peter Orubad556ad42007-05-15 13:59:13 +02004234}
4235EXPORT_SYMBOL(pcie_get_readrq);
4236
4237/**
4238 * pcie_set_readrq - set PCI Express maximum memory read request
4239 * @dev: PCI device to query
Randy Dunlap42e61f4a2007-07-23 21:42:11 -07004240 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02004241 * valid values are 128, 256, 512, 1024, 2048, 4096
4242 *
Jon Masonc9b378c2011-06-28 18:26:25 -05004243 * If possible sets maximum memory read request in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02004244 */
4245int pcie_set_readrq(struct pci_dev *dev, int rq)
4246{
Jiang Liu59875ae2012-07-24 17:20:06 +08004247 u16 v;
Peter Orubad556ad42007-05-15 13:59:13 +02004248
vignesh babu229f5af2007-08-13 18:23:14 +05304249 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Jiang Liu59875ae2012-07-24 17:20:06 +08004250 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02004251
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05004252 /*
4253 * If using the "performance" PCIe config, we clamp the
4254 * read rq size to the max packet size to prevent the
4255 * host bridge generating requests larger than we can
4256 * cope with
4257 */
4258 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
4259 int mps = pcie_get_mps(dev);
4260
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05004261 if (mps < rq)
4262 rq = mps;
4263 }
4264
4265 v = (ffs(rq) - 8) << 12;
Peter Orubad556ad42007-05-15 13:59:13 +02004266
Jiang Liu59875ae2012-07-24 17:20:06 +08004267 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
4268 PCI_EXP_DEVCTL_READRQ, v);
Peter Orubad556ad42007-05-15 13:59:13 +02004269}
4270EXPORT_SYMBOL(pcie_set_readrq);
4271
4272/**
Jon Masonb03e7492011-07-20 15:20:54 -05004273 * pcie_get_mps - get PCI Express maximum payload size
4274 * @dev: PCI device to query
4275 *
4276 * Returns maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05004277 */
4278int pcie_get_mps(struct pci_dev *dev)
4279{
Jon Masonb03e7492011-07-20 15:20:54 -05004280 u16 ctl;
4281
Jiang Liu59875ae2012-07-24 17:20:06 +08004282 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Jon Masonb03e7492011-07-20 15:20:54 -05004283
Jiang Liu59875ae2012-07-24 17:20:06 +08004284 return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
Jon Masonb03e7492011-07-20 15:20:54 -05004285}
Yijing Wangf1c66c42013-09-24 12:08:06 -06004286EXPORT_SYMBOL(pcie_get_mps);
Jon Masonb03e7492011-07-20 15:20:54 -05004287
4288/**
4289 * pcie_set_mps - set PCI Express maximum payload size
4290 * @dev: PCI device to query
Randy Dunlap47c08f32011-08-20 11:49:43 -07004291 * @mps: maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05004292 * valid values are 128, 256, 512, 1024, 2048, 4096
4293 *
4294 * If possible sets maximum payload size
4295 */
4296int pcie_set_mps(struct pci_dev *dev, int mps)
4297{
Jiang Liu59875ae2012-07-24 17:20:06 +08004298 u16 v;
Jon Masonb03e7492011-07-20 15:20:54 -05004299
4300 if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
Jiang Liu59875ae2012-07-24 17:20:06 +08004301 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05004302
4303 v = ffs(mps) - 8;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07004304 if (v > dev->pcie_mpss)
Jiang Liu59875ae2012-07-24 17:20:06 +08004305 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05004306 v <<= 5;
4307
Jiang Liu59875ae2012-07-24 17:20:06 +08004308 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
4309 PCI_EXP_DEVCTL_PAYLOAD, v);
Jon Masonb03e7492011-07-20 15:20:54 -05004310}
Yijing Wangf1c66c42013-09-24 12:08:06 -06004311EXPORT_SYMBOL(pcie_set_mps);
Jon Masonb03e7492011-07-20 15:20:54 -05004312
4313/**
Jacob Keller81377c82013-07-31 06:53:26 +00004314 * pcie_get_minimum_link - determine minimum link settings of a PCI device
4315 * @dev: PCI device to query
4316 * @speed: storage for minimum speed
4317 * @width: storage for minimum width
4318 *
4319 * This function will walk up the PCI device chain and determine the minimum
4320 * link width and speed of the device.
4321 */
4322int pcie_get_minimum_link(struct pci_dev *dev, enum pci_bus_speed *speed,
4323 enum pcie_link_width *width)
4324{
4325 int ret;
4326
4327 *speed = PCI_SPEED_UNKNOWN;
4328 *width = PCIE_LNK_WIDTH_UNKNOWN;
4329
4330 while (dev) {
4331 u16 lnksta;
4332 enum pci_bus_speed next_speed;
4333 enum pcie_link_width next_width;
4334
4335 ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
4336 if (ret)
4337 return ret;
4338
4339 next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
4340 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
4341 PCI_EXP_LNKSTA_NLW_SHIFT;
4342
4343 if (next_speed < *speed)
4344 *speed = next_speed;
4345
4346 if (next_width < *width)
4347 *width = next_width;
4348
4349 dev = dev->bus->self;
4350 }
4351
4352 return 0;
4353}
4354EXPORT_SYMBOL(pcie_get_minimum_link);
4355
4356/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004357 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08004358 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004359 * @flags: resource type mask to be selected
4360 *
4361 * This helper routine makes bar mask from the type of resource.
4362 */
4363int pci_select_bars(struct pci_dev *dev, unsigned long flags)
4364{
4365 int i, bars = 0;
4366 for (i = 0; i < PCI_NUM_RESOURCES; i++)
4367 if (pci_resource_flags(dev, i) & flags)
4368 bars |= (1 << i);
4369 return bars;
4370}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06004371EXPORT_SYMBOL(pci_select_bars);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004372
Yu Zhao613e7ed2008-11-22 02:41:27 +08004373/**
4374 * pci_resource_bar - get position of the BAR associated with a resource
4375 * @dev: the PCI device
4376 * @resno: the resource number
4377 * @type: the BAR type to be filled in
4378 *
4379 * Returns BAR position in config space, or 0 if the BAR is invalid.
4380 */
4381int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
4382{
Yu Zhaod1b054d2009-03-20 11:25:11 +08004383 int reg;
4384
Yu Zhao613e7ed2008-11-22 02:41:27 +08004385 if (resno < PCI_ROM_RESOURCE) {
4386 *type = pci_bar_unknown;
4387 return PCI_BASE_ADDRESS_0 + 4 * resno;
4388 } else if (resno == PCI_ROM_RESOURCE) {
4389 *type = pci_bar_mem32;
4390 return dev->rom_base_reg;
Yu Zhaod1b054d2009-03-20 11:25:11 +08004391 } else if (resno < PCI_BRIDGE_RESOURCES) {
4392 /* device specific resource */
Myron Stowe26ff46c2014-11-11 08:04:50 -07004393 *type = pci_bar_unknown;
4394 reg = pci_iov_resource_bar(dev, resno);
Yu Zhaod1b054d2009-03-20 11:25:11 +08004395 if (reg)
4396 return reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +08004397 }
4398
Bjorn Helgaas865df572009-11-04 10:32:57 -07004399 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
Yu Zhao613e7ed2008-11-22 02:41:27 +08004400 return 0;
4401}
4402
Mike Travis95a8b6e2010-02-02 14:38:13 -08004403/* Some architectures require additional programming to enable VGA */
4404static arch_set_vga_state_t arch_set_vga_state;
4405
4406void __init pci_register_set_vga_state(arch_set_vga_state_t func)
4407{
4408 arch_set_vga_state = func; /* NULL disables */
4409}
4410
4411static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004412 unsigned int command_bits, u32 flags)
Mike Travis95a8b6e2010-02-02 14:38:13 -08004413{
4414 if (arch_set_vga_state)
4415 return arch_set_vga_state(dev, decode, command_bits,
Dave Airlie7ad35cf2011-05-25 14:00:49 +10004416 flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08004417 return 0;
4418}
4419
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004420/**
4421 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07004422 * @dev: the PCI device
4423 * @decode: true = enable decoding, false = disable decoding
4424 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
Randy Dunlap3f37d622011-05-25 19:21:25 -07004425 * @flags: traverse ancestors and change bridges
Dave Airlie3448a192010-06-01 15:32:24 +10004426 * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004427 */
4428int pci_set_vga_state(struct pci_dev *dev, bool decode,
Dave Airlie3448a192010-06-01 15:32:24 +10004429 unsigned int command_bits, u32 flags)
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004430{
4431 struct pci_bus *bus;
4432 struct pci_dev *bridge;
4433 u16 cmd;
Mike Travis95a8b6e2010-02-02 14:38:13 -08004434 int rc;
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004435
Bjorn Helgaas67ebd812014-04-05 15:14:22 -06004436 WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) && (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004437
Mike Travis95a8b6e2010-02-02 14:38:13 -08004438 /* ARCH specific VGA enables */
Dave Airlie3448a192010-06-01 15:32:24 +10004439 rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08004440 if (rc)
4441 return rc;
4442
Dave Airlie3448a192010-06-01 15:32:24 +10004443 if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
4444 pci_read_config_word(dev, PCI_COMMAND, &cmd);
4445 if (decode == true)
4446 cmd |= command_bits;
4447 else
4448 cmd &= ~command_bits;
4449 pci_write_config_word(dev, PCI_COMMAND, cmd);
4450 }
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004451
Dave Airlie3448a192010-06-01 15:32:24 +10004452 if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004453 return 0;
4454
4455 bus = dev->bus;
4456 while (bus) {
4457 bridge = bus->self;
4458 if (bridge) {
4459 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
4460 &cmd);
4461 if (decode == true)
4462 cmd |= PCI_BRIDGE_CTL_VGA;
4463 else
4464 cmd &= ~PCI_BRIDGE_CTL_VGA;
4465 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
4466 cmd);
4467 }
4468 bus = bus->parent;
4469 }
4470 return 0;
4471}
4472
Rafael J. Wysocki8496e852013-12-01 02:34:37 +01004473bool pci_device_is_present(struct pci_dev *pdev)
4474{
4475 u32 v;
4476
4477 return pci_bus_read_dev_vendor_id(pdev->bus, pdev->devfn, &v, 0);
4478}
4479EXPORT_SYMBOL_GPL(pci_device_is_present);
4480
Rafael J. Wysocki08249652015-04-13 16:23:36 +02004481void pci_ignore_hotplug(struct pci_dev *dev)
4482{
4483 struct pci_dev *bridge = dev->bus->self;
4484
4485 dev->ignore_hotplug = 1;
4486 /* Propagate the "ignore hotplug" setting to the parent bridge. */
4487 if (bridge)
4488 bridge->ignore_hotplug = 1;
4489}
4490EXPORT_SYMBOL_GPL(pci_ignore_hotplug);
4491
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004492#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
4493static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00004494static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004495
4496/**
4497 * pci_specified_resource_alignment - get resource alignment specified by user.
4498 * @dev: the PCI device to get
4499 *
4500 * RETURNS: Resource alignment if it is specified.
4501 * Zero if it is not specified.
4502 */
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004503static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004504{
4505 int seg, bus, slot, func, align_order, count;
4506 resource_size_t align = 0;
4507 char *p;
4508
4509 spin_lock(&resource_alignment_lock);
4510 p = resource_alignment_param;
4511 while (*p) {
4512 count = 0;
4513 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
4514 p[count] == '@') {
4515 p += count + 1;
4516 } else {
4517 align_order = -1;
4518 }
4519 if (sscanf(p, "%x:%x:%x.%x%n",
4520 &seg, &bus, &slot, &func, &count) != 4) {
4521 seg = 0;
4522 if (sscanf(p, "%x:%x.%x%n",
4523 &bus, &slot, &func, &count) != 3) {
4524 /* Invalid format */
4525 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
4526 p);
4527 break;
4528 }
4529 }
4530 p += count;
4531 if (seg == pci_domain_nr(dev->bus) &&
4532 bus == dev->bus->number &&
4533 slot == PCI_SLOT(dev->devfn) &&
4534 func == PCI_FUNC(dev->devfn)) {
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004535 if (align_order == -1)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004536 align = PAGE_SIZE;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04004537 else
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004538 align = 1 << align_order;
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004539 /* Found */
4540 break;
4541 }
4542 if (*p != ';' && *p != ',') {
4543 /* End of param or invalid format */
4544 break;
4545 }
4546 p++;
4547 }
4548 spin_unlock(&resource_alignment_lock);
4549 return align;
4550}
4551
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004552/*
4553 * This function disables memory decoding and releases memory resources
4554 * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
4555 * It also rounds up size to specified alignment.
4556 * Later on, the kernel will assign page-aligned memory resource back
4557 * to the device.
4558 */
4559void pci_reassigndev_resource_alignment(struct pci_dev *dev)
4560{
4561 int i;
4562 struct resource *r;
4563 resource_size_t align, size;
4564 u16 command;
4565
Yinghai Lu10c463a2012-03-18 22:46:26 -07004566 /* check if specified PCI is target device to reassign */
4567 align = pci_specified_resource_alignment(dev);
4568 if (!align)
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004569 return;
4570
4571 if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
4572 (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
4573 dev_warn(&dev->dev,
4574 "Can't reassign resources to host bridge.\n");
4575 return;
4576 }
4577
4578 dev_info(&dev->dev,
4579 "Disabling memory decoding and releasing memory resources.\n");
4580 pci_read_config_word(dev, PCI_COMMAND, &command);
4581 command &= ~PCI_COMMAND_MEMORY;
4582 pci_write_config_word(dev, PCI_COMMAND, command);
4583
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004584 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
4585 r = &dev->resource[i];
4586 if (!(r->flags & IORESOURCE_MEM))
4587 continue;
4588 size = resource_size(r);
4589 if (size < align) {
4590 size = align;
4591 dev_info(&dev->dev,
4592 "Rounding up size of resource #%d to %#llx.\n",
4593 i, (unsigned long long)size);
4594 }
Bjorn Helgaasbd064f02014-02-26 11:25:58 -07004595 r->flags |= IORESOURCE_UNSET;
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004596 r->end = size - 1;
4597 r->start = 0;
4598 }
4599 /* Need to disable bridge's resource window,
4600 * to enable the kernel to reassign new resource
4601 * window later on.
4602 */
4603 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
4604 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
4605 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
4606 r = &dev->resource[i];
4607 if (!(r->flags & IORESOURCE_MEM))
4608 continue;
Bjorn Helgaasbd064f02014-02-26 11:25:58 -07004609 r->flags |= IORESOURCE_UNSET;
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004610 r->end = resource_size(r) - 1;
4611 r->start = 0;
4612 }
4613 pci_disable_bridge_window(dev);
4614 }
4615}
4616
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004617static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004618{
4619 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
4620 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
4621 spin_lock(&resource_alignment_lock);
4622 strncpy(resource_alignment_param, buf, count);
4623 resource_alignment_param[count] = '\0';
4624 spin_unlock(&resource_alignment_lock);
4625 return count;
4626}
4627
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004628static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004629{
4630 size_t count;
4631 spin_lock(&resource_alignment_lock);
4632 count = snprintf(buf, size, "%s", resource_alignment_param);
4633 spin_unlock(&resource_alignment_lock);
4634 return count;
4635}
4636
4637static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
4638{
4639 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
4640}
4641
4642static ssize_t pci_resource_alignment_store(struct bus_type *bus,
4643 const char *buf, size_t count)
4644{
4645 return pci_set_resource_alignment_param(buf, count);
4646}
4647
4648BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
4649 pci_resource_alignment_store);
4650
4651static int __init pci_resource_alignment_sysfs_init(void)
4652{
4653 return bus_create_file(&pci_bus_type,
4654 &bus_attr_resource_alignment);
4655}
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004656late_initcall(pci_resource_alignment_sysfs_init);
4657
Bill Pemberton15856ad2012-11-21 15:35:00 -05004658static void pci_no_domains(void)
Jeff Garzik32a2eea2007-10-11 16:57:27 -04004659{
4660#ifdef CONFIG_PCI_DOMAINS
4661 pci_domains_supported = 0;
4662#endif
4663}
4664
Liviu Dudau41e5c0f2014-09-29 15:29:27 +01004665#ifdef CONFIG_PCI_DOMAINS
4666static atomic_t __domain_nr = ATOMIC_INIT(-1);
4667
4668int pci_get_new_domain_nr(void)
4669{
4670 return atomic_inc_return(&__domain_nr);
4671}
Lorenzo Pieralisi7c674702014-12-27 18:19:12 -07004672
4673#ifdef CONFIG_PCI_DOMAINS_GENERIC
4674void pci_bus_assign_domain_nr(struct pci_bus *bus, struct device *parent)
4675{
4676 static int use_dt_domains = -1;
4677 int domain = of_get_pci_domain_nr(parent->of_node);
4678
4679 /*
4680 * Check DT domain and use_dt_domains values.
4681 *
4682 * If DT domain property is valid (domain >= 0) and
4683 * use_dt_domains != 0, the DT assignment is valid since this means
4684 * we have not previously allocated a domain number by using
4685 * pci_get_new_domain_nr(); we should also update use_dt_domains to
4686 * 1, to indicate that we have just assigned a domain number from
4687 * DT.
4688 *
4689 * If DT domain property value is not valid (ie domain < 0), and we
4690 * have not previously assigned a domain number from DT
4691 * (use_dt_domains != 1) we should assign a domain number by
4692 * using the:
4693 *
4694 * pci_get_new_domain_nr()
4695 *
4696 * API and update the use_dt_domains value to keep track of method we
4697 * are using to assign domain numbers (use_dt_domains = 0).
4698 *
4699 * All other combinations imply we have a platform that is trying
4700 * to mix domain numbers obtained from DT and pci_get_new_domain_nr(),
4701 * which is a recipe for domain mishandling and it is prevented by
4702 * invalidating the domain value (domain = -1) and printing a
4703 * corresponding error.
4704 */
4705 if (domain >= 0 && use_dt_domains) {
4706 use_dt_domains = 1;
4707 } else if (domain < 0 && use_dt_domains != 1) {
4708 use_dt_domains = 0;
4709 domain = pci_get_new_domain_nr();
4710 } else {
4711 dev_err(parent, "Node %s has inconsistent \"linux,pci-domain\" property in DT\n",
4712 parent->of_node->full_name);
4713 domain = -1;
4714 }
4715
4716 bus->domain_nr = domain;
4717}
4718#endif
Liviu Dudau41e5c0f2014-09-29 15:29:27 +01004719#endif
4720
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004721/**
Taku Izumi642c92d2012-10-30 15:26:18 +09004722 * pci_ext_cfg_avail - can we access extended PCI config space?
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004723 *
4724 * Returns 1 if we can access PCI extended config space (offsets
4725 * greater than 0xff). This is the default implementation. Architecture
4726 * implementations can override this.
4727 */
Taku Izumi642c92d2012-10-30 15:26:18 +09004728int __weak pci_ext_cfg_avail(void)
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004729{
4730 return 1;
4731}
4732
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11004733void __weak pci_fixup_cardbus(struct pci_bus *bus)
4734{
4735}
4736EXPORT_SYMBOL(pci_fixup_cardbus);
4737
Al Viroad04d312008-11-22 17:37:14 +00004738static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739{
4740 while (str) {
4741 char *k = strchr(str, ',');
4742 if (k)
4743 *k++ = 0;
4744 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07004745 if (!strcmp(str, "nomsi")) {
4746 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07004747 } else if (!strcmp(str, "noaer")) {
4748 pci_no_aer();
Yinghai Lub55438f2012-02-23 19:23:30 -08004749 } else if (!strncmp(str, "realloc=", 8)) {
4750 pci_realloc_get_opt(str + 8);
Ram Paif483d392011-07-07 11:19:10 -07004751 } else if (!strncmp(str, "realloc", 7)) {
Yinghai Lub55438f2012-02-23 19:23:30 -08004752 pci_realloc_get_opt("on");
Jeff Garzik32a2eea2007-10-11 16:57:27 -04004753 } else if (!strcmp(str, "nodomains")) {
4754 pci_no_domains();
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01004755 } else if (!strncmp(str, "noari", 5)) {
4756 pcie_ari_disabled = true;
Atsushi Nemoto4516a612007-02-05 16:36:06 -08004757 } else if (!strncmp(str, "cbiosize=", 9)) {
4758 pci_cardbus_io_size = memparse(str + 9, &str);
4759 } else if (!strncmp(str, "cbmemsize=", 10)) {
4760 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09004761 } else if (!strncmp(str, "resource_alignment=", 19)) {
4762 pci_set_resource_alignment_param(str + 19,
4763 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06004764 } else if (!strncmp(str, "ecrc=", 5)) {
4765 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07004766 } else if (!strncmp(str, "hpiosize=", 9)) {
4767 pci_hotplug_io_size = memparse(str + 9, &str);
4768 } else if (!strncmp(str, "hpmemsize=", 10)) {
4769 pci_hotplug_mem_size = memparse(str + 10, &str);
Jon Mason5f39e672011-10-03 09:50:20 -05004770 } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
4771 pcie_bus_config = PCIE_BUS_TUNE_OFF;
Jon Masonb03e7492011-07-20 15:20:54 -05004772 } else if (!strncmp(str, "pcie_bus_safe", 13)) {
4773 pcie_bus_config = PCIE_BUS_SAFE;
4774 } else if (!strncmp(str, "pcie_bus_perf", 13)) {
4775 pcie_bus_config = PCIE_BUS_PERFORMANCE;
Jon Mason5f39e672011-10-03 09:50:20 -05004776 } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
4777 pcie_bus_config = PCIE_BUS_PEER2PEER;
Bjorn Helgaas284f5f92012-04-30 15:21:02 -06004778 } else if (!strncmp(str, "pcie_scan_all", 13)) {
4779 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07004780 } else {
4781 printk(KERN_ERR "PCI: Unknown option `%s'\n",
4782 str);
4783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 }
4785 str = k;
4786 }
Andi Kleen0637a702006-09-26 10:52:41 +02004787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788}
Andi Kleen0637a702006-09-26 10:52:41 +02004789early_param("pci", pci_setup);