blob: ac40f90cfd5f7f1965ca62b80700593f4f83ba84 [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>
13#include <linux/pci.h>
David Brownell075c1772007-04-26 00:12:06 -070014#include <linux/pm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080018#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053019#include <linux/log2.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080020#include <linux/pci-aspm.h>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020021#include <linux/pm_wakeup.h>
Sheng Yang8dd7f802008-10-21 17:38:25 +080022#include <linux/interrupt.h>
Yuji Shimada32a9a682009-03-16 17:13:39 +090023#include <linux/device.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010024#include <linux/pm_runtime.h>
Alex Williamson608c3882013-08-08 14:09:43 -060025#include <linux/pci_hotplug.h>
Bjorn Helgaas284f5f92012-04-30 15:21:02 -060026#include <asm-generic/pci-bridge.h>
Yuji Shimada32a9a682009-03-16 17:13:39 +090027#include <asm/setup.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090028#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Alan Stern00240c32009-04-27 13:33:16 -040030const char *pci_power_names[] = {
31 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
32};
33EXPORT_SYMBOL_GPL(pci_power_names);
34
Rafael J. Wysocki93177a72010-01-02 22:57:24 +010035int isa_dma_bridge_buggy;
36EXPORT_SYMBOL(isa_dma_bridge_buggy);
37
38int pci_pci_problems;
39EXPORT_SYMBOL(pci_pci_problems);
40
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010041unsigned int pci_pm_d3_delay;
42
Matthew Garrettdf17e622010-10-04 14:22:29 -040043static void pci_pme_list_scan(struct work_struct *work);
44
45static LIST_HEAD(pci_pme_list);
46static DEFINE_MUTEX(pci_pme_list_mutex);
47static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
48
49struct pci_pme_device {
50 struct list_head list;
51 struct pci_dev *dev;
52};
53
54#define PME_TIMEOUT 1000 /* How long between PME checks */
55
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010056static void pci_dev_d3_sleep(struct pci_dev *dev)
57{
58 unsigned int delay = dev->d3_delay;
59
60 if (delay < pci_pm_d3_delay)
61 delay = pci_pm_d3_delay;
62
63 msleep(delay);
64}
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Jeff Garzik32a2eea2007-10-11 16:57:27 -040066#ifdef CONFIG_PCI_DOMAINS
67int pci_domains_supported = 1;
68#endif
69
Atsushi Nemoto4516a612007-02-05 16:36:06 -080070#define DEFAULT_CARDBUS_IO_SIZE (256)
71#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
72/* pci=cbmemsize=nnM,cbiosize=nn can override this */
73unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
74unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
75
Eric W. Biederman28760482009-09-09 14:09:24 -070076#define DEFAULT_HOTPLUG_IO_SIZE (256)
77#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
78/* pci=hpmemsize=nnM,hpiosize=nn can override this */
79unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
80unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
81
Jon Mason5f39e672011-10-03 09:50:20 -050082enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_TUNE_OFF;
Jon Masonb03e7492011-07-20 15:20:54 -050083
Jesse Barnesac1aa472009-10-26 13:20:44 -070084/*
85 * The default CLS is used if arch didn't set CLS explicitly and not
86 * all pci devices agree on the same value. Arch can override either
87 * the dfl or actual value as it sees fit. Don't forget this is
88 * measured in 32-bit words, not bytes.
89 */
Bill Pemberton15856ad2012-11-21 15:35:00 -050090u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -070091u8 pci_cache_line_size;
92
Myron Stowe96c55902011-10-28 15:48:38 -060093/*
94 * If we set up a device for bus mastering, we need to check the latency
95 * timer as certain BIOSes forget to set it properly.
96 */
97unsigned int pcibios_max_latency = 255;
98
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +010099/* If set, the PCIe ARI capability will not be used. */
100static bool pcie_ari_disabled;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/**
103 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
104 * @bus: pointer to PCI bus structure to search
105 *
106 * Given a PCI bus, returns the highest PCI bus number present in the set
107 * including the given PCI bus and its list of child PCI buses.
108 */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800109unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct list_head *tmp;
112 unsigned char max, n;
113
Yinghai Lub918c622012-05-17 18:51:11 -0700114 max = bus->busn_res.end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 list_for_each(tmp, &bus->children) {
116 n = pci_bus_max_busnr(pci_bus_b(tmp));
117 if(n > max)
118 max = n;
119 }
120 return max;
121}
Kristen Accardib82db5c2006-01-17 16:56:56 -0800122EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Andrew Morton1684f5d2008-12-01 14:30:30 -0800124#ifdef CONFIG_HAS_IOMEM
125void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
126{
127 /*
128 * Make sure the BAR is actually a memory resource, not an IO resource
129 */
130 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
131 WARN_ON(1);
132 return NULL;
133 }
134 return ioremap_nocache(pci_resource_start(pdev, bar),
135 pci_resource_len(pdev, bar));
136}
137EXPORT_SYMBOL_GPL(pci_ioremap_bar);
138#endif
139
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100140#define PCI_FIND_CAP_TTL 48
141
142static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
143 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700144{
145 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -0700146
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100147 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700148 pci_bus_read_config_byte(bus, devfn, pos, &pos);
149 if (pos < 0x40)
150 break;
151 pos &= ~3;
152 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
153 &id);
154 if (id == 0xff)
155 break;
156 if (id == cap)
157 return pos;
158 pos += PCI_CAP_LIST_NEXT;
159 }
160 return 0;
161}
162
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100163static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
164 u8 pos, int cap)
165{
166 int ttl = PCI_FIND_CAP_TTL;
167
168 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
169}
170
Roland Dreier24a4e372005-10-28 17:35:34 -0700171int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
172{
173 return __pci_find_next_cap(dev->bus, dev->devfn,
174 pos + PCI_CAP_LIST_NEXT, cap);
175}
176EXPORT_SYMBOL_GPL(pci_find_next_capability);
177
Michael Ellermand3bac112006-11-22 18:26:16 +1100178static int __pci_bus_find_cap_start(struct pci_bus *bus,
179 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
184 if (!(status & PCI_STATUS_CAP_LIST))
185 return 0;
186
187 switch (hdr_type) {
188 case PCI_HEADER_TYPE_NORMAL:
189 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100190 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100192 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 default:
194 return 0;
195 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100196
197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200/**
201 * pci_find_capability - query for devices' capabilities
202 * @dev: PCI device to query
203 * @cap: capability code
204 *
205 * Tell if a device supports a given PCI capability.
206 * Returns the address of the requested capability structure within the
207 * device's PCI configuration space or 0 in case the device does not
208 * support it. Possible values for @cap:
209 *
210 * %PCI_CAP_ID_PM Power Management
211 * %PCI_CAP_ID_AGP Accelerated Graphics Port
212 * %PCI_CAP_ID_VPD Vital Product Data
213 * %PCI_CAP_ID_SLOTID Slot Identification
214 * %PCI_CAP_ID_MSI Message Signalled Interrupts
215 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
216 * %PCI_CAP_ID_PCIX PCI-X
217 * %PCI_CAP_ID_EXP PCI Express
218 */
219int pci_find_capability(struct pci_dev *dev, int cap)
220{
Michael Ellermand3bac112006-11-22 18:26:16 +1100221 int pos;
222
223 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
224 if (pos)
225 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
226
227 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230/**
231 * pci_bus_find_capability - query for devices' capabilities
232 * @bus: the PCI bus to query
233 * @devfn: PCI device to query
234 * @cap: capability code
235 *
236 * Like pci_find_capability() but works for pci devices that do not have a
237 * pci_dev structure set up yet.
238 *
239 * Returns the address of the requested capability structure within the
240 * device's PCI configuration space or 0 in case the device does not
241 * support it.
242 */
243int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
244{
Michael Ellermand3bac112006-11-22 18:26:16 +1100245 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 u8 hdr_type;
247
248 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
249
Michael Ellermand3bac112006-11-22 18:26:16 +1100250 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
251 if (pos)
252 pos = __pci_find_next_cap(bus, devfn, pos, cap);
253
254 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/**
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600258 * pci_find_next_ext_capability - Find an extended capability
259 * @dev: PCI device to query
260 * @start: address at which to start looking (0 to start at beginning of list)
261 * @cap: capability code
262 *
263 * Returns the address of the next matching extended capability structure
264 * within the device's PCI configuration space or 0 if the device does
265 * not support it. Some capabilities can occur several times, e.g., the
266 * vendor-specific capability, and this provides a way to find them all.
267 */
268int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
269{
270 u32 header;
271 int ttl;
272 int pos = PCI_CFG_SPACE_SIZE;
273
274 /* minimum 8 bytes per capability */
275 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
276
277 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
278 return 0;
279
280 if (start)
281 pos = start;
282
283 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
284 return 0;
285
286 /*
287 * If we have no capabilities, this is indicated by cap ID,
288 * cap version and next pointer all being 0.
289 */
290 if (header == 0)
291 return 0;
292
293 while (ttl-- > 0) {
294 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
295 return pos;
296
297 pos = PCI_EXT_CAP_NEXT(header);
298 if (pos < PCI_CFG_SPACE_SIZE)
299 break;
300
301 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
302 break;
303 }
304
305 return 0;
306}
307EXPORT_SYMBOL_GPL(pci_find_next_ext_capability);
308
309/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * pci_find_ext_capability - Find an extended capability
311 * @dev: PCI device to query
312 * @cap: capability code
313 *
314 * Returns the address of the requested extended capability structure
315 * within the device's PCI configuration space or 0 if the device does
316 * not support it. Possible values for @cap:
317 *
318 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
319 * %PCI_EXT_CAP_ID_VC Virtual Channel
320 * %PCI_EXT_CAP_ID_DSN Device Serial Number
321 * %PCI_EXT_CAP_ID_PWR Power Budgeting
322 */
323int pci_find_ext_capability(struct pci_dev *dev, int cap)
324{
Bjorn Helgaas44a9a362012-07-13 14:24:59 -0600325 return pci_find_next_ext_capability(dev, 0, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
Brice Goglin3a720d72006-05-23 06:10:01 -0400327EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100329static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
330{
331 int rc, ttl = PCI_FIND_CAP_TTL;
332 u8 cap, mask;
333
334 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
335 mask = HT_3BIT_CAP_MASK;
336 else
337 mask = HT_5BIT_CAP_MASK;
338
339 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
340 PCI_CAP_ID_HT, &ttl);
341 while (pos) {
342 rc = pci_read_config_byte(dev, pos + 3, &cap);
343 if (rc != PCIBIOS_SUCCESSFUL)
344 return 0;
345
346 if ((cap & mask) == ht_cap)
347 return pos;
348
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800349 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
350 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100351 PCI_CAP_ID_HT, &ttl);
352 }
353
354 return 0;
355}
356/**
357 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
358 * @dev: PCI device to query
359 * @pos: Position from which to continue searching
360 * @ht_cap: Hypertransport capability code
361 *
362 * To be used in conjunction with pci_find_ht_capability() to search for
363 * all capabilities matching @ht_cap. @pos should always be a value returned
364 * from pci_find_ht_capability().
365 *
366 * NB. To be 100% safe against broken PCI devices, the caller should take
367 * steps to avoid an infinite loop.
368 */
369int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
370{
371 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
372}
373EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
374
375/**
376 * pci_find_ht_capability - query a device's Hypertransport capabilities
377 * @dev: PCI device to query
378 * @ht_cap: Hypertransport capability code
379 *
380 * Tell if a device supports a given Hypertransport capability.
381 * Returns an address within the device's PCI configuration space
382 * or 0 in case the device does not support the request capability.
383 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
384 * which has a Hypertransport capability matching @ht_cap.
385 */
386int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
387{
388 int pos;
389
390 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
391 if (pos)
392 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
393
394 return pos;
395}
396EXPORT_SYMBOL_GPL(pci_find_ht_capability);
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/**
399 * pci_find_parent_resource - return resource region of parent bus of given region
400 * @dev: PCI device structure contains resources to be searched
401 * @res: child resource record for which parent is sought
402 *
403 * For given resource region of given device, return the resource
404 * region of parent bus the given region is contained in or where
405 * it should be allocated from.
406 */
407struct resource *
408pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
409{
410 const struct pci_bus *bus = dev->bus;
411 int i;
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700412 struct resource *best = NULL, *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700414 pci_bus_for_each_resource(bus, r, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!r)
416 continue;
417 if (res->start && !(res->start >= r->start && res->end <= r->end))
418 continue; /* Not contained */
419 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
420 continue; /* Wrong type */
421 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
422 return r; /* Exact match */
Linus Torvalds8c8def22009-11-09 12:04:32 -0800423 /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
424 if (r->flags & IORESOURCE_PREFETCH)
425 continue;
426 /* .. but we can put a prefetchable resource inside a non-prefetchable one */
427 if (!best)
428 best = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 return best;
431}
432
433/**
John W. Linville064b53d2005-07-27 10:19:44 -0400434 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
435 * @dev: PCI device to have its BARs restored
436 *
437 * Restore the BAR values for a given device, so as to make it
438 * accessible by its driver.
439 */
Adrian Bunkad6685992007-10-27 03:06:22 +0200440static void
John W. Linville064b53d2005-07-27 10:19:44 -0400441pci_restore_bars(struct pci_dev *dev)
442{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800443 int i;
John W. Linville064b53d2005-07-27 10:19:44 -0400444
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800445 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800446 pci_update_resource(dev, i);
John W. Linville064b53d2005-07-27 10:19:44 -0400447}
448
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200449static struct pci_platform_pm_ops *pci_platform_pm;
450
451int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
452{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200453 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
Rafael J. Wysockid2e5f0c2012-12-23 00:02:44 +0100454 || !ops->sleep_wake)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200455 return -EINVAL;
456 pci_platform_pm = ops;
457 return 0;
458}
459
460static inline bool platform_pci_power_manageable(struct pci_dev *dev)
461{
462 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
463}
464
465static inline int platform_pci_set_power_state(struct pci_dev *dev,
466 pci_power_t t)
467{
468 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
469}
470
471static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
472{
473 return pci_platform_pm ?
474 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
475}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700476
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200477static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
478{
479 return pci_platform_pm ?
480 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
481}
482
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100483static inline int platform_pci_run_wake(struct pci_dev *dev, bool enable)
484{
485 return pci_platform_pm ?
486 pci_platform_pm->run_wake(dev, enable) : -ENODEV;
487}
488
John W. Linville064b53d2005-07-27 10:19:44 -0400489/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200490 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
491 * given PCI device
492 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200493 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200495 * RETURN VALUE:
496 * -EINVAL if the requested state is invalid.
497 * -EIO if device does not support PCI PM or its PM capabilities register has a
498 * wrong version, or device doesn't support the requested state.
499 * 0 if device already is in the requested state.
500 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100502static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200504 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200505 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100507 /* Check if we're already there */
508 if (dev->current_state == state)
509 return 0;
510
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200511 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700512 return -EIO;
513
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200514 if (state < PCI_D0 || state > PCI_D3hot)
515 return -EINVAL;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* Validate current state:
518 * Can enter D0 from any state, but if we can only go deeper
519 * to sleep if we're already in a low power state
520 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100521 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200522 && dev->current_state > state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600523 dev_err(&dev->dev, "invalid power transition "
524 "(from state %d to %d)\n", dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200529 if ((state == PCI_D1 && !dev->d1_support)
530 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700531 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200533 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53d2005-07-27 10:19:44 -0400534
John W. Linville32a36582005-09-14 09:52:42 -0400535 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * This doesn't affect PME_Status, disables PME_En, and
537 * sets PowerState to 0.
538 */
John W. Linville32a36582005-09-14 09:52:42 -0400539 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400540 case PCI_D0:
541 case PCI_D1:
542 case PCI_D2:
543 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
544 pmcsr |= state;
545 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200546 case PCI_D3hot:
547 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400548 case PCI_UNKNOWN: /* Boot-up */
549 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100550 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200551 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400552 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400553 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400554 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
558 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200559 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* Mandatory power management transition delays */
562 /* see PCI PM 1.1 5.6.1 table 18 */
563 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100564 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100566 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200568 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
569 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
570 if (dev->current_state != state && printk_ratelimit())
571 dev_info(&dev->dev, "Refused to change power state, "
572 "currently in D%d\n", dev->current_state);
John W. Linville064b53d2005-07-27 10:19:44 -0400573
Huang Ying448bd852012-06-23 10:23:51 +0800574 /*
575 * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
John W. Linville064b53d2005-07-27 10:19:44 -0400576 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
577 * from D3hot to D0 _may_ perform an internal reset, thereby
578 * going to "D0 Uninitialized" rather than "D0 Initialized".
579 * For example, at least some versions of the 3c905B and the
580 * 3c556B exhibit this behaviour.
581 *
582 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
583 * devices in a D3hot state at boot. Consequently, we need to
584 * restore at least the BARs so that the device will be
585 * accessible to its driver.
586 */
587 if (need_restore)
588 pci_restore_bars(dev);
589
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100590 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800591 pcie_aspm_pm_state_change(dev->bus->self);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595
596/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200597 * pci_update_current_state - Read PCI power state of given device from its
598 * PCI PM registers and cache it
599 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100600 * @state: State to cache in case the device doesn't have the PM capability
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200601 */
Rafael J. Wysocki73410422009-01-07 13:07:15 +0100602void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200603{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200604 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200605 u16 pmcsr;
606
Huang Ying448bd852012-06-23 10:23:51 +0800607 /*
608 * Configuration space is not accessible for device in
609 * D3cold, so just keep or set D3cold for safety
610 */
611 if (dev->current_state == PCI_D3cold)
612 return;
613 if (state == PCI_D3cold) {
614 dev->current_state = PCI_D3cold;
615 return;
616 }
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200617 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200618 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100619 } else {
620 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200621 }
622}
623
624/**
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600625 * pci_power_up - Put the given device into D0 forcibly
626 * @dev: PCI device to power up
627 */
628void pci_power_up(struct pci_dev *dev)
629{
630 if (platform_pci_power_manageable(dev))
631 platform_pci_set_power_state(dev, PCI_D0);
632
633 pci_raw_set_power_state(dev, PCI_D0);
634 pci_update_current_state(dev, PCI_D0);
635}
636
637/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100638 * pci_platform_power_transition - Use platform to change device power state
639 * @dev: PCI device to handle.
640 * @state: State to put the device into.
641 */
642static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
643{
644 int error;
645
646 if (platform_pci_power_manageable(dev)) {
647 error = platform_pci_set_power_state(dev, state);
648 if (!error)
649 pci_update_current_state(dev, state);
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000650 } else
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100651 error = -ENODEV;
Rafael J. Wysocki769ba722013-04-12 13:58:17 +0000652
653 if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
654 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100655
656 return error;
657}
658
659/**
660 * __pci_start_power_transition - Start power transition of a PCI device
661 * @dev: PCI device to handle.
662 * @state: State to put the device into.
663 */
664static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
665{
Huang Ying448bd852012-06-23 10:23:51 +0800666 if (state == PCI_D0) {
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100667 pci_platform_power_transition(dev, PCI_D0);
Huang Ying448bd852012-06-23 10:23:51 +0800668 /*
669 * Mandatory power management transition delays, see
670 * PCI Express Base Specification Revision 2.0 Section
671 * 6.6.1: Conventional Reset. Do not delay for
672 * devices powered on/off by corresponding bridge,
673 * because have already delayed for the bridge.
674 */
675 if (dev->runtime_d3cold) {
676 msleep(dev->d3cold_delay);
677 /*
678 * When powering on a bridge from D3cold, the
679 * whole hierarchy may be powered on into
680 * D0uninitialized state, resume them to give
681 * them a chance to suspend again
682 */
683 pci_wakeup_bus(dev->subordinate);
684 }
685 }
686}
687
688/**
689 * __pci_dev_set_current_state - Set current state of a PCI device
690 * @dev: Device to handle
691 * @data: pointer to state to be set
692 */
693static int __pci_dev_set_current_state(struct pci_dev *dev, void *data)
694{
695 pci_power_t state = *(pci_power_t *)data;
696
697 dev->current_state = state;
698 return 0;
699}
700
701/**
702 * __pci_bus_set_current_state - Walk given bus and set current state of devices
703 * @bus: Top bus of the subtree to walk.
704 * @state: state to be set
705 */
706static void __pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state)
707{
708 if (bus)
709 pci_walk_bus(bus, __pci_dev_set_current_state, &state);
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100710}
711
712/**
713 * __pci_complete_power_transition - Complete power transition of a PCI device
714 * @dev: PCI device to handle.
715 * @state: State to put the device into.
716 *
717 * This function should not be called directly by device drivers.
718 */
719int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
720{
Huang Ying448bd852012-06-23 10:23:51 +0800721 int ret;
722
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600723 if (state <= PCI_D0)
Huang Ying448bd852012-06-23 10:23:51 +0800724 return -EINVAL;
725 ret = pci_platform_power_transition(dev, state);
726 /* Power off the bridge may power off the whole hierarchy */
727 if (!ret && state == PCI_D3cold)
728 __pci_bus_set_current_state(dev->subordinate, PCI_D3cold);
729 return ret;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100730}
731EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
732
733/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200734 * pci_set_power_state - Set the power state of a PCI device
735 * @dev: PCI device to handle.
736 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
737 *
Nick Andrew877d0312009-01-26 11:06:57 +0100738 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200739 * the device's PCI PM registers.
740 *
741 * RETURN VALUE:
742 * -EINVAL if the requested state is invalid.
743 * -EIO if device does not support PCI PM or its PM capabilities register has a
744 * wrong version, or device doesn't support the requested state.
745 * 0 if device already is in the requested state.
746 * 0 if device's power state has been successfully changed.
747 */
748int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
749{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200750 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200751
752 /* bound the state we're entering */
Huang Ying448bd852012-06-23 10:23:51 +0800753 if (state > PCI_D3cold)
754 state = PCI_D3cold;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200755 else if (state < PCI_D0)
756 state = PCI_D0;
757 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
758 /*
759 * If the device or the parent bridge do not support PCI PM,
760 * ignore the request if we're doing anything other than putting
761 * it into D0 (which would only happen on boot).
762 */
763 return 0;
764
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600765 /* Check if we're already there */
766 if (dev->current_state == state)
767 return 0;
768
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100769 __pci_start_power_transition(dev, state);
770
Alan Cox979b1792008-07-24 17:18:38 +0100771 /* This device is quirked not to be put into D3, so
772 don't put it in D3 */
Huang Ying448bd852012-06-23 10:23:51 +0800773 if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
Alan Cox979b1792008-07-24 17:18:38 +0100774 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200775
Huang Ying448bd852012-06-23 10:23:51 +0800776 /*
777 * To put device in D3cold, we put device into D3hot in native
778 * way, then put device into D3cold with platform ops
779 */
780 error = pci_raw_set_power_state(dev, state > PCI_D3hot ?
781 PCI_D3hot : state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200782
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100783 if (!__pci_complete_power_transition(dev, state))
784 error = 0;
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000785 /*
786 * When aspm_policy is "powersave" this call ensures
787 * that ASPM is configured.
788 */
789 if (!error && dev->bus->self)
790 pcie_aspm_powersave_config_link(dev->bus->self);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200791
792 return error;
793}
794
795/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * pci_choose_state - Choose the power state of a PCI device
797 * @dev: PCI device to be suspended
798 * @state: target sleep state for the whole system. This is the value
799 * that is passed to suspend() function.
800 *
801 * Returns PCI power state suitable for given device and given system
802 * message.
803 */
804
805pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
806{
Shaohua Liab826ca2007-07-20 10:03:22 +0800807 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500808
Yijing Wang728cdb72013-06-18 16:22:14 +0800809 if (!dev->pm_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return PCI_D0;
811
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200812 ret = platform_pci_choose_state(dev);
813 if (ret != PCI_POWER_ERROR)
814 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700815
816 switch (state.event) {
817 case PM_EVENT_ON:
818 return PCI_D0;
819 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700820 case PM_EVENT_PRETHAW:
821 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700822 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100823 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700824 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600826 dev_info(&dev->dev, "unrecognized suspend event %d\n",
827 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 BUG();
829 }
830 return PCI_D0;
831}
832
833EXPORT_SYMBOL(pci_choose_state);
834
Yu Zhao89858512009-02-16 02:55:47 +0800835#define PCI_EXP_SAVE_REGS 7
836
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800837
Yinghai Lu34a48762012-02-11 00:18:41 -0800838static struct pci_cap_saved_state *pci_find_saved_cap(
839 struct pci_dev *pci_dev, char cap)
840{
841 struct pci_cap_saved_state *tmp;
Yinghai Lu34a48762012-02-11 00:18:41 -0800842
Sasha Levinb67bfe02013-02-27 17:06:00 -0800843 hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
Yinghai Lu34a48762012-02-11 00:18:41 -0800844 if (tmp->cap.cap_nr == cap)
845 return tmp;
846 }
847 return NULL;
848}
849
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300850static int pci_save_pcie_state(struct pci_dev *dev)
851{
Jiang Liu59875ae2012-07-24 17:20:06 +0800852 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300853 struct pci_cap_saved_state *save_state;
854 u16 *cap;
855
Jiang Liu59875ae2012-07-24 17:20:06 +0800856 if (!pci_is_pcie(dev))
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300857 return 0;
858
Eric W. Biederman9f355752007-03-08 13:06:13 -0700859 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300860 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800861 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300862 return -ENOMEM;
863 }
Jiang Liu59875ae2012-07-24 17:20:06 +0800864
Alex Williamson24a47422011-05-10 10:02:11 -0600865 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +0800866 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &cap[i++]);
867 pcie_capability_read_word(dev, PCI_EXP_LNKCTL, &cap[i++]);
868 pcie_capability_read_word(dev, PCI_EXP_SLTCTL, &cap[i++]);
869 pcie_capability_read_word(dev, PCI_EXP_RTCTL, &cap[i++]);
870 pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &cap[i++]);
871 pcie_capability_read_word(dev, PCI_EXP_LNKCTL2, &cap[i++]);
872 pcie_capability_read_word(dev, PCI_EXP_SLTCTL2, &cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300873
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300874 return 0;
875}
876
877static void pci_restore_pcie_state(struct pci_dev *dev)
878{
Jiang Liu59875ae2012-07-24 17:20:06 +0800879 int i = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300880 struct pci_cap_saved_state *save_state;
881 u16 *cap;
882
883 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Jiang Liu59875ae2012-07-24 17:20:06 +0800884 if (!save_state)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300885 return;
Jiang Liu59875ae2012-07-24 17:20:06 +0800886
Alex Williamson24a47422011-05-10 10:02:11 -0600887 cap = (u16 *)&save_state->cap.data[0];
Jiang Liu59875ae2012-07-24 17:20:06 +0800888 pcie_capability_write_word(dev, PCI_EXP_DEVCTL, cap[i++]);
889 pcie_capability_write_word(dev, PCI_EXP_LNKCTL, cap[i++]);
890 pcie_capability_write_word(dev, PCI_EXP_SLTCTL, cap[i++]);
891 pcie_capability_write_word(dev, PCI_EXP_RTCTL, cap[i++]);
892 pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, cap[i++]);
893 pcie_capability_write_word(dev, PCI_EXP_LNKCTL2, cap[i++]);
894 pcie_capability_write_word(dev, PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300895}
896
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800897
898static int pci_save_pcix_state(struct pci_dev *dev)
899{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100900 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800901 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800902
903 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
904 if (pos <= 0)
905 return 0;
906
Shaohua Lif34303d2007-12-18 09:56:47 +0800907 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800908 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800909 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800910 return -ENOMEM;
911 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800912
Alex Williamson24a47422011-05-10 10:02:11 -0600913 pci_read_config_word(dev, pos + PCI_X_CMD,
914 (u16 *)save_state->cap.data);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100915
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800916 return 0;
917}
918
919static void pci_restore_pcix_state(struct pci_dev *dev)
920{
921 int i = 0, pos;
922 struct pci_cap_saved_state *save_state;
923 u16 *cap;
924
925 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
926 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
927 if (!save_state || pos <= 0)
928 return;
Alex Williamson24a47422011-05-10 10:02:11 -0600929 cap = (u16 *)&save_state->cap.data[0];
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800930
931 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800932}
933
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/**
936 * pci_save_state - save the PCI configuration space of a device before suspending
937 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939int
940pci_save_state(struct pci_dev *dev)
941{
942 int i;
943 /* XXX: 100% dword access ok here? */
944 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -0200945 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100946 dev->state_saved = true;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300947 if ((i = pci_save_pcie_state(dev)) != 0)
948 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800949 if ((i = pci_save_pcix_state(dev)) != 0)
950 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 0;
952}
953
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +0200954static void pci_restore_config_dword(struct pci_dev *pdev, int offset,
955 u32 saved_val, int retry)
956{
957 u32 val;
958
959 pci_read_config_dword(pdev, offset, &val);
960 if (val == saved_val)
961 return;
962
963 for (;;) {
964 dev_dbg(&pdev->dev, "restoring config space at offset "
965 "%#x (was %#x, writing %#x)\n", offset, val, saved_val);
966 pci_write_config_dword(pdev, offset, saved_val);
967 if (retry-- <= 0)
968 return;
969
970 pci_read_config_dword(pdev, offset, &val);
971 if (val == saved_val)
972 return;
973
974 mdelay(1);
975 }
976}
977
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +0200978static void pci_restore_config_space_range(struct pci_dev *pdev,
979 int start, int end, int retry)
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +0200980{
981 int index;
982
983 for (index = end; index >= start; index--)
984 pci_restore_config_dword(pdev, 4 * index,
985 pdev->saved_config_space[index],
986 retry);
987}
988
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +0200989static void pci_restore_config_space(struct pci_dev *pdev)
990{
991 if (pdev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
992 pci_restore_config_space_range(pdev, 10, 15, 0);
993 /* Restore BARs before the command register. */
994 pci_restore_config_space_range(pdev, 4, 9, 10);
995 pci_restore_config_space_range(pdev, 0, 3, 0);
996 } else {
997 pci_restore_config_space_range(pdev, 0, 15, 0);
998 }
999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001/**
1002 * pci_restore_state - Restore the saved state of a PCI device
1003 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
Jon Mason1d3c16a2010-11-30 17:43:26 -06001005void pci_restore_state(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
Alek Duc82f63e2009-08-08 08:46:19 +08001007 if (!dev->state_saved)
Jon Mason1d3c16a2010-11-30 17:43:26 -06001008 return;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001009
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001010 /* PCI Express register must be restored first */
1011 pci_restore_pcie_state(dev);
Hao, Xudong1900ca12011-12-17 21:24:40 +08001012 pci_restore_ats_state(dev);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +03001013
Rafael J. Wysockia6cb9ee2012-04-16 23:07:50 +02001014 pci_restore_config_space(dev);
Rafael J. Wysockiebfc5b82012-04-15 21:40:40 +02001015
Stephen Hemmingercc692a52006-11-08 16:17:15 -08001016 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +08001017 pci_restore_msi_state(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +08001018 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +11001019
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02001020 dev->state_saved = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001023struct pci_saved_state {
1024 u32 config_space[16];
1025 struct pci_cap_saved_data cap[0];
1026};
1027
1028/**
1029 * pci_store_saved_state - Allocate and return an opaque struct containing
1030 * the device saved state.
1031 * @dev: PCI device that we're dealing with
1032 *
1033 * Rerturn NULL if no state or error.
1034 */
1035struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev)
1036{
1037 struct pci_saved_state *state;
1038 struct pci_cap_saved_state *tmp;
1039 struct pci_cap_saved_data *cap;
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001040 size_t size;
1041
1042 if (!dev->state_saved)
1043 return NULL;
1044
1045 size = sizeof(*state) + sizeof(struct pci_cap_saved_data);
1046
Sasha Levinb67bfe02013-02-27 17:06:00 -08001047 hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001048 size += sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1049
1050 state = kzalloc(size, GFP_KERNEL);
1051 if (!state)
1052 return NULL;
1053
1054 memcpy(state->config_space, dev->saved_config_space,
1055 sizeof(state->config_space));
1056
1057 cap = state->cap;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001058 hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
Alex Williamsonffbdd3f2011-05-10 10:02:27 -06001059 size_t len = sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1060 memcpy(cap, &tmp->cap, len);
1061 cap = (struct pci_cap_saved_data *)((u8 *)cap + len);
1062 }
1063 /* Empty cap_save terminates list */
1064
1065 return state;
1066}
1067EXPORT_SYMBOL_GPL(pci_store_saved_state);
1068
1069/**
1070 * pci_load_saved_state - Reload the provided save state into struct pci_dev.
1071 * @dev: PCI device that we're dealing with
1072 * @state: Saved state returned from pci_store_saved_state()
1073 */
1074int pci_load_saved_state(struct pci_dev *dev, struct pci_saved_state *state)
1075{
1076 struct pci_cap_saved_data *cap;
1077
1078 dev->state_saved = false;
1079
1080 if (!state)
1081 return 0;
1082
1083 memcpy(dev->saved_config_space, state->config_space,
1084 sizeof(state->config_space));
1085
1086 cap = state->cap;
1087 while (cap->size) {
1088 struct pci_cap_saved_state *tmp;
1089
1090 tmp = pci_find_saved_cap(dev, cap->cap_nr);
1091 if (!tmp || tmp->cap.size != cap->size)
1092 return -EINVAL;
1093
1094 memcpy(tmp->cap.data, cap->data, tmp->cap.size);
1095 cap = (struct pci_cap_saved_data *)((u8 *)cap +
1096 sizeof(struct pci_cap_saved_data) + cap->size);
1097 }
1098
1099 dev->state_saved = true;
1100 return 0;
1101}
1102EXPORT_SYMBOL_GPL(pci_load_saved_state);
1103
1104/**
1105 * pci_load_and_free_saved_state - Reload the save state pointed to by state,
1106 * and free the memory allocated for it.
1107 * @dev: PCI device that we're dealing with
1108 * @state: Pointer to saved state returned from pci_store_saved_state()
1109 */
1110int pci_load_and_free_saved_state(struct pci_dev *dev,
1111 struct pci_saved_state **state)
1112{
1113 int ret = pci_load_saved_state(dev, *state);
1114 kfree(*state);
1115 *state = NULL;
1116 return ret;
1117}
1118EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
1119
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001120static int do_pci_enable_device(struct pci_dev *dev, int bars)
1121{
1122 int err;
1123
1124 err = pci_set_power_state(dev, PCI_D0);
1125 if (err < 0 && err != -EIO)
1126 return err;
1127 err = pcibios_enable_device(dev, bars);
1128 if (err < 0)
1129 return err;
1130 pci_fixup_device(pci_fixup_enable, dev);
1131
1132 return 0;
1133}
1134
1135/**
Tejun Heo0b62e132007-07-27 14:43:35 +09001136 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001137 * @dev: PCI device to be resumed
1138 *
1139 * Note this function is a backend of pci_default_resume and is not supposed
1140 * to be called by normal code, write proper resume handler and use it instead.
1141 */
Tejun Heo0b62e132007-07-27 14:43:35 +09001142int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001143{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001144 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001145 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
1146 return 0;
1147}
1148
Yinghai Lu928bea92013-07-22 14:37:17 -07001149static void pci_enable_bridge(struct pci_dev *dev)
1150{
1151 int retval;
1152
1153 if (!dev)
1154 return;
1155
1156 pci_enable_bridge(dev->bus->self);
1157
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001158 if (pci_is_enabled(dev)) {
Bjorn Helgaasfbeeb822013-11-05 13:34:51 -07001159 if (!dev->is_busmaster)
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001160 pci_set_master(dev);
Yinghai Lu928bea92013-07-22 14:37:17 -07001161 return;
Yinghai Lucf3e1fe2013-11-05 13:34:38 -07001162 }
1163
Yinghai Lu928bea92013-07-22 14:37:17 -07001164 retval = pci_enable_device(dev);
1165 if (retval)
1166 dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n",
1167 retval);
1168 pci_set_master(dev);
1169}
1170
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001171static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001174 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Jesse Barnes97c145f2010-11-05 15:16:36 -04001176 /*
1177 * Power state could be unknown at this point, either due to a fresh
1178 * boot or a device removal call. So get the current power state
1179 * so that things like MSI message writing will behave as expected
1180 * (e.g. if the device really is in D0 at enable time).
1181 */
1182 if (dev->pm_cap) {
1183 u16 pmcsr;
1184 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1185 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
1186 }
1187
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001188 if (atomic_inc_return(&dev->enable_cnt) > 1)
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001189 return 0; /* already enabled */
1190
Yinghai Lu928bea92013-07-22 14:37:17 -07001191 pci_enable_bridge(dev->bus->self);
1192
Yinghai Lu497f16f2011-12-17 18:33:37 -08001193 /* only skip sriov related */
1194 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
1195 if (dev->resource[i].flags & flags)
1196 bars |= (1 << i);
1197 for (i = PCI_BRIDGE_RESOURCES; i < DEVICE_COUNT_RESOURCE; i++)
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001198 if (dev->resource[i].flags & flags)
1199 bars |= (1 << i);
1200
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001201 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -07001202 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +09001203 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +09001204 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001208 * pci_enable_device_io - Initialize a device for use with IO space
1209 * @dev: PCI device to be initialized
1210 *
1211 * Initialize device before it's used by a driver. Ask low-level code
1212 * to enable I/O resources. Wake up the device if it was suspended.
1213 * Beware, this function can fail.
1214 */
1215int pci_enable_device_io(struct pci_dev *dev)
1216{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001217 return pci_enable_device_flags(dev, IORESOURCE_IO);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001218}
1219
1220/**
1221 * pci_enable_device_mem - Initialize a device for use with Memory space
1222 * @dev: PCI device to be initialized
1223 *
1224 * Initialize device before it's used by a driver. Ask low-level code
1225 * to enable Memory resources. Wake up the device if it was suspended.
1226 * Beware, this function can fail.
1227 */
1228int pci_enable_device_mem(struct pci_dev *dev)
1229{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001230 return pci_enable_device_flags(dev, IORESOURCE_MEM);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001231}
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233/**
1234 * pci_enable_device - Initialize device before it's used by a driver.
1235 * @dev: PCI device to be initialized
1236 *
1237 * Initialize device before it's used by a driver. Ask low-level code
1238 * to enable I/O and memory. Wake up the device if it was suspended.
1239 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001240 *
1241 * Note we don't actually enable the device many times if we call
1242 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001244int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
Bjorn Helgaasb4b4fbb2013-01-04 12:12:55 -07001246 return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Tejun Heo9ac78492007-01-20 16:00:26 +09001249/*
1250 * Managed PCI resources. This manages device on/off, intx/msi/msix
1251 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1252 * there's no need to track it separately. pci_devres is initialized
1253 * when a device is enabled using managed PCI device enable interface.
1254 */
1255struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001256 unsigned int enabled:1;
1257 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001258 unsigned int orig_intx:1;
1259 unsigned int restore_intx:1;
1260 u32 region_mask;
1261};
1262
1263static void pcim_release(struct device *gendev, void *res)
1264{
1265 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1266 struct pci_devres *this = res;
1267 int i;
1268
1269 if (dev->msi_enabled)
1270 pci_disable_msi(dev);
1271 if (dev->msix_enabled)
1272 pci_disable_msix(dev);
1273
1274 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1275 if (this->region_mask & (1 << i))
1276 pci_release_region(dev, i);
1277
1278 if (this->restore_intx)
1279 pci_intx(dev, this->orig_intx);
1280
Tejun Heo7f375f32007-02-25 04:36:01 -08001281 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001282 pci_disable_device(dev);
1283}
1284
1285static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
1286{
1287 struct pci_devres *dr, *new_dr;
1288
1289 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1290 if (dr)
1291 return dr;
1292
1293 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1294 if (!new_dr)
1295 return NULL;
1296 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1297}
1298
1299static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
1300{
1301 if (pci_is_managed(pdev))
1302 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1303 return NULL;
1304}
1305
1306/**
1307 * pcim_enable_device - Managed pci_enable_device()
1308 * @pdev: PCI device to be initialized
1309 *
1310 * Managed pci_enable_device().
1311 */
1312int pcim_enable_device(struct pci_dev *pdev)
1313{
1314 struct pci_devres *dr;
1315 int rc;
1316
1317 dr = get_pci_dr(pdev);
1318 if (unlikely(!dr))
1319 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001320 if (dr->enabled)
1321 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001322
1323 rc = pci_enable_device(pdev);
1324 if (!rc) {
1325 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001326 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001327 }
1328 return rc;
1329}
1330
1331/**
1332 * pcim_pin_device - Pin managed PCI device
1333 * @pdev: PCI device to pin
1334 *
1335 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1336 * driver detach. @pdev must have been enabled with
1337 * pcim_enable_device().
1338 */
1339void pcim_pin_device(struct pci_dev *pdev)
1340{
1341 struct pci_devres *dr;
1342
1343 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001344 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001345 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001346 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001347}
1348
Matthew Garretteca0d462012-12-05 14:33:27 -07001349/*
1350 * pcibios_add_device - provide arch specific hooks when adding device dev
1351 * @dev: the PCI device being added
1352 *
1353 * Permits the platform to provide architecture specific functionality when
1354 * devices are added. This is the default implementation. Architecture
1355 * implementations can override this.
1356 */
1357int __weak pcibios_add_device (struct pci_dev *dev)
1358{
1359 return 0;
1360}
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362/**
Sebastian Ott6ae32c52013-06-04 19:18:14 +02001363 * pcibios_release_device - provide arch specific hooks when releasing device dev
1364 * @dev: the PCI device being released
1365 *
1366 * Permits the platform to provide architecture specific functionality when
1367 * devices are released. This is the default implementation. Architecture
1368 * implementations can override this.
1369 */
1370void __weak pcibios_release_device(struct pci_dev *dev) {}
1371
1372/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * pcibios_disable_device - disable arch specific PCI resources for device dev
1374 * @dev: the PCI device to disable
1375 *
1376 * Disables architecture specific PCI resources for the device. This
1377 * is the default implementation. Architecture implementations can
1378 * override this.
1379 */
Bjorn Helgaasd6d88c82012-06-19 06:54:49 -06001380void __weak pcibios_disable_device (struct pci_dev *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001382static void do_pci_disable_device(struct pci_dev *dev)
1383{
1384 u16 pci_command;
1385
1386 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1387 if (pci_command & PCI_COMMAND_MASTER) {
1388 pci_command &= ~PCI_COMMAND_MASTER;
1389 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1390 }
1391
1392 pcibios_disable_device(dev);
1393}
1394
1395/**
1396 * pci_disable_enabled_device - Disable device without updating enable_cnt
1397 * @dev: PCI device to disable
1398 *
1399 * NOTE: This function is a backend of PCI power management routines and is
1400 * not supposed to be called drivers.
1401 */
1402void pci_disable_enabled_device(struct pci_dev *dev)
1403{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001404 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001405 do_pci_disable_device(dev);
1406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408/**
1409 * pci_disable_device - Disable PCI device after use
1410 * @dev: PCI device to be disabled
1411 *
1412 * Signal to the system that the PCI device is not in use by the system
1413 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001414 *
1415 * Note we don't actually disable the device until all callers of
Roman Fietzeee6583f2010-05-18 14:45:47 +02001416 * pci_enable_device() have called pci_disable_device().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 */
1418void
1419pci_disable_device(struct pci_dev *dev)
1420{
Tejun Heo9ac78492007-01-20 16:00:26 +09001421 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001422
Tejun Heo9ac78492007-01-20 16:00:26 +09001423 dr = find_pci_dr(dev);
1424 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001425 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001426
Konstantin Khlebnikovfd6dcea2013-02-04 15:56:01 +04001427 dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
1428 "disabling already-disabled device");
1429
Bjorn Helgaascc7ba392013-02-11 16:47:01 -07001430 if (atomic_dec_return(&dev->enable_cnt) != 0)
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001431 return;
1432
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001433 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001435 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001439 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001440 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001441 * @state: Reset state to enter into
1442 *
1443 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001444 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001445 * implementation. Architecture implementations can override this.
1446 */
Bjorn Helgaasd6d88c82012-06-19 06:54:49 -06001447int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
1448 enum pcie_reset_state state)
Brian Kingf7bdd122007-04-06 16:39:36 -05001449{
1450 return -EINVAL;
1451}
1452
1453/**
1454 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001455 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001456 * @state: Reset state to enter into
1457 *
1458 *
1459 * Sets the PCI reset state for the device.
1460 */
1461int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1462{
1463 return pcibios_set_pcie_reset_state(dev, state);
1464}
1465
1466/**
Rafael J. Wysocki58ff4632010-02-17 23:36:58 +01001467 * pci_check_pme_status - Check if given device has generated PME.
1468 * @dev: Device to check.
1469 *
1470 * Check the PME status of the device and if set, clear it and clear PME enable
1471 * (if set). Return 'true' if PME status and PME enable were both set or
1472 * 'false' otherwise.
1473 */
1474bool pci_check_pme_status(struct pci_dev *dev)
1475{
1476 int pmcsr_pos;
1477 u16 pmcsr;
1478 bool ret = false;
1479
1480 if (!dev->pm_cap)
1481 return false;
1482
1483 pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
1484 pci_read_config_word(dev, pmcsr_pos, &pmcsr);
1485 if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
1486 return false;
1487
1488 /* Clear PME status. */
1489 pmcsr |= PCI_PM_CTRL_PME_STATUS;
1490 if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
1491 /* Disable PME to avoid interrupt flood. */
1492 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1493 ret = true;
1494 }
1495
1496 pci_write_config_word(dev, pmcsr_pos, pmcsr);
1497
1498 return ret;
1499}
1500
1501/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001502 * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
1503 * @dev: Device to handle.
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001504 * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001505 *
1506 * Check if @dev has generated PME and queue a resume request for it in that
1507 * case.
1508 */
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001509static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001510{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001511 if (pme_poll_reset && dev->pme_poll)
1512 dev->pme_poll = false;
1513
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001514 if (pci_check_pme_status(dev)) {
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001515 pci_wakeup_event(dev);
Rafael J. Wysocki0f953bf2010-12-29 13:22:08 +01001516 pm_request_resume(&dev->dev);
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001517 }
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001518 return 0;
1519}
1520
1521/**
1522 * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
1523 * @bus: Top bus of the subtree to walk.
1524 */
1525void pci_pme_wakeup_bus(struct pci_bus *bus)
1526{
1527 if (bus)
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001528 pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001529}
1530
1531/**
Huang Ying448bd852012-06-23 10:23:51 +08001532 * pci_wakeup - Wake up a PCI device
Randy Dunlapceaf5b52012-08-18 17:37:53 -07001533 * @pci_dev: Device to handle.
Huang Ying448bd852012-06-23 10:23:51 +08001534 * @ign: ignored parameter
1535 */
1536static int pci_wakeup(struct pci_dev *pci_dev, void *ign)
1537{
1538 pci_wakeup_event(pci_dev);
1539 pm_request_resume(&pci_dev->dev);
1540 return 0;
1541}
1542
1543/**
1544 * pci_wakeup_bus - Walk given bus and wake up devices on it
1545 * @bus: Top bus of the subtree to walk.
1546 */
1547void pci_wakeup_bus(struct pci_bus *bus)
1548{
1549 if (bus)
1550 pci_walk_bus(bus, pci_wakeup, NULL);
1551}
1552
1553/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001554 * pci_pme_capable - check the capability of PCI device to generate PME#
1555 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001556 * @state: PCI state from which device will issue PME#.
1557 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001558bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001559{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001560 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001561 return false;
1562
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001563 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001564}
1565
Matthew Garrettdf17e622010-10-04 14:22:29 -04001566static void pci_pme_list_scan(struct work_struct *work)
1567{
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001568 struct pci_pme_device *pme_dev, *n;
Matthew Garrettdf17e622010-10-04 14:22:29 -04001569
1570 mutex_lock(&pci_pme_list_mutex);
1571 if (!list_empty(&pci_pme_list)) {
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001572 list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
1573 if (pme_dev->dev->pme_poll) {
Zheng Yan71a83bd2012-06-23 10:23:49 +08001574 struct pci_dev *bridge;
1575
1576 bridge = pme_dev->dev->bus->self;
1577 /*
1578 * If bridge is in low power state, the
1579 * configuration space of subordinate devices
1580 * may be not accessible
1581 */
1582 if (bridge && bridge->current_state != PCI_D0)
1583 continue;
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001584 pci_pme_wakeup(pme_dev->dev, NULL);
1585 } else {
1586 list_del(&pme_dev->list);
1587 kfree(pme_dev);
1588 }
1589 }
1590 if (!list_empty(&pci_pme_list))
1591 schedule_delayed_work(&pci_pme_work,
1592 msecs_to_jiffies(PME_TIMEOUT));
Matthew Garrettdf17e622010-10-04 14:22:29 -04001593 }
1594 mutex_unlock(&pci_pme_list_mutex);
1595}
1596
1597/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001598 * pci_pme_active - enable or disable PCI device's PME# function
1599 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001600 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1601 *
1602 * The caller must verify that the device is capable of generating PME# before
1603 * calling this function with @enable equal to 'true'.
1604 */
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02001605void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001606{
1607 u16 pmcsr;
1608
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00001609 if (!dev->pme_support)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001610 return;
1611
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001612 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001613 /* Clear PME_Status by writing 1 to it and enable PME# */
1614 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1615 if (!enable)
1616 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1617
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001618 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001619
Huang Ying6e965e02012-10-26 13:07:51 +08001620 /*
1621 * PCI (as opposed to PCIe) PME requires that the device have
1622 * its PME# line hooked up correctly. Not all hardware vendors
1623 * do this, so the PME never gets delivered and the device
1624 * remains asleep. The easiest way around this is to
1625 * periodically walk the list of suspended devices and check
1626 * whether any have their PME flag set. The assumption is that
1627 * we'll wake up often enough anyway that this won't be a huge
1628 * hit, and the power savings from the devices will still be a
1629 * win.
1630 *
1631 * Although PCIe uses in-band PME message instead of PME# line
1632 * to report PME, PME does not work for some PCIe devices in
1633 * reality. For example, there are devices that set their PME
1634 * status bits, but don't really bother to send a PME message;
1635 * there are PCI Express Root Ports that don't bother to
1636 * trigger interrupts when they receive PME messages from the
1637 * devices below. So PME poll is used for PCIe devices too.
1638 */
Matthew Garrettdf17e622010-10-04 14:22:29 -04001639
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02001640 if (dev->pme_poll) {
Matthew Garrettdf17e622010-10-04 14:22:29 -04001641 struct pci_pme_device *pme_dev;
1642 if (enable) {
1643 pme_dev = kmalloc(sizeof(struct pci_pme_device),
1644 GFP_KERNEL);
Bjorn Helgaas0394cb12013-10-16 12:32:53 -06001645 if (!pme_dev) {
1646 dev_warn(&dev->dev, "can't enable PME#\n");
1647 return;
1648 }
Matthew Garrettdf17e622010-10-04 14:22:29 -04001649 pme_dev->dev = dev;
1650 mutex_lock(&pci_pme_list_mutex);
1651 list_add(&pme_dev->list, &pci_pme_list);
1652 if (list_is_singular(&pci_pme_list))
1653 schedule_delayed_work(&pci_pme_work,
1654 msecs_to_jiffies(PME_TIMEOUT));
1655 mutex_unlock(&pci_pme_list_mutex);
1656 } else {
1657 mutex_lock(&pci_pme_list_mutex);
1658 list_for_each_entry(pme_dev, &pci_pme_list, list) {
1659 if (pme_dev->dev == dev) {
1660 list_del(&pme_dev->list);
1661 kfree(pme_dev);
1662 break;
1663 }
1664 }
1665 mutex_unlock(&pci_pme_list_mutex);
1666 }
1667 }
1668
Vincent Palatin85b85822011-12-05 11:51:18 -08001669 dev_dbg(&dev->dev, "PME# %s\n", enable ? "enabled" : "disabled");
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001670}
1671
1672/**
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001673 * __pci_enable_wake - enable PCI device as wakeup event source
David Brownell075c1772007-04-26 00:12:06 -07001674 * @dev: PCI device affected
1675 * @state: PCI state from which device will issue wakeup events
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001676 * @runtime: True if the events are to be generated at run time
David Brownell075c1772007-04-26 00:12:06 -07001677 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 *
David Brownell075c1772007-04-26 00:12:06 -07001679 * This enables the device as a wakeup event source, or disables it.
1680 * When such events involves platform-specific hooks, those hooks are
1681 * called automatically by this routine.
1682 *
1683 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001684 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001685 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001686 * RETURN VALUE:
1687 * 0 is returned on success
1688 * -EINVAL is returned if device is not supposed to wake up the system
1689 * Error code depending on the platform is returned if both the platform and
1690 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 */
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001692int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
1693 bool runtime, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001695 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001697 if (enable && !runtime && !device_may_wakeup(&dev->dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001698 return -EINVAL;
1699
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001700 /* Don't do the same thing twice in a row for one device. */
1701 if (!!enable == !!dev->wakeup_prepared)
1702 return 0;
1703
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001704 /*
1705 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1706 * Anderson we should be doing PME# wake enable followed by ACPI wake
1707 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001708 */
1709
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001710 if (enable) {
1711 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001712
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001713 if (pci_pme_capable(dev, state))
1714 pci_pme_active(dev, true);
1715 else
1716 ret = 1;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001717 error = runtime ? platform_pci_run_wake(dev, true) :
1718 platform_pci_sleep_wake(dev, true);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001719 if (ret)
1720 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001721 if (!ret)
1722 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001723 } else {
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001724 if (runtime)
1725 platform_pci_run_wake(dev, false);
1726 else
1727 platform_pci_sleep_wake(dev, false);
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001728 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001729 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001730 }
1731
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001732 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001733}
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001734EXPORT_SYMBOL(__pci_enable_wake);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001735
1736/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001737 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1738 * @dev: PCI device to prepare
1739 * @enable: True to enable wake-up event generation; false to disable
1740 *
1741 * Many drivers want the device to wake up the system from D3_hot or D3_cold
1742 * and this function allows them to set that up cleanly - pci_enable_wake()
1743 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1744 * ordering constraints.
1745 *
1746 * This function only returns error code if the device is not capable of
1747 * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1748 * enable wake-up power for it.
1749 */
1750int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1751{
1752 return pci_pme_capable(dev, PCI_D3cold) ?
1753 pci_enable_wake(dev, PCI_D3cold, enable) :
1754 pci_enable_wake(dev, PCI_D3hot, enable);
1755}
1756
1757/**
Jesse Barnes37139072008-07-28 11:49:26 -07001758 * pci_target_state - find an appropriate low power state for a given PCI dev
1759 * @dev: PCI device
1760 *
1761 * Use underlying platform code to find a supported low power state for @dev.
1762 * If the platform can't manage @dev, return the deepest state from which it
1763 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001764 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001765pci_power_t pci_target_state(struct pci_dev *dev)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001766{
1767 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001768
1769 if (platform_pci_power_manageable(dev)) {
1770 /*
1771 * Call the platform to choose the target state of the device
1772 * and enable wake-up from this state if supported.
1773 */
1774 pci_power_t state = platform_pci_choose_state(dev);
1775
1776 switch (state) {
1777 case PCI_POWER_ERROR:
1778 case PCI_UNKNOWN:
1779 break;
1780 case PCI_D1:
1781 case PCI_D2:
1782 if (pci_no_d1d2(dev))
1783 break;
1784 default:
1785 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001786 }
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02001787 } else if (!dev->pm_cap) {
1788 target_state = PCI_D0;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001789 } else if (device_may_wakeup(&dev->dev)) {
1790 /*
1791 * Find the deepest state from which the device can generate
1792 * wake-up events, make it the target state and enable device
1793 * to generate PME#.
1794 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001795 if (dev->pme_support) {
1796 while (target_state
1797 && !(dev->pme_support & (1 << target_state)))
1798 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001799 }
1800 }
1801
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001802 return target_state;
1803}
1804
1805/**
1806 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1807 * @dev: Device to handle.
1808 *
1809 * Choose the power state appropriate for the device depending on whether
1810 * it can wake up the system and/or is power manageable by the platform
1811 * (PCI_D3hot is the default) and put the device into that state.
1812 */
1813int pci_prepare_to_sleep(struct pci_dev *dev)
1814{
1815 pci_power_t target_state = pci_target_state(dev);
1816 int error;
1817
1818 if (target_state == PCI_POWER_ERROR)
1819 return -EIO;
1820
Huang Ying448bd852012-06-23 10:23:51 +08001821 /* D3cold during system suspend/hibernate is not supported */
1822 if (target_state > PCI_D3hot)
1823 target_state = PCI_D3hot;
1824
Rafael J. Wysocki8efb8c72009-03-30 21:46:27 +02001825 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001826
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001827 error = pci_set_power_state(dev, target_state);
1828
1829 if (error)
1830 pci_enable_wake(dev, target_state, false);
1831
1832 return error;
1833}
1834
1835/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07001836 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001837 * @dev: Device to handle.
1838 *
Thomas Weber88393162010-03-16 11:47:56 +01001839 * Disable device's system wake-up capability and put it into D0.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001840 */
1841int pci_back_from_sleep(struct pci_dev *dev)
1842{
1843 pci_enable_wake(dev, PCI_D0, false);
1844 return pci_set_power_state(dev, PCI_D0);
1845}
1846
1847/**
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001848 * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
1849 * @dev: PCI device being suspended.
1850 *
1851 * Prepare @dev to generate wake-up events at run time and put it into a low
1852 * power state.
1853 */
1854int pci_finish_runtime_suspend(struct pci_dev *dev)
1855{
1856 pci_power_t target_state = pci_target_state(dev);
1857 int error;
1858
1859 if (target_state == PCI_POWER_ERROR)
1860 return -EIO;
1861
Huang Ying448bd852012-06-23 10:23:51 +08001862 dev->runtime_d3cold = target_state == PCI_D3cold;
1863
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001864 __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
1865
1866 error = pci_set_power_state(dev, target_state);
1867
Huang Ying448bd852012-06-23 10:23:51 +08001868 if (error) {
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001869 __pci_enable_wake(dev, target_state, true, false);
Huang Ying448bd852012-06-23 10:23:51 +08001870 dev->runtime_d3cold = false;
1871 }
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001872
1873 return error;
1874}
1875
1876/**
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001877 * pci_dev_run_wake - Check if device can generate run-time wake-up events.
1878 * @dev: Device to check.
1879 *
1880 * Return true if the device itself is cabable of generating wake-up events
1881 * (through the platform or using the native PCIe PME) or if the device supports
1882 * PME and one of its upstream bridges can generate wake-up events.
1883 */
1884bool pci_dev_run_wake(struct pci_dev *dev)
1885{
1886 struct pci_bus *bus = dev->bus;
1887
1888 if (device_run_wake(&dev->dev))
1889 return true;
1890
1891 if (!dev->pme_support)
1892 return false;
1893
1894 while (bus->parent) {
1895 struct pci_dev *bridge = bus->self;
1896
1897 if (device_run_wake(&bridge->dev))
1898 return true;
1899
1900 bus = bus->parent;
1901 }
1902
1903 /* We have reached the root bus. */
1904 if (bus->bridge)
1905 return device_run_wake(bus->bridge);
1906
1907 return false;
1908}
1909EXPORT_SYMBOL_GPL(pci_dev_run_wake);
1910
Huang Yingb3c32c42012-10-25 09:36:03 +08001911void pci_config_pm_runtime_get(struct pci_dev *pdev)
1912{
1913 struct device *dev = &pdev->dev;
1914 struct device *parent = dev->parent;
1915
1916 if (parent)
1917 pm_runtime_get_sync(parent);
1918 pm_runtime_get_noresume(dev);
1919 /*
1920 * pdev->current_state is set to PCI_D3cold during suspending,
1921 * so wait until suspending completes
1922 */
1923 pm_runtime_barrier(dev);
1924 /*
1925 * Only need to resume devices in D3cold, because config
1926 * registers are still accessible for devices suspended but
1927 * not in D3cold.
1928 */
1929 if (pdev->current_state == PCI_D3cold)
1930 pm_runtime_resume(dev);
1931}
1932
1933void pci_config_pm_runtime_put(struct pci_dev *pdev)
1934{
1935 struct device *dev = &pdev->dev;
1936 struct device *parent = dev->parent;
1937
1938 pm_runtime_put(dev);
1939 if (parent)
1940 pm_runtime_put_sync(parent);
1941}
1942
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001943/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001944 * pci_pm_init - Initialize PM functions of given PCI device
1945 * @dev: PCI device to handle.
1946 */
1947void pci_pm_init(struct pci_dev *dev)
1948{
1949 int pm;
1950 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001951
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01001952 pm_runtime_forbid(&dev->dev);
Huang Ying967577b2012-11-20 16:08:22 +08001953 pm_runtime_set_active(&dev->dev);
1954 pm_runtime_enable(&dev->dev);
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +01001955 device_enable_async_suspend(&dev->dev);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001956 dev->wakeup_prepared = false;
Rafael J. Wysockibb910a72010-02-27 21:37:37 +01001957
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001958 dev->pm_cap = 0;
Rafael J. Wysockiffaddbe2013-04-10 10:32:51 +00001959 dev->pme_support = 0;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /* find PCI PM capability in list */
1962 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001963 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08001964 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001966 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001968 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1969 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1970 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08001971 return;
David Brownell075c1772007-04-26 00:12:06 -07001972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001974 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01001975 dev->d3_delay = PCI_PM_D3_WAIT;
Huang Ying448bd852012-06-23 10:23:51 +08001976 dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
Huang Ying4f9c1392012-08-08 09:07:38 +08001977 dev->d3cold_allowed = true;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001978
1979 dev->d1_support = false;
1980 dev->d2_support = false;
1981 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001982 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001983 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001984 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001985 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001986
1987 if (dev->d1_support || dev->d2_support)
1988 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07001989 dev->d1_support ? " D1" : "",
1990 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001991 }
1992
1993 pmc &= PCI_PM_CAP_PME_MASK;
1994 if (pmc) {
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001995 dev_printk(KERN_DEBUG, &dev->dev,
1996 "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001997 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1998 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1999 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
2000 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
2001 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002002 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysocki379021d2011-10-03 23:16:33 +02002003 dev->pme_poll = true;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002004 /*
2005 * Make device's PM flags reflect the wake-up capability, but
2006 * let the user space enable it to wake up the system as needed.
2007 */
2008 device_set_wakeup_capable(&dev->dev, true);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002009 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02002010 pci_pme_active(dev, false);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
Yinghai Lu34a48762012-02-11 00:18:41 -08002014static void pci_add_saved_cap(struct pci_dev *pci_dev,
2015 struct pci_cap_saved_state *new_cap)
2016{
2017 hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space);
2018}
2019
Jesse Barneseb9c39d2008-12-17 12:10:05 -08002020/**
Yijing Wangce1be102013-08-01 21:05:27 +08002021 * pci_add_cap_save_buffer - allocate buffer for saving given capability registers
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002022 * @dev: the PCI device
2023 * @cap: the capability to allocate the buffer for
2024 * @size: requested size of the buffer
2025 */
2026static int pci_add_cap_save_buffer(
2027 struct pci_dev *dev, char cap, unsigned int size)
2028{
2029 int pos;
2030 struct pci_cap_saved_state *save_state;
2031
2032 pos = pci_find_capability(dev, cap);
2033 if (pos <= 0)
2034 return 0;
2035
2036 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
2037 if (!save_state)
2038 return -ENOMEM;
2039
Alex Williamson24a47422011-05-10 10:02:11 -06002040 save_state->cap.cap_nr = cap;
2041 save_state->cap.size = size;
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002042 pci_add_saved_cap(dev, save_state);
2043
2044 return 0;
2045}
2046
2047/**
2048 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
2049 * @dev: the PCI device
2050 */
2051void pci_allocate_cap_save_buffers(struct pci_dev *dev)
2052{
2053 int error;
2054
Yu Zhao89858512009-02-16 02:55:47 +08002055 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
2056 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002057 if (error)
2058 dev_err(&dev->dev,
2059 "unable to preallocate PCI Express save buffer\n");
2060
2061 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
2062 if (error)
2063 dev_err(&dev->dev,
2064 "unable to preallocate PCI-X save buffer\n");
2065}
2066
Yinghai Luf7968412012-02-11 00:18:30 -08002067void pci_free_cap_save_buffers(struct pci_dev *dev)
2068{
2069 struct pci_cap_saved_state *tmp;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002070 struct hlist_node *n;
Yinghai Luf7968412012-02-11 00:18:30 -08002071
Sasha Levinb67bfe02013-02-27 17:06:00 -08002072 hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
Yinghai Luf7968412012-02-11 00:18:30 -08002073 kfree(tmp);
2074}
2075
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002076/**
Yijing Wang31ab2472013-01-15 11:12:17 +08002077 * pci_configure_ari - enable or disable ARI forwarding
Yu Zhao58c3a722008-10-14 14:02:53 +08002078 * @dev: the PCI device
Yijing Wangb0cc6022013-01-15 11:12:16 +08002079 *
2080 * If @dev and its upstream bridge both support ARI, enable ARI in the
2081 * bridge. Otherwise, disable ARI in the bridge.
Yu Zhao58c3a722008-10-14 14:02:53 +08002082 */
Yijing Wang31ab2472013-01-15 11:12:17 +08002083void pci_configure_ari(struct pci_dev *dev)
Yu Zhao58c3a722008-10-14 14:02:53 +08002084{
Yu Zhao58c3a722008-10-14 14:02:53 +08002085 u32 cap;
Zhao, Yu81135872008-10-23 13:15:39 +08002086 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08002087
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01002088 if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08002089 return;
2090
Zhao, Yu81135872008-10-23 13:15:39 +08002091 bridge = dev->bus->self;
Myron Stowecb97ae32012-06-01 15:16:31 -06002092 if (!bridge)
Zhao, Yu81135872008-10-23 13:15:39 +08002093 return;
2094
Jiang Liu59875ae2012-07-24 17:20:06 +08002095 pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08002096 if (!(cap & PCI_EXP_DEVCAP2_ARI))
2097 return;
2098
Yijing Wangb0cc6022013-01-15 11:12:16 +08002099 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI)) {
2100 pcie_capability_set_word(bridge, PCI_EXP_DEVCTL2,
2101 PCI_EXP_DEVCTL2_ARI);
2102 bridge->ari_enabled = 1;
2103 } else {
2104 pcie_capability_clear_word(bridge, PCI_EXP_DEVCTL2,
2105 PCI_EXP_DEVCTL2_ARI);
2106 bridge->ari_enabled = 0;
2107 }
Yu Zhao58c3a722008-10-14 14:02:53 +08002108}
2109
Jesse Barnesb48d4422010-10-19 13:07:57 -07002110/**
Myron Stowec463b8c2012-06-01 15:16:37 -06002111 * pci_enable_ido - enable ID-based Ordering on a device
Jesse Barnesb48d4422010-10-19 13:07:57 -07002112 * @dev: the PCI device
2113 * @type: which types of IDO to enable
2114 *
2115 * Enable ID-based ordering on @dev. @type can contain the bits
2116 * %PCI_EXP_IDO_REQUEST and/or %PCI_EXP_IDO_COMPLETION to indicate
2117 * which types of transactions are allowed to be re-ordered.
2118 */
2119void pci_enable_ido(struct pci_dev *dev, unsigned long type)
2120{
Jiang Liu59875ae2012-07-24 17:20:06 +08002121 u16 ctrl = 0;
Jesse Barnesb48d4422010-10-19 13:07:57 -07002122
Jesse Barnesb48d4422010-10-19 13:07:57 -07002123 if (type & PCI_EXP_IDO_REQUEST)
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002124 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
Jesse Barnesb48d4422010-10-19 13:07:57 -07002125 if (type & PCI_EXP_IDO_COMPLETION)
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002126 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
Jiang Liu59875ae2012-07-24 17:20:06 +08002127 if (ctrl)
2128 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2, ctrl);
Jesse Barnesb48d4422010-10-19 13:07:57 -07002129}
2130EXPORT_SYMBOL(pci_enable_ido);
2131
2132/**
2133 * pci_disable_ido - disable ID-based ordering on a device
2134 * @dev: the PCI device
2135 * @type: which types of IDO to disable
2136 */
2137void pci_disable_ido(struct pci_dev *dev, unsigned long type)
2138{
Jiang Liu59875ae2012-07-24 17:20:06 +08002139 u16 ctrl = 0;
Jesse Barnesb48d4422010-10-19 13:07:57 -07002140
Jesse Barnesb48d4422010-10-19 13:07:57 -07002141 if (type & PCI_EXP_IDO_REQUEST)
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002142 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
Jesse Barnesb48d4422010-10-19 13:07:57 -07002143 if (type & PCI_EXP_IDO_COMPLETION)
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002144 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
Jiang Liu59875ae2012-07-24 17:20:06 +08002145 if (ctrl)
2146 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2, ctrl);
Jesse Barnesb48d4422010-10-19 13:07:57 -07002147}
2148EXPORT_SYMBOL(pci_disable_ido);
2149
Jesse Barnes48a92a82011-01-10 12:46:36 -08002150/**
2151 * pci_enable_obff - enable optimized buffer flush/fill
2152 * @dev: PCI device
2153 * @type: type of signaling to use
2154 *
2155 * Try to enable @type OBFF signaling on @dev. It will try using WAKE#
2156 * signaling if possible, falling back to message signaling only if
2157 * WAKE# isn't supported. @type should indicate whether the PCIe link
2158 * be brought out of L0s or L1 to send the message. It should be either
2159 * %PCI_EXP_OBFF_SIGNAL_ALWAYS or %PCI_OBFF_SIGNAL_L0.
2160 *
2161 * If your device can benefit from receiving all messages, even at the
2162 * power cost of bringing the link back up from a low power state, use
2163 * %PCI_EXP_OBFF_SIGNAL_ALWAYS. Otherwise, use %PCI_OBFF_SIGNAL_L0 (the
2164 * preferred type).
2165 *
2166 * RETURNS:
2167 * Zero on success, appropriate error number on failure.
2168 */
2169int pci_enable_obff(struct pci_dev *dev, enum pci_obff_signal_type type)
2170{
Jesse Barnes48a92a82011-01-10 12:46:36 -08002171 u32 cap;
2172 u16 ctrl;
2173 int ret;
2174
Jiang Liu59875ae2012-07-24 17:20:06 +08002175 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002176 if (!(cap & PCI_EXP_DEVCAP2_OBFF_MASK))
Jesse Barnes48a92a82011-01-10 12:46:36 -08002177 return -ENOTSUPP; /* no OBFF support at all */
2178
2179 /* Make sure the topology supports OBFF as well */
Bjorn Helgaas82915502012-06-19 07:35:34 -06002180 if (dev->bus->self) {
Jesse Barnes48a92a82011-01-10 12:46:36 -08002181 ret = pci_enable_obff(dev->bus->self, type);
2182 if (ret)
2183 return ret;
2184 }
2185
Jiang Liu59875ae2012-07-24 17:20:06 +08002186 pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &ctrl);
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002187 if (cap & PCI_EXP_DEVCAP2_OBFF_WAKE)
2188 ctrl |= PCI_EXP_DEVCTL2_OBFF_WAKE_EN;
Jesse Barnes48a92a82011-01-10 12:46:36 -08002189 else {
2190 switch (type) {
2191 case PCI_EXP_OBFF_SIGNAL_L0:
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002192 if (!(ctrl & PCI_EXP_DEVCTL2_OBFF_WAKE_EN))
2193 ctrl |= PCI_EXP_DEVCTL2_OBFF_MSGA_EN;
Jesse Barnes48a92a82011-01-10 12:46:36 -08002194 break;
2195 case PCI_EXP_OBFF_SIGNAL_ALWAYS:
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002196 ctrl &= ~PCI_EXP_DEVCTL2_OBFF_WAKE_EN;
2197 ctrl |= PCI_EXP_DEVCTL2_OBFF_MSGB_EN;
Jesse Barnes48a92a82011-01-10 12:46:36 -08002198 break;
2199 default:
2200 WARN(1, "bad OBFF signal type\n");
2201 return -ENOTSUPP;
2202 }
2203 }
Jiang Liu59875ae2012-07-24 17:20:06 +08002204 pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, ctrl);
Jesse Barnes48a92a82011-01-10 12:46:36 -08002205
2206 return 0;
2207}
2208EXPORT_SYMBOL(pci_enable_obff);
2209
2210/**
2211 * pci_disable_obff - disable optimized buffer flush/fill
2212 * @dev: PCI device
2213 *
2214 * Disable OBFF on @dev.
2215 */
2216void pci_disable_obff(struct pci_dev *dev)
2217{
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002218 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2,
2219 PCI_EXP_DEVCTL2_OBFF_WAKE_EN);
Jesse Barnes48a92a82011-01-10 12:46:36 -08002220}
2221EXPORT_SYMBOL(pci_disable_obff);
2222
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002223/**
2224 * pci_ltr_supported - check whether a device supports LTR
2225 * @dev: PCI device
2226 *
2227 * RETURNS:
2228 * True if @dev supports latency tolerance reporting, false otherwise.
2229 */
Myron Stowec32823f2012-06-01 15:16:25 -06002230static bool pci_ltr_supported(struct pci_dev *dev)
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002231{
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002232 u32 cap;
2233
Jiang Liu59875ae2012-07-24 17:20:06 +08002234 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002235
2236 return cap & PCI_EXP_DEVCAP2_LTR;
2237}
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002238
2239/**
2240 * pci_enable_ltr - enable latency tolerance reporting
2241 * @dev: PCI device
2242 *
2243 * Enable LTR on @dev if possible, which means enabling it first on
2244 * upstream ports.
2245 *
2246 * RETURNS:
2247 * Zero on success, errno on failure.
2248 */
2249int pci_enable_ltr(struct pci_dev *dev)
2250{
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002251 int ret;
2252
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002253 /* Only primary function can enable/disable LTR */
2254 if (PCI_FUNC(dev->devfn) != 0)
2255 return -EINVAL;
2256
Jiang Liu59875ae2012-07-24 17:20:06 +08002257 if (!pci_ltr_supported(dev))
2258 return -ENOTSUPP;
2259
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002260 /* Enable upstream ports first */
Bjorn Helgaas82915502012-06-19 07:35:34 -06002261 if (dev->bus->self) {
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002262 ret = pci_enable_ltr(dev->bus->self);
2263 if (ret)
2264 return ret;
2265 }
2266
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002267 return pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
2268 PCI_EXP_DEVCTL2_LTR_EN);
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002269}
2270EXPORT_SYMBOL(pci_enable_ltr);
2271
2272/**
2273 * pci_disable_ltr - disable latency tolerance reporting
2274 * @dev: PCI device
2275 */
2276void pci_disable_ltr(struct pci_dev *dev)
2277{
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002278 /* Only primary function can enable/disable LTR */
2279 if (PCI_FUNC(dev->devfn) != 0)
2280 return;
2281
Jiang Liu59875ae2012-07-24 17:20:06 +08002282 if (!pci_ltr_supported(dev))
2283 return;
2284
Bjorn Helgaasd2ab1fa2013-08-27 11:11:10 -06002285 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2,
2286 PCI_EXP_DEVCTL2_LTR_EN);
Jesse Barnes51c2e0a2011-01-14 08:53:04 -08002287}
2288EXPORT_SYMBOL(pci_disable_ltr);
2289
2290static int __pci_ltr_scale(int *val)
2291{
2292 int scale = 0;
2293
2294 while (*val > 1023) {
2295 *val = (*val + 31) / 32;
2296 scale++;
2297 }
2298 return scale;
2299}
2300
2301/**
2302 * pci_set_ltr - set LTR latency values
2303 * @dev: PCI device
2304 * @snoop_lat_ns: snoop latency in nanoseconds
2305 * @nosnoop_lat_ns: nosnoop latency in nanoseconds
2306 *
2307 * Figure out the scale and set the LTR values accordingly.
2308 */
2309int pci_set_ltr(struct pci_dev *dev, int snoop_lat_ns, int nosnoop_lat_ns)
2310{
2311 int pos, ret, snoop_scale, nosnoop_scale;
2312 u16 val;
2313
2314 if (!pci_ltr_supported(dev))
2315 return -ENOTSUPP;
2316
2317 snoop_scale = __pci_ltr_scale(&snoop_lat_ns);
2318 nosnoop_scale = __pci_ltr_scale(&nosnoop_lat_ns);
2319
2320 if (snoop_lat_ns > PCI_LTR_VALUE_MASK ||
2321 nosnoop_lat_ns > PCI_LTR_VALUE_MASK)
2322 return -EINVAL;
2323
2324 if ((snoop_scale > (PCI_LTR_SCALE_MASK >> PCI_LTR_SCALE_SHIFT)) ||
2325 (nosnoop_scale > (PCI_LTR_SCALE_MASK >> PCI_LTR_SCALE_SHIFT)))
2326 return -EINVAL;
2327
2328 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_LTR);
2329 if (!pos)
2330 return -ENOTSUPP;
2331
2332 val = (snoop_scale << PCI_LTR_SCALE_SHIFT) | snoop_lat_ns;
2333 ret = pci_write_config_word(dev, pos + PCI_LTR_MAX_SNOOP_LAT, val);
2334 if (ret != 4)
2335 return -EIO;
2336
2337 val = (nosnoop_scale << PCI_LTR_SCALE_SHIFT) | nosnoop_lat_ns;
2338 ret = pci_write_config_word(dev, pos + PCI_LTR_MAX_NOSNOOP_LAT, val);
2339 if (ret != 4)
2340 return -EIO;
2341
2342 return 0;
2343}
2344EXPORT_SYMBOL(pci_set_ltr);
2345
Chris Wright5d990b62009-12-04 12:15:21 -08002346static int pci_acs_enable;
2347
2348/**
2349 * pci_request_acs - ask for ACS to be enabled if supported
2350 */
2351void pci_request_acs(void)
2352{
2353 pci_acs_enable = 1;
2354}
2355
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002356/**
Allen Kayae21ee62009-10-07 10:27:17 -07002357 * pci_enable_acs - enable ACS if hardware support it
2358 * @dev: the PCI device
2359 */
2360void pci_enable_acs(struct pci_dev *dev)
2361{
2362 int pos;
2363 u16 cap;
2364 u16 ctrl;
2365
Chris Wright5d990b62009-12-04 12:15:21 -08002366 if (!pci_acs_enable)
2367 return;
2368
Allen Kayae21ee62009-10-07 10:27:17 -07002369 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
2370 if (!pos)
2371 return;
2372
2373 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
2374 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
2375
2376 /* Source Validation */
2377 ctrl |= (cap & PCI_ACS_SV);
2378
2379 /* P2P Request Redirect */
2380 ctrl |= (cap & PCI_ACS_RR);
2381
2382 /* P2P Completion Redirect */
2383 ctrl |= (cap & PCI_ACS_CR);
2384
2385 /* Upstream Forwarding */
2386 ctrl |= (cap & PCI_ACS_UF);
2387
2388 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
2389}
2390
Alex Williamson0a671192013-06-27 16:39:48 -06002391static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
2392{
2393 int pos;
Alex Williamson83db7e02013-06-27 16:39:54 -06002394 u16 cap, ctrl;
Alex Williamson0a671192013-06-27 16:39:48 -06002395
2396 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
2397 if (!pos)
2398 return false;
2399
Alex Williamson83db7e02013-06-27 16:39:54 -06002400 /*
2401 * Except for egress control, capabilities are either required
2402 * or only required if controllable. Features missing from the
2403 * capability field can therefore be assumed as hard-wired enabled.
2404 */
2405 pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
2406 acs_flags &= (cap | PCI_ACS_EC);
2407
Alex Williamson0a671192013-06-27 16:39:48 -06002408 pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
2409 return (ctrl & acs_flags) == acs_flags;
2410}
2411
Allen Kayae21ee62009-10-07 10:27:17 -07002412/**
Alex Williamsonad805752012-06-11 05:27:07 +00002413 * pci_acs_enabled - test ACS against required flags for a given device
2414 * @pdev: device to test
2415 * @acs_flags: required PCI ACS flags
2416 *
2417 * Return true if the device supports the provided flags. Automatically
2418 * filters out flags that are not implemented on multifunction devices.
Alex Williamson0a671192013-06-27 16:39:48 -06002419 *
2420 * Note that this interface checks the effective ACS capabilities of the
2421 * device rather than the actual capabilities. For instance, most single
2422 * function endpoints are not required to support ACS because they have no
2423 * opportunity for peer-to-peer access. We therefore return 'true'
2424 * regardless of whether the device exposes an ACS capability. This makes
2425 * it much easier for callers of this function to ignore the actual type
2426 * or topology of the device when testing ACS support.
Alex Williamsonad805752012-06-11 05:27:07 +00002427 */
2428bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2429{
Alex Williamson0a671192013-06-27 16:39:48 -06002430 int ret;
Alex Williamsonad805752012-06-11 05:27:07 +00002431
2432 ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
2433 if (ret >= 0)
2434 return ret > 0;
2435
Alex Williamson0a671192013-06-27 16:39:48 -06002436 /*
2437 * Conventional PCI and PCI-X devices never support ACS, either
2438 * effectively or actually. The shared bus topology implies that
2439 * any device on the bus can receive or snoop DMA.
2440 */
Alex Williamsonad805752012-06-11 05:27:07 +00002441 if (!pci_is_pcie(pdev))
2442 return false;
2443
Alex Williamson0a671192013-06-27 16:39:48 -06002444 switch (pci_pcie_type(pdev)) {
2445 /*
2446 * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
2447 * but since their primary inteface is PCI/X, we conservatively
2448 * handle them as we would a non-PCIe device.
2449 */
2450 case PCI_EXP_TYPE_PCIE_BRIDGE:
2451 /*
2452 * PCIe 3.0, 6.12.1 excludes ACS on these devices. "ACS is never
2453 * applicable... must never implement an ACS Extended Capability...".
2454 * This seems arbitrary, but we take a conservative interpretation
2455 * of this statement.
2456 */
2457 case PCI_EXP_TYPE_PCI_BRIDGE:
2458 case PCI_EXP_TYPE_RC_EC:
2459 return false;
2460 /*
2461 * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
2462 * implement ACS in order to indicate their peer-to-peer capabilities,
2463 * regardless of whether they are single- or multi-function devices.
2464 */
2465 case PCI_EXP_TYPE_DOWNSTREAM:
2466 case PCI_EXP_TYPE_ROOT_PORT:
2467 return pci_acs_flags_enabled(pdev, acs_flags);
2468 /*
2469 * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
2470 * implemented by the remaining PCIe types to indicate peer-to-peer
2471 * capabilities, but only when they are part of a multifunciton
2472 * device. The footnote for section 6.12 indicates the specific
2473 * PCIe types included here.
2474 */
2475 case PCI_EXP_TYPE_ENDPOINT:
2476 case PCI_EXP_TYPE_UPSTREAM:
2477 case PCI_EXP_TYPE_LEG_END:
2478 case PCI_EXP_TYPE_RC_END:
2479 if (!pdev->multifunction)
2480 break;
2481
Alex Williamson0a671192013-06-27 16:39:48 -06002482 return pci_acs_flags_enabled(pdev, acs_flags);
Alex Williamsonad805752012-06-11 05:27:07 +00002483 }
2484
Alex Williamson0a671192013-06-27 16:39:48 -06002485 /*
2486 * PCIe 3.0, 6.12.1.3 specifies no ACS capabilties are applicable
2487 * to single function devices with the exception of downstream ports.
2488 */
Alex Williamsonad805752012-06-11 05:27:07 +00002489 return true;
2490}
2491
2492/**
2493 * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
2494 * @start: starting downstream device
2495 * @end: ending upstream device or NULL to search to the root bus
2496 * @acs_flags: required flags
2497 *
2498 * Walk up a device tree from start to end testing PCI ACS support. If
2499 * any step along the way does not support the required flags, return false.
2500 */
2501bool pci_acs_path_enabled(struct pci_dev *start,
2502 struct pci_dev *end, u16 acs_flags)
2503{
2504 struct pci_dev *pdev, *parent = start;
2505
2506 do {
2507 pdev = parent;
2508
2509 if (!pci_acs_enabled(pdev, acs_flags))
2510 return false;
2511
2512 if (pci_is_root_bus(pdev->bus))
2513 return (end == NULL);
2514
2515 parent = pdev->bus->self;
2516 } while (pdev != end);
2517
2518 return true;
2519}
2520
2521/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002522 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
2523 * @dev: the PCI device
Wang Sheng-Huibb5c2de2013-05-28 11:17:41 +08002524 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002525 *
2526 * Perform INTx swizzling for a device behind one level of bridge. This is
2527 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07002528 * behind bridges on add-in cards. For devices with ARI enabled, the slot
2529 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
2530 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002531 */
John Crispin3df425f2012-04-12 17:33:07 +02002532u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002533{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07002534 int slot;
2535
2536 if (pci_ari_enabled(dev->bus))
2537 slot = 0;
2538 else
2539 slot = PCI_SLOT(dev->devfn);
2540
2541 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002542}
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544int
2545pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
2546{
2547 u8 pin;
2548
Kristen Accardi514d2072005-11-02 16:24:39 -08002549 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (!pin)
2551 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07002552
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09002553 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07002554 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 dev = dev->bus->self;
2556 }
2557 *bridge = dev;
2558 return pin;
2559}
2560
2561/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07002562 * pci_common_swizzle - swizzle INTx all the way to root bridge
2563 * @dev: the PCI device
2564 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
2565 *
2566 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
2567 * bridges all the way up to a PCI root bus.
2568 */
2569u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
2570{
2571 u8 pin = *pinp;
2572
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09002573 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07002574 pin = pci_swizzle_interrupt_pin(dev, pin);
2575 dev = dev->bus->self;
2576 }
2577 *pinp = pin;
2578 return PCI_SLOT(dev->devfn);
2579}
2580
2581/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 * pci_release_region - Release a PCI bar
2583 * @pdev: PCI device whose resources were previously reserved by pci_request_region
2584 * @bar: BAR to release
2585 *
2586 * Releases the PCI I/O and memory resources previously reserved by a
2587 * successful call to pci_request_region. Call this function only
2588 * after all use of the PCI regions has ceased.
2589 */
2590void pci_release_region(struct pci_dev *pdev, int bar)
2591{
Tejun Heo9ac78492007-01-20 16:00:26 +09002592 struct pci_devres *dr;
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 if (pci_resource_len(pdev, bar) == 0)
2595 return;
2596 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
2597 release_region(pci_resource_start(pdev, bar),
2598 pci_resource_len(pdev, bar));
2599 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
2600 release_mem_region(pci_resource_start(pdev, bar),
2601 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09002602
2603 dr = find_pci_dr(pdev);
2604 if (dr)
2605 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
2608/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002609 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 * @pdev: PCI device whose resources are to be reserved
2611 * @bar: BAR to be reserved
2612 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002613 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 *
2615 * Mark the PCI region associated with PCI device @pdev BR @bar as
2616 * being reserved by owner @res_name. Do not access any
2617 * address inside the PCI regions unless this call returns
2618 * successfully.
2619 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002620 * If @exclusive is set, then the region is marked so that userspace
2621 * is explicitly not allowed to map the resource via /dev/mem or
2622 * sysfs MMIO access.
2623 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 * Returns 0 on success, or %EBUSY on error. A warning
2625 * message is also printed on failure.
2626 */
Arjan van de Vene8de1482008-10-22 19:55:31 -07002627static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
2628 int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
Tejun Heo9ac78492007-01-20 16:00:26 +09002630 struct pci_devres *dr;
2631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 if (pci_resource_len(pdev, bar) == 0)
2633 return 0;
2634
2635 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
2636 if (!request_region(pci_resource_start(pdev, bar),
2637 pci_resource_len(pdev, bar), res_name))
2638 goto err_out;
2639 }
2640 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07002641 if (!__request_mem_region(pci_resource_start(pdev, bar),
2642 pci_resource_len(pdev, bar), res_name,
2643 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 goto err_out;
2645 }
Tejun Heo9ac78492007-01-20 16:00:26 +09002646
2647 dr = find_pci_dr(pdev);
2648 if (dr)
2649 dr->region_mask |= 1 << bar;
2650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return 0;
2652
2653err_out:
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06002654 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11002655 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 return -EBUSY;
2657}
2658
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002659/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002660 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07002661 * @pdev: PCI device whose resources are to be reserved
2662 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002663 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07002664 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08002665 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07002666 * being reserved by owner @res_name. Do not access any
2667 * address inside the PCI regions unless this call returns
2668 * successfully.
2669 *
2670 * Returns 0 on success, or %EBUSY on error. A warning
2671 * message is also printed on failure.
2672 */
2673int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
2674{
2675 return __pci_request_region(pdev, bar, res_name, 0);
2676}
2677
2678/**
2679 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
2680 * @pdev: PCI device whose resources are to be reserved
2681 * @bar: BAR to be reserved
2682 * @res_name: Name to be associated with resource.
2683 *
2684 * Mark the PCI region associated with PCI device @pdev BR @bar as
2685 * being reserved by owner @res_name. Do not access any
2686 * address inside the PCI regions unless this call returns
2687 * successfully.
2688 *
2689 * Returns 0 on success, or %EBUSY on error. A warning
2690 * message is also printed on failure.
2691 *
2692 * The key difference that _exclusive makes it that userspace is
2693 * explicitly not allowed to map the resource via /dev/mem or
2694 * sysfs.
2695 */
2696int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
2697{
2698 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
2699}
2700/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002701 * pci_release_selected_regions - Release selected PCI I/O and memory resources
2702 * @pdev: PCI device whose resources were previously reserved
2703 * @bars: Bitmask of BARs to be released
2704 *
2705 * Release selected PCI I/O and memory resources previously reserved.
2706 * Call this function only after all use of the PCI regions has ceased.
2707 */
2708void pci_release_selected_regions(struct pci_dev *pdev, int bars)
2709{
2710 int i;
2711
2712 for (i = 0; i < 6; i++)
2713 if (bars & (1 << i))
2714 pci_release_region(pdev, i);
2715}
2716
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06002717static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
Arjan van de Vene8de1482008-10-22 19:55:31 -07002718 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002719{
2720 int i;
2721
2722 for (i = 0; i < 6; i++)
2723 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07002724 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002725 goto err_out;
2726 return 0;
2727
2728err_out:
2729 while(--i >= 0)
2730 if (bars & (1 << i))
2731 pci_release_region(pdev, i);
2732
2733 return -EBUSY;
2734}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Arjan van de Vene8de1482008-10-22 19:55:31 -07002736
2737/**
2738 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
2739 * @pdev: PCI device whose resources are to be reserved
2740 * @bars: Bitmask of BARs to be requested
2741 * @res_name: Name to be associated with resource
2742 */
2743int pci_request_selected_regions(struct pci_dev *pdev, int bars,
2744 const char *res_name)
2745{
2746 return __pci_request_selected_regions(pdev, bars, res_name, 0);
2747}
2748
2749int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
2750 int bars, const char *res_name)
2751{
2752 return __pci_request_selected_regions(pdev, bars, res_name,
2753 IORESOURCE_EXCLUSIVE);
2754}
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756/**
2757 * pci_release_regions - Release reserved PCI I/O and memory resources
2758 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
2759 *
2760 * Releases all PCI I/O and memory resources previously reserved by a
2761 * successful call to pci_request_regions. Call this function only
2762 * after all use of the PCI regions has ceased.
2763 */
2764
2765void pci_release_regions(struct pci_dev *pdev)
2766{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002767 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
2770/**
2771 * pci_request_regions - Reserved PCI I/O and memory resources
2772 * @pdev: PCI device whose resources are to be reserved
2773 * @res_name: Name to be associated with resource.
2774 *
2775 * Mark all PCI regions associated with PCI device @pdev as
2776 * being reserved by owner @res_name. Do not access any
2777 * address inside the PCI regions unless this call returns
2778 * successfully.
2779 *
2780 * Returns 0 on success, or %EBUSY on error. A warning
2781 * message is also printed on failure.
2782 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05002783int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002785 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
2788/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07002789 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
2790 * @pdev: PCI device whose resources are to be reserved
2791 * @res_name: Name to be associated with resource.
2792 *
2793 * Mark all PCI regions associated with PCI device @pdev as
2794 * being reserved by owner @res_name. Do not access any
2795 * address inside the PCI regions unless this call returns
2796 * successfully.
2797 *
2798 * pci_request_regions_exclusive() will mark the region so that
2799 * /dev/mem and the sysfs MMIO access will not be allowed.
2800 *
2801 * Returns 0 on success, or %EBUSY on error. A warning
2802 * message is also printed on failure.
2803 */
2804int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
2805{
2806 return pci_request_selected_regions_exclusive(pdev,
2807 ((1 << 6) - 1), res_name);
2808}
2809
Ben Hutchings6a479072008-12-23 03:08:29 +00002810static void __pci_set_master(struct pci_dev *dev, bool enable)
2811{
2812 u16 old_cmd, cmd;
2813
2814 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
2815 if (enable)
2816 cmd = old_cmd | PCI_COMMAND_MASTER;
2817 else
2818 cmd = old_cmd & ~PCI_COMMAND_MASTER;
2819 if (cmd != old_cmd) {
2820 dev_dbg(&dev->dev, "%s bus mastering\n",
2821 enable ? "enabling" : "disabling");
2822 pci_write_config_word(dev, PCI_COMMAND, cmd);
2823 }
2824 dev->is_busmaster = enable;
2825}
Arjan van de Vene8de1482008-10-22 19:55:31 -07002826
2827/**
Myron Stowe2b6f2c32012-06-25 21:30:57 -06002828 * pcibios_setup - process "pci=" kernel boot arguments
2829 * @str: string used to pass in "pci=" kernel boot arguments
2830 *
2831 * Process kernel boot arguments. This is the default implementation.
2832 * Architecture specific implementations can override this as necessary.
2833 */
2834char * __weak __init pcibios_setup(char *str)
2835{
2836 return str;
2837}
2838
2839/**
Myron Stowe96c55902011-10-28 15:48:38 -06002840 * pcibios_set_master - enable PCI bus-mastering for device dev
2841 * @dev: the PCI device to enable
2842 *
2843 * Enables PCI bus-mastering for the device. This is the default
2844 * implementation. Architecture specific implementations can override
2845 * this if necessary.
2846 */
2847void __weak pcibios_set_master(struct pci_dev *dev)
2848{
2849 u8 lat;
2850
Myron Stowef6766782011-10-28 15:49:20 -06002851 /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
2852 if (pci_is_pcie(dev))
2853 return;
2854
Myron Stowe96c55902011-10-28 15:48:38 -06002855 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
2856 if (lat < 16)
2857 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
2858 else if (lat > pcibios_max_latency)
2859 lat = pcibios_max_latency;
2860 else
2861 return;
Bjorn Helgaasa0064822013-09-23 15:25:26 -06002862
Myron Stowe96c55902011-10-28 15:48:38 -06002863 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
2864}
2865
2866/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 * pci_set_master - enables bus-mastering for device dev
2868 * @dev: the PCI device to enable
2869 *
2870 * Enables bus-mastering on the device and calls pcibios_set_master()
2871 * to do the needed arch specific settings.
2872 */
Ben Hutchings6a479072008-12-23 03:08:29 +00002873void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
Ben Hutchings6a479072008-12-23 03:08:29 +00002875 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 pcibios_set_master(dev);
2877}
2878
Ben Hutchings6a479072008-12-23 03:08:29 +00002879/**
2880 * pci_clear_master - disables bus-mastering for device dev
2881 * @dev: the PCI device to disable
2882 */
2883void pci_clear_master(struct pci_dev *dev)
2884{
2885 __pci_set_master(dev, false);
2886}
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002889 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
2890 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002892 * Helper function for pci_set_mwi.
2893 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
2895 *
2896 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2897 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09002898int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
2900 u8 cacheline_size;
2901
2902 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09002903 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
2906 equal to or multiple of the right value. */
2907 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2908 if (cacheline_size >= pci_cache_line_size &&
2909 (cacheline_size % pci_cache_line_size) == 0)
2910 return 0;
2911
2912 /* Write the correct value. */
2913 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
2914 /* Read it back. */
2915 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2916 if (cacheline_size == pci_cache_line_size)
2917 return 0;
2918
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002919 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
2920 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 return -EINVAL;
2923}
Tejun Heo15ea76d2009-09-22 17:34:48 +09002924EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
2925
2926#ifdef PCI_DISABLE_MWI
2927int pci_set_mwi(struct pci_dev *dev)
2928{
2929 return 0;
2930}
2931
2932int pci_try_set_mwi(struct pci_dev *dev)
2933{
2934 return 0;
2935}
2936
2937void pci_clear_mwi(struct pci_dev *dev)
2938{
2939}
2940
2941#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943/**
2944 * pci_set_mwi - enables memory-write-invalidate PCI transaction
2945 * @dev: the PCI device for which MWI is enabled
2946 *
Randy Dunlap694625c2007-07-09 11:55:54 -07002947 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 *
2949 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2950 */
2951int
2952pci_set_mwi(struct pci_dev *dev)
2953{
2954 int rc;
2955 u16 cmd;
2956
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002957 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (rc)
2959 return rc;
2960
2961 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2962 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002963 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 cmd |= PCI_COMMAND_INVALIDATE;
2965 pci_write_config_word(dev, PCI_COMMAND, cmd);
2966 }
2967
2968 return 0;
2969}
2970
2971/**
Randy Dunlap694625c2007-07-09 11:55:54 -07002972 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2973 * @dev: the PCI device for which MWI is enabled
2974 *
2975 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2976 * Callers are not required to check the return value.
2977 *
2978 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2979 */
2980int pci_try_set_mwi(struct pci_dev *dev)
2981{
2982 int rc = pci_set_mwi(dev);
2983 return rc;
2984}
2985
2986/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2988 * @dev: the PCI device to disable
2989 *
2990 * Disables PCI Memory-Write-Invalidate transaction on the device
2991 */
2992void
2993pci_clear_mwi(struct pci_dev *dev)
2994{
2995 u16 cmd;
2996
2997 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2998 if (cmd & PCI_COMMAND_INVALIDATE) {
2999 cmd &= ~PCI_COMMAND_INVALIDATE;
3000 pci_write_config_word(dev, PCI_COMMAND, cmd);
3001 }
3002}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06003003#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Brett M Russa04ce0f2005-08-15 15:23:41 -04003005/**
3006 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07003007 * @pdev: the PCI device to operate on
3008 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04003009 *
3010 * Enables/disables PCI INTx for device dev
3011 */
3012void
3013pci_intx(struct pci_dev *pdev, int enable)
3014{
3015 u16 pci_command, new;
3016
3017 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
3018
3019 if (enable) {
3020 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
3021 } else {
3022 new = pci_command | PCI_COMMAND_INTX_DISABLE;
3023 }
3024
3025 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09003026 struct pci_devres *dr;
3027
Brett M Russ2fd9d742005-09-09 10:02:22 -07003028 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09003029
3030 dr = find_pci_dr(pdev);
3031 if (dr && !dr->restore_intx) {
3032 dr->restore_intx = 1;
3033 dr->orig_intx = !enable;
3034 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04003035 }
3036}
3037
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003038/**
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003039 * pci_intx_mask_supported - probe for INTx masking support
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003040 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003041 *
3042 * Check if the device dev support INTx masking via the config space
3043 * command word.
3044 */
3045bool pci_intx_mask_supported(struct pci_dev *dev)
3046{
3047 bool mask_supported = false;
3048 u16 orig, new;
3049
Bjorn Helgaasfbebb9f2012-06-16 14:40:22 -06003050 if (dev->broken_intx_masking)
3051 return false;
3052
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003053 pci_cfg_access_lock(dev);
3054
3055 pci_read_config_word(dev, PCI_COMMAND, &orig);
3056 pci_write_config_word(dev, PCI_COMMAND,
3057 orig ^ PCI_COMMAND_INTX_DISABLE);
3058 pci_read_config_word(dev, PCI_COMMAND, &new);
3059
3060 /*
3061 * There's no way to protect against hardware bugs or detect them
3062 * reliably, but as long as we know what the value should be, let's
3063 * go ahead and check it.
3064 */
3065 if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
3066 dev_err(&dev->dev, "Command register changed from "
3067 "0x%x to 0x%x: driver or hardware bug?\n", orig, new);
3068 } else if ((new ^ orig) & PCI_COMMAND_INTX_DISABLE) {
3069 mask_supported = true;
3070 pci_write_config_word(dev, PCI_COMMAND, orig);
3071 }
3072
3073 pci_cfg_access_unlock(dev);
3074 return mask_supported;
3075}
3076EXPORT_SYMBOL_GPL(pci_intx_mask_supported);
3077
3078static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
3079{
3080 struct pci_bus *bus = dev->bus;
3081 bool mask_updated = true;
3082 u32 cmd_status_dword;
3083 u16 origcmd, newcmd;
3084 unsigned long flags;
3085 bool irq_pending;
3086
3087 /*
3088 * We do a single dword read to retrieve both command and status.
3089 * Document assumptions that make this possible.
3090 */
3091 BUILD_BUG_ON(PCI_COMMAND % 4);
3092 BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
3093
3094 raw_spin_lock_irqsave(&pci_lock, flags);
3095
3096 bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
3097
3098 irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
3099
3100 /*
3101 * Check interrupt status register to see whether our device
3102 * triggered the interrupt (when masking) or the next IRQ is
3103 * already pending (when unmasking).
3104 */
3105 if (mask != irq_pending) {
3106 mask_updated = false;
3107 goto done;
3108 }
3109
3110 origcmd = cmd_status_dword;
3111 newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
3112 if (mask)
3113 newcmd |= PCI_COMMAND_INTX_DISABLE;
3114 if (newcmd != origcmd)
3115 bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
3116
3117done:
3118 raw_spin_unlock_irqrestore(&pci_lock, flags);
3119
3120 return mask_updated;
3121}
3122
3123/**
3124 * pci_check_and_mask_intx - mask INTx on pending interrupt
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003125 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003126 *
3127 * Check if the device dev has its INTx line asserted, mask it and
3128 * return true in that case. False is returned if not interrupt was
3129 * pending.
3130 */
3131bool pci_check_and_mask_intx(struct pci_dev *dev)
3132{
3133 return pci_check_and_set_intx_mask(dev, true);
3134}
3135EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
3136
3137/**
3138 * pci_check_and_mask_intx - unmask INTx of no interrupt is pending
Randy Dunlap6e9292c2012-01-21 11:02:35 -08003139 * @dev: the PCI device to operate on
Jan Kiszkaa2e27782011-11-04 09:46:00 +01003140 *
3141 * Check if the device dev has its INTx line asserted, unmask it if not
3142 * and return true. False is returned and the mask remains active if
3143 * there was still an interrupt pending.
3144 */
3145bool pci_check_and_unmask_intx(struct pci_dev *dev)
3146{
3147 return pci_check_and_set_intx_mask(dev, false);
3148}
3149EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
3150
3151/**
Bjorn Helgaasda27f4b2013-08-22 14:45:21 -06003152 * pci_msi_off - disables any MSI or MSI-X capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07003153 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003154 *
Bjorn Helgaasda27f4b2013-08-22 14:45:21 -06003155 * If you want to use MSI, see pci_enable_msi() and friends.
3156 * This is a lower-level primitive that allows us to disable
3157 * MSI operation at the device level.
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003158 */
3159void pci_msi_off(struct pci_dev *dev)
3160{
3161 int pos;
3162 u16 control;
3163
Bjorn Helgaasda27f4b2013-08-22 14:45:21 -06003164 /*
3165 * This looks like it could go in msi.c, but we need it even when
3166 * CONFIG_PCI_MSI=n. For the same reason, we can't use
3167 * dev->msi_cap or dev->msix_cap here.
3168 */
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003169 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
3170 if (pos) {
3171 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
3172 control &= ~PCI_MSI_FLAGS_ENABLE;
3173 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
3174 }
3175 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
3176 if (pos) {
3177 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
3178 control &= ~PCI_MSIX_FLAGS_ENABLE;
3179 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
3180 }
3181}
Michael S. Tsirkinb03214d2010-06-23 22:49:06 -06003182EXPORT_SYMBOL_GPL(pci_msi_off);
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08003183
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08003184int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
3185{
3186 return dma_set_max_seg_size(&dev->dev, size);
3187}
3188EXPORT_SYMBOL(pci_set_dma_max_seg_size);
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08003189
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08003190int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
3191{
3192 return dma_set_seg_boundary(&dev->dev, mask);
3193}
3194EXPORT_SYMBOL(pci_set_dma_seg_boundary);
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08003195
Casey Leedom3775a202013-08-06 15:48:36 +05303196/**
3197 * pci_wait_for_pending_transaction - waits for pending transaction
3198 * @dev: the PCI device to operate on
3199 *
3200 * Return 0 if transaction is pending 1 otherwise.
3201 */
3202int pci_wait_for_pending_transaction(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003203{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003204 int i;
Jiang Liu59875ae2012-07-24 17:20:06 +08003205 u16 status;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003206
Sheng Yang8dd7f802008-10-21 17:38:25 +08003207 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08003208 for (i = 0; i < 4; i++) {
3209 if (i)
3210 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08003211
Jiang Liu59875ae2012-07-24 17:20:06 +08003212 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
Yu Zhao8c1c6992009-06-13 15:52:13 +08003213 if (!(status & PCI_EXP_DEVSTA_TRPND))
Casey Leedom3775a202013-08-06 15:48:36 +05303214 return 1;
Yu Zhao8c1c6992009-06-13 15:52:13 +08003215 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08003216
Casey Leedom3775a202013-08-06 15:48:36 +05303217 return 0;
3218}
3219EXPORT_SYMBOL(pci_wait_for_pending_transaction);
Sheng Yang5fe5db02009-02-09 14:53:47 +08003220
Casey Leedom3775a202013-08-06 15:48:36 +05303221static int pcie_flr(struct pci_dev *dev, int probe)
3222{
3223 u32 cap;
3224
3225 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
3226 if (!(cap & PCI_EXP_DEVCAP_FLR))
3227 return -ENOTTY;
3228
3229 if (probe)
3230 return 0;
3231
3232 if (!pci_wait_for_pending_transaction(dev))
3233 dev_err(&dev->dev, "transaction is not cleared; proceeding with reset anyway\n");
3234
Jiang Liu59875ae2012-07-24 17:20:06 +08003235 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
Shmulik Ravid04b55c42009-12-03 22:27:51 +02003236
Yu Zhao8c1c6992009-06-13 15:52:13 +08003237 msleep(100);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003238
Sheng Yang8dd7f802008-10-21 17:38:25 +08003239 return 0;
3240}
Sheng Yangd91cdc72008-11-11 17:17:47 +08003241
Yu Zhao8c1c6992009-06-13 15:52:13 +08003242static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08003243{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003244 int i;
3245 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08003246 u8 cap;
Yu Zhao8c1c6992009-06-13 15:52:13 +08003247 u8 status;
Sheng Yang1ca88792008-11-11 17:17:48 +08003248
Yu Zhao8c1c6992009-06-13 15:52:13 +08003249 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
3250 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08003251 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08003252
3253 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08003254 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
3255 return -ENOTTY;
3256
3257 if (probe)
3258 return 0;
3259
Sheng Yang1ca88792008-11-11 17:17:48 +08003260 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08003261 for (i = 0; i < 4; i++) {
3262 if (i)
3263 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08003264
Yu Zhao8c1c6992009-06-13 15:52:13 +08003265 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
3266 if (!(status & PCI_AF_STATUS_TP))
3267 goto clear;
3268 }
3269
3270 dev_err(&dev->dev, "transaction is not cleared; "
3271 "proceeding with reset anyway\n");
3272
3273clear:
3274 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sheng Yang1ca88792008-11-11 17:17:48 +08003275 msleep(100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08003276
Sheng Yang1ca88792008-11-11 17:17:48 +08003277 return 0;
3278}
3279
Rafael J. Wysocki83d74e02011-03-05 21:48:44 +01003280/**
3281 * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
3282 * @dev: Device to reset.
3283 * @probe: If set, only check if the device can be reset this way.
3284 *
3285 * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
3286 * unset, it will be reinitialized internally when going from PCI_D3hot to
3287 * PCI_D0. If that's the case and the device is not in a low-power state
3288 * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
3289 *
3290 * NOTE: This causes the caller to sleep for twice the device power transition
3291 * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
3292 * by devault (i.e. unless the @dev's d3_delay field has a different value).
3293 * Moreover, only devices in D0 can be reset by this function.
3294 */
Yu Zhaof85876b2009-06-13 15:52:14 +08003295static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08003296{
Yu Zhaof85876b2009-06-13 15:52:14 +08003297 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08003298
Yu Zhaof85876b2009-06-13 15:52:14 +08003299 if (!dev->pm_cap)
3300 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08003301
Yu Zhaof85876b2009-06-13 15:52:14 +08003302 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
3303 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
3304 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08003305
Yu Zhaof85876b2009-06-13 15:52:14 +08003306 if (probe)
3307 return 0;
3308
3309 if (dev->current_state != PCI_D0)
3310 return -EINVAL;
3311
3312 csr &= ~PCI_PM_CTRL_STATE_MASK;
3313 csr |= PCI_D3hot;
3314 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01003315 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08003316
3317 csr &= ~PCI_PM_CTRL_STATE_MASK;
3318 csr |= PCI_D0;
3319 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01003320 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08003321
3322 return 0;
3323}
3324
Alex Williamson64e86742013-08-08 14:09:24 -06003325/**
3326 * pci_reset_bridge_secondary_bus - Reset the secondary bus on a PCI bridge.
3327 * @dev: Bridge device
3328 *
3329 * Use the bridge control register to assert reset on the secondary bus.
3330 * Devices on the secondary bus are left in power-on state.
3331 */
3332void pci_reset_bridge_secondary_bus(struct pci_dev *dev)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003333{
3334 u16 ctrl;
Alex Williamson64e86742013-08-08 14:09:24 -06003335
3336 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
3337 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
3338 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Alex Williamsonde0c5482013-08-08 14:10:13 -06003339 /*
3340 * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double
3341 * this to 2ms to ensure that we meet the minium requirement.
3342 */
3343 msleep(2);
Alex Williamson64e86742013-08-08 14:09:24 -06003344
3345 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
3346 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
Alex Williamsonde0c5482013-08-08 14:10:13 -06003347
3348 /*
3349 * Trhfa for conventional PCI is 2^25 clock cycles.
3350 * Assuming a minimum 33MHz clock this results in a 1s
3351 * delay before we can consider subordinate devices to
3352 * be re-initialized. PCIe has some ways to shorten this,
3353 * but we don't make use of them yet.
3354 */
3355 ssleep(1);
Alex Williamson64e86742013-08-08 14:09:24 -06003356}
3357EXPORT_SYMBOL_GPL(pci_reset_bridge_secondary_bus);
3358
3359static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
3360{
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003361 struct pci_dev *pdev;
3362
Yu Zhao654b75e2009-06-26 14:04:46 +08003363 if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003364 return -ENOTTY;
3365
3366 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3367 if (pdev != dev)
3368 return -ENOTTY;
3369
3370 if (probe)
3371 return 0;
3372
Alex Williamson64e86742013-08-08 14:09:24 -06003373 pci_reset_bridge_secondary_bus(dev->bus->self);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003374
3375 return 0;
3376}
3377
Alex Williamson608c3882013-08-08 14:09:43 -06003378static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
3379{
3380 int rc = -ENOTTY;
3381
3382 if (!hotplug || !try_module_get(hotplug->ops->owner))
3383 return rc;
3384
3385 if (hotplug->ops->reset_slot)
3386 rc = hotplug->ops->reset_slot(hotplug, probe);
3387
3388 module_put(hotplug->ops->owner);
3389
3390 return rc;
3391}
3392
3393static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
3394{
3395 struct pci_dev *pdev;
3396
3397 if (dev->subordinate || !dev->slot)
3398 return -ENOTTY;
3399
3400 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3401 if (pdev != dev && pdev->slot == dev->slot)
3402 return -ENOTTY;
3403
3404 return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
3405}
3406
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003407static int __pci_dev_reset(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003408{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003409 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003410
Yu Zhao8c1c6992009-06-13 15:52:13 +08003411 might_sleep();
Sheng Yang8dd7f802008-10-21 17:38:25 +08003412
Dexuan Cuib9c3b262009-12-07 13:03:21 +08003413 rc = pci_dev_specific_reset(dev, probe);
3414 if (rc != -ENOTTY)
3415 goto done;
3416
Yu Zhao8c1c6992009-06-13 15:52:13 +08003417 rc = pcie_flr(dev, probe);
3418 if (rc != -ENOTTY)
3419 goto done;
3420
3421 rc = pci_af_flr(dev, probe);
Yu Zhaof85876b2009-06-13 15:52:14 +08003422 if (rc != -ENOTTY)
3423 goto done;
3424
3425 rc = pci_pm_reset(dev, probe);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003426 if (rc != -ENOTTY)
3427 goto done;
3428
Alex Williamson608c3882013-08-08 14:09:43 -06003429 rc = pci_dev_reset_slot_function(dev, probe);
3430 if (rc != -ENOTTY)
3431 goto done;
3432
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08003433 rc = pci_parent_bus_reset(dev, probe);
Yu Zhao8c1c6992009-06-13 15:52:13 +08003434done:
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003435 return rc;
3436}
3437
Alex Williamson77cb9852013-08-08 14:09:49 -06003438static void pci_dev_lock(struct pci_dev *dev)
3439{
3440 pci_cfg_access_lock(dev);
3441 /* block PM suspend, driver probe, etc. */
3442 device_lock(&dev->dev);
3443}
3444
3445static void pci_dev_unlock(struct pci_dev *dev)
3446{
3447 device_unlock(&dev->dev);
3448 pci_cfg_access_unlock(dev);
3449}
3450
3451static void pci_dev_save_and_disable(struct pci_dev *dev)
3452{
Alex Williamsona6cbaad2013-08-08 14:10:02 -06003453 /*
3454 * Wake-up device prior to save. PM registers default to D0 after
3455 * reset and a simple register restore doesn't reliably return
3456 * to a non-D0 state anyway.
3457 */
3458 pci_set_power_state(dev, PCI_D0);
3459
Alex Williamson77cb9852013-08-08 14:09:49 -06003460 pci_save_state(dev);
3461 /*
3462 * Disable the device by clearing the Command register, except for
3463 * INTx-disable which is set. This not only disables MMIO and I/O port
3464 * BARs, but also prevents the device from being Bus Master, preventing
3465 * DMA from the device including MSI/MSI-X interrupts. For PCI 2.3
3466 * compliant devices, INTx-disable prevents legacy interrupts.
3467 */
3468 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
3469}
3470
3471static void pci_dev_restore(struct pci_dev *dev)
3472{
3473 pci_restore_state(dev);
3474}
3475
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003476static int pci_dev_reset(struct pci_dev *dev, int probe)
3477{
3478 int rc;
3479
Alex Williamson77cb9852013-08-08 14:09:49 -06003480 if (!probe)
3481 pci_dev_lock(dev);
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003482
3483 rc = __pci_dev_reset(dev, probe);
3484
Alex Williamson77cb9852013-08-08 14:09:49 -06003485 if (!probe)
3486 pci_dev_unlock(dev);
3487
Yu Zhao8c1c6992009-06-13 15:52:13 +08003488 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003489}
Sheng Yang8dd7f802008-10-21 17:38:25 +08003490/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08003491 * __pci_reset_function - reset a PCI device function
3492 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08003493 *
3494 * Some devices allow an individual function to be reset without affecting
3495 * other functions in the same device. The PCI device must be responsive
3496 * to PCI config space in order to use this function.
3497 *
3498 * The device function is presumed to be unused when this function is called.
3499 * Resetting the device will make the contents of PCI configuration space
3500 * random, so any caller of this must be prepared to reinitialise the
3501 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3502 * etc.
3503 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08003504 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08003505 * device doesn't support resetting a single function.
3506 */
Yu Zhao8c1c6992009-06-13 15:52:13 +08003507int __pci_reset_function(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08003508{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003509 return pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003510}
Yu Zhao8c1c6992009-06-13 15:52:13 +08003511EXPORT_SYMBOL_GPL(__pci_reset_function);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003512
3513/**
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05003514 * __pci_reset_function_locked - reset a PCI device function while holding
3515 * the @dev mutex lock.
3516 * @dev: PCI device to reset
3517 *
3518 * Some devices allow an individual function to be reset without affecting
3519 * other functions in the same device. The PCI device must be responsive
3520 * to PCI config space in order to use this function.
3521 *
3522 * The device function is presumed to be unused and the caller is holding
3523 * the device mutex lock when this function is called.
3524 * Resetting the device will make the contents of PCI configuration space
3525 * random, so any caller of this must be prepared to reinitialise the
3526 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3527 * etc.
3528 *
3529 * Returns 0 if the device function was successfully reset or negative if the
3530 * device doesn't support resetting a single function.
3531 */
3532int __pci_reset_function_locked(struct pci_dev *dev)
3533{
Konrad Rzeszutek Wilk977f8572012-04-24 13:15:18 -06003534 return __pci_dev_reset(dev, 0);
Konrad Rzeszutek Wilk6fbf9e72012-01-12 12:06:46 -05003535}
3536EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
3537
3538/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03003539 * pci_probe_reset_function - check whether the device can be safely reset
3540 * @dev: PCI device to reset
3541 *
3542 * Some devices allow an individual function to be reset without affecting
3543 * other functions in the same device. The PCI device must be responsive
3544 * to PCI config space in order to use this function.
3545 *
3546 * Returns 0 if the device function can be reset or negative if the
3547 * device doesn't support resetting a single function.
3548 */
3549int pci_probe_reset_function(struct pci_dev *dev)
3550{
3551 return pci_dev_reset(dev, 1);
3552}
3553
3554/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08003555 * pci_reset_function - quiesce and reset a PCI device function
3556 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08003557 *
3558 * Some devices allow an individual function to be reset without affecting
3559 * other functions in the same device. The PCI device must be responsive
3560 * to PCI config space in order to use this function.
3561 *
3562 * This function does not just reset the PCI portion of a device, but
3563 * clears all the state associated with the device. This function differs
Yu Zhao8c1c6992009-06-13 15:52:13 +08003564 * from __pci_reset_function in that it saves and restores device state
Sheng Yang8dd7f802008-10-21 17:38:25 +08003565 * over the reset.
3566 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08003567 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08003568 * device doesn't support resetting a single function.
3569 */
3570int pci_reset_function(struct pci_dev *dev)
3571{
Yu Zhao8c1c6992009-06-13 15:52:13 +08003572 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003573
Yu Zhao8c1c6992009-06-13 15:52:13 +08003574 rc = pci_dev_reset(dev, 1);
3575 if (rc)
3576 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003577
Alex Williamson77cb9852013-08-08 14:09:49 -06003578 pci_dev_save_and_disable(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003579
Yu Zhao8c1c6992009-06-13 15:52:13 +08003580 rc = pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003581
Alex Williamson77cb9852013-08-08 14:09:49 -06003582 pci_dev_restore(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08003583
Yu Zhao8c1c6992009-06-13 15:52:13 +08003584 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08003585}
3586EXPORT_SYMBOL_GPL(pci_reset_function);
3587
Alex Williamson090a3c52013-08-08 14:09:55 -06003588/* Lock devices from the top of the tree down */
3589static void pci_bus_lock(struct pci_bus *bus)
3590{
3591 struct pci_dev *dev;
3592
3593 list_for_each_entry(dev, &bus->devices, bus_list) {
3594 pci_dev_lock(dev);
3595 if (dev->subordinate)
3596 pci_bus_lock(dev->subordinate);
3597 }
3598}
3599
3600/* Unlock devices from the bottom of the tree up */
3601static void pci_bus_unlock(struct pci_bus *bus)
3602{
3603 struct pci_dev *dev;
3604
3605 list_for_each_entry(dev, &bus->devices, bus_list) {
3606 if (dev->subordinate)
3607 pci_bus_unlock(dev->subordinate);
3608 pci_dev_unlock(dev);
3609 }
3610}
3611
3612/* Lock devices from the top of the tree down */
3613static void pci_slot_lock(struct pci_slot *slot)
3614{
3615 struct pci_dev *dev;
3616
3617 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3618 if (!dev->slot || dev->slot != slot)
3619 continue;
3620 pci_dev_lock(dev);
3621 if (dev->subordinate)
3622 pci_bus_lock(dev->subordinate);
3623 }
3624}
3625
3626/* Unlock devices from the bottom of the tree up */
3627static void pci_slot_unlock(struct pci_slot *slot)
3628{
3629 struct pci_dev *dev;
3630
3631 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3632 if (!dev->slot || dev->slot != slot)
3633 continue;
3634 if (dev->subordinate)
3635 pci_bus_unlock(dev->subordinate);
3636 pci_dev_unlock(dev);
3637 }
3638}
3639
3640/* Save and disable devices from the top of the tree down */
3641static void pci_bus_save_and_disable(struct pci_bus *bus)
3642{
3643 struct pci_dev *dev;
3644
3645 list_for_each_entry(dev, &bus->devices, bus_list) {
3646 pci_dev_save_and_disable(dev);
3647 if (dev->subordinate)
3648 pci_bus_save_and_disable(dev->subordinate);
3649 }
3650}
3651
3652/*
3653 * Restore devices from top of the tree down - parent bridges need to be
3654 * restored before we can get to subordinate devices.
3655 */
3656static void pci_bus_restore(struct pci_bus *bus)
3657{
3658 struct pci_dev *dev;
3659
3660 list_for_each_entry(dev, &bus->devices, bus_list) {
3661 pci_dev_restore(dev);
3662 if (dev->subordinate)
3663 pci_bus_restore(dev->subordinate);
3664 }
3665}
3666
3667/* Save and disable devices from the top of the tree down */
3668static void pci_slot_save_and_disable(struct pci_slot *slot)
3669{
3670 struct pci_dev *dev;
3671
3672 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3673 if (!dev->slot || dev->slot != slot)
3674 continue;
3675 pci_dev_save_and_disable(dev);
3676 if (dev->subordinate)
3677 pci_bus_save_and_disable(dev->subordinate);
3678 }
3679}
3680
3681/*
3682 * Restore devices from top of the tree down - parent bridges need to be
3683 * restored before we can get to subordinate devices.
3684 */
3685static void pci_slot_restore(struct pci_slot *slot)
3686{
3687 struct pci_dev *dev;
3688
3689 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3690 if (!dev->slot || dev->slot != slot)
3691 continue;
3692 pci_dev_restore(dev);
3693 if (dev->subordinate)
3694 pci_bus_restore(dev->subordinate);
3695 }
3696}
3697
3698static int pci_slot_reset(struct pci_slot *slot, int probe)
3699{
3700 int rc;
3701
3702 if (!slot)
3703 return -ENOTTY;
3704
3705 if (!probe)
3706 pci_slot_lock(slot);
3707
3708 might_sleep();
3709
3710 rc = pci_reset_hotplug_slot(slot->hotplug, probe);
3711
3712 if (!probe)
3713 pci_slot_unlock(slot);
3714
3715 return rc;
3716}
3717
3718/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06003719 * pci_probe_reset_slot - probe whether a PCI slot can be reset
3720 * @slot: PCI slot to probe
3721 *
3722 * Return 0 if slot can be reset, negative if a slot reset is not supported.
3723 */
3724int pci_probe_reset_slot(struct pci_slot *slot)
3725{
3726 return pci_slot_reset(slot, 1);
3727}
3728EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
3729
3730/**
Alex Williamson090a3c52013-08-08 14:09:55 -06003731 * pci_reset_slot - reset a PCI slot
3732 * @slot: PCI slot to reset
3733 *
3734 * A PCI bus may host multiple slots, each slot may support a reset mechanism
3735 * independent of other slots. For instance, some slots may support slot power
3736 * control. In the case of a 1:1 bus to slot architecture, this function may
3737 * wrap the bus reset to avoid spurious slot related events such as hotplug.
3738 * Generally a slot reset should be attempted before a bus reset. All of the
3739 * function of the slot and any subordinate buses behind the slot are reset
3740 * through this function. PCI config space of all devices in the slot and
3741 * behind the slot is saved before and restored after reset.
3742 *
3743 * Return 0 on success, non-zero on error.
3744 */
3745int pci_reset_slot(struct pci_slot *slot)
3746{
3747 int rc;
3748
3749 rc = pci_slot_reset(slot, 1);
3750 if (rc)
3751 return rc;
3752
3753 pci_slot_save_and_disable(slot);
3754
3755 rc = pci_slot_reset(slot, 0);
3756
3757 pci_slot_restore(slot);
3758
3759 return rc;
3760}
3761EXPORT_SYMBOL_GPL(pci_reset_slot);
3762
3763static int pci_bus_reset(struct pci_bus *bus, int probe)
3764{
3765 if (!bus->self)
3766 return -ENOTTY;
3767
3768 if (probe)
3769 return 0;
3770
3771 pci_bus_lock(bus);
3772
3773 might_sleep();
3774
3775 pci_reset_bridge_secondary_bus(bus->self);
3776
3777 pci_bus_unlock(bus);
3778
3779 return 0;
3780}
3781
3782/**
Alex Williamson9a3d2b92013-08-14 14:06:05 -06003783 * pci_probe_reset_bus - probe whether a PCI bus can be reset
3784 * @bus: PCI bus to probe
3785 *
3786 * Return 0 if bus can be reset, negative if a bus reset is not supported.
3787 */
3788int pci_probe_reset_bus(struct pci_bus *bus)
3789{
3790 return pci_bus_reset(bus, 1);
3791}
3792EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
3793
3794/**
Alex Williamson090a3c52013-08-08 14:09:55 -06003795 * pci_reset_bus - reset a PCI bus
3796 * @bus: top level PCI bus to reset
3797 *
3798 * Do a bus reset on the given bus and any subordinate buses, saving
3799 * and restoring state of all devices.
3800 *
3801 * Return 0 on success, non-zero on error.
3802 */
3803int pci_reset_bus(struct pci_bus *bus)
3804{
3805 int rc;
3806
3807 rc = pci_bus_reset(bus, 1);
3808 if (rc)
3809 return rc;
3810
3811 pci_bus_save_and_disable(bus);
3812
3813 rc = pci_bus_reset(bus, 0);
3814
3815 pci_bus_restore(bus);
3816
3817 return rc;
3818}
3819EXPORT_SYMBOL_GPL(pci_reset_bus);
3820
Sheng Yang8dd7f802008-10-21 17:38:25 +08003821/**
Peter Orubad556ad42007-05-15 13:59:13 +02003822 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
3823 * @dev: PCI device to query
3824 *
3825 * Returns mmrbc: maximum designed memory read count in bytes
3826 * or appropriate error value.
3827 */
3828int pcix_get_max_mmrbc(struct pci_dev *dev)
3829{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003830 int cap;
Peter Orubad556ad42007-05-15 13:59:13 +02003831 u32 stat;
3832
3833 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3834 if (!cap)
3835 return -EINVAL;
3836
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003837 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
Peter Orubad556ad42007-05-15 13:59:13 +02003838 return -EINVAL;
3839
Dean Nelson25daeb52010-03-09 22:26:40 -05003840 return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
Peter Orubad556ad42007-05-15 13:59:13 +02003841}
3842EXPORT_SYMBOL(pcix_get_max_mmrbc);
3843
3844/**
3845 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
3846 * @dev: PCI device to query
3847 *
3848 * Returns mmrbc: maximum memory read count in bytes
3849 * or appropriate error value.
3850 */
3851int pcix_get_mmrbc(struct pci_dev *dev)
3852{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003853 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05003854 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02003855
3856 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3857 if (!cap)
3858 return -EINVAL;
3859
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003860 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3861 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003862
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003863 return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
Peter Orubad556ad42007-05-15 13:59:13 +02003864}
3865EXPORT_SYMBOL(pcix_get_mmrbc);
3866
3867/**
3868 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
3869 * @dev: PCI device to query
3870 * @mmrbc: maximum memory read count in bytes
3871 * valid values are 512, 1024, 2048, 4096
3872 *
3873 * If possible sets maximum memory read byte count, some bridges have erratas
3874 * that prevent this.
3875 */
3876int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
3877{
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003878 int cap;
Dean Nelsonbdc2bda2010-03-09 22:26:48 -05003879 u32 stat, v, o;
3880 u16 cmd;
Peter Orubad556ad42007-05-15 13:59:13 +02003881
vignesh babu229f5af2007-08-13 18:23:14 +05303882 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003883 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003884
3885 v = ffs(mmrbc) - 10;
3886
3887 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3888 if (!cap)
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003889 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003890
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003891 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
3892 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003893
3894 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
3895 return -E2BIG;
3896
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003897 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3898 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003899
3900 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
3901 if (o != v) {
Bjorn Helgaas809a3bf2012-06-20 16:41:16 -06003902 if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
Peter Orubad556ad42007-05-15 13:59:13 +02003903 return -EIO;
3904
3905 cmd &= ~PCI_X_CMD_MAX_READ;
3906 cmd |= v << 2;
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003907 if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
3908 return -EIO;
Peter Orubad556ad42007-05-15 13:59:13 +02003909 }
Dean Nelson7c9e2b12010-03-09 22:26:55 -05003910 return 0;
Peter Orubad556ad42007-05-15 13:59:13 +02003911}
3912EXPORT_SYMBOL(pcix_set_mmrbc);
3913
3914/**
3915 * pcie_get_readrq - get PCI Express read request size
3916 * @dev: PCI device to query
3917 *
3918 * Returns maximum memory read request in bytes
3919 * or appropriate error value.
3920 */
3921int pcie_get_readrq(struct pci_dev *dev)
3922{
Peter Orubad556ad42007-05-15 13:59:13 +02003923 u16 ctl;
3924
Jiang Liu59875ae2012-07-24 17:20:06 +08003925 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Peter Orubad556ad42007-05-15 13:59:13 +02003926
Jiang Liu59875ae2012-07-24 17:20:06 +08003927 return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
Peter Orubad556ad42007-05-15 13:59:13 +02003928}
3929EXPORT_SYMBOL(pcie_get_readrq);
3930
3931/**
3932 * pcie_set_readrq - set PCI Express maximum memory read request
3933 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07003934 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02003935 * valid values are 128, 256, 512, 1024, 2048, 4096
3936 *
Jon Masonc9b378c2011-06-28 18:26:25 -05003937 * If possible sets maximum memory read request in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02003938 */
3939int pcie_set_readrq(struct pci_dev *dev, int rq)
3940{
Jiang Liu59875ae2012-07-24 17:20:06 +08003941 u16 v;
Peter Orubad556ad42007-05-15 13:59:13 +02003942
vignesh babu229f5af2007-08-13 18:23:14 +05303943 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Jiang Liu59875ae2012-07-24 17:20:06 +08003944 return -EINVAL;
Peter Orubad556ad42007-05-15 13:59:13 +02003945
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05003946 /*
3947 * If using the "performance" PCIe config, we clamp the
3948 * read rq size to the max packet size to prevent the
3949 * host bridge generating requests larger than we can
3950 * cope with
3951 */
3952 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
3953 int mps = pcie_get_mps(dev);
3954
Benjamin Herrenschmidta1c473a2011-10-14 14:56:15 -05003955 if (mps < rq)
3956 rq = mps;
3957 }
3958
3959 v = (ffs(rq) - 8) << 12;
Peter Orubad556ad42007-05-15 13:59:13 +02003960
Jiang Liu59875ae2012-07-24 17:20:06 +08003961 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
3962 PCI_EXP_DEVCTL_READRQ, v);
Peter Orubad556ad42007-05-15 13:59:13 +02003963}
3964EXPORT_SYMBOL(pcie_set_readrq);
3965
3966/**
Jon Masonb03e7492011-07-20 15:20:54 -05003967 * pcie_get_mps - get PCI Express maximum payload size
3968 * @dev: PCI device to query
3969 *
3970 * Returns maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05003971 */
3972int pcie_get_mps(struct pci_dev *dev)
3973{
Jon Masonb03e7492011-07-20 15:20:54 -05003974 u16 ctl;
3975
Jiang Liu59875ae2012-07-24 17:20:06 +08003976 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
Jon Masonb03e7492011-07-20 15:20:54 -05003977
Jiang Liu59875ae2012-07-24 17:20:06 +08003978 return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
Jon Masonb03e7492011-07-20 15:20:54 -05003979}
3980
3981/**
3982 * pcie_set_mps - set PCI Express maximum payload size
3983 * @dev: PCI device to query
Randy Dunlap47c08f32011-08-20 11:49:43 -07003984 * @mps: maximum payload size in bytes
Jon Masonb03e7492011-07-20 15:20:54 -05003985 * valid values are 128, 256, 512, 1024, 2048, 4096
3986 *
3987 * If possible sets maximum payload size
3988 */
3989int pcie_set_mps(struct pci_dev *dev, int mps)
3990{
Jiang Liu59875ae2012-07-24 17:20:06 +08003991 u16 v;
Jon Masonb03e7492011-07-20 15:20:54 -05003992
3993 if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
Jiang Liu59875ae2012-07-24 17:20:06 +08003994 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05003995
3996 v = ffs(mps) - 8;
3997 if (v > dev->pcie_mpss)
Jiang Liu59875ae2012-07-24 17:20:06 +08003998 return -EINVAL;
Jon Masonb03e7492011-07-20 15:20:54 -05003999 v <<= 5;
4000
Jiang Liu59875ae2012-07-24 17:20:06 +08004001 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
4002 PCI_EXP_DEVCTL_PAYLOAD, v);
Jon Masonb03e7492011-07-20 15:20:54 -05004003}
4004
4005/**
Jacob Keller81377c82013-07-31 06:53:26 +00004006 * pcie_get_minimum_link - determine minimum link settings of a PCI device
4007 * @dev: PCI device to query
4008 * @speed: storage for minimum speed
4009 * @width: storage for minimum width
4010 *
4011 * This function will walk up the PCI device chain and determine the minimum
4012 * link width and speed of the device.
4013 */
4014int pcie_get_minimum_link(struct pci_dev *dev, enum pci_bus_speed *speed,
4015 enum pcie_link_width *width)
4016{
4017 int ret;
4018
4019 *speed = PCI_SPEED_UNKNOWN;
4020 *width = PCIE_LNK_WIDTH_UNKNOWN;
4021
4022 while (dev) {
4023 u16 lnksta;
4024 enum pci_bus_speed next_speed;
4025 enum pcie_link_width next_width;
4026
4027 ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
4028 if (ret)
4029 return ret;
4030
4031 next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
4032 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
4033 PCI_EXP_LNKSTA_NLW_SHIFT;
4034
4035 if (next_speed < *speed)
4036 *speed = next_speed;
4037
4038 if (next_width < *width)
4039 *width = next_width;
4040
4041 dev = dev->bus->self;
4042 }
4043
4044 return 0;
4045}
4046EXPORT_SYMBOL(pcie_get_minimum_link);
4047
4048/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004049 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08004050 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004051 * @flags: resource type mask to be selected
4052 *
4053 * This helper routine makes bar mask from the type of resource.
4054 */
4055int pci_select_bars(struct pci_dev *dev, unsigned long flags)
4056{
4057 int i, bars = 0;
4058 for (i = 0; i < PCI_NUM_RESOURCES; i++)
4059 if (pci_resource_flags(dev, i) & flags)
4060 bars |= (1 << i);
4061 return bars;
4062}
4063
Yu Zhao613e7ed2008-11-22 02:41:27 +08004064/**
4065 * pci_resource_bar - get position of the BAR associated with a resource
4066 * @dev: the PCI device
4067 * @resno: the resource number
4068 * @type: the BAR type to be filled in
4069 *
4070 * Returns BAR position in config space, or 0 if the BAR is invalid.
4071 */
4072int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
4073{
Yu Zhaod1b054d2009-03-20 11:25:11 +08004074 int reg;
4075
Yu Zhao613e7ed2008-11-22 02:41:27 +08004076 if (resno < PCI_ROM_RESOURCE) {
4077 *type = pci_bar_unknown;
4078 return PCI_BASE_ADDRESS_0 + 4 * resno;
4079 } else if (resno == PCI_ROM_RESOURCE) {
4080 *type = pci_bar_mem32;
4081 return dev->rom_base_reg;
Yu Zhaod1b054d2009-03-20 11:25:11 +08004082 } else if (resno < PCI_BRIDGE_RESOURCES) {
4083 /* device specific resource */
4084 reg = pci_iov_resource_bar(dev, resno, type);
4085 if (reg)
4086 return reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +08004087 }
4088
Bjorn Helgaas865df572009-11-04 10:32:57 -07004089 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
Yu Zhao613e7ed2008-11-22 02:41:27 +08004090 return 0;
4091}
4092
Mike Travis95a8b6e2010-02-02 14:38:13 -08004093/* Some architectures require additional programming to enable VGA */
4094static arch_set_vga_state_t arch_set_vga_state;
4095
4096void __init pci_register_set_vga_state(arch_set_vga_state_t func)
4097{
4098 arch_set_vga_state = func; /* NULL disables */
4099}
4100
4101static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
Dave Airlie7ad35cf2011-05-25 14:00:49 +10004102 unsigned int command_bits, u32 flags)
Mike Travis95a8b6e2010-02-02 14:38:13 -08004103{
4104 if (arch_set_vga_state)
4105 return arch_set_vga_state(dev, decode, command_bits,
Dave Airlie7ad35cf2011-05-25 14:00:49 +10004106 flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08004107 return 0;
4108}
4109
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004110/**
4111 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07004112 * @dev: the PCI device
4113 * @decode: true = enable decoding, false = disable decoding
4114 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
Randy Dunlap3f37d622011-05-25 19:21:25 -07004115 * @flags: traverse ancestors and change bridges
Dave Airlie3448a192010-06-01 15:32:24 +10004116 * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004117 */
4118int pci_set_vga_state(struct pci_dev *dev, bool decode,
Dave Airlie3448a192010-06-01 15:32:24 +10004119 unsigned int command_bits, u32 flags)
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004120{
4121 struct pci_bus *bus;
4122 struct pci_dev *bridge;
4123 u16 cmd;
Mike Travis95a8b6e2010-02-02 14:38:13 -08004124 int rc;
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004125
Dave Airlie3448a192010-06-01 15:32:24 +10004126 WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) & (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004127
Mike Travis95a8b6e2010-02-02 14:38:13 -08004128 /* ARCH specific VGA enables */
Dave Airlie3448a192010-06-01 15:32:24 +10004129 rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
Mike Travis95a8b6e2010-02-02 14:38:13 -08004130 if (rc)
4131 return rc;
4132
Dave Airlie3448a192010-06-01 15:32:24 +10004133 if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
4134 pci_read_config_word(dev, PCI_COMMAND, &cmd);
4135 if (decode == true)
4136 cmd |= command_bits;
4137 else
4138 cmd &= ~command_bits;
4139 pci_write_config_word(dev, PCI_COMMAND, cmd);
4140 }
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004141
Dave Airlie3448a192010-06-01 15:32:24 +10004142 if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10004143 return 0;
4144
4145 bus = dev->bus;
4146 while (bus) {
4147 bridge = bus->self;
4148 if (bridge) {
4149 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
4150 &cmd);
4151 if (decode == true)
4152 cmd |= PCI_BRIDGE_CTL_VGA;
4153 else
4154 cmd &= ~PCI_BRIDGE_CTL_VGA;
4155 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
4156 cmd);
4157 }
4158 bus = bus->parent;
4159 }
4160 return 0;
4161}
4162
Yuji Shimada32a9a682009-03-16 17:13:39 +09004163#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
4164static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00004165static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a682009-03-16 17:13:39 +09004166
4167/**
4168 * pci_specified_resource_alignment - get resource alignment specified by user.
4169 * @dev: the PCI device to get
4170 *
4171 * RETURNS: Resource alignment if it is specified.
4172 * Zero if it is not specified.
4173 */
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004174static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
Yuji Shimada32a9a682009-03-16 17:13:39 +09004175{
4176 int seg, bus, slot, func, align_order, count;
4177 resource_size_t align = 0;
4178 char *p;
4179
4180 spin_lock(&resource_alignment_lock);
4181 p = resource_alignment_param;
4182 while (*p) {
4183 count = 0;
4184 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
4185 p[count] == '@') {
4186 p += count + 1;
4187 } else {
4188 align_order = -1;
4189 }
4190 if (sscanf(p, "%x:%x:%x.%x%n",
4191 &seg, &bus, &slot, &func, &count) != 4) {
4192 seg = 0;
4193 if (sscanf(p, "%x:%x.%x%n",
4194 &bus, &slot, &func, &count) != 3) {
4195 /* Invalid format */
4196 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
4197 p);
4198 break;
4199 }
4200 }
4201 p += count;
4202 if (seg == pci_domain_nr(dev->bus) &&
4203 bus == dev->bus->number &&
4204 slot == PCI_SLOT(dev->devfn) &&
4205 func == PCI_FUNC(dev->devfn)) {
4206 if (align_order == -1) {
4207 align = PAGE_SIZE;
4208 } else {
4209 align = 1 << align_order;
4210 }
4211 /* Found */
4212 break;
4213 }
4214 if (*p != ';' && *p != ',') {
4215 /* End of param or invalid format */
4216 break;
4217 }
4218 p++;
4219 }
4220 spin_unlock(&resource_alignment_lock);
4221 return align;
4222}
4223
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004224/*
4225 * This function disables memory decoding and releases memory resources
4226 * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
4227 * It also rounds up size to specified alignment.
4228 * Later on, the kernel will assign page-aligned memory resource back
4229 * to the device.
4230 */
4231void pci_reassigndev_resource_alignment(struct pci_dev *dev)
4232{
4233 int i;
4234 struct resource *r;
4235 resource_size_t align, size;
4236 u16 command;
4237
Yinghai Lu10c463a2012-03-18 22:46:26 -07004238 /* check if specified PCI is target device to reassign */
4239 align = pci_specified_resource_alignment(dev);
4240 if (!align)
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004241 return;
4242
4243 if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
4244 (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
4245 dev_warn(&dev->dev,
4246 "Can't reassign resources to host bridge.\n");
4247 return;
4248 }
4249
4250 dev_info(&dev->dev,
4251 "Disabling memory decoding and releasing memory resources.\n");
4252 pci_read_config_word(dev, PCI_COMMAND, &command);
4253 command &= ~PCI_COMMAND_MEMORY;
4254 pci_write_config_word(dev, PCI_COMMAND, command);
4255
Yinghai Lu2069ecf2012-02-15 21:40:31 -08004256 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
4257 r = &dev->resource[i];
4258 if (!(r->flags & IORESOURCE_MEM))
4259 continue;
4260 size = resource_size(r);
4261 if (size < align) {
4262 size = align;
4263 dev_info(&dev->dev,
4264 "Rounding up size of resource #%d to %#llx.\n",
4265 i, (unsigned long long)size);
4266 }
4267 r->end = size - 1;
4268 r->start = 0;
4269 }
4270 /* Need to disable bridge's resource window,
4271 * to enable the kernel to reassign new resource
4272 * window later on.
4273 */
4274 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
4275 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
4276 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
4277 r = &dev->resource[i];
4278 if (!(r->flags & IORESOURCE_MEM))
4279 continue;
4280 r->end = resource_size(r) - 1;
4281 r->start = 0;
4282 }
4283 pci_disable_bridge_window(dev);
4284 }
4285}
4286
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004287static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
Yuji Shimada32a9a682009-03-16 17:13:39 +09004288{
4289 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
4290 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
4291 spin_lock(&resource_alignment_lock);
4292 strncpy(resource_alignment_param, buf, count);
4293 resource_alignment_param[count] = '\0';
4294 spin_unlock(&resource_alignment_lock);
4295 return count;
4296}
4297
Bjorn Helgaas9738abe2013-04-12 11:20:03 -06004298static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
Yuji Shimada32a9a682009-03-16 17:13:39 +09004299{
4300 size_t count;
4301 spin_lock(&resource_alignment_lock);
4302 count = snprintf(buf, size, "%s", resource_alignment_param);
4303 spin_unlock(&resource_alignment_lock);
4304 return count;
4305}
4306
4307static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
4308{
4309 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
4310}
4311
4312static ssize_t pci_resource_alignment_store(struct bus_type *bus,
4313 const char *buf, size_t count)
4314{
4315 return pci_set_resource_alignment_param(buf, count);
4316}
4317
4318BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
4319 pci_resource_alignment_store);
4320
4321static int __init pci_resource_alignment_sysfs_init(void)
4322{
4323 return bus_create_file(&pci_bus_type,
4324 &bus_attr_resource_alignment);
4325}
4326
4327late_initcall(pci_resource_alignment_sysfs_init);
4328
Bill Pemberton15856ad2012-11-21 15:35:00 -05004329static void pci_no_domains(void)
Jeff Garzik32a2eea2007-10-11 16:57:27 -04004330{
4331#ifdef CONFIG_PCI_DOMAINS
4332 pci_domains_supported = 0;
4333#endif
4334}
4335
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004336/**
Taku Izumi642c92d2012-10-30 15:26:18 +09004337 * pci_ext_cfg_avail - can we access extended PCI config space?
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004338 *
4339 * Returns 1 if we can access PCI extended config space (offsets
4340 * greater than 0xff). This is the default implementation. Architecture
4341 * implementations can override this.
4342 */
Taku Izumi642c92d2012-10-30 15:26:18 +09004343int __weak pci_ext_cfg_avail(void)
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07004344{
4345 return 1;
4346}
4347
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11004348void __weak pci_fixup_cardbus(struct pci_bus *bus)
4349{
4350}
4351EXPORT_SYMBOL(pci_fixup_cardbus);
4352
Al Viroad04d312008-11-22 17:37:14 +00004353static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354{
4355 while (str) {
4356 char *k = strchr(str, ',');
4357 if (k)
4358 *k++ = 0;
4359 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07004360 if (!strcmp(str, "nomsi")) {
4361 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07004362 } else if (!strcmp(str, "noaer")) {
4363 pci_no_aer();
Yinghai Lub55438f2012-02-23 19:23:30 -08004364 } else if (!strncmp(str, "realloc=", 8)) {
4365 pci_realloc_get_opt(str + 8);
Ram Paif483d392011-07-07 11:19:10 -07004366 } else if (!strncmp(str, "realloc", 7)) {
Yinghai Lub55438f2012-02-23 19:23:30 -08004367 pci_realloc_get_opt("on");
Jeff Garzik32a2eea2007-10-11 16:57:27 -04004368 } else if (!strcmp(str, "nodomains")) {
4369 pci_no_domains();
Rafael J. Wysocki6748dcc2012-03-01 00:06:33 +01004370 } else if (!strncmp(str, "noari", 5)) {
4371 pcie_ari_disabled = true;
Atsushi Nemoto4516a612007-02-05 16:36:06 -08004372 } else if (!strncmp(str, "cbiosize=", 9)) {
4373 pci_cardbus_io_size = memparse(str + 9, &str);
4374 } else if (!strncmp(str, "cbmemsize=", 10)) {
4375 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a682009-03-16 17:13:39 +09004376 } else if (!strncmp(str, "resource_alignment=", 19)) {
4377 pci_set_resource_alignment_param(str + 19,
4378 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06004379 } else if (!strncmp(str, "ecrc=", 5)) {
4380 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07004381 } else if (!strncmp(str, "hpiosize=", 9)) {
4382 pci_hotplug_io_size = memparse(str + 9, &str);
4383 } else if (!strncmp(str, "hpmemsize=", 10)) {
4384 pci_hotplug_mem_size = memparse(str + 10, &str);
Jon Mason5f39e672011-10-03 09:50:20 -05004385 } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
4386 pcie_bus_config = PCIE_BUS_TUNE_OFF;
Jon Masonb03e7492011-07-20 15:20:54 -05004387 } else if (!strncmp(str, "pcie_bus_safe", 13)) {
4388 pcie_bus_config = PCIE_BUS_SAFE;
4389 } else if (!strncmp(str, "pcie_bus_perf", 13)) {
4390 pcie_bus_config = PCIE_BUS_PERFORMANCE;
Jon Mason5f39e672011-10-03 09:50:20 -05004391 } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
4392 pcie_bus_config = PCIE_BUS_PEER2PEER;
Bjorn Helgaas284f5f92012-04-30 15:21:02 -06004393 } else if (!strncmp(str, "pcie_scan_all", 13)) {
4394 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07004395 } else {
4396 printk(KERN_ERR "PCI: Unknown option `%s'\n",
4397 str);
4398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 }
4400 str = k;
4401 }
Andi Kleen0637a702006-09-26 10:52:41 +02004402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403}
Andi Kleen0637a702006-09-26 10:52:41 +02004404early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Tejun Heo0b62e132007-07-27 14:43:35 +09004406EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11004407EXPORT_SYMBOL(pci_enable_device_io);
4408EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09004410EXPORT_SYMBOL(pcim_enable_device);
4411EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413EXPORT_SYMBOL(pci_find_capability);
4414EXPORT_SYMBOL(pci_bus_find_capability);
4415EXPORT_SYMBOL(pci_release_regions);
4416EXPORT_SYMBOL(pci_request_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07004417EXPORT_SYMBOL(pci_request_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418EXPORT_SYMBOL(pci_release_region);
4419EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07004420EXPORT_SYMBOL(pci_request_region_exclusive);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004421EXPORT_SYMBOL(pci_release_selected_regions);
4422EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07004423EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424EXPORT_SYMBOL(pci_set_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00004425EXPORT_SYMBOL(pci_clear_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07004427EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04004429EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430EXPORT_SYMBOL(pci_assign_resource);
4431EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09004432EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
4434EXPORT_SYMBOL(pci_set_power_state);
4435EXPORT_SYMBOL(pci_save_state);
4436EXPORT_SYMBOL(pci_restore_state);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02004437EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02004438EXPORT_SYMBOL(pci_pme_active);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02004439EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02004440EXPORT_SYMBOL(pci_target_state);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02004441EXPORT_SYMBOL(pci_prepare_to_sleep);
4442EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05004443EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);