blob: aad62af2b4c6625eb9100f4accf3104abc5657a0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053018#include <linux/log2.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080019#include <linux/pci-aspm.h>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020020#include <linux/pm_wakeup.h>
Sheng Yang8dd7f802008-10-21 17:38:25 +080021#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/dma.h> /* isa_dma_bridge_buggy */
Yuji Shimada32a9a682009-03-16 17:13:39 +090023#include <linux/device.h>
24#include <asm/setup.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090025#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alan Stern00240c32009-04-27 13:33:16 -040027const char *pci_power_names[] = {
28 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
29};
30EXPORT_SYMBOL_GPL(pci_power_names);
31
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010032unsigned int pci_pm_d3_delay;
33
34static void pci_dev_d3_sleep(struct pci_dev *dev)
35{
36 unsigned int delay = dev->d3_delay;
37
38 if (delay < pci_pm_d3_delay)
39 delay = pci_pm_d3_delay;
40
41 msleep(delay);
42}
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jeff Garzik32a2eea2007-10-11 16:57:27 -040044#ifdef CONFIG_PCI_DOMAINS
45int pci_domains_supported = 1;
46#endif
47
Atsushi Nemoto4516a612007-02-05 16:36:06 -080048#define DEFAULT_CARDBUS_IO_SIZE (256)
49#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
50/* pci=cbmemsize=nnM,cbiosize=nn can override this */
51unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
52unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
53
Eric W. Biederman28760482009-09-09 14:09:24 -070054#define DEFAULT_HOTPLUG_IO_SIZE (256)
55#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
56/* pci=hpmemsize=nnM,hpiosize=nn can override this */
57unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
58unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
59
Jesse Barnesac1aa472009-10-26 13:20:44 -070060/*
61 * The default CLS is used if arch didn't set CLS explicitly and not
62 * all pci devices agree on the same value. Arch can override either
63 * the dfl or actual value as it sees fit. Don't forget this is
64 * measured in 32-bit words, not bytes.
65 */
Tejun Heo98e724c2009-10-08 18:59:53 +090066u8 pci_dfl_cache_line_size __devinitdata = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -070067u8 pci_cache_line_size;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
71 * @bus: pointer to PCI bus structure to search
72 *
73 * Given a PCI bus, returns the highest PCI bus number present in the set
74 * including the given PCI bus and its list of child PCI buses.
75 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080076unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct list_head *tmp;
79 unsigned char max, n;
80
Kristen Accardib82db5c2006-01-17 16:56:56 -080081 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 list_for_each(tmp, &bus->children) {
83 n = pci_bus_max_busnr(pci_bus_b(tmp));
84 if(n > max)
85 max = n;
86 }
87 return max;
88}
Kristen Accardib82db5c2006-01-17 16:56:56 -080089EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Andrew Morton1684f5d2008-12-01 14:30:30 -080091#ifdef CONFIG_HAS_IOMEM
92void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
93{
94 /*
95 * Make sure the BAR is actually a memory resource, not an IO resource
96 */
97 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
98 WARN_ON(1);
99 return NULL;
100 }
101 return ioremap_nocache(pci_resource_start(pdev, bar),
102 pci_resource_len(pdev, bar));
103}
104EXPORT_SYMBOL_GPL(pci_ioremap_bar);
105#endif
106
Kristen Accardib82db5c2006-01-17 16:56:56 -0800107#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
109 * pci_max_busnr - returns maximum PCI bus number
110 *
111 * Returns the highest PCI bus number present in the system global list of
112 * PCI buses.
113 */
114unsigned char __devinit
115pci_max_busnr(void)
116{
117 struct pci_bus *bus = NULL;
118 unsigned char max, n;
119
120 max = 0;
121 while ((bus = pci_find_next_bus(bus)) != NULL) {
122 n = pci_bus_max_busnr(bus);
123 if(n > max)
124 max = n;
125 }
126 return max;
127}
128
Adrian Bunk54c762f2005-12-22 01:08:52 +0100129#endif /* 0 */
130
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100131#define PCI_FIND_CAP_TTL 48
132
133static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
134 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700135{
136 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -0700137
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100138 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700139 pci_bus_read_config_byte(bus, devfn, pos, &pos);
140 if (pos < 0x40)
141 break;
142 pos &= ~3;
143 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
144 &id);
145 if (id == 0xff)
146 break;
147 if (id == cap)
148 return pos;
149 pos += PCI_CAP_LIST_NEXT;
150 }
151 return 0;
152}
153
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100154static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
155 u8 pos, int cap)
156{
157 int ttl = PCI_FIND_CAP_TTL;
158
159 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
160}
161
Roland Dreier24a4e372005-10-28 17:35:34 -0700162int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
163{
164 return __pci_find_next_cap(dev->bus, dev->devfn,
165 pos + PCI_CAP_LIST_NEXT, cap);
166}
167EXPORT_SYMBOL_GPL(pci_find_next_capability);
168
Michael Ellermand3bac112006-11-22 18:26:16 +1100169static int __pci_bus_find_cap_start(struct pci_bus *bus,
170 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
175 if (!(status & PCI_STATUS_CAP_LIST))
176 return 0;
177
178 switch (hdr_type) {
179 case PCI_HEADER_TYPE_NORMAL:
180 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100181 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100183 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 default:
185 return 0;
186 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100187
188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191/**
192 * pci_find_capability - query for devices' capabilities
193 * @dev: PCI device to query
194 * @cap: capability code
195 *
196 * Tell if a device supports a given PCI capability.
197 * Returns the address of the requested capability structure within the
198 * device's PCI configuration space or 0 in case the device does not
199 * support it. Possible values for @cap:
200 *
201 * %PCI_CAP_ID_PM Power Management
202 * %PCI_CAP_ID_AGP Accelerated Graphics Port
203 * %PCI_CAP_ID_VPD Vital Product Data
204 * %PCI_CAP_ID_SLOTID Slot Identification
205 * %PCI_CAP_ID_MSI Message Signalled Interrupts
206 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
207 * %PCI_CAP_ID_PCIX PCI-X
208 * %PCI_CAP_ID_EXP PCI Express
209 */
210int pci_find_capability(struct pci_dev *dev, int cap)
211{
Michael Ellermand3bac112006-11-22 18:26:16 +1100212 int pos;
213
214 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
215 if (pos)
216 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
217
218 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/**
222 * pci_bus_find_capability - query for devices' capabilities
223 * @bus: the PCI bus to query
224 * @devfn: PCI device to query
225 * @cap: capability code
226 *
227 * Like pci_find_capability() but works for pci devices that do not have a
228 * pci_dev structure set up yet.
229 *
230 * Returns the address of the requested capability structure within the
231 * device's PCI configuration space or 0 in case the device does not
232 * support it.
233 */
234int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
235{
Michael Ellermand3bac112006-11-22 18:26:16 +1100236 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 u8 hdr_type;
238
239 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
240
Michael Ellermand3bac112006-11-22 18:26:16 +1100241 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
242 if (pos)
243 pos = __pci_find_next_cap(bus, devfn, pos, cap);
244
245 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/**
249 * pci_find_ext_capability - Find an extended capability
250 * @dev: PCI device to query
251 * @cap: capability code
252 *
253 * Returns the address of the requested extended capability structure
254 * within the device's PCI configuration space or 0 if the device does
255 * not support it. Possible values for @cap:
256 *
257 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
258 * %PCI_EXT_CAP_ID_VC Virtual Channel
259 * %PCI_EXT_CAP_ID_DSN Device Serial Number
260 * %PCI_EXT_CAP_ID_PWR Power Budgeting
261 */
262int pci_find_ext_capability(struct pci_dev *dev, int cap)
263{
264 u32 header;
Zhao, Yu557848c2008-10-13 19:18:07 +0800265 int ttl;
266 int pos = PCI_CFG_SPACE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Zhao, Yu557848c2008-10-13 19:18:07 +0800268 /* minimum 8 bytes per capability */
269 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
270
271 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273
274 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
275 return 0;
276
277 /*
278 * If we have no capabilities, this is indicated by cap ID,
279 * cap version and next pointer all being 0.
280 */
281 if (header == 0)
282 return 0;
283
284 while (ttl-- > 0) {
285 if (PCI_EXT_CAP_ID(header) == cap)
286 return pos;
287
288 pos = PCI_EXT_CAP_NEXT(header);
Zhao, Yu557848c2008-10-13 19:18:07 +0800289 if (pos < PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291
292 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
293 break;
294 }
295
296 return 0;
297}
Brice Goglin3a720d72006-05-23 06:10:01 -0400298EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Jesse Barnescf4c43d2009-07-15 13:13:00 -0700300/**
301 * pci_bus_find_ext_capability - find an extended capability
302 * @bus: the PCI bus to query
303 * @devfn: PCI device to query
304 * @cap: capability code
305 *
306 * Like pci_find_ext_capability() but works for pci devices that do not have a
307 * pci_dev structure set up yet.
308 *
309 * Returns the address of the requested capability structure within the
310 * device's PCI configuration space or 0 in case the device does not
311 * support it.
312 */
313int pci_bus_find_ext_capability(struct pci_bus *bus, unsigned int devfn,
314 int cap)
315{
316 u32 header;
317 int ttl;
318 int pos = PCI_CFG_SPACE_SIZE;
319
320 /* minimum 8 bytes per capability */
321 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
322
323 if (!pci_bus_read_config_dword(bus, devfn, pos, &header))
324 return 0;
325 if (header == 0xffffffff || header == 0)
326 return 0;
327
328 while (ttl-- > 0) {
329 if (PCI_EXT_CAP_ID(header) == cap)
330 return pos;
331
332 pos = PCI_EXT_CAP_NEXT(header);
333 if (pos < PCI_CFG_SPACE_SIZE)
334 break;
335
336 if (!pci_bus_read_config_dword(bus, devfn, pos, &header))
337 break;
338 }
339
340 return 0;
341}
342
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100343static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
344{
345 int rc, ttl = PCI_FIND_CAP_TTL;
346 u8 cap, mask;
347
348 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
349 mask = HT_3BIT_CAP_MASK;
350 else
351 mask = HT_5BIT_CAP_MASK;
352
353 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
354 PCI_CAP_ID_HT, &ttl);
355 while (pos) {
356 rc = pci_read_config_byte(dev, pos + 3, &cap);
357 if (rc != PCIBIOS_SUCCESSFUL)
358 return 0;
359
360 if ((cap & mask) == ht_cap)
361 return pos;
362
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800363 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
364 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100365 PCI_CAP_ID_HT, &ttl);
366 }
367
368 return 0;
369}
370/**
371 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
372 * @dev: PCI device to query
373 * @pos: Position from which to continue searching
374 * @ht_cap: Hypertransport capability code
375 *
376 * To be used in conjunction with pci_find_ht_capability() to search for
377 * all capabilities matching @ht_cap. @pos should always be a value returned
378 * from pci_find_ht_capability().
379 *
380 * NB. To be 100% safe against broken PCI devices, the caller should take
381 * steps to avoid an infinite loop.
382 */
383int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
384{
385 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
386}
387EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
388
389/**
390 * pci_find_ht_capability - query a device's Hypertransport capabilities
391 * @dev: PCI device to query
392 * @ht_cap: Hypertransport capability code
393 *
394 * Tell if a device supports a given Hypertransport capability.
395 * Returns an address within the device's PCI configuration space
396 * or 0 in case the device does not support the request capability.
397 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
398 * which has a Hypertransport capability matching @ht_cap.
399 */
400int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
401{
402 int pos;
403
404 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
405 if (pos)
406 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
407
408 return pos;
409}
410EXPORT_SYMBOL_GPL(pci_find_ht_capability);
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/**
413 * pci_find_parent_resource - return resource region of parent bus of given region
414 * @dev: PCI device structure contains resources to be searched
415 * @res: child resource record for which parent is sought
416 *
417 * For given resource region of given device, return the resource
418 * region of parent bus the given region is contained in or where
419 * it should be allocated from.
420 */
421struct resource *
422pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
423{
424 const struct pci_bus *bus = dev->bus;
425 int i;
426 struct resource *best = NULL;
427
428 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
429 struct resource *r = bus->resource[i];
430 if (!r)
431 continue;
432 if (res->start && !(res->start >= r->start && res->end <= r->end))
433 continue; /* Not contained */
434 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
435 continue; /* Wrong type */
436 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
437 return r; /* Exact match */
Linus Torvalds8c8def22009-11-09 12:04:32 -0800438 /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
439 if (r->flags & IORESOURCE_PREFETCH)
440 continue;
441 /* .. but we can put a prefetchable resource inside a non-prefetchable one */
442 if (!best)
443 best = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 return best;
446}
447
448/**
John W. Linville064b53d2005-07-27 10:19:44 -0400449 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
450 * @dev: PCI device to have its BARs restored
451 *
452 * Restore the BAR values for a given device, so as to make it
453 * accessible by its driver.
454 */
Adrian Bunkad6685992007-10-27 03:06:22 +0200455static void
John W. Linville064b53d2005-07-27 10:19:44 -0400456pci_restore_bars(struct pci_dev *dev)
457{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800458 int i;
John W. Linville064b53d2005-07-27 10:19:44 -0400459
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800460 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800461 pci_update_resource(dev, i);
John W. Linville064b53d2005-07-27 10:19:44 -0400462}
463
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200464static struct pci_platform_pm_ops *pci_platform_pm;
465
466int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
467{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200468 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
469 || !ops->sleep_wake || !ops->can_wakeup)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200470 return -EINVAL;
471 pci_platform_pm = ops;
472 return 0;
473}
474
475static inline bool platform_pci_power_manageable(struct pci_dev *dev)
476{
477 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
478}
479
480static inline int platform_pci_set_power_state(struct pci_dev *dev,
481 pci_power_t t)
482{
483 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
484}
485
486static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
487{
488 return pci_platform_pm ?
489 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
490}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700491
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200492static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
493{
494 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
495}
496
497static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
498{
499 return pci_platform_pm ?
500 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
501}
502
John W. Linville064b53d2005-07-27 10:19:44 -0400503/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200504 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
505 * given PCI device
506 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200507 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200509 * RETURN VALUE:
510 * -EINVAL if the requested state is invalid.
511 * -EIO if device does not support PCI PM or its PM capabilities register has a
512 * wrong version, or device doesn't support the requested state.
513 * 0 if device already is in the requested state.
514 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100516static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200518 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200519 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100521 /* Check if we're already there */
522 if (dev->current_state == state)
523 return 0;
524
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200525 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700526 return -EIO;
527
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200528 if (state < PCI_D0 || state > PCI_D3hot)
529 return -EINVAL;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* Validate current state:
532 * Can enter D0 from any state, but if we can only go deeper
533 * to sleep if we're already in a low power state
534 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100535 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200536 && dev->current_state > state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600537 dev_err(&dev->dev, "invalid power transition "
538 "(from state %d to %d)\n", dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200543 if ((state == PCI_D1 && !dev->d1_support)
544 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700545 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200547 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53d2005-07-27 10:19:44 -0400548
John W. Linville32a36582005-09-14 09:52:42 -0400549 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * This doesn't affect PME_Status, disables PME_En, and
551 * sets PowerState to 0.
552 */
John W. Linville32a36582005-09-14 09:52:42 -0400553 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400554 case PCI_D0:
555 case PCI_D1:
556 case PCI_D2:
557 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
558 pmcsr |= state;
559 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200560 case PCI_D3hot:
561 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400562 case PCI_UNKNOWN: /* Boot-up */
563 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100564 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200565 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400566 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400567 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400568 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200573 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* Mandatory power management transition delays */
576 /* see PCI PM 1.1 5.6.1 table 18 */
577 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100578 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100580 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200582 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
583 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
584 if (dev->current_state != state && printk_ratelimit())
585 dev_info(&dev->dev, "Refused to change power state, "
586 "currently in D%d\n", dev->current_state);
John W. Linville064b53d2005-07-27 10:19:44 -0400587
588 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
589 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
590 * from D3hot to D0 _may_ perform an internal reset, thereby
591 * going to "D0 Uninitialized" rather than "D0 Initialized".
592 * For example, at least some versions of the 3c905B and the
593 * 3c556B exhibit this behaviour.
594 *
595 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
596 * devices in a D3hot state at boot. Consequently, we need to
597 * restore at least the BARs so that the device will be
598 * accessible to its driver.
599 */
600 if (need_restore)
601 pci_restore_bars(dev);
602
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100603 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800604 pcie_aspm_pm_state_change(dev->bus->self);
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
609/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200610 * pci_update_current_state - Read PCI power state of given device from its
611 * PCI PM registers and cache it
612 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100613 * @state: State to cache in case the device doesn't have the PM capability
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200614 */
Rafael J. Wysocki73410422009-01-07 13:07:15 +0100615void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200616{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200617 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200618 u16 pmcsr;
619
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200620 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200621 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100622 } else {
623 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200624 }
625}
626
627/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100628 * pci_platform_power_transition - Use platform to change device power state
629 * @dev: PCI device to handle.
630 * @state: State to put the device into.
631 */
632static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
633{
634 int error;
635
636 if (platform_pci_power_manageable(dev)) {
637 error = platform_pci_set_power_state(dev, state);
638 if (!error)
639 pci_update_current_state(dev, state);
640 } else {
641 error = -ENODEV;
642 /* Fall back to PCI_D0 if native PM is not supported */
Rafael J. Wysockib3bad722009-05-17 20:17:06 +0200643 if (!dev->pm_cap)
644 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100645 }
646
647 return error;
648}
649
650/**
651 * __pci_start_power_transition - Start power transition of a PCI device
652 * @dev: PCI device to handle.
653 * @state: State to put the device into.
654 */
655static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
656{
657 if (state == PCI_D0)
658 pci_platform_power_transition(dev, PCI_D0);
659}
660
661/**
662 * __pci_complete_power_transition - Complete power transition of a PCI device
663 * @dev: PCI device to handle.
664 * @state: State to put the device into.
665 *
666 * This function should not be called directly by device drivers.
667 */
668int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
669{
670 return state > PCI_D0 ?
671 pci_platform_power_transition(dev, state) : -EINVAL;
672}
673EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
674
675/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200676 * pci_set_power_state - Set the power state of a PCI device
677 * @dev: PCI device to handle.
678 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
679 *
Nick Andrew877d0312009-01-26 11:06:57 +0100680 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200681 * the device's PCI PM registers.
682 *
683 * RETURN VALUE:
684 * -EINVAL if the requested state is invalid.
685 * -EIO if device does not support PCI PM or its PM capabilities register has a
686 * wrong version, or device doesn't support the requested state.
687 * 0 if device already is in the requested state.
688 * 0 if device's power state has been successfully changed.
689 */
690int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
691{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200692 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200693
694 /* bound the state we're entering */
695 if (state > PCI_D3hot)
696 state = PCI_D3hot;
697 else if (state < PCI_D0)
698 state = PCI_D0;
699 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
700 /*
701 * If the device or the parent bridge do not support PCI PM,
702 * ignore the request if we're doing anything other than putting
703 * it into D0 (which would only happen on boot).
704 */
705 return 0;
706
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100707 /* Check if we're already there */
708 if (dev->current_state == state)
709 return 0;
710
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100711 __pci_start_power_transition(dev, state);
712
Alan Cox979b1792008-07-24 17:18:38 +0100713 /* This device is quirked not to be put into D3, so
714 don't put it in D3 */
715 if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
716 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200717
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100718 error = pci_raw_set_power_state(dev, state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200719
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100720 if (!__pci_complete_power_transition(dev, state))
721 error = 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200722
723 return error;
724}
725
726/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * pci_choose_state - Choose the power state of a PCI device
728 * @dev: PCI device to be suspended
729 * @state: target sleep state for the whole system. This is the value
730 * that is passed to suspend() function.
731 *
732 * Returns PCI power state suitable for given device and given system
733 * message.
734 */
735
736pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
737{
Shaohua Liab826ca2007-07-20 10:03:22 +0800738 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
741 return PCI_D0;
742
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200743 ret = platform_pci_choose_state(dev);
744 if (ret != PCI_POWER_ERROR)
745 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700746
747 switch (state.event) {
748 case PM_EVENT_ON:
749 return PCI_D0;
750 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700751 case PM_EVENT_PRETHAW:
752 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700753 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100754 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700755 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600757 dev_info(&dev->dev, "unrecognized suspend event %d\n",
758 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 BUG();
760 }
761 return PCI_D0;
762}
763
764EXPORT_SYMBOL(pci_choose_state);
765
Yu Zhao89858512009-02-16 02:55:47 +0800766#define PCI_EXP_SAVE_REGS 7
767
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800768#define pcie_cap_has_devctl(type, flags) 1
769#define pcie_cap_has_lnkctl(type, flags) \
770 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
771 (type == PCI_EXP_TYPE_ROOT_PORT || \
772 type == PCI_EXP_TYPE_ENDPOINT || \
773 type == PCI_EXP_TYPE_LEG_END))
774#define pcie_cap_has_sltctl(type, flags) \
775 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
776 ((type == PCI_EXP_TYPE_ROOT_PORT) || \
777 (type == PCI_EXP_TYPE_DOWNSTREAM && \
778 (flags & PCI_EXP_FLAGS_SLOT))))
779#define pcie_cap_has_rtctl(type, flags) \
780 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
781 (type == PCI_EXP_TYPE_ROOT_PORT || \
782 type == PCI_EXP_TYPE_RC_EC))
783#define pcie_cap_has_devctl2(type, flags) \
784 ((flags & PCI_EXP_FLAGS_VERS) > 1)
785#define pcie_cap_has_lnkctl2(type, flags) \
786 ((flags & PCI_EXP_FLAGS_VERS) > 1)
787#define pcie_cap_has_sltctl2(type, flags) \
788 ((flags & PCI_EXP_FLAGS_VERS) > 1)
789
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300790static int pci_save_pcie_state(struct pci_dev *dev)
791{
792 int pos, i = 0;
793 struct pci_cap_saved_state *save_state;
794 u16 *cap;
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800795 u16 flags;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300796
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +0900797 pos = pci_pcie_cap(dev);
798 if (!pos)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300799 return 0;
800
Eric W. Biederman9f355752007-03-08 13:06:13 -0700801 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300802 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800803 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300804 return -ENOMEM;
805 }
806 cap = (u16 *)&save_state->data[0];
807
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800808 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
809
810 if (pcie_cap_has_devctl(dev->pcie_type, flags))
811 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
812 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
813 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
814 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
815 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
816 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
817 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
818 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
819 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]);
820 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
821 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]);
822 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
823 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100824
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300825 return 0;
826}
827
828static void pci_restore_pcie_state(struct pci_dev *dev)
829{
830 int i = 0, pos;
831 struct pci_cap_saved_state *save_state;
832 u16 *cap;
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800833 u16 flags;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300834
835 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
836 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
837 if (!save_state || pos <= 0)
838 return;
839 cap = (u16 *)&save_state->data[0];
840
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800841 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
842
843 if (pcie_cap_has_devctl(dev->pcie_type, flags))
844 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
845 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
846 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
847 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
848 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
849 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
850 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
851 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
852 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]);
853 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
854 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]);
855 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
856 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300857}
858
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800859
860static int pci_save_pcix_state(struct pci_dev *dev)
861{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100862 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800863 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800864
865 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
866 if (pos <= 0)
867 return 0;
868
Shaohua Lif34303d2007-12-18 09:56:47 +0800869 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800870 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800871 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800872 return -ENOMEM;
873 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800874
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100875 pci_read_config_word(dev, pos + PCI_X_CMD, (u16 *)save_state->data);
876
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800877 return 0;
878}
879
880static void pci_restore_pcix_state(struct pci_dev *dev)
881{
882 int i = 0, pos;
883 struct pci_cap_saved_state *save_state;
884 u16 *cap;
885
886 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
887 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
888 if (!save_state || pos <= 0)
889 return;
890 cap = (u16 *)&save_state->data[0];
891
892 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800893}
894
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/**
897 * pci_save_state - save the PCI configuration space of a device before suspending
898 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
900int
901pci_save_state(struct pci_dev *dev)
902{
903 int i;
904 /* XXX: 100% dword access ok here? */
905 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -0200906 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100907 dev->state_saved = true;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300908 if ((i = pci_save_pcie_state(dev)) != 0)
909 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800910 if ((i = pci_save_pcix_state(dev)) != 0)
911 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return 0;
913}
914
915/**
916 * pci_restore_state - Restore the saved state of a PCI device
917 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
919int
920pci_restore_state(struct pci_dev *dev)
921{
922 int i;
Al Virob4482a42007-10-14 19:35:40 +0100923 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Alek Duc82f63e2009-08-08 08:46:19 +0800925 if (!dev->state_saved)
926 return 0;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200927
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300928 /* PCI Express register must be restored first */
929 pci_restore_pcie_state(dev);
930
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700931 /*
932 * The Base Address register should be programmed before the command
933 * register(s)
934 */
935 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700936 pci_read_config_dword(dev, i * 4, &val);
937 if (val != dev->saved_config_space[i]) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600938 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
939 "space at offset %#x (was %#x, writing %#x)\n",
940 i, val, (int)dev->saved_config_space[i]);
Dave Jones04d9c1a2006-04-18 21:06:51 -0700941 pci_write_config_dword(dev,i * 4,
942 dev->saved_config_space[i]);
943 }
944 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800945 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800946 pci_restore_msi_state(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800947 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100948
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200949 dev->state_saved = false;
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 0;
952}
953
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900954static int do_pci_enable_device(struct pci_dev *dev, int bars)
955{
956 int err;
957
958 err = pci_set_power_state(dev, PCI_D0);
959 if (err < 0 && err != -EIO)
960 return err;
961 err = pcibios_enable_device(dev, bars);
962 if (err < 0)
963 return err;
964 pci_fixup_device(pci_fixup_enable, dev);
965
966 return 0;
967}
968
969/**
Tejun Heo0b62e132007-07-27 14:43:35 +0900970 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900971 * @dev: PCI device to be resumed
972 *
973 * Note this function is a backend of pci_default_resume and is not supposed
974 * to be called by normal code, write proper resume handler and use it instead.
975 */
Tejun Heo0b62e132007-07-27 14:43:35 +0900976int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900977{
Yuji Shimada296ccb02009-04-03 16:41:46 +0900978 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900979 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
980 return 0;
981}
982
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100983static int __pci_enable_device_flags(struct pci_dev *dev,
984 resource_size_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100987 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900989 if (atomic_add_return(1, &dev->enable_cnt) > 1)
990 return 0; /* already enabled */
991
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100992 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
993 if (dev->resource[i].flags & flags)
994 bars |= (1 << i);
995
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900996 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700997 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900998 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900999 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001003 * pci_enable_device_io - Initialize a device for use with IO space
1004 * @dev: PCI device to be initialized
1005 *
1006 * Initialize device before it's used by a driver. Ask low-level code
1007 * to enable I/O resources. Wake up the device if it was suspended.
1008 * Beware, this function can fail.
1009 */
1010int pci_enable_device_io(struct pci_dev *dev)
1011{
1012 return __pci_enable_device_flags(dev, IORESOURCE_IO);
1013}
1014
1015/**
1016 * pci_enable_device_mem - Initialize a device for use with Memory space
1017 * @dev: PCI device to be initialized
1018 *
1019 * Initialize device before it's used by a driver. Ask low-level code
1020 * to enable Memory resources. Wake up the device if it was suspended.
1021 * Beware, this function can fail.
1022 */
1023int pci_enable_device_mem(struct pci_dev *dev)
1024{
1025 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
1026}
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028/**
1029 * pci_enable_device - Initialize device before it's used by a driver.
1030 * @dev: PCI device to be initialized
1031 *
1032 * Initialize device before it's used by a driver. Ask low-level code
1033 * to enable I/O and memory. Wake up the device if it was suspended.
1034 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001035 *
1036 * Note we don't actually enable the device many times if we call
1037 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001039int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001041 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Tejun Heo9ac78492007-01-20 16:00:26 +09001044/*
1045 * Managed PCI resources. This manages device on/off, intx/msi/msix
1046 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1047 * there's no need to track it separately. pci_devres is initialized
1048 * when a device is enabled using managed PCI device enable interface.
1049 */
1050struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001051 unsigned int enabled:1;
1052 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001053 unsigned int orig_intx:1;
1054 unsigned int restore_intx:1;
1055 u32 region_mask;
1056};
1057
1058static void pcim_release(struct device *gendev, void *res)
1059{
1060 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1061 struct pci_devres *this = res;
1062 int i;
1063
1064 if (dev->msi_enabled)
1065 pci_disable_msi(dev);
1066 if (dev->msix_enabled)
1067 pci_disable_msix(dev);
1068
1069 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1070 if (this->region_mask & (1 << i))
1071 pci_release_region(dev, i);
1072
1073 if (this->restore_intx)
1074 pci_intx(dev, this->orig_intx);
1075
Tejun Heo7f375f32007-02-25 04:36:01 -08001076 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001077 pci_disable_device(dev);
1078}
1079
1080static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
1081{
1082 struct pci_devres *dr, *new_dr;
1083
1084 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1085 if (dr)
1086 return dr;
1087
1088 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1089 if (!new_dr)
1090 return NULL;
1091 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1092}
1093
1094static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
1095{
1096 if (pci_is_managed(pdev))
1097 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1098 return NULL;
1099}
1100
1101/**
1102 * pcim_enable_device - Managed pci_enable_device()
1103 * @pdev: PCI device to be initialized
1104 *
1105 * Managed pci_enable_device().
1106 */
1107int pcim_enable_device(struct pci_dev *pdev)
1108{
1109 struct pci_devres *dr;
1110 int rc;
1111
1112 dr = get_pci_dr(pdev);
1113 if (unlikely(!dr))
1114 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001115 if (dr->enabled)
1116 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001117
1118 rc = pci_enable_device(pdev);
1119 if (!rc) {
1120 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001121 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001122 }
1123 return rc;
1124}
1125
1126/**
1127 * pcim_pin_device - Pin managed PCI device
1128 * @pdev: PCI device to pin
1129 *
1130 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1131 * driver detach. @pdev must have been enabled with
1132 * pcim_enable_device().
1133 */
1134void pcim_pin_device(struct pci_dev *pdev)
1135{
1136 struct pci_devres *dr;
1137
1138 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001139 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001140 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001141 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/**
1145 * pcibios_disable_device - disable arch specific PCI resources for device dev
1146 * @dev: the PCI device to disable
1147 *
1148 * Disables architecture specific PCI resources for the device. This
1149 * is the default implementation. Architecture implementations can
1150 * override this.
1151 */
1152void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
1153
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001154static void do_pci_disable_device(struct pci_dev *dev)
1155{
1156 u16 pci_command;
1157
1158 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1159 if (pci_command & PCI_COMMAND_MASTER) {
1160 pci_command &= ~PCI_COMMAND_MASTER;
1161 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1162 }
1163
1164 pcibios_disable_device(dev);
1165}
1166
1167/**
1168 * pci_disable_enabled_device - Disable device without updating enable_cnt
1169 * @dev: PCI device to disable
1170 *
1171 * NOTE: This function is a backend of PCI power management routines and is
1172 * not supposed to be called drivers.
1173 */
1174void pci_disable_enabled_device(struct pci_dev *dev)
1175{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001176 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001177 do_pci_disable_device(dev);
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/**
1181 * pci_disable_device - Disable PCI device after use
1182 * @dev: PCI device to be disabled
1183 *
1184 * Signal to the system that the PCI device is not in use by the system
1185 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001186 *
1187 * Note we don't actually disable the device until all callers of
1188 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
1190void
1191pci_disable_device(struct pci_dev *dev)
1192{
Tejun Heo9ac78492007-01-20 16:00:26 +09001193 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001194
Tejun Heo9ac78492007-01-20 16:00:26 +09001195 dr = find_pci_dr(dev);
1196 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001197 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001198
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001199 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
1200 return;
1201
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001202 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001204 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001208 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001209 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001210 * @state: Reset state to enter into
1211 *
1212 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001213 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001214 * implementation. Architecture implementations can override this.
1215 */
1216int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1217 enum pcie_reset_state state)
1218{
1219 return -EINVAL;
1220}
1221
1222/**
1223 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001224 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001225 * @state: Reset state to enter into
1226 *
1227 *
1228 * Sets the PCI reset state for the device.
1229 */
1230int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1231{
1232 return pcibios_set_pcie_reset_state(dev, state);
1233}
1234
1235/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001236 * pci_pme_capable - check the capability of PCI device to generate PME#
1237 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001238 * @state: PCI state from which device will issue PME#.
1239 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001240bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001241{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001242 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001243 return false;
1244
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001245 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001246}
1247
1248/**
1249 * pci_pme_active - enable or disable PCI device's PME# function
1250 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001251 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1252 *
1253 * The caller must verify that the device is capable of generating PME# before
1254 * calling this function with @enable equal to 'true'.
1255 */
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02001256void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001257{
1258 u16 pmcsr;
1259
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001260 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001261 return;
1262
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001263 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001264 /* Clear PME_Status by writing 1 to it and enable PME# */
1265 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1266 if (!enable)
1267 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1268
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001269 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001270
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001271 dev_printk(KERN_DEBUG, &dev->dev, "PME# %s\n",
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001272 enable ? "enabled" : "disabled");
1273}
1274
1275/**
David Brownell075c1772007-04-26 00:12:06 -07001276 * pci_enable_wake - enable PCI device as wakeup event source
1277 * @dev: PCI device affected
1278 * @state: PCI state from which device will issue wakeup events
1279 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 *
David Brownell075c1772007-04-26 00:12:06 -07001281 * This enables the device as a wakeup event source, or disables it.
1282 * When such events involves platform-specific hooks, those hooks are
1283 * called automatically by this routine.
1284 *
1285 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001286 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001287 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001288 * RETURN VALUE:
1289 * 0 is returned on success
1290 * -EINVAL is returned if device is not supposed to wake up the system
1291 * Error code depending on the platform is returned if both the platform and
1292 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 */
Frans Pop7d9a73f2009-06-17 00:16:15 +02001294int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001296 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Alan Sternbebd5902008-12-16 14:06:58 -05001298 if (enable && !device_may_wakeup(&dev->dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001299 return -EINVAL;
1300
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001301 /* Don't do the same thing twice in a row for one device. */
1302 if (!!enable == !!dev->wakeup_prepared)
1303 return 0;
1304
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001305 /*
1306 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1307 * Anderson we should be doing PME# wake enable followed by ACPI wake
1308 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001309 */
1310
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001311 if (enable) {
1312 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001313
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001314 if (pci_pme_capable(dev, state))
1315 pci_pme_active(dev, true);
1316 else
1317 ret = 1;
1318 error = platform_pci_sleep_wake(dev, true);
1319 if (ret)
1320 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001321 if (!ret)
1322 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001323 } else {
1324 platform_pci_sleep_wake(dev, false);
1325 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001326 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001327 }
1328
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001329 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001330}
1331
1332/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001333 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1334 * @dev: PCI device to prepare
1335 * @enable: True to enable wake-up event generation; false to disable
1336 *
1337 * Many drivers want the device to wake up the system from D3_hot or D3_cold
1338 * and this function allows them to set that up cleanly - pci_enable_wake()
1339 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1340 * ordering constraints.
1341 *
1342 * This function only returns error code if the device is not capable of
1343 * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1344 * enable wake-up power for it.
1345 */
1346int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1347{
1348 return pci_pme_capable(dev, PCI_D3cold) ?
1349 pci_enable_wake(dev, PCI_D3cold, enable) :
1350 pci_enable_wake(dev, PCI_D3hot, enable);
1351}
1352
1353/**
Jesse Barnes37139072008-07-28 11:49:26 -07001354 * pci_target_state - find an appropriate low power state for a given PCI dev
1355 * @dev: PCI device
1356 *
1357 * Use underlying platform code to find a supported low power state for @dev.
1358 * If the platform can't manage @dev, return the deepest state from which it
1359 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001360 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001361pci_power_t pci_target_state(struct pci_dev *dev)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001362{
1363 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001364
1365 if (platform_pci_power_manageable(dev)) {
1366 /*
1367 * Call the platform to choose the target state of the device
1368 * and enable wake-up from this state if supported.
1369 */
1370 pci_power_t state = platform_pci_choose_state(dev);
1371
1372 switch (state) {
1373 case PCI_POWER_ERROR:
1374 case PCI_UNKNOWN:
1375 break;
1376 case PCI_D1:
1377 case PCI_D2:
1378 if (pci_no_d1d2(dev))
1379 break;
1380 default:
1381 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001382 }
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02001383 } else if (!dev->pm_cap) {
1384 target_state = PCI_D0;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001385 } else if (device_may_wakeup(&dev->dev)) {
1386 /*
1387 * Find the deepest state from which the device can generate
1388 * wake-up events, make it the target state and enable device
1389 * to generate PME#.
1390 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001391 if (dev->pme_support) {
1392 while (target_state
1393 && !(dev->pme_support & (1 << target_state)))
1394 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001395 }
1396 }
1397
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001398 return target_state;
1399}
1400
1401/**
1402 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1403 * @dev: Device to handle.
1404 *
1405 * Choose the power state appropriate for the device depending on whether
1406 * it can wake up the system and/or is power manageable by the platform
1407 * (PCI_D3hot is the default) and put the device into that state.
1408 */
1409int pci_prepare_to_sleep(struct pci_dev *dev)
1410{
1411 pci_power_t target_state = pci_target_state(dev);
1412 int error;
1413
1414 if (target_state == PCI_POWER_ERROR)
1415 return -EIO;
1416
Rafael J. Wysocki8efb8c72009-03-30 21:46:27 +02001417 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001418
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001419 error = pci_set_power_state(dev, target_state);
1420
1421 if (error)
1422 pci_enable_wake(dev, target_state, false);
1423
1424 return error;
1425}
1426
1427/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07001428 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001429 * @dev: Device to handle.
1430 *
1431 * Disable device's sytem wake-up capability and put it into D0.
1432 */
1433int pci_back_from_sleep(struct pci_dev *dev)
1434{
1435 pci_enable_wake(dev, PCI_D0, false);
1436 return pci_set_power_state(dev, PCI_D0);
1437}
1438
1439/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001440 * pci_pm_init - Initialize PM functions of given PCI device
1441 * @dev: PCI device to handle.
1442 */
1443void pci_pm_init(struct pci_dev *dev)
1444{
1445 int pm;
1446 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001447
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001448 dev->wakeup_prepared = false;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001449 dev->pm_cap = 0;
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /* find PCI PM capability in list */
1452 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001453 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08001454 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001456 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001458 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1459 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1460 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08001461 return;
David Brownell075c1772007-04-26 00:12:06 -07001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001464 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01001465 dev->d3_delay = PCI_PM_D3_WAIT;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001466
1467 dev->d1_support = false;
1468 dev->d2_support = false;
1469 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001470 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001471 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001472 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001473 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001474
1475 if (dev->d1_support || dev->d2_support)
1476 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07001477 dev->d1_support ? " D1" : "",
1478 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001479 }
1480
1481 pmc &= PCI_PM_CAP_PME_MASK;
1482 if (pmc) {
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001483 dev_printk(KERN_DEBUG, &dev->dev,
1484 "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001485 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1486 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1487 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1488 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1489 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001490 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001491 /*
1492 * Make device's PM flags reflect the wake-up capability, but
1493 * let the user space enable it to wake up the system as needed.
1494 */
1495 device_set_wakeup_capable(&dev->dev, true);
1496 device_set_wakeup_enable(&dev->dev, false);
1497 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001498 pci_pme_active(dev, false);
1499 } else {
1500 dev->pme_support = 0;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Yu Zhao58c3a722008-10-14 14:02:53 +08001504/**
Jesse Barneseb9c39d2008-12-17 12:10:05 -08001505 * platform_pci_wakeup_init - init platform wakeup if present
1506 * @dev: PCI device
1507 *
1508 * Some devices don't have PCI PM caps but can still generate wakeup
1509 * events through platform methods (like ACPI events). If @dev supports
1510 * platform wakeup events, set the device flag to indicate as much. This
1511 * may be redundant if the device also supports PCI PM caps, but double
1512 * initialization should be safe in that case.
1513 */
1514void platform_pci_wakeup_init(struct pci_dev *dev)
1515{
1516 if (!platform_pci_can_wakeup(dev))
1517 return;
1518
1519 device_set_wakeup_capable(&dev->dev, true);
1520 device_set_wakeup_enable(&dev->dev, false);
1521 platform_pci_sleep_wake(dev, false);
1522}
1523
1524/**
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001525 * pci_add_save_buffer - allocate buffer for saving given capability registers
1526 * @dev: the PCI device
1527 * @cap: the capability to allocate the buffer for
1528 * @size: requested size of the buffer
1529 */
1530static int pci_add_cap_save_buffer(
1531 struct pci_dev *dev, char cap, unsigned int size)
1532{
1533 int pos;
1534 struct pci_cap_saved_state *save_state;
1535
1536 pos = pci_find_capability(dev, cap);
1537 if (pos <= 0)
1538 return 0;
1539
1540 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
1541 if (!save_state)
1542 return -ENOMEM;
1543
1544 save_state->cap_nr = cap;
1545 pci_add_saved_cap(dev, save_state);
1546
1547 return 0;
1548}
1549
1550/**
1551 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
1552 * @dev: the PCI device
1553 */
1554void pci_allocate_cap_save_buffers(struct pci_dev *dev)
1555{
1556 int error;
1557
Yu Zhao89858512009-02-16 02:55:47 +08001558 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
1559 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001560 if (error)
1561 dev_err(&dev->dev,
1562 "unable to preallocate PCI Express save buffer\n");
1563
1564 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
1565 if (error)
1566 dev_err(&dev->dev,
1567 "unable to preallocate PCI-X save buffer\n");
1568}
1569
1570/**
Yu Zhao58c3a722008-10-14 14:02:53 +08001571 * pci_enable_ari - enable ARI forwarding if hardware support it
1572 * @dev: the PCI device
1573 */
1574void pci_enable_ari(struct pci_dev *dev)
1575{
1576 int pos;
1577 u32 cap;
1578 u16 ctrl;
Zhao, Yu81135872008-10-23 13:15:39 +08001579 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08001580
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001581 if (!pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08001582 return;
1583
Zhao, Yu81135872008-10-23 13:15:39 +08001584 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
Yu Zhao58c3a722008-10-14 14:02:53 +08001585 if (!pos)
1586 return;
1587
Zhao, Yu81135872008-10-23 13:15:39 +08001588 bridge = dev->bus->self;
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001589 if (!bridge || !pci_is_pcie(bridge))
Zhao, Yu81135872008-10-23 13:15:39 +08001590 return;
1591
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09001592 pos = pci_pcie_cap(bridge);
Zhao, Yu81135872008-10-23 13:15:39 +08001593 if (!pos)
1594 return;
1595
1596 pci_read_config_dword(bridge, pos + PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08001597 if (!(cap & PCI_EXP_DEVCAP2_ARI))
1598 return;
1599
Zhao, Yu81135872008-10-23 13:15:39 +08001600 pci_read_config_word(bridge, pos + PCI_EXP_DEVCTL2, &ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001601 ctrl |= PCI_EXP_DEVCTL2_ARI;
Zhao, Yu81135872008-10-23 13:15:39 +08001602 pci_write_config_word(bridge, pos + PCI_EXP_DEVCTL2, ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001603
Zhao, Yu81135872008-10-23 13:15:39 +08001604 bridge->ari_enabled = 1;
Yu Zhao58c3a722008-10-14 14:02:53 +08001605}
1606
Chris Wright5d990b62009-12-04 12:15:21 -08001607static int pci_acs_enable;
1608
1609/**
1610 * pci_request_acs - ask for ACS to be enabled if supported
1611 */
1612void pci_request_acs(void)
1613{
1614 pci_acs_enable = 1;
1615}
1616
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001617/**
Allen Kayae21ee62009-10-07 10:27:17 -07001618 * pci_enable_acs - enable ACS if hardware support it
1619 * @dev: the PCI device
1620 */
1621void pci_enable_acs(struct pci_dev *dev)
1622{
1623 int pos;
1624 u16 cap;
1625 u16 ctrl;
1626
Chris Wright5d990b62009-12-04 12:15:21 -08001627 if (!pci_acs_enable)
1628 return;
1629
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001630 if (!pci_is_pcie(dev))
Allen Kayae21ee62009-10-07 10:27:17 -07001631 return;
1632
1633 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
1634 if (!pos)
1635 return;
1636
1637 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
1638 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
1639
1640 /* Source Validation */
1641 ctrl |= (cap & PCI_ACS_SV);
1642
1643 /* P2P Request Redirect */
1644 ctrl |= (cap & PCI_ACS_RR);
1645
1646 /* P2P Completion Redirect */
1647 ctrl |= (cap & PCI_ACS_CR);
1648
1649 /* Upstream Forwarding */
1650 ctrl |= (cap & PCI_ACS_UF);
1651
1652 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
1653}
1654
1655/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001656 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
1657 * @dev: the PCI device
1658 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1659 *
1660 * Perform INTx swizzling for a device behind one level of bridge. This is
1661 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001662 * behind bridges on add-in cards. For devices with ARI enabled, the slot
1663 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
1664 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001665 */
1666u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin)
1667{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001668 int slot;
1669
1670 if (pci_ari_enabled(dev->bus))
1671 slot = 0;
1672 else
1673 slot = PCI_SLOT(dev->devfn);
1674
1675 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001676}
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678int
1679pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1680{
1681 u8 pin;
1682
Kristen Accardi514d2072005-11-02 16:24:39 -08001683 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (!pin)
1685 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07001686
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09001687 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001688 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 dev = dev->bus->self;
1690 }
1691 *bridge = dev;
1692 return pin;
1693}
1694
1695/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001696 * pci_common_swizzle - swizzle INTx all the way to root bridge
1697 * @dev: the PCI device
1698 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1699 *
1700 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
1701 * bridges all the way up to a PCI root bus.
1702 */
1703u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
1704{
1705 u8 pin = *pinp;
1706
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09001707 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001708 pin = pci_swizzle_interrupt_pin(dev, pin);
1709 dev = dev->bus->self;
1710 }
1711 *pinp = pin;
1712 return PCI_SLOT(dev->devfn);
1713}
1714
1715/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 * pci_release_region - Release a PCI bar
1717 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1718 * @bar: BAR to release
1719 *
1720 * Releases the PCI I/O and memory resources previously reserved by a
1721 * successful call to pci_request_region. Call this function only
1722 * after all use of the PCI regions has ceased.
1723 */
1724void pci_release_region(struct pci_dev *pdev, int bar)
1725{
Tejun Heo9ac78492007-01-20 16:00:26 +09001726 struct pci_devres *dr;
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (pci_resource_len(pdev, bar) == 0)
1729 return;
1730 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1731 release_region(pci_resource_start(pdev, bar),
1732 pci_resource_len(pdev, bar));
1733 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1734 release_mem_region(pci_resource_start(pdev, bar),
1735 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09001736
1737 dr = find_pci_dr(pdev);
1738 if (dr)
1739 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
1742/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001743 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * @pdev: PCI device whose resources are to be reserved
1745 * @bar: BAR to be reserved
1746 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001747 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 *
1749 * Mark the PCI region associated with PCI device @pdev BR @bar as
1750 * being reserved by owner @res_name. Do not access any
1751 * address inside the PCI regions unless this call returns
1752 * successfully.
1753 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001754 * If @exclusive is set, then the region is marked so that userspace
1755 * is explicitly not allowed to map the resource via /dev/mem or
1756 * sysfs MMIO access.
1757 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 * Returns 0 on success, or %EBUSY on error. A warning
1759 * message is also printed on failure.
1760 */
Arjan van de Vene8de1482008-10-22 19:55:31 -07001761static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
1762 int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Tejun Heo9ac78492007-01-20 16:00:26 +09001764 struct pci_devres *dr;
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (pci_resource_len(pdev, bar) == 0)
1767 return 0;
1768
1769 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1770 if (!request_region(pci_resource_start(pdev, bar),
1771 pci_resource_len(pdev, bar), res_name))
1772 goto err_out;
1773 }
1774 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001775 if (!__request_mem_region(pci_resource_start(pdev, bar),
1776 pci_resource_len(pdev, bar), res_name,
1777 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto err_out;
1779 }
Tejun Heo9ac78492007-01-20 16:00:26 +09001780
1781 dr = find_pci_dr(pdev);
1782 if (dr)
1783 dr->region_mask |= 1 << bar;
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return 0;
1786
1787err_out:
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001788 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11001789 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return -EBUSY;
1791}
1792
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001793/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001794 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001795 * @pdev: PCI device whose resources are to be reserved
1796 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001797 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001798 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001799 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07001800 * being reserved by owner @res_name. Do not access any
1801 * address inside the PCI regions unless this call returns
1802 * successfully.
1803 *
1804 * Returns 0 on success, or %EBUSY on error. A warning
1805 * message is also printed on failure.
1806 */
1807int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
1808{
1809 return __pci_request_region(pdev, bar, res_name, 0);
1810}
1811
1812/**
1813 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
1814 * @pdev: PCI device whose resources are to be reserved
1815 * @bar: BAR to be reserved
1816 * @res_name: Name to be associated with resource.
1817 *
1818 * Mark the PCI region associated with PCI device @pdev BR @bar as
1819 * being reserved by owner @res_name. Do not access any
1820 * address inside the PCI regions unless this call returns
1821 * successfully.
1822 *
1823 * Returns 0 on success, or %EBUSY on error. A warning
1824 * message is also printed on failure.
1825 *
1826 * The key difference that _exclusive makes it that userspace is
1827 * explicitly not allowed to map the resource via /dev/mem or
1828 * sysfs.
1829 */
1830int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
1831{
1832 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
1833}
1834/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001835 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1836 * @pdev: PCI device whose resources were previously reserved
1837 * @bars: Bitmask of BARs to be released
1838 *
1839 * Release selected PCI I/O and memory resources previously reserved.
1840 * Call this function only after all use of the PCI regions has ceased.
1841 */
1842void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1843{
1844 int i;
1845
1846 for (i = 0; i < 6; i++)
1847 if (bars & (1 << i))
1848 pci_release_region(pdev, i);
1849}
1850
Arjan van de Vene8de1482008-10-22 19:55:31 -07001851int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
1852 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001853{
1854 int i;
1855
1856 for (i = 0; i < 6; i++)
1857 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07001858 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001859 goto err_out;
1860 return 0;
1861
1862err_out:
1863 while(--i >= 0)
1864 if (bars & (1 << i))
1865 pci_release_region(pdev, i);
1866
1867 return -EBUSY;
1868}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Arjan van de Vene8de1482008-10-22 19:55:31 -07001870
1871/**
1872 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1873 * @pdev: PCI device whose resources are to be reserved
1874 * @bars: Bitmask of BARs to be requested
1875 * @res_name: Name to be associated with resource
1876 */
1877int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1878 const char *res_name)
1879{
1880 return __pci_request_selected_regions(pdev, bars, res_name, 0);
1881}
1882
1883int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
1884 int bars, const char *res_name)
1885{
1886 return __pci_request_selected_regions(pdev, bars, res_name,
1887 IORESOURCE_EXCLUSIVE);
1888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890/**
1891 * pci_release_regions - Release reserved PCI I/O and memory resources
1892 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1893 *
1894 * Releases all PCI I/O and memory resources previously reserved by a
1895 * successful call to pci_request_regions. Call this function only
1896 * after all use of the PCI regions has ceased.
1897 */
1898
1899void pci_release_regions(struct pci_dev *pdev)
1900{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001901 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
1904/**
1905 * pci_request_regions - Reserved PCI I/O and memory resources
1906 * @pdev: PCI device whose resources are to be reserved
1907 * @res_name: Name to be associated with resource.
1908 *
1909 * Mark all PCI regions associated with PCI device @pdev as
1910 * being reserved by owner @res_name. Do not access any
1911 * address inside the PCI regions unless this call returns
1912 * successfully.
1913 *
1914 * Returns 0 on success, or %EBUSY on error. A warning
1915 * message is also printed on failure.
1916 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001917int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001919 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
1922/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07001923 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
1924 * @pdev: PCI device whose resources are to be reserved
1925 * @res_name: Name to be associated with resource.
1926 *
1927 * Mark all PCI regions associated with PCI device @pdev as
1928 * being reserved by owner @res_name. Do not access any
1929 * address inside the PCI regions unless this call returns
1930 * successfully.
1931 *
1932 * pci_request_regions_exclusive() will mark the region so that
1933 * /dev/mem and the sysfs MMIO access will not be allowed.
1934 *
1935 * Returns 0 on success, or %EBUSY on error. A warning
1936 * message is also printed on failure.
1937 */
1938int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
1939{
1940 return pci_request_selected_regions_exclusive(pdev,
1941 ((1 << 6) - 1), res_name);
1942}
1943
Ben Hutchings6a479072008-12-23 03:08:29 +00001944static void __pci_set_master(struct pci_dev *dev, bool enable)
1945{
1946 u16 old_cmd, cmd;
1947
1948 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
1949 if (enable)
1950 cmd = old_cmd | PCI_COMMAND_MASTER;
1951 else
1952 cmd = old_cmd & ~PCI_COMMAND_MASTER;
1953 if (cmd != old_cmd) {
1954 dev_dbg(&dev->dev, "%s bus mastering\n",
1955 enable ? "enabling" : "disabling");
1956 pci_write_config_word(dev, PCI_COMMAND, cmd);
1957 }
1958 dev->is_busmaster = enable;
1959}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001960
1961/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 * pci_set_master - enables bus-mastering for device dev
1963 * @dev: the PCI device to enable
1964 *
1965 * Enables bus-mastering on the device and calls pcibios_set_master()
1966 * to do the needed arch specific settings.
1967 */
Ben Hutchings6a479072008-12-23 03:08:29 +00001968void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
Ben Hutchings6a479072008-12-23 03:08:29 +00001970 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 pcibios_set_master(dev);
1972}
1973
Ben Hutchings6a479072008-12-23 03:08:29 +00001974/**
1975 * pci_clear_master - disables bus-mastering for device dev
1976 * @dev: the PCI device to disable
1977 */
1978void pci_clear_master(struct pci_dev *dev)
1979{
1980 __pci_set_master(dev, false);
1981}
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001984 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1985 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001987 * Helper function for pci_set_mwi.
1988 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1990 *
1991 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1992 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09001993int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994{
1995 u8 cacheline_size;
1996
1997 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09001998 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
2001 equal to or multiple of the right value. */
2002 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2003 if (cacheline_size >= pci_cache_line_size &&
2004 (cacheline_size % pci_cache_line_size) == 0)
2005 return 0;
2006
2007 /* Write the correct value. */
2008 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
2009 /* Read it back. */
2010 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2011 if (cacheline_size == pci_cache_line_size)
2012 return 0;
2013
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002014 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
2015 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 return -EINVAL;
2018}
Tejun Heo15ea76d2009-09-22 17:34:48 +09002019EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
2020
2021#ifdef PCI_DISABLE_MWI
2022int pci_set_mwi(struct pci_dev *dev)
2023{
2024 return 0;
2025}
2026
2027int pci_try_set_mwi(struct pci_dev *dev)
2028{
2029 return 0;
2030}
2031
2032void pci_clear_mwi(struct pci_dev *dev)
2033{
2034}
2035
2036#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038/**
2039 * pci_set_mwi - enables memory-write-invalidate PCI transaction
2040 * @dev: the PCI device for which MWI is enabled
2041 *
Randy Dunlap694625c2007-07-09 11:55:54 -07002042 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 *
2044 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2045 */
2046int
2047pci_set_mwi(struct pci_dev *dev)
2048{
2049 int rc;
2050 u16 cmd;
2051
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002052 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (rc)
2054 return rc;
2055
2056 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2057 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002058 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 cmd |= PCI_COMMAND_INVALIDATE;
2060 pci_write_config_word(dev, PCI_COMMAND, cmd);
2061 }
2062
2063 return 0;
2064}
2065
2066/**
Randy Dunlap694625c2007-07-09 11:55:54 -07002067 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2068 * @dev: the PCI device for which MWI is enabled
2069 *
2070 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2071 * Callers are not required to check the return value.
2072 *
2073 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2074 */
2075int pci_try_set_mwi(struct pci_dev *dev)
2076{
2077 int rc = pci_set_mwi(dev);
2078 return rc;
2079}
2080
2081/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2083 * @dev: the PCI device to disable
2084 *
2085 * Disables PCI Memory-Write-Invalidate transaction on the device
2086 */
2087void
2088pci_clear_mwi(struct pci_dev *dev)
2089{
2090 u16 cmd;
2091
2092 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2093 if (cmd & PCI_COMMAND_INVALIDATE) {
2094 cmd &= ~PCI_COMMAND_INVALIDATE;
2095 pci_write_config_word(dev, PCI_COMMAND, cmd);
2096 }
2097}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002098#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Brett M Russa04ce0f2005-08-15 15:23:41 -04002100/**
2101 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07002102 * @pdev: the PCI device to operate on
2103 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04002104 *
2105 * Enables/disables PCI INTx for device dev
2106 */
2107void
2108pci_intx(struct pci_dev *pdev, int enable)
2109{
2110 u16 pci_command, new;
2111
2112 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
2113
2114 if (enable) {
2115 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
2116 } else {
2117 new = pci_command | PCI_COMMAND_INTX_DISABLE;
2118 }
2119
2120 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09002121 struct pci_devres *dr;
2122
Brett M Russ2fd9d742005-09-09 10:02:22 -07002123 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09002124
2125 dr = find_pci_dr(pdev);
2126 if (dr && !dr->restore_intx) {
2127 dr->restore_intx = 1;
2128 dr->orig_intx = !enable;
2129 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04002130 }
2131}
2132
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002133/**
2134 * pci_msi_off - disables any msi or msix capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07002135 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002136 *
2137 * If you want to use msi see pci_enable_msi and friends.
2138 * This is a lower level primitive that allows us to disable
2139 * msi operation at the device level.
2140 */
2141void pci_msi_off(struct pci_dev *dev)
2142{
2143 int pos;
2144 u16 control;
2145
2146 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
2147 if (pos) {
2148 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
2149 control &= ~PCI_MSI_FLAGS_ENABLE;
2150 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
2151 }
2152 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
2153 if (pos) {
2154 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
2155 control &= ~PCI_MSIX_FLAGS_ENABLE;
2156 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
2157 }
2158}
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
2161/*
2162 * These can be overridden by arch-specific implementations
2163 */
2164int
2165pci_set_dma_mask(struct pci_dev *dev, u64 mask)
2166{
2167 if (!pci_dma_supported(dev, mask))
2168 return -EIO;
2169
2170 dev->dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002171 dev_dbg(&dev->dev, "using %dbit DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 return 0;
2174}
2175
2176int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
2178{
2179 if (!pci_dma_supported(dev, mask))
2180 return -EIO;
2181
2182 dev->dev.coherent_dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002183 dev_dbg(&dev->dev, "using %dbit consistent DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 return 0;
2186}
2187#endif
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002188
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08002189#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
2190int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
2191{
2192 return dma_set_max_seg_size(&dev->dev, size);
2193}
2194EXPORT_SYMBOL(pci_set_dma_max_seg_size);
2195#endif
2196
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08002197#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
2198int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
2199{
2200 return dma_set_seg_boundary(&dev->dev, mask);
2201}
2202EXPORT_SYMBOL(pci_set_dma_seg_boundary);
2203#endif
2204
Yu Zhao8c1c6992009-06-13 15:52:13 +08002205static int pcie_flr(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002206{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002207 int i;
2208 int pos;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002209 u32 cap;
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002210 u16 status, control;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002211
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002212 pos = pci_pcie_cap(dev);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002213 if (!pos)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002214 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002215
2216 pci_read_config_dword(dev, pos + PCI_EXP_DEVCAP, &cap);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002217 if (!(cap & PCI_EXP_DEVCAP_FLR))
2218 return -ENOTTY;
2219
Sheng Yangd91cdc72008-11-11 17:17:47 +08002220 if (probe)
2221 return 0;
2222
Sheng Yang8dd7f802008-10-21 17:38:25 +08002223 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002224 for (i = 0; i < 4; i++) {
2225 if (i)
2226 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002227
Yu Zhao8c1c6992009-06-13 15:52:13 +08002228 pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &status);
2229 if (!(status & PCI_EXP_DEVSTA_TRPND))
2230 goto clear;
2231 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002232
Yu Zhao8c1c6992009-06-13 15:52:13 +08002233 dev_err(&dev->dev, "transaction is not cleared; "
2234 "proceeding with reset anyway\n");
Sheng Yang5fe5db02009-02-09 14:53:47 +08002235
Yu Zhao8c1c6992009-06-13 15:52:13 +08002236clear:
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002237 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &control);
2238 control |= PCI_EXP_DEVCTL_BCR_FLR;
2239 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, control);
2240
Yu Zhao8c1c6992009-06-13 15:52:13 +08002241 msleep(100);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002242
Sheng Yang8dd7f802008-10-21 17:38:25 +08002243 return 0;
2244}
Sheng Yangd91cdc72008-11-11 17:17:47 +08002245
Yu Zhao8c1c6992009-06-13 15:52:13 +08002246static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08002247{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002248 int i;
2249 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08002250 u8 cap;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002251 u8 status;
Sheng Yang1ca88792008-11-11 17:17:48 +08002252
Yu Zhao8c1c6992009-06-13 15:52:13 +08002253 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
2254 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08002255 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002256
2257 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08002258 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
2259 return -ENOTTY;
2260
2261 if (probe)
2262 return 0;
2263
Sheng Yang1ca88792008-11-11 17:17:48 +08002264 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002265 for (i = 0; i < 4; i++) {
2266 if (i)
2267 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002268
Yu Zhao8c1c6992009-06-13 15:52:13 +08002269 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
2270 if (!(status & PCI_AF_STATUS_TP))
2271 goto clear;
2272 }
2273
2274 dev_err(&dev->dev, "transaction is not cleared; "
2275 "proceeding with reset anyway\n");
2276
2277clear:
2278 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sheng Yang1ca88792008-11-11 17:17:48 +08002279 msleep(100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002280
Sheng Yang1ca88792008-11-11 17:17:48 +08002281 return 0;
2282}
2283
Yu Zhaof85876b2009-06-13 15:52:14 +08002284static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08002285{
Yu Zhaof85876b2009-06-13 15:52:14 +08002286 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002287
Yu Zhaof85876b2009-06-13 15:52:14 +08002288 if (!dev->pm_cap)
2289 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002290
Yu Zhaof85876b2009-06-13 15:52:14 +08002291 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
2292 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
2293 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08002294
Yu Zhaof85876b2009-06-13 15:52:14 +08002295 if (probe)
2296 return 0;
2297
2298 if (dev->current_state != PCI_D0)
2299 return -EINVAL;
2300
2301 csr &= ~PCI_PM_CTRL_STATE_MASK;
2302 csr |= PCI_D3hot;
2303 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002304 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002305
2306 csr &= ~PCI_PM_CTRL_STATE_MASK;
2307 csr |= PCI_D0;
2308 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002309 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002310
2311 return 0;
2312}
2313
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002314static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
2315{
2316 u16 ctrl;
2317 struct pci_dev *pdev;
2318
Yu Zhao654b75e2009-06-26 14:04:46 +08002319 if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002320 return -ENOTTY;
2321
2322 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
2323 if (pdev != dev)
2324 return -ENOTTY;
2325
2326 if (probe)
2327 return 0;
2328
2329 pci_read_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, &ctrl);
2330 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
2331 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2332 msleep(100);
2333
2334 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
2335 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2336 msleep(100);
2337
2338 return 0;
2339}
2340
Yu Zhao8c1c6992009-06-13 15:52:13 +08002341static int pci_dev_reset(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002342{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002343 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002344
Yu Zhao8c1c6992009-06-13 15:52:13 +08002345 might_sleep();
Sheng Yang8dd7f802008-10-21 17:38:25 +08002346
Yu Zhao8c1c6992009-06-13 15:52:13 +08002347 if (!probe) {
2348 pci_block_user_cfg_access(dev);
2349 /* block PM suspend, driver probe, etc. */
2350 down(&dev->dev.sem);
2351 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002352
Dexuan Cuib9c3b262009-12-07 13:03:21 +08002353 rc = pci_dev_specific_reset(dev, probe);
2354 if (rc != -ENOTTY)
2355 goto done;
2356
Yu Zhao8c1c6992009-06-13 15:52:13 +08002357 rc = pcie_flr(dev, probe);
2358 if (rc != -ENOTTY)
2359 goto done;
2360
2361 rc = pci_af_flr(dev, probe);
Yu Zhaof85876b2009-06-13 15:52:14 +08002362 if (rc != -ENOTTY)
2363 goto done;
2364
2365 rc = pci_pm_reset(dev, probe);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002366 if (rc != -ENOTTY)
2367 goto done;
2368
2369 rc = pci_parent_bus_reset(dev, probe);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002370done:
2371 if (!probe) {
2372 up(&dev->dev.sem);
2373 pci_unblock_user_cfg_access(dev);
2374 }
2375
2376 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002377}
2378
2379/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002380 * __pci_reset_function - reset a PCI device function
2381 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002382 *
2383 * Some devices allow an individual function to be reset without affecting
2384 * other functions in the same device. The PCI device must be responsive
2385 * to PCI config space in order to use this function.
2386 *
2387 * The device function is presumed to be unused when this function is called.
2388 * Resetting the device will make the contents of PCI configuration space
2389 * random, so any caller of this must be prepared to reinitialise the
2390 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
2391 * etc.
2392 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002393 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002394 * device doesn't support resetting a single function.
2395 */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002396int __pci_reset_function(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002397{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002398 return pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002399}
Yu Zhao8c1c6992009-06-13 15:52:13 +08002400EXPORT_SYMBOL_GPL(__pci_reset_function);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002401
2402/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03002403 * pci_probe_reset_function - check whether the device can be safely reset
2404 * @dev: PCI device to reset
2405 *
2406 * Some devices allow an individual function to be reset without affecting
2407 * other functions in the same device. The PCI device must be responsive
2408 * to PCI config space in order to use this function.
2409 *
2410 * Returns 0 if the device function can be reset or negative if the
2411 * device doesn't support resetting a single function.
2412 */
2413int pci_probe_reset_function(struct pci_dev *dev)
2414{
2415 return pci_dev_reset(dev, 1);
2416}
2417
2418/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002419 * pci_reset_function - quiesce and reset a PCI device function
2420 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002421 *
2422 * Some devices allow an individual function to be reset without affecting
2423 * other functions in the same device. The PCI device must be responsive
2424 * to PCI config space in order to use this function.
2425 *
2426 * This function does not just reset the PCI portion of a device, but
2427 * clears all the state associated with the device. This function differs
Yu Zhao8c1c6992009-06-13 15:52:13 +08002428 * from __pci_reset_function in that it saves and restores device state
Sheng Yang8dd7f802008-10-21 17:38:25 +08002429 * over the reset.
2430 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002431 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002432 * device doesn't support resetting a single function.
2433 */
2434int pci_reset_function(struct pci_dev *dev)
2435{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002436 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002437
Yu Zhao8c1c6992009-06-13 15:52:13 +08002438 rc = pci_dev_reset(dev, 1);
2439 if (rc)
2440 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002441
Sheng Yang8dd7f802008-10-21 17:38:25 +08002442 pci_save_state(dev);
2443
Yu Zhao8c1c6992009-06-13 15:52:13 +08002444 /*
2445 * both INTx and MSI are disabled after the Interrupt Disable bit
2446 * is set and the Bus Master bit is cleared.
2447 */
Sheng Yang8dd7f802008-10-21 17:38:25 +08002448 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
2449
Yu Zhao8c1c6992009-06-13 15:52:13 +08002450 rc = pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002451
2452 pci_restore_state(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002453
Yu Zhao8c1c6992009-06-13 15:52:13 +08002454 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002455}
2456EXPORT_SYMBOL_GPL(pci_reset_function);
2457
2458/**
Peter Orubad556ad42007-05-15 13:59:13 +02002459 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
2460 * @dev: PCI device to query
2461 *
2462 * Returns mmrbc: maximum designed memory read count in bytes
2463 * or appropriate error value.
2464 */
2465int pcix_get_max_mmrbc(struct pci_dev *dev)
2466{
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002467 int err, cap;
Peter Orubad556ad42007-05-15 13:59:13 +02002468 u32 stat;
2469
2470 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2471 if (!cap)
2472 return -EINVAL;
2473
2474 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2475 if (err)
2476 return -EINVAL;
2477
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002478 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
Peter Orubad556ad42007-05-15 13:59:13 +02002479}
2480EXPORT_SYMBOL(pcix_get_max_mmrbc);
2481
2482/**
2483 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
2484 * @dev: PCI device to query
2485 *
2486 * Returns mmrbc: maximum memory read count in bytes
2487 * or appropriate error value.
2488 */
2489int pcix_get_mmrbc(struct pci_dev *dev)
2490{
2491 int ret, cap;
2492 u32 cmd;
2493
2494 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2495 if (!cap)
2496 return -EINVAL;
2497
2498 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2499 if (!ret)
2500 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
2501
2502 return ret;
2503}
2504EXPORT_SYMBOL(pcix_get_mmrbc);
2505
2506/**
2507 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
2508 * @dev: PCI device to query
2509 * @mmrbc: maximum memory read count in bytes
2510 * valid values are 512, 1024, 2048, 4096
2511 *
2512 * If possible sets maximum memory read byte count, some bridges have erratas
2513 * that prevent this.
2514 */
2515int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
2516{
2517 int cap, err = -EINVAL;
2518 u32 stat, cmd, v, o;
2519
vignesh babu229f5af2007-08-13 18:23:14 +05302520 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Peter Orubad556ad42007-05-15 13:59:13 +02002521 goto out;
2522
2523 v = ffs(mmrbc) - 10;
2524
2525 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2526 if (!cap)
2527 goto out;
2528
2529 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2530 if (err)
2531 goto out;
2532
2533 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
2534 return -E2BIG;
2535
2536 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2537 if (err)
2538 goto out;
2539
2540 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
2541 if (o != v) {
2542 if (v > o && dev->bus &&
2543 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
2544 return -EIO;
2545
2546 cmd &= ~PCI_X_CMD_MAX_READ;
2547 cmd |= v << 2;
2548 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
2549 }
2550out:
2551 return err;
2552}
2553EXPORT_SYMBOL(pcix_set_mmrbc);
2554
2555/**
2556 * pcie_get_readrq - get PCI Express read request size
2557 * @dev: PCI device to query
2558 *
2559 * Returns maximum memory read request in bytes
2560 * or appropriate error value.
2561 */
2562int pcie_get_readrq(struct pci_dev *dev)
2563{
2564 int ret, cap;
2565 u16 ctl;
2566
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002567 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002568 if (!cap)
2569 return -EINVAL;
2570
2571 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2572 if (!ret)
2573 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
2574
2575 return ret;
2576}
2577EXPORT_SYMBOL(pcie_get_readrq);
2578
2579/**
2580 * pcie_set_readrq - set PCI Express maximum memory read request
2581 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07002582 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02002583 * valid values are 128, 256, 512, 1024, 2048, 4096
2584 *
2585 * If possible sets maximum read byte count
2586 */
2587int pcie_set_readrq(struct pci_dev *dev, int rq)
2588{
2589 int cap, err = -EINVAL;
2590 u16 ctl, v;
2591
vignesh babu229f5af2007-08-13 18:23:14 +05302592 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Peter Orubad556ad42007-05-15 13:59:13 +02002593 goto out;
2594
2595 v = (ffs(rq) - 8) << 12;
2596
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002597 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002598 if (!cap)
2599 goto out;
2600
2601 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2602 if (err)
2603 goto out;
2604
2605 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
2606 ctl &= ~PCI_EXP_DEVCTL_READRQ;
2607 ctl |= v;
2608 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
2609 }
2610
2611out:
2612 return err;
2613}
2614EXPORT_SYMBOL(pcie_set_readrq);
2615
2616/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002617 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08002618 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002619 * @flags: resource type mask to be selected
2620 *
2621 * This helper routine makes bar mask from the type of resource.
2622 */
2623int pci_select_bars(struct pci_dev *dev, unsigned long flags)
2624{
2625 int i, bars = 0;
2626 for (i = 0; i < PCI_NUM_RESOURCES; i++)
2627 if (pci_resource_flags(dev, i) & flags)
2628 bars |= (1 << i);
2629 return bars;
2630}
2631
Yu Zhao613e7ed2008-11-22 02:41:27 +08002632/**
2633 * pci_resource_bar - get position of the BAR associated with a resource
2634 * @dev: the PCI device
2635 * @resno: the resource number
2636 * @type: the BAR type to be filled in
2637 *
2638 * Returns BAR position in config space, or 0 if the BAR is invalid.
2639 */
2640int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
2641{
Yu Zhaod1b054d2009-03-20 11:25:11 +08002642 int reg;
2643
Yu Zhao613e7ed2008-11-22 02:41:27 +08002644 if (resno < PCI_ROM_RESOURCE) {
2645 *type = pci_bar_unknown;
2646 return PCI_BASE_ADDRESS_0 + 4 * resno;
2647 } else if (resno == PCI_ROM_RESOURCE) {
2648 *type = pci_bar_mem32;
2649 return dev->rom_base_reg;
Yu Zhaod1b054d2009-03-20 11:25:11 +08002650 } else if (resno < PCI_BRIDGE_RESOURCES) {
2651 /* device specific resource */
2652 reg = pci_iov_resource_bar(dev, resno, type);
2653 if (reg)
2654 return reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +08002655 }
2656
Bjorn Helgaas865df572009-11-04 10:32:57 -07002657 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
Yu Zhao613e7ed2008-11-22 02:41:27 +08002658 return 0;
2659}
2660
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002661/**
2662 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07002663 * @dev: the PCI device
2664 * @decode: true = enable decoding, false = disable decoding
2665 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
2666 * @change_bridge: traverse ancestors and change bridges
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002667 */
2668int pci_set_vga_state(struct pci_dev *dev, bool decode,
2669 unsigned int command_bits, bool change_bridge)
2670{
2671 struct pci_bus *bus;
2672 struct pci_dev *bridge;
2673 u16 cmd;
2674
2675 WARN_ON(command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY));
2676
2677 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2678 if (decode == true)
2679 cmd |= command_bits;
2680 else
2681 cmd &= ~command_bits;
2682 pci_write_config_word(dev, PCI_COMMAND, cmd);
2683
2684 if (change_bridge == false)
2685 return 0;
2686
2687 bus = dev->bus;
2688 while (bus) {
2689 bridge = bus->self;
2690 if (bridge) {
2691 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
2692 &cmd);
2693 if (decode == true)
2694 cmd |= PCI_BRIDGE_CTL_VGA;
2695 else
2696 cmd &= ~PCI_BRIDGE_CTL_VGA;
2697 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
2698 cmd);
2699 }
2700 bus = bus->parent;
2701 }
2702 return 0;
2703}
2704
Yuji Shimada32a9a682009-03-16 17:13:39 +09002705#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
2706static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00002707static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a682009-03-16 17:13:39 +09002708
2709/**
2710 * pci_specified_resource_alignment - get resource alignment specified by user.
2711 * @dev: the PCI device to get
2712 *
2713 * RETURNS: Resource alignment if it is specified.
2714 * Zero if it is not specified.
2715 */
2716resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
2717{
2718 int seg, bus, slot, func, align_order, count;
2719 resource_size_t align = 0;
2720 char *p;
2721
2722 spin_lock(&resource_alignment_lock);
2723 p = resource_alignment_param;
2724 while (*p) {
2725 count = 0;
2726 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
2727 p[count] == '@') {
2728 p += count + 1;
2729 } else {
2730 align_order = -1;
2731 }
2732 if (sscanf(p, "%x:%x:%x.%x%n",
2733 &seg, &bus, &slot, &func, &count) != 4) {
2734 seg = 0;
2735 if (sscanf(p, "%x:%x.%x%n",
2736 &bus, &slot, &func, &count) != 3) {
2737 /* Invalid format */
2738 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
2739 p);
2740 break;
2741 }
2742 }
2743 p += count;
2744 if (seg == pci_domain_nr(dev->bus) &&
2745 bus == dev->bus->number &&
2746 slot == PCI_SLOT(dev->devfn) &&
2747 func == PCI_FUNC(dev->devfn)) {
2748 if (align_order == -1) {
2749 align = PAGE_SIZE;
2750 } else {
2751 align = 1 << align_order;
2752 }
2753 /* Found */
2754 break;
2755 }
2756 if (*p != ';' && *p != ',') {
2757 /* End of param or invalid format */
2758 break;
2759 }
2760 p++;
2761 }
2762 spin_unlock(&resource_alignment_lock);
2763 return align;
2764}
2765
2766/**
2767 * pci_is_reassigndev - check if specified PCI is target device to reassign
2768 * @dev: the PCI device to check
2769 *
2770 * RETURNS: non-zero for PCI device is a target device to reassign,
2771 * or zero is not.
2772 */
2773int pci_is_reassigndev(struct pci_dev *dev)
2774{
2775 return (pci_specified_resource_alignment(dev) != 0);
2776}
2777
2778ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
2779{
2780 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
2781 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
2782 spin_lock(&resource_alignment_lock);
2783 strncpy(resource_alignment_param, buf, count);
2784 resource_alignment_param[count] = '\0';
2785 spin_unlock(&resource_alignment_lock);
2786 return count;
2787}
2788
2789ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
2790{
2791 size_t count;
2792 spin_lock(&resource_alignment_lock);
2793 count = snprintf(buf, size, "%s", resource_alignment_param);
2794 spin_unlock(&resource_alignment_lock);
2795 return count;
2796}
2797
2798static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
2799{
2800 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
2801}
2802
2803static ssize_t pci_resource_alignment_store(struct bus_type *bus,
2804 const char *buf, size_t count)
2805{
2806 return pci_set_resource_alignment_param(buf, count);
2807}
2808
2809BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
2810 pci_resource_alignment_store);
2811
2812static int __init pci_resource_alignment_sysfs_init(void)
2813{
2814 return bus_create_file(&pci_bus_type,
2815 &bus_attr_resource_alignment);
2816}
2817
2818late_initcall(pci_resource_alignment_sysfs_init);
2819
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002820static void __devinit pci_no_domains(void)
2821{
2822#ifdef CONFIG_PCI_DOMAINS
2823 pci_domains_supported = 0;
2824#endif
2825}
2826
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07002827/**
2828 * pci_ext_cfg_enabled - can we access extended PCI config space?
2829 * @dev: The PCI device of the root bridge.
2830 *
2831 * Returns 1 if we can access PCI extended config space (offsets
2832 * greater than 0xff). This is the default implementation. Architecture
2833 * implementations can override this.
2834 */
2835int __attribute__ ((weak)) pci_ext_cfg_avail(struct pci_dev *dev)
2836{
2837 return 1;
2838}
2839
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11002840void __weak pci_fixup_cardbus(struct pci_bus *bus)
2841{
2842}
2843EXPORT_SYMBOL(pci_fixup_cardbus);
2844
Al Viroad04d312008-11-22 17:37:14 +00002845static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 while (str) {
2848 char *k = strchr(str, ',');
2849 if (k)
2850 *k++ = 0;
2851 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002852 if (!strcmp(str, "nomsi")) {
2853 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07002854 } else if (!strcmp(str, "noaer")) {
2855 pci_no_aer();
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002856 } else if (!strcmp(str, "nodomains")) {
2857 pci_no_domains();
Atsushi Nemoto4516a612007-02-05 16:36:06 -08002858 } else if (!strncmp(str, "cbiosize=", 9)) {
2859 pci_cardbus_io_size = memparse(str + 9, &str);
2860 } else if (!strncmp(str, "cbmemsize=", 10)) {
2861 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a682009-03-16 17:13:39 +09002862 } else if (!strncmp(str, "resource_alignment=", 19)) {
2863 pci_set_resource_alignment_param(str + 19,
2864 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06002865 } else if (!strncmp(str, "ecrc=", 5)) {
2866 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07002867 } else if (!strncmp(str, "hpiosize=", 9)) {
2868 pci_hotplug_io_size = memparse(str + 9, &str);
2869 } else if (!strncmp(str, "hpmemsize=", 10)) {
2870 pci_hotplug_mem_size = memparse(str + 10, &str);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002871 } else {
2872 printk(KERN_ERR "PCI: Unknown option `%s'\n",
2873 str);
2874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 }
2876 str = k;
2877 }
Andi Kleen0637a702006-09-26 10:52:41 +02002878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879}
Andi Kleen0637a702006-09-26 10:52:41 +02002880early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Tejun Heo0b62e132007-07-27 14:43:35 +09002882EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11002883EXPORT_SYMBOL(pci_enable_device_io);
2884EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09002886EXPORT_SYMBOL(pcim_enable_device);
2887EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889EXPORT_SYMBOL(pci_find_capability);
2890EXPORT_SYMBOL(pci_bus_find_capability);
2891EXPORT_SYMBOL(pci_release_regions);
2892EXPORT_SYMBOL(pci_request_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002893EXPORT_SYMBOL(pci_request_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894EXPORT_SYMBOL(pci_release_region);
2895EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002896EXPORT_SYMBOL(pci_request_region_exclusive);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002897EXPORT_SYMBOL(pci_release_selected_regions);
2898EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002899EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900EXPORT_SYMBOL(pci_set_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00002901EXPORT_SYMBOL(pci_clear_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07002903EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04002905EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907EXPORT_SYMBOL(pci_set_consistent_dma_mask);
2908EXPORT_SYMBOL(pci_assign_resource);
2909EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002910EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912EXPORT_SYMBOL(pci_set_power_state);
2913EXPORT_SYMBOL(pci_save_state);
2914EXPORT_SYMBOL(pci_restore_state);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002915EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02002916EXPORT_SYMBOL(pci_pme_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002918EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002919EXPORT_SYMBOL(pci_target_state);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002920EXPORT_SYMBOL(pci_prepare_to_sleep);
2921EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05002922EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923