blob: 5723446544fda4de0bdb16d484fff45541e695e5 [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>
Yuji Shimada32a9a682009-03-16 17:13:39 +090022#include <linux/device.h>
23#include <asm/setup.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090024#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alan Stern00240c32009-04-27 13:33:16 -040026const char *pci_power_names[] = {
27 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
28};
29EXPORT_SYMBOL_GPL(pci_power_names);
30
Rafael J. Wysocki93177a72010-01-02 22:57:24 +010031int isa_dma_bridge_buggy;
32EXPORT_SYMBOL(isa_dma_bridge_buggy);
33
34int pci_pci_problems;
35EXPORT_SYMBOL(pci_pci_problems);
36
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010037unsigned int pci_pm_d3_delay;
38
39static void pci_dev_d3_sleep(struct pci_dev *dev)
40{
41 unsigned int delay = dev->d3_delay;
42
43 if (delay < pci_pm_d3_delay)
44 delay = pci_pm_d3_delay;
45
46 msleep(delay);
47}
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jeff Garzik32a2eea2007-10-11 16:57:27 -040049#ifdef CONFIG_PCI_DOMAINS
50int pci_domains_supported = 1;
51#endif
52
Atsushi Nemoto4516a612007-02-05 16:36:06 -080053#define DEFAULT_CARDBUS_IO_SIZE (256)
54#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
55/* pci=cbmemsize=nnM,cbiosize=nn can override this */
56unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
57unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
58
Eric W. Biederman28760482009-09-09 14:09:24 -070059#define DEFAULT_HOTPLUG_IO_SIZE (256)
60#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
61/* pci=hpmemsize=nnM,hpiosize=nn can override this */
62unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
63unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
64
Jesse Barnesac1aa472009-10-26 13:20:44 -070065/*
66 * The default CLS is used if arch didn't set CLS explicitly and not
67 * all pci devices agree on the same value. Arch can override either
68 * the dfl or actual value as it sees fit. Don't forget this is
69 * measured in 32-bit words, not bytes.
70 */
Tejun Heo98e724c2009-10-08 18:59:53 +090071u8 pci_dfl_cache_line_size __devinitdata = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -070072u8 pci_cache_line_size;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**
75 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
76 * @bus: pointer to PCI bus structure to search
77 *
78 * Given a PCI bus, returns the highest PCI bus number present in the set
79 * including the given PCI bus and its list of child PCI buses.
80 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080081unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct list_head *tmp;
84 unsigned char max, n;
85
Kristen Accardib82db5c2006-01-17 16:56:56 -080086 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 list_for_each(tmp, &bus->children) {
88 n = pci_bus_max_busnr(pci_bus_b(tmp));
89 if(n > max)
90 max = n;
91 }
92 return max;
93}
Kristen Accardib82db5c2006-01-17 16:56:56 -080094EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Andrew Morton1684f5d2008-12-01 14:30:30 -080096#ifdef CONFIG_HAS_IOMEM
97void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
98{
99 /*
100 * Make sure the BAR is actually a memory resource, not an IO resource
101 */
102 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
103 WARN_ON(1);
104 return NULL;
105 }
106 return ioremap_nocache(pci_resource_start(pdev, bar),
107 pci_resource_len(pdev, bar));
108}
109EXPORT_SYMBOL_GPL(pci_ioremap_bar);
110#endif
111
Kristen Accardib82db5c2006-01-17 16:56:56 -0800112#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/**
114 * pci_max_busnr - returns maximum PCI bus number
115 *
116 * Returns the highest PCI bus number present in the system global list of
117 * PCI buses.
118 */
119unsigned char __devinit
120pci_max_busnr(void)
121{
122 struct pci_bus *bus = NULL;
123 unsigned char max, n;
124
125 max = 0;
126 while ((bus = pci_find_next_bus(bus)) != NULL) {
127 n = pci_bus_max_busnr(bus);
128 if(n > max)
129 max = n;
130 }
131 return max;
132}
133
Adrian Bunk54c762f2005-12-22 01:08:52 +0100134#endif /* 0 */
135
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100136#define PCI_FIND_CAP_TTL 48
137
138static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
139 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700140{
141 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -0700142
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100143 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700144 pci_bus_read_config_byte(bus, devfn, pos, &pos);
145 if (pos < 0x40)
146 break;
147 pos &= ~3;
148 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
149 &id);
150 if (id == 0xff)
151 break;
152 if (id == cap)
153 return pos;
154 pos += PCI_CAP_LIST_NEXT;
155 }
156 return 0;
157}
158
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100159static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
160 u8 pos, int cap)
161{
162 int ttl = PCI_FIND_CAP_TTL;
163
164 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
165}
166
Roland Dreier24a4e372005-10-28 17:35:34 -0700167int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
168{
169 return __pci_find_next_cap(dev->bus, dev->devfn,
170 pos + PCI_CAP_LIST_NEXT, cap);
171}
172EXPORT_SYMBOL_GPL(pci_find_next_capability);
173
Michael Ellermand3bac112006-11-22 18:26:16 +1100174static int __pci_bus_find_cap_start(struct pci_bus *bus,
175 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
180 if (!(status & PCI_STATUS_CAP_LIST))
181 return 0;
182
183 switch (hdr_type) {
184 case PCI_HEADER_TYPE_NORMAL:
185 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100186 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100188 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 default:
190 return 0;
191 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100192
193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
197 * pci_find_capability - query for devices' capabilities
198 * @dev: PCI device to query
199 * @cap: capability code
200 *
201 * Tell if a device supports a given PCI capability.
202 * Returns the address of the requested capability structure within the
203 * device's PCI configuration space or 0 in case the device does not
204 * support it. Possible values for @cap:
205 *
206 * %PCI_CAP_ID_PM Power Management
207 * %PCI_CAP_ID_AGP Accelerated Graphics Port
208 * %PCI_CAP_ID_VPD Vital Product Data
209 * %PCI_CAP_ID_SLOTID Slot Identification
210 * %PCI_CAP_ID_MSI Message Signalled Interrupts
211 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
212 * %PCI_CAP_ID_PCIX PCI-X
213 * %PCI_CAP_ID_EXP PCI Express
214 */
215int pci_find_capability(struct pci_dev *dev, int cap)
216{
Michael Ellermand3bac112006-11-22 18:26:16 +1100217 int pos;
218
219 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
220 if (pos)
221 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
222
223 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/**
227 * pci_bus_find_capability - query for devices' capabilities
228 * @bus: the PCI bus to query
229 * @devfn: PCI device to query
230 * @cap: capability code
231 *
232 * Like pci_find_capability() but works for pci devices that do not have a
233 * pci_dev structure set up yet.
234 *
235 * Returns the address of the requested capability structure within the
236 * device's PCI configuration space or 0 in case the device does not
237 * support it.
238 */
239int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
240{
Michael Ellermand3bac112006-11-22 18:26:16 +1100241 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 u8 hdr_type;
243
244 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
245
Michael Ellermand3bac112006-11-22 18:26:16 +1100246 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
247 if (pos)
248 pos = __pci_find_next_cap(bus, devfn, pos, cap);
249
250 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
254 * pci_find_ext_capability - Find an extended capability
255 * @dev: PCI device to query
256 * @cap: capability code
257 *
258 * Returns the address of the requested extended capability structure
259 * within the device's PCI configuration space or 0 if the device does
260 * not support it. Possible values for @cap:
261 *
262 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
263 * %PCI_EXT_CAP_ID_VC Virtual Channel
264 * %PCI_EXT_CAP_ID_DSN Device Serial Number
265 * %PCI_EXT_CAP_ID_PWR Power Budgeting
266 */
267int pci_find_ext_capability(struct pci_dev *dev, int cap)
268{
269 u32 header;
Zhao, Yu557848c2008-10-13 19:18:07 +0800270 int ttl;
271 int pos = PCI_CFG_SPACE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Zhao, Yu557848c2008-10-13 19:18:07 +0800273 /* minimum 8 bytes per capability */
274 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
275
276 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278
279 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
280 return 0;
281
282 /*
283 * If we have no capabilities, this is indicated by cap ID,
284 * cap version and next pointer all being 0.
285 */
286 if (header == 0)
287 return 0;
288
289 while (ttl-- > 0) {
290 if (PCI_EXT_CAP_ID(header) == cap)
291 return pos;
292
293 pos = PCI_EXT_CAP_NEXT(header);
Zhao, Yu557848c2008-10-13 19:18:07 +0800294 if (pos < PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296
297 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
298 break;
299 }
300
301 return 0;
302}
Brice Goglin3a720d72006-05-23 06:10:01 -0400303EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100305static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
306{
307 int rc, ttl = PCI_FIND_CAP_TTL;
308 u8 cap, mask;
309
310 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
311 mask = HT_3BIT_CAP_MASK;
312 else
313 mask = HT_5BIT_CAP_MASK;
314
315 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
316 PCI_CAP_ID_HT, &ttl);
317 while (pos) {
318 rc = pci_read_config_byte(dev, pos + 3, &cap);
319 if (rc != PCIBIOS_SUCCESSFUL)
320 return 0;
321
322 if ((cap & mask) == ht_cap)
323 return pos;
324
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800325 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
326 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100327 PCI_CAP_ID_HT, &ttl);
328 }
329
330 return 0;
331}
332/**
333 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
334 * @dev: PCI device to query
335 * @pos: Position from which to continue searching
336 * @ht_cap: Hypertransport capability code
337 *
338 * To be used in conjunction with pci_find_ht_capability() to search for
339 * all capabilities matching @ht_cap. @pos should always be a value returned
340 * from pci_find_ht_capability().
341 *
342 * NB. To be 100% safe against broken PCI devices, the caller should take
343 * steps to avoid an infinite loop.
344 */
345int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
346{
347 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
348}
349EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
350
351/**
352 * pci_find_ht_capability - query a device's Hypertransport capabilities
353 * @dev: PCI device to query
354 * @ht_cap: Hypertransport capability code
355 *
356 * Tell if a device supports a given Hypertransport capability.
357 * Returns an address within the device's PCI configuration space
358 * or 0 in case the device does not support the request capability.
359 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
360 * which has a Hypertransport capability matching @ht_cap.
361 */
362int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
363{
364 int pos;
365
366 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
367 if (pos)
368 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
369
370 return pos;
371}
372EXPORT_SYMBOL_GPL(pci_find_ht_capability);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/**
375 * pci_find_parent_resource - return resource region of parent bus of given region
376 * @dev: PCI device structure contains resources to be searched
377 * @res: child resource record for which parent is sought
378 *
379 * For given resource region of given device, return the resource
380 * region of parent bus the given region is contained in or where
381 * it should be allocated from.
382 */
383struct resource *
384pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
385{
386 const struct pci_bus *bus = dev->bus;
387 int i;
388 struct resource *best = NULL;
389
390 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
391 struct resource *r = bus->resource[i];
392 if (!r)
393 continue;
394 if (res->start && !(res->start >= r->start && res->end <= r->end))
395 continue; /* Not contained */
396 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
397 continue; /* Wrong type */
398 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
399 return r; /* Exact match */
Linus Torvalds8c8def22009-11-09 12:04:32 -0800400 /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
401 if (r->flags & IORESOURCE_PREFETCH)
402 continue;
403 /* .. but we can put a prefetchable resource inside a non-prefetchable one */
404 if (!best)
405 best = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 return best;
408}
409
410/**
John W. Linville064b53d2005-07-27 10:19:44 -0400411 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
412 * @dev: PCI device to have its BARs restored
413 *
414 * Restore the BAR values for a given device, so as to make it
415 * accessible by its driver.
416 */
Adrian Bunkad6685992007-10-27 03:06:22 +0200417static void
John W. Linville064b53d2005-07-27 10:19:44 -0400418pci_restore_bars(struct pci_dev *dev)
419{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800420 int i;
John W. Linville064b53d2005-07-27 10:19:44 -0400421
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800422 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800423 pci_update_resource(dev, i);
John W. Linville064b53d2005-07-27 10:19:44 -0400424}
425
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200426static struct pci_platform_pm_ops *pci_platform_pm;
427
428int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
429{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200430 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
431 || !ops->sleep_wake || !ops->can_wakeup)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200432 return -EINVAL;
433 pci_platform_pm = ops;
434 return 0;
435}
436
437static inline bool platform_pci_power_manageable(struct pci_dev *dev)
438{
439 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
440}
441
442static inline int platform_pci_set_power_state(struct pci_dev *dev,
443 pci_power_t t)
444{
445 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
446}
447
448static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
449{
450 return pci_platform_pm ?
451 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
452}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700453
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200454static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
455{
456 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
457}
458
459static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
460{
461 return pci_platform_pm ?
462 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
463}
464
John W. Linville064b53d2005-07-27 10:19:44 -0400465/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200466 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
467 * given PCI device
468 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200469 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200471 * RETURN VALUE:
472 * -EINVAL if the requested state is invalid.
473 * -EIO if device does not support PCI PM or its PM capabilities register has a
474 * wrong version, or device doesn't support the requested state.
475 * 0 if device already is in the requested state.
476 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100478static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200480 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200481 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100483 /* Check if we're already there */
484 if (dev->current_state == state)
485 return 0;
486
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200487 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700488 return -EIO;
489
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200490 if (state < PCI_D0 || state > PCI_D3hot)
491 return -EINVAL;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /* Validate current state:
494 * Can enter D0 from any state, but if we can only go deeper
495 * to sleep if we're already in a low power state
496 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100497 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200498 && dev->current_state > state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600499 dev_err(&dev->dev, "invalid power transition "
500 "(from state %d to %d)\n", dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200505 if ((state == PCI_D1 && !dev->d1_support)
506 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700507 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200509 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53d2005-07-27 10:19:44 -0400510
John W. Linville32a36582005-09-14 09:52:42 -0400511 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * This doesn't affect PME_Status, disables PME_En, and
513 * sets PowerState to 0.
514 */
John W. Linville32a36582005-09-14 09:52:42 -0400515 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400516 case PCI_D0:
517 case PCI_D1:
518 case PCI_D2:
519 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
520 pmcsr |= state;
521 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200522 case PCI_D3hot:
523 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400524 case PCI_UNKNOWN: /* Boot-up */
525 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100526 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200527 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400528 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400529 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400530 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400531 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533
534 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200535 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* Mandatory power management transition delays */
538 /* see PCI PM 1.1 5.6.1 table 18 */
539 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100540 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100542 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200544 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
545 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
546 if (dev->current_state != state && printk_ratelimit())
547 dev_info(&dev->dev, "Refused to change power state, "
548 "currently in D%d\n", dev->current_state);
John W. Linville064b53d2005-07-27 10:19:44 -0400549
550 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
551 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
552 * from D3hot to D0 _may_ perform an internal reset, thereby
553 * going to "D0 Uninitialized" rather than "D0 Initialized".
554 * For example, at least some versions of the 3c905B and the
555 * 3c556B exhibit this behaviour.
556 *
557 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
558 * devices in a D3hot state at boot. Consequently, we need to
559 * restore at least the BARs so that the device will be
560 * accessible to its driver.
561 */
562 if (need_restore)
563 pci_restore_bars(dev);
564
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100565 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800566 pcie_aspm_pm_state_change(dev->bus->self);
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569}
570
571/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200572 * pci_update_current_state - Read PCI power state of given device from its
573 * PCI PM registers and cache it
574 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100575 * @state: State to cache in case the device doesn't have the PM capability
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200576 */
Rafael J. Wysocki73410422009-01-07 13:07:15 +0100577void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200578{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200579 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200580 u16 pmcsr;
581
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200582 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200583 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100584 } else {
585 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200586 }
587}
588
589/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100590 * pci_platform_power_transition - Use platform to change device power state
591 * @dev: PCI device to handle.
592 * @state: State to put the device into.
593 */
594static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
595{
596 int error;
597
598 if (platform_pci_power_manageable(dev)) {
599 error = platform_pci_set_power_state(dev, state);
600 if (!error)
601 pci_update_current_state(dev, state);
602 } else {
603 error = -ENODEV;
604 /* Fall back to PCI_D0 if native PM is not supported */
Rafael J. Wysockib3bad722009-05-17 20:17:06 +0200605 if (!dev->pm_cap)
606 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100607 }
608
609 return error;
610}
611
612/**
613 * __pci_start_power_transition - Start power transition of a PCI device
614 * @dev: PCI device to handle.
615 * @state: State to put the device into.
616 */
617static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
618{
619 if (state == PCI_D0)
620 pci_platform_power_transition(dev, PCI_D0);
621}
622
623/**
624 * __pci_complete_power_transition - Complete power transition of a PCI device
625 * @dev: PCI device to handle.
626 * @state: State to put the device into.
627 *
628 * This function should not be called directly by device drivers.
629 */
630int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
631{
632 return state > PCI_D0 ?
633 pci_platform_power_transition(dev, state) : -EINVAL;
634}
635EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
636
637/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200638 * pci_set_power_state - Set the power state of a PCI device
639 * @dev: PCI device to handle.
640 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
641 *
Nick Andrew877d0312009-01-26 11:06:57 +0100642 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200643 * the device's PCI PM registers.
644 *
645 * RETURN VALUE:
646 * -EINVAL if the requested state is invalid.
647 * -EIO if device does not support PCI PM or its PM capabilities register has a
648 * wrong version, or device doesn't support the requested state.
649 * 0 if device already is in the requested state.
650 * 0 if device's power state has been successfully changed.
651 */
652int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
653{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200654 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200655
656 /* bound the state we're entering */
657 if (state > PCI_D3hot)
658 state = PCI_D3hot;
659 else if (state < PCI_D0)
660 state = PCI_D0;
661 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
662 /*
663 * If the device or the parent bridge do not support PCI PM,
664 * ignore the request if we're doing anything other than putting
665 * it into D0 (which would only happen on boot).
666 */
667 return 0;
668
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100669 /* Check if we're already there */
670 if (dev->current_state == state)
671 return 0;
672
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100673 __pci_start_power_transition(dev, state);
674
Alan Cox979b1792008-07-24 17:18:38 +0100675 /* This device is quirked not to be put into D3, so
676 don't put it in D3 */
677 if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
678 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200679
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100680 error = pci_raw_set_power_state(dev, state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200681
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100682 if (!__pci_complete_power_transition(dev, state))
683 error = 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200684
685 return error;
686}
687
688/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * pci_choose_state - Choose the power state of a PCI device
690 * @dev: PCI device to be suspended
691 * @state: target sleep state for the whole system. This is the value
692 * that is passed to suspend() function.
693 *
694 * Returns PCI power state suitable for given device and given system
695 * message.
696 */
697
698pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
699{
Shaohua Liab826ca2007-07-20 10:03:22 +0800700 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
703 return PCI_D0;
704
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200705 ret = platform_pci_choose_state(dev);
706 if (ret != PCI_POWER_ERROR)
707 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700708
709 switch (state.event) {
710 case PM_EVENT_ON:
711 return PCI_D0;
712 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700713 case PM_EVENT_PRETHAW:
714 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700715 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100716 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700717 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600719 dev_info(&dev->dev, "unrecognized suspend event %d\n",
720 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 BUG();
722 }
723 return PCI_D0;
724}
725
726EXPORT_SYMBOL(pci_choose_state);
727
Yu Zhao89858512009-02-16 02:55:47 +0800728#define PCI_EXP_SAVE_REGS 7
729
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800730#define pcie_cap_has_devctl(type, flags) 1
731#define pcie_cap_has_lnkctl(type, flags) \
732 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
733 (type == PCI_EXP_TYPE_ROOT_PORT || \
734 type == PCI_EXP_TYPE_ENDPOINT || \
735 type == PCI_EXP_TYPE_LEG_END))
736#define pcie_cap_has_sltctl(type, flags) \
737 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
738 ((type == PCI_EXP_TYPE_ROOT_PORT) || \
739 (type == PCI_EXP_TYPE_DOWNSTREAM && \
740 (flags & PCI_EXP_FLAGS_SLOT))))
741#define pcie_cap_has_rtctl(type, flags) \
742 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
743 (type == PCI_EXP_TYPE_ROOT_PORT || \
744 type == PCI_EXP_TYPE_RC_EC))
745#define pcie_cap_has_devctl2(type, flags) \
746 ((flags & PCI_EXP_FLAGS_VERS) > 1)
747#define pcie_cap_has_lnkctl2(type, flags) \
748 ((flags & PCI_EXP_FLAGS_VERS) > 1)
749#define pcie_cap_has_sltctl2(type, flags) \
750 ((flags & PCI_EXP_FLAGS_VERS) > 1)
751
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300752static int pci_save_pcie_state(struct pci_dev *dev)
753{
754 int pos, i = 0;
755 struct pci_cap_saved_state *save_state;
756 u16 *cap;
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800757 u16 flags;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300758
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +0900759 pos = pci_pcie_cap(dev);
760 if (!pos)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300761 return 0;
762
Eric W. Biederman9f355752007-03-08 13:06:13 -0700763 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300764 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800765 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300766 return -ENOMEM;
767 }
768 cap = (u16 *)&save_state->data[0];
769
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800770 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
771
772 if (pcie_cap_has_devctl(dev->pcie_type, flags))
773 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
774 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
775 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
776 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
777 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
778 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
779 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
780 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
781 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]);
782 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
783 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]);
784 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
785 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100786
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300787 return 0;
788}
789
790static void pci_restore_pcie_state(struct pci_dev *dev)
791{
792 int i = 0, pos;
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
797 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
798 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
799 if (!save_state || pos <= 0)
800 return;
801 cap = (u16 *)&save_state->data[0];
802
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800803 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
804
805 if (pcie_cap_has_devctl(dev->pcie_type, flags))
806 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
807 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
808 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
809 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
810 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
811 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
812 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
813 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
814 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]);
815 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
816 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]);
817 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
818 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300819}
820
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800821
822static int pci_save_pcix_state(struct pci_dev *dev)
823{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100824 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800825 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800826
827 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
828 if (pos <= 0)
829 return 0;
830
Shaohua Lif34303d2007-12-18 09:56:47 +0800831 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800832 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800833 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800834 return -ENOMEM;
835 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800836
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100837 pci_read_config_word(dev, pos + PCI_X_CMD, (u16 *)save_state->data);
838
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800839 return 0;
840}
841
842static void pci_restore_pcix_state(struct pci_dev *dev)
843{
844 int i = 0, pos;
845 struct pci_cap_saved_state *save_state;
846 u16 *cap;
847
848 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
849 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
850 if (!save_state || pos <= 0)
851 return;
852 cap = (u16 *)&save_state->data[0];
853
854 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800855}
856
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858/**
859 * pci_save_state - save the PCI configuration space of a device before suspending
860 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
862int
863pci_save_state(struct pci_dev *dev)
864{
865 int i;
866 /* XXX: 100% dword access ok here? */
867 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -0200868 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100869 dev->state_saved = true;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300870 if ((i = pci_save_pcie_state(dev)) != 0)
871 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800872 if ((i = pci_save_pcix_state(dev)) != 0)
873 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0;
875}
876
877/**
878 * pci_restore_state - Restore the saved state of a PCI device
879 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 */
881int
882pci_restore_state(struct pci_dev *dev)
883{
884 int i;
Al Virob4482a42007-10-14 19:35:40 +0100885 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Alek Duc82f63e2009-08-08 08:46:19 +0800887 if (!dev->state_saved)
888 return 0;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200889
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300890 /* PCI Express register must be restored first */
891 pci_restore_pcie_state(dev);
892
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700893 /*
894 * The Base Address register should be programmed before the command
895 * register(s)
896 */
897 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700898 pci_read_config_dword(dev, i * 4, &val);
899 if (val != dev->saved_config_space[i]) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600900 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
901 "space at offset %#x (was %#x, writing %#x)\n",
902 i, val, (int)dev->saved_config_space[i]);
Dave Jones04d9c1a2006-04-18 21:06:51 -0700903 pci_write_config_dword(dev,i * 4,
904 dev->saved_config_space[i]);
905 }
906 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800907 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800908 pci_restore_msi_state(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800909 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100910
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200911 dev->state_saved = false;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return 0;
914}
915
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900916static int do_pci_enable_device(struct pci_dev *dev, int bars)
917{
918 int err;
919
920 err = pci_set_power_state(dev, PCI_D0);
921 if (err < 0 && err != -EIO)
922 return err;
923 err = pcibios_enable_device(dev, bars);
924 if (err < 0)
925 return err;
926 pci_fixup_device(pci_fixup_enable, dev);
927
928 return 0;
929}
930
931/**
Tejun Heo0b62e132007-07-27 14:43:35 +0900932 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900933 * @dev: PCI device to be resumed
934 *
935 * Note this function is a backend of pci_default_resume and is not supposed
936 * to be called by normal code, write proper resume handler and use it instead.
937 */
Tejun Heo0b62e132007-07-27 14:43:35 +0900938int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900939{
Yuji Shimada296ccb02009-04-03 16:41:46 +0900940 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900941 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
942 return 0;
943}
944
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100945static int __pci_enable_device_flags(struct pci_dev *dev,
946 resource_size_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100949 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900951 if (atomic_add_return(1, &dev->enable_cnt) > 1)
952 return 0; /* already enabled */
953
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100954 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
955 if (dev->resource[i].flags & flags)
956 bars |= (1 << i);
957
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900958 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700959 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900960 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900961 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100965 * pci_enable_device_io - Initialize a device for use with IO space
966 * @dev: PCI device to be initialized
967 *
968 * Initialize device before it's used by a driver. Ask low-level code
969 * to enable I/O resources. Wake up the device if it was suspended.
970 * Beware, this function can fail.
971 */
972int pci_enable_device_io(struct pci_dev *dev)
973{
974 return __pci_enable_device_flags(dev, IORESOURCE_IO);
975}
976
977/**
978 * pci_enable_device_mem - Initialize a device for use with Memory space
979 * @dev: PCI device to be initialized
980 *
981 * Initialize device before it's used by a driver. Ask low-level code
982 * to enable Memory resources. Wake up the device if it was suspended.
983 * Beware, this function can fail.
984 */
985int pci_enable_device_mem(struct pci_dev *dev)
986{
987 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
991 * pci_enable_device - Initialize device before it's used by a driver.
992 * @dev: PCI device to be initialized
993 *
994 * Initialize device before it's used by a driver. Ask low-level code
995 * to enable I/O and memory. Wake up the device if it was suspended.
996 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800997 *
998 * Note we don't actually enable the device many times if we call
999 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001001int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001003 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Tejun Heo9ac78492007-01-20 16:00:26 +09001006/*
1007 * Managed PCI resources. This manages device on/off, intx/msi/msix
1008 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1009 * there's no need to track it separately. pci_devres is initialized
1010 * when a device is enabled using managed PCI device enable interface.
1011 */
1012struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001013 unsigned int enabled:1;
1014 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001015 unsigned int orig_intx:1;
1016 unsigned int restore_intx:1;
1017 u32 region_mask;
1018};
1019
1020static void pcim_release(struct device *gendev, void *res)
1021{
1022 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1023 struct pci_devres *this = res;
1024 int i;
1025
1026 if (dev->msi_enabled)
1027 pci_disable_msi(dev);
1028 if (dev->msix_enabled)
1029 pci_disable_msix(dev);
1030
1031 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1032 if (this->region_mask & (1 << i))
1033 pci_release_region(dev, i);
1034
1035 if (this->restore_intx)
1036 pci_intx(dev, this->orig_intx);
1037
Tejun Heo7f375f32007-02-25 04:36:01 -08001038 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001039 pci_disable_device(dev);
1040}
1041
1042static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
1043{
1044 struct pci_devres *dr, *new_dr;
1045
1046 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1047 if (dr)
1048 return dr;
1049
1050 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1051 if (!new_dr)
1052 return NULL;
1053 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1054}
1055
1056static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
1057{
1058 if (pci_is_managed(pdev))
1059 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1060 return NULL;
1061}
1062
1063/**
1064 * pcim_enable_device - Managed pci_enable_device()
1065 * @pdev: PCI device to be initialized
1066 *
1067 * Managed pci_enable_device().
1068 */
1069int pcim_enable_device(struct pci_dev *pdev)
1070{
1071 struct pci_devres *dr;
1072 int rc;
1073
1074 dr = get_pci_dr(pdev);
1075 if (unlikely(!dr))
1076 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001077 if (dr->enabled)
1078 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001079
1080 rc = pci_enable_device(pdev);
1081 if (!rc) {
1082 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001083 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001084 }
1085 return rc;
1086}
1087
1088/**
1089 * pcim_pin_device - Pin managed PCI device
1090 * @pdev: PCI device to pin
1091 *
1092 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1093 * driver detach. @pdev must have been enabled with
1094 * pcim_enable_device().
1095 */
1096void pcim_pin_device(struct pci_dev *pdev)
1097{
1098 struct pci_devres *dr;
1099
1100 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001101 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001102 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001103 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001104}
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/**
1107 * pcibios_disable_device - disable arch specific PCI resources for device dev
1108 * @dev: the PCI device to disable
1109 *
1110 * Disables architecture specific PCI resources for the device. This
1111 * is the default implementation. Architecture implementations can
1112 * override this.
1113 */
1114void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
1115
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001116static void do_pci_disable_device(struct pci_dev *dev)
1117{
1118 u16 pci_command;
1119
1120 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1121 if (pci_command & PCI_COMMAND_MASTER) {
1122 pci_command &= ~PCI_COMMAND_MASTER;
1123 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1124 }
1125
1126 pcibios_disable_device(dev);
1127}
1128
1129/**
1130 * pci_disable_enabled_device - Disable device without updating enable_cnt
1131 * @dev: PCI device to disable
1132 *
1133 * NOTE: This function is a backend of PCI power management routines and is
1134 * not supposed to be called drivers.
1135 */
1136void pci_disable_enabled_device(struct pci_dev *dev)
1137{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001138 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001139 do_pci_disable_device(dev);
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/**
1143 * pci_disable_device - Disable PCI device after use
1144 * @dev: PCI device to be disabled
1145 *
1146 * Signal to the system that the PCI device is not in use by the system
1147 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001148 *
1149 * Note we don't actually disable the device until all callers of
1150 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 */
1152void
1153pci_disable_device(struct pci_dev *dev)
1154{
Tejun Heo9ac78492007-01-20 16:00:26 +09001155 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001156
Tejun Heo9ac78492007-01-20 16:00:26 +09001157 dr = find_pci_dr(dev);
1158 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001159 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001160
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001161 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
1162 return;
1163
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001164 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001166 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
1169/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001170 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001171 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001172 * @state: Reset state to enter into
1173 *
1174 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001175 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001176 * implementation. Architecture implementations can override this.
1177 */
1178int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1179 enum pcie_reset_state state)
1180{
1181 return -EINVAL;
1182}
1183
1184/**
1185 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001186 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001187 * @state: Reset state to enter into
1188 *
1189 *
1190 * Sets the PCI reset state for the device.
1191 */
1192int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1193{
1194 return pcibios_set_pcie_reset_state(dev, state);
1195}
1196
1197/**
Rafael J. Wysocki58ff4632010-02-17 23:36:58 +01001198 * pci_check_pme_status - Check if given device has generated PME.
1199 * @dev: Device to check.
1200 *
1201 * Check the PME status of the device and if set, clear it and clear PME enable
1202 * (if set). Return 'true' if PME status and PME enable were both set or
1203 * 'false' otherwise.
1204 */
1205bool pci_check_pme_status(struct pci_dev *dev)
1206{
1207 int pmcsr_pos;
1208 u16 pmcsr;
1209 bool ret = false;
1210
1211 if (!dev->pm_cap)
1212 return false;
1213
1214 pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
1215 pci_read_config_word(dev, pmcsr_pos, &pmcsr);
1216 if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
1217 return false;
1218
1219 /* Clear PME status. */
1220 pmcsr |= PCI_PM_CTRL_PME_STATUS;
1221 if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
1222 /* Disable PME to avoid interrupt flood. */
1223 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1224 ret = true;
1225 }
1226
1227 pci_write_config_word(dev, pmcsr_pos, pmcsr);
1228
1229 return ret;
1230}
1231
1232/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001233 * pci_pme_capable - check the capability of PCI device to generate PME#
1234 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001235 * @state: PCI state from which device will issue PME#.
1236 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001237bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001238{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001239 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001240 return false;
1241
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001242 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001243}
1244
1245/**
1246 * pci_pme_active - enable or disable PCI device's PME# function
1247 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001248 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1249 *
1250 * The caller must verify that the device is capable of generating PME# before
1251 * calling this function with @enable equal to 'true'.
1252 */
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02001253void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001254{
1255 u16 pmcsr;
1256
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001257 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001258 return;
1259
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001260 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001261 /* Clear PME_Status by writing 1 to it and enable PME# */
1262 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1263 if (!enable)
1264 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1265
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001266 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001267
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001268 dev_printk(KERN_DEBUG, &dev->dev, "PME# %s\n",
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001269 enable ? "enabled" : "disabled");
1270}
1271
1272/**
David Brownell075c1772007-04-26 00:12:06 -07001273 * pci_enable_wake - enable PCI device as wakeup event source
1274 * @dev: PCI device affected
1275 * @state: PCI state from which device will issue wakeup events
1276 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 *
David Brownell075c1772007-04-26 00:12:06 -07001278 * This enables the device as a wakeup event source, or disables it.
1279 * When such events involves platform-specific hooks, those hooks are
1280 * called automatically by this routine.
1281 *
1282 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001283 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001284 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001285 * RETURN VALUE:
1286 * 0 is returned on success
1287 * -EINVAL is returned if device is not supposed to wake up the system
1288 * Error code depending on the platform is returned if both the platform and
1289 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 */
Frans Pop7d9a73f2009-06-17 00:16:15 +02001291int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001293 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Alan Sternbebd5902008-12-16 14:06:58 -05001295 if (enable && !device_may_wakeup(&dev->dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001296 return -EINVAL;
1297
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001298 /* Don't do the same thing twice in a row for one device. */
1299 if (!!enable == !!dev->wakeup_prepared)
1300 return 0;
1301
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001302 /*
1303 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1304 * Anderson we should be doing PME# wake enable followed by ACPI wake
1305 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001306 */
1307
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001308 if (enable) {
1309 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001310
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001311 if (pci_pme_capable(dev, state))
1312 pci_pme_active(dev, true);
1313 else
1314 ret = 1;
1315 error = platform_pci_sleep_wake(dev, true);
1316 if (ret)
1317 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001318 if (!ret)
1319 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001320 } else {
1321 platform_pci_sleep_wake(dev, false);
1322 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001323 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001324 }
1325
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001326 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001327}
1328
1329/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001330 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1331 * @dev: PCI device to prepare
1332 * @enable: True to enable wake-up event generation; false to disable
1333 *
1334 * Many drivers want the device to wake up the system from D3_hot or D3_cold
1335 * and this function allows them to set that up cleanly - pci_enable_wake()
1336 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1337 * ordering constraints.
1338 *
1339 * This function only returns error code if the device is not capable of
1340 * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1341 * enable wake-up power for it.
1342 */
1343int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1344{
1345 return pci_pme_capable(dev, PCI_D3cold) ?
1346 pci_enable_wake(dev, PCI_D3cold, enable) :
1347 pci_enable_wake(dev, PCI_D3hot, enable);
1348}
1349
1350/**
Jesse Barnes37139072008-07-28 11:49:26 -07001351 * pci_target_state - find an appropriate low power state for a given PCI dev
1352 * @dev: PCI device
1353 *
1354 * Use underlying platform code to find a supported low power state for @dev.
1355 * If the platform can't manage @dev, return the deepest state from which it
1356 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001357 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001358pci_power_t pci_target_state(struct pci_dev *dev)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001359{
1360 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001361
1362 if (platform_pci_power_manageable(dev)) {
1363 /*
1364 * Call the platform to choose the target state of the device
1365 * and enable wake-up from this state if supported.
1366 */
1367 pci_power_t state = platform_pci_choose_state(dev);
1368
1369 switch (state) {
1370 case PCI_POWER_ERROR:
1371 case PCI_UNKNOWN:
1372 break;
1373 case PCI_D1:
1374 case PCI_D2:
1375 if (pci_no_d1d2(dev))
1376 break;
1377 default:
1378 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001379 }
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02001380 } else if (!dev->pm_cap) {
1381 target_state = PCI_D0;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001382 } else if (device_may_wakeup(&dev->dev)) {
1383 /*
1384 * Find the deepest state from which the device can generate
1385 * wake-up events, make it the target state and enable device
1386 * to generate PME#.
1387 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001388 if (dev->pme_support) {
1389 while (target_state
1390 && !(dev->pme_support & (1 << target_state)))
1391 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001392 }
1393 }
1394
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001395 return target_state;
1396}
1397
1398/**
1399 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1400 * @dev: Device to handle.
1401 *
1402 * Choose the power state appropriate for the device depending on whether
1403 * it can wake up the system and/or is power manageable by the platform
1404 * (PCI_D3hot is the default) and put the device into that state.
1405 */
1406int pci_prepare_to_sleep(struct pci_dev *dev)
1407{
1408 pci_power_t target_state = pci_target_state(dev);
1409 int error;
1410
1411 if (target_state == PCI_POWER_ERROR)
1412 return -EIO;
1413
Rafael J. Wysocki8efb8c72009-03-30 21:46:27 +02001414 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001415
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001416 error = pci_set_power_state(dev, target_state);
1417
1418 if (error)
1419 pci_enable_wake(dev, target_state, false);
1420
1421 return error;
1422}
1423
1424/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07001425 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001426 * @dev: Device to handle.
1427 *
1428 * Disable device's sytem wake-up capability and put it into D0.
1429 */
1430int pci_back_from_sleep(struct pci_dev *dev)
1431{
1432 pci_enable_wake(dev, PCI_D0, false);
1433 return pci_set_power_state(dev, PCI_D0);
1434}
1435
1436/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001437 * pci_pm_init - Initialize PM functions of given PCI device
1438 * @dev: PCI device to handle.
1439 */
1440void pci_pm_init(struct pci_dev *dev)
1441{
1442 int pm;
1443 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001444
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001445 dev->wakeup_prepared = false;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001446 dev->pm_cap = 0;
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 /* find PCI PM capability in list */
1449 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001450 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08001451 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001453 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001455 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1456 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1457 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08001458 return;
David Brownell075c1772007-04-26 00:12:06 -07001459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001461 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01001462 dev->d3_delay = PCI_PM_D3_WAIT;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001463
1464 dev->d1_support = false;
1465 dev->d2_support = false;
1466 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001467 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001468 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001469 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001470 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001471
1472 if (dev->d1_support || dev->d2_support)
1473 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07001474 dev->d1_support ? " D1" : "",
1475 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001476 }
1477
1478 pmc &= PCI_PM_CAP_PME_MASK;
1479 if (pmc) {
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001480 dev_printk(KERN_DEBUG, &dev->dev,
1481 "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001482 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1483 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1484 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1485 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1486 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001487 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001488 /*
1489 * Make device's PM flags reflect the wake-up capability, but
1490 * let the user space enable it to wake up the system as needed.
1491 */
1492 device_set_wakeup_capable(&dev->dev, true);
1493 device_set_wakeup_enable(&dev->dev, false);
1494 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001495 pci_pme_active(dev, false);
1496 } else {
1497 dev->pme_support = 0;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Yu Zhao58c3a722008-10-14 14:02:53 +08001501/**
Jesse Barneseb9c39d2008-12-17 12:10:05 -08001502 * platform_pci_wakeup_init - init platform wakeup if present
1503 * @dev: PCI device
1504 *
1505 * Some devices don't have PCI PM caps but can still generate wakeup
1506 * events through platform methods (like ACPI events). If @dev supports
1507 * platform wakeup events, set the device flag to indicate as much. This
1508 * may be redundant if the device also supports PCI PM caps, but double
1509 * initialization should be safe in that case.
1510 */
1511void platform_pci_wakeup_init(struct pci_dev *dev)
1512{
1513 if (!platform_pci_can_wakeup(dev))
1514 return;
1515
1516 device_set_wakeup_capable(&dev->dev, true);
1517 device_set_wakeup_enable(&dev->dev, false);
1518 platform_pci_sleep_wake(dev, false);
1519}
1520
1521/**
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001522 * pci_add_save_buffer - allocate buffer for saving given capability registers
1523 * @dev: the PCI device
1524 * @cap: the capability to allocate the buffer for
1525 * @size: requested size of the buffer
1526 */
1527static int pci_add_cap_save_buffer(
1528 struct pci_dev *dev, char cap, unsigned int size)
1529{
1530 int pos;
1531 struct pci_cap_saved_state *save_state;
1532
1533 pos = pci_find_capability(dev, cap);
1534 if (pos <= 0)
1535 return 0;
1536
1537 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
1538 if (!save_state)
1539 return -ENOMEM;
1540
1541 save_state->cap_nr = cap;
1542 pci_add_saved_cap(dev, save_state);
1543
1544 return 0;
1545}
1546
1547/**
1548 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
1549 * @dev: the PCI device
1550 */
1551void pci_allocate_cap_save_buffers(struct pci_dev *dev)
1552{
1553 int error;
1554
Yu Zhao89858512009-02-16 02:55:47 +08001555 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
1556 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001557 if (error)
1558 dev_err(&dev->dev,
1559 "unable to preallocate PCI Express save buffer\n");
1560
1561 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
1562 if (error)
1563 dev_err(&dev->dev,
1564 "unable to preallocate PCI-X save buffer\n");
1565}
1566
1567/**
Yu Zhao58c3a722008-10-14 14:02:53 +08001568 * pci_enable_ari - enable ARI forwarding if hardware support it
1569 * @dev: the PCI device
1570 */
1571void pci_enable_ari(struct pci_dev *dev)
1572{
1573 int pos;
1574 u32 cap;
1575 u16 ctrl;
Zhao, Yu81135872008-10-23 13:15:39 +08001576 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08001577
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001578 if (!pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08001579 return;
1580
Zhao, Yu81135872008-10-23 13:15:39 +08001581 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
Yu Zhao58c3a722008-10-14 14:02:53 +08001582 if (!pos)
1583 return;
1584
Zhao, Yu81135872008-10-23 13:15:39 +08001585 bridge = dev->bus->self;
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001586 if (!bridge || !pci_is_pcie(bridge))
Zhao, Yu81135872008-10-23 13:15:39 +08001587 return;
1588
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09001589 pos = pci_pcie_cap(bridge);
Zhao, Yu81135872008-10-23 13:15:39 +08001590 if (!pos)
1591 return;
1592
1593 pci_read_config_dword(bridge, pos + PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08001594 if (!(cap & PCI_EXP_DEVCAP2_ARI))
1595 return;
1596
Zhao, Yu81135872008-10-23 13:15:39 +08001597 pci_read_config_word(bridge, pos + PCI_EXP_DEVCTL2, &ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001598 ctrl |= PCI_EXP_DEVCTL2_ARI;
Zhao, Yu81135872008-10-23 13:15:39 +08001599 pci_write_config_word(bridge, pos + PCI_EXP_DEVCTL2, ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001600
Zhao, Yu81135872008-10-23 13:15:39 +08001601 bridge->ari_enabled = 1;
Yu Zhao58c3a722008-10-14 14:02:53 +08001602}
1603
Chris Wright5d990b62009-12-04 12:15:21 -08001604static int pci_acs_enable;
1605
1606/**
1607 * pci_request_acs - ask for ACS to be enabled if supported
1608 */
1609void pci_request_acs(void)
1610{
1611 pci_acs_enable = 1;
1612}
1613
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001614/**
Allen Kayae21ee62009-10-07 10:27:17 -07001615 * pci_enable_acs - enable ACS if hardware support it
1616 * @dev: the PCI device
1617 */
1618void pci_enable_acs(struct pci_dev *dev)
1619{
1620 int pos;
1621 u16 cap;
1622 u16 ctrl;
1623
Chris Wright5d990b62009-12-04 12:15:21 -08001624 if (!pci_acs_enable)
1625 return;
1626
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001627 if (!pci_is_pcie(dev))
Allen Kayae21ee62009-10-07 10:27:17 -07001628 return;
1629
1630 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
1631 if (!pos)
1632 return;
1633
1634 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
1635 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
1636
1637 /* Source Validation */
1638 ctrl |= (cap & PCI_ACS_SV);
1639
1640 /* P2P Request Redirect */
1641 ctrl |= (cap & PCI_ACS_RR);
1642
1643 /* P2P Completion Redirect */
1644 ctrl |= (cap & PCI_ACS_CR);
1645
1646 /* Upstream Forwarding */
1647 ctrl |= (cap & PCI_ACS_UF);
1648
1649 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
1650}
1651
1652/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001653 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
1654 * @dev: the PCI device
1655 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1656 *
1657 * Perform INTx swizzling for a device behind one level of bridge. This is
1658 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001659 * behind bridges on add-in cards. For devices with ARI enabled, the slot
1660 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
1661 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001662 */
1663u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin)
1664{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001665 int slot;
1666
1667 if (pci_ari_enabled(dev->bus))
1668 slot = 0;
1669 else
1670 slot = PCI_SLOT(dev->devfn);
1671
1672 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001673}
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675int
1676pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1677{
1678 u8 pin;
1679
Kristen Accardi514d2072005-11-02 16:24:39 -08001680 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (!pin)
1682 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07001683
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09001684 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001685 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 dev = dev->bus->self;
1687 }
1688 *bridge = dev;
1689 return pin;
1690}
1691
1692/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001693 * pci_common_swizzle - swizzle INTx all the way to root bridge
1694 * @dev: the PCI device
1695 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1696 *
1697 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
1698 * bridges all the way up to a PCI root bus.
1699 */
1700u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
1701{
1702 u8 pin = *pinp;
1703
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09001704 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001705 pin = pci_swizzle_interrupt_pin(dev, pin);
1706 dev = dev->bus->self;
1707 }
1708 *pinp = pin;
1709 return PCI_SLOT(dev->devfn);
1710}
1711
1712/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 * pci_release_region - Release a PCI bar
1714 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1715 * @bar: BAR to release
1716 *
1717 * Releases the PCI I/O and memory resources previously reserved by a
1718 * successful call to pci_request_region. Call this function only
1719 * after all use of the PCI regions has ceased.
1720 */
1721void pci_release_region(struct pci_dev *pdev, int bar)
1722{
Tejun Heo9ac78492007-01-20 16:00:26 +09001723 struct pci_devres *dr;
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (pci_resource_len(pdev, bar) == 0)
1726 return;
1727 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1728 release_region(pci_resource_start(pdev, bar),
1729 pci_resource_len(pdev, bar));
1730 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1731 release_mem_region(pci_resource_start(pdev, bar),
1732 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09001733
1734 dr = find_pci_dr(pdev);
1735 if (dr)
1736 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
1739/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001740 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 * @pdev: PCI device whose resources are to be reserved
1742 * @bar: BAR to be reserved
1743 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001744 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
1746 * Mark the PCI region associated with PCI device @pdev BR @bar as
1747 * being reserved by owner @res_name. Do not access any
1748 * address inside the PCI regions unless this call returns
1749 * successfully.
1750 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001751 * If @exclusive is set, then the region is marked so that userspace
1752 * is explicitly not allowed to map the resource via /dev/mem or
1753 * sysfs MMIO access.
1754 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 * Returns 0 on success, or %EBUSY on error. A warning
1756 * message is also printed on failure.
1757 */
Arjan van de Vene8de1482008-10-22 19:55:31 -07001758static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
1759 int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Tejun Heo9ac78492007-01-20 16:00:26 +09001761 struct pci_devres *dr;
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (pci_resource_len(pdev, bar) == 0)
1764 return 0;
1765
1766 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1767 if (!request_region(pci_resource_start(pdev, bar),
1768 pci_resource_len(pdev, bar), res_name))
1769 goto err_out;
1770 }
1771 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001772 if (!__request_mem_region(pci_resource_start(pdev, bar),
1773 pci_resource_len(pdev, bar), res_name,
1774 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 goto err_out;
1776 }
Tejun Heo9ac78492007-01-20 16:00:26 +09001777
1778 dr = find_pci_dr(pdev);
1779 if (dr)
1780 dr->region_mask |= 1 << bar;
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
1783
1784err_out:
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001785 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11001786 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 return -EBUSY;
1788}
1789
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001790/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001791 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001792 * @pdev: PCI device whose resources are to be reserved
1793 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001794 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001795 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001796 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07001797 * being reserved by owner @res_name. Do not access any
1798 * address inside the PCI regions unless this call returns
1799 * successfully.
1800 *
1801 * Returns 0 on success, or %EBUSY on error. A warning
1802 * message is also printed on failure.
1803 */
1804int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
1805{
1806 return __pci_request_region(pdev, bar, res_name, 0);
1807}
1808
1809/**
1810 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
1811 * @pdev: PCI device whose resources are to be reserved
1812 * @bar: BAR to be reserved
1813 * @res_name: Name to be associated with resource.
1814 *
1815 * Mark the PCI region associated with PCI device @pdev BR @bar as
1816 * being reserved by owner @res_name. Do not access any
1817 * address inside the PCI regions unless this call returns
1818 * successfully.
1819 *
1820 * Returns 0 on success, or %EBUSY on error. A warning
1821 * message is also printed on failure.
1822 *
1823 * The key difference that _exclusive makes it that userspace is
1824 * explicitly not allowed to map the resource via /dev/mem or
1825 * sysfs.
1826 */
1827int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
1828{
1829 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
1830}
1831/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001832 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1833 * @pdev: PCI device whose resources were previously reserved
1834 * @bars: Bitmask of BARs to be released
1835 *
1836 * Release selected PCI I/O and memory resources previously reserved.
1837 * Call this function only after all use of the PCI regions has ceased.
1838 */
1839void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1840{
1841 int i;
1842
1843 for (i = 0; i < 6; i++)
1844 if (bars & (1 << i))
1845 pci_release_region(pdev, i);
1846}
1847
Arjan van de Vene8de1482008-10-22 19:55:31 -07001848int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
1849 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001850{
1851 int i;
1852
1853 for (i = 0; i < 6; i++)
1854 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07001855 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001856 goto err_out;
1857 return 0;
1858
1859err_out:
1860 while(--i >= 0)
1861 if (bars & (1 << i))
1862 pci_release_region(pdev, i);
1863
1864 return -EBUSY;
1865}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Arjan van de Vene8de1482008-10-22 19:55:31 -07001867
1868/**
1869 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1870 * @pdev: PCI device whose resources are to be reserved
1871 * @bars: Bitmask of BARs to be requested
1872 * @res_name: Name to be associated with resource
1873 */
1874int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1875 const char *res_name)
1876{
1877 return __pci_request_selected_regions(pdev, bars, res_name, 0);
1878}
1879
1880int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
1881 int bars, const char *res_name)
1882{
1883 return __pci_request_selected_regions(pdev, bars, res_name,
1884 IORESOURCE_EXCLUSIVE);
1885}
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887/**
1888 * pci_release_regions - Release reserved PCI I/O and memory resources
1889 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1890 *
1891 * Releases all PCI I/O and memory resources previously reserved by a
1892 * successful call to pci_request_regions. Call this function only
1893 * after all use of the PCI regions has ceased.
1894 */
1895
1896void pci_release_regions(struct pci_dev *pdev)
1897{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001898 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
1901/**
1902 * pci_request_regions - Reserved PCI I/O and memory resources
1903 * @pdev: PCI device whose resources are to be reserved
1904 * @res_name: Name to be associated with resource.
1905 *
1906 * Mark all PCI regions associated with PCI device @pdev as
1907 * being reserved by owner @res_name. Do not access any
1908 * address inside the PCI regions unless this call returns
1909 * successfully.
1910 *
1911 * Returns 0 on success, or %EBUSY on error. A warning
1912 * message is also printed on failure.
1913 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001914int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001916 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
1919/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07001920 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
1921 * @pdev: PCI device whose resources are to be reserved
1922 * @res_name: Name to be associated with resource.
1923 *
1924 * Mark all PCI regions associated with PCI device @pdev as
1925 * being reserved by owner @res_name. Do not access any
1926 * address inside the PCI regions unless this call returns
1927 * successfully.
1928 *
1929 * pci_request_regions_exclusive() will mark the region so that
1930 * /dev/mem and the sysfs MMIO access will not be allowed.
1931 *
1932 * Returns 0 on success, or %EBUSY on error. A warning
1933 * message is also printed on failure.
1934 */
1935int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
1936{
1937 return pci_request_selected_regions_exclusive(pdev,
1938 ((1 << 6) - 1), res_name);
1939}
1940
Ben Hutchings6a479072008-12-23 03:08:29 +00001941static void __pci_set_master(struct pci_dev *dev, bool enable)
1942{
1943 u16 old_cmd, cmd;
1944
1945 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
1946 if (enable)
1947 cmd = old_cmd | PCI_COMMAND_MASTER;
1948 else
1949 cmd = old_cmd & ~PCI_COMMAND_MASTER;
1950 if (cmd != old_cmd) {
1951 dev_dbg(&dev->dev, "%s bus mastering\n",
1952 enable ? "enabling" : "disabling");
1953 pci_write_config_word(dev, PCI_COMMAND, cmd);
1954 }
1955 dev->is_busmaster = enable;
1956}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001957
1958/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 * pci_set_master - enables bus-mastering for device dev
1960 * @dev: the PCI device to enable
1961 *
1962 * Enables bus-mastering on the device and calls pcibios_set_master()
1963 * to do the needed arch specific settings.
1964 */
Ben Hutchings6a479072008-12-23 03:08:29 +00001965void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Ben Hutchings6a479072008-12-23 03:08:29 +00001967 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 pcibios_set_master(dev);
1969}
1970
Ben Hutchings6a479072008-12-23 03:08:29 +00001971/**
1972 * pci_clear_master - disables bus-mastering for device dev
1973 * @dev: the PCI device to disable
1974 */
1975void pci_clear_master(struct pci_dev *dev)
1976{
1977 __pci_set_master(dev, false);
1978}
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001981 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1982 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001984 * Helper function for pci_set_mwi.
1985 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1987 *
1988 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1989 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09001990int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
1992 u8 cacheline_size;
1993
1994 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09001995 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
1998 equal to or multiple of the right value. */
1999 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2000 if (cacheline_size >= pci_cache_line_size &&
2001 (cacheline_size % pci_cache_line_size) == 0)
2002 return 0;
2003
2004 /* Write the correct value. */
2005 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
2006 /* Read it back. */
2007 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2008 if (cacheline_size == pci_cache_line_size)
2009 return 0;
2010
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002011 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
2012 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 return -EINVAL;
2015}
Tejun Heo15ea76d2009-09-22 17:34:48 +09002016EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
2017
2018#ifdef PCI_DISABLE_MWI
2019int pci_set_mwi(struct pci_dev *dev)
2020{
2021 return 0;
2022}
2023
2024int pci_try_set_mwi(struct pci_dev *dev)
2025{
2026 return 0;
2027}
2028
2029void pci_clear_mwi(struct pci_dev *dev)
2030{
2031}
2032
2033#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035/**
2036 * pci_set_mwi - enables memory-write-invalidate PCI transaction
2037 * @dev: the PCI device for which MWI is enabled
2038 *
Randy Dunlap694625c2007-07-09 11:55:54 -07002039 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 *
2041 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2042 */
2043int
2044pci_set_mwi(struct pci_dev *dev)
2045{
2046 int rc;
2047 u16 cmd;
2048
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002049 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (rc)
2051 return rc;
2052
2053 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2054 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002055 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 cmd |= PCI_COMMAND_INVALIDATE;
2057 pci_write_config_word(dev, PCI_COMMAND, cmd);
2058 }
2059
2060 return 0;
2061}
2062
2063/**
Randy Dunlap694625c2007-07-09 11:55:54 -07002064 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2065 * @dev: the PCI device for which MWI is enabled
2066 *
2067 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2068 * Callers are not required to check the return value.
2069 *
2070 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2071 */
2072int pci_try_set_mwi(struct pci_dev *dev)
2073{
2074 int rc = pci_set_mwi(dev);
2075 return rc;
2076}
2077
2078/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2080 * @dev: the PCI device to disable
2081 *
2082 * Disables PCI Memory-Write-Invalidate transaction on the device
2083 */
2084void
2085pci_clear_mwi(struct pci_dev *dev)
2086{
2087 u16 cmd;
2088
2089 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2090 if (cmd & PCI_COMMAND_INVALIDATE) {
2091 cmd &= ~PCI_COMMAND_INVALIDATE;
2092 pci_write_config_word(dev, PCI_COMMAND, cmd);
2093 }
2094}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002095#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Brett M Russa04ce0f2005-08-15 15:23:41 -04002097/**
2098 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07002099 * @pdev: the PCI device to operate on
2100 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04002101 *
2102 * Enables/disables PCI INTx for device dev
2103 */
2104void
2105pci_intx(struct pci_dev *pdev, int enable)
2106{
2107 u16 pci_command, new;
2108
2109 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
2110
2111 if (enable) {
2112 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
2113 } else {
2114 new = pci_command | PCI_COMMAND_INTX_DISABLE;
2115 }
2116
2117 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09002118 struct pci_devres *dr;
2119
Brett M Russ2fd9d742005-09-09 10:02:22 -07002120 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09002121
2122 dr = find_pci_dr(pdev);
2123 if (dr && !dr->restore_intx) {
2124 dr->restore_intx = 1;
2125 dr->orig_intx = !enable;
2126 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04002127 }
2128}
2129
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002130/**
2131 * pci_msi_off - disables any msi or msix capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07002132 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002133 *
2134 * If you want to use msi see pci_enable_msi and friends.
2135 * This is a lower level primitive that allows us to disable
2136 * msi operation at the device level.
2137 */
2138void pci_msi_off(struct pci_dev *dev)
2139{
2140 int pos;
2141 u16 control;
2142
2143 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
2144 if (pos) {
2145 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
2146 control &= ~PCI_MSI_FLAGS_ENABLE;
2147 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
2148 }
2149 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
2150 if (pos) {
2151 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
2152 control &= ~PCI_MSIX_FLAGS_ENABLE;
2153 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
2154 }
2155}
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
2158/*
2159 * These can be overridden by arch-specific implementations
2160 */
2161int
2162pci_set_dma_mask(struct pci_dev *dev, u64 mask)
2163{
2164 if (!pci_dma_supported(dev, mask))
2165 return -EIO;
2166
2167 dev->dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002168 dev_dbg(&dev->dev, "using %dbit DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170 return 0;
2171}
2172
2173int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
2175{
2176 if (!pci_dma_supported(dev, mask))
2177 return -EIO;
2178
2179 dev->dev.coherent_dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002180 dev_dbg(&dev->dev, "using %dbit consistent DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 return 0;
2183}
2184#endif
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002185
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08002186#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
2187int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
2188{
2189 return dma_set_max_seg_size(&dev->dev, size);
2190}
2191EXPORT_SYMBOL(pci_set_dma_max_seg_size);
2192#endif
2193
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08002194#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
2195int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
2196{
2197 return dma_set_seg_boundary(&dev->dev, mask);
2198}
2199EXPORT_SYMBOL(pci_set_dma_seg_boundary);
2200#endif
2201
Yu Zhao8c1c6992009-06-13 15:52:13 +08002202static int pcie_flr(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002203{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002204 int i;
2205 int pos;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002206 u32 cap;
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002207 u16 status, control;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002208
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002209 pos = pci_pcie_cap(dev);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002210 if (!pos)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002211 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002212
2213 pci_read_config_dword(dev, pos + PCI_EXP_DEVCAP, &cap);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002214 if (!(cap & PCI_EXP_DEVCAP_FLR))
2215 return -ENOTTY;
2216
Sheng Yangd91cdc72008-11-11 17:17:47 +08002217 if (probe)
2218 return 0;
2219
Sheng Yang8dd7f802008-10-21 17:38:25 +08002220 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002221 for (i = 0; i < 4; i++) {
2222 if (i)
2223 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002224
Yu Zhao8c1c6992009-06-13 15:52:13 +08002225 pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &status);
2226 if (!(status & PCI_EXP_DEVSTA_TRPND))
2227 goto clear;
2228 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002229
Yu Zhao8c1c6992009-06-13 15:52:13 +08002230 dev_err(&dev->dev, "transaction is not cleared; "
2231 "proceeding with reset anyway\n");
Sheng Yang5fe5db02009-02-09 14:53:47 +08002232
Yu Zhao8c1c6992009-06-13 15:52:13 +08002233clear:
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002234 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &control);
2235 control |= PCI_EXP_DEVCTL_BCR_FLR;
2236 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, control);
2237
Yu Zhao8c1c6992009-06-13 15:52:13 +08002238 msleep(100);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002239
Sheng Yang8dd7f802008-10-21 17:38:25 +08002240 return 0;
2241}
Sheng Yangd91cdc72008-11-11 17:17:47 +08002242
Yu Zhao8c1c6992009-06-13 15:52:13 +08002243static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08002244{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002245 int i;
2246 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08002247 u8 cap;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002248 u8 status;
Sheng Yang1ca88792008-11-11 17:17:48 +08002249
Yu Zhao8c1c6992009-06-13 15:52:13 +08002250 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
2251 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08002252 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002253
2254 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08002255 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
2256 return -ENOTTY;
2257
2258 if (probe)
2259 return 0;
2260
Sheng Yang1ca88792008-11-11 17:17:48 +08002261 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002262 for (i = 0; i < 4; i++) {
2263 if (i)
2264 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002265
Yu Zhao8c1c6992009-06-13 15:52:13 +08002266 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
2267 if (!(status & PCI_AF_STATUS_TP))
2268 goto clear;
2269 }
2270
2271 dev_err(&dev->dev, "transaction is not cleared; "
2272 "proceeding with reset anyway\n");
2273
2274clear:
2275 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sheng Yang1ca88792008-11-11 17:17:48 +08002276 msleep(100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002277
Sheng Yang1ca88792008-11-11 17:17:48 +08002278 return 0;
2279}
2280
Yu Zhaof85876b2009-06-13 15:52:14 +08002281static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08002282{
Yu Zhaof85876b2009-06-13 15:52:14 +08002283 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002284
Yu Zhaof85876b2009-06-13 15:52:14 +08002285 if (!dev->pm_cap)
2286 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002287
Yu Zhaof85876b2009-06-13 15:52:14 +08002288 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
2289 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
2290 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08002291
Yu Zhaof85876b2009-06-13 15:52:14 +08002292 if (probe)
2293 return 0;
2294
2295 if (dev->current_state != PCI_D0)
2296 return -EINVAL;
2297
2298 csr &= ~PCI_PM_CTRL_STATE_MASK;
2299 csr |= PCI_D3hot;
2300 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002301 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002302
2303 csr &= ~PCI_PM_CTRL_STATE_MASK;
2304 csr |= PCI_D0;
2305 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002306 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002307
2308 return 0;
2309}
2310
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002311static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
2312{
2313 u16 ctrl;
2314 struct pci_dev *pdev;
2315
Yu Zhao654b75e2009-06-26 14:04:46 +08002316 if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002317 return -ENOTTY;
2318
2319 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
2320 if (pdev != dev)
2321 return -ENOTTY;
2322
2323 if (probe)
2324 return 0;
2325
2326 pci_read_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, &ctrl);
2327 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
2328 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2329 msleep(100);
2330
2331 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
2332 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2333 msleep(100);
2334
2335 return 0;
2336}
2337
Yu Zhao8c1c6992009-06-13 15:52:13 +08002338static int pci_dev_reset(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002339{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002340 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002341
Yu Zhao8c1c6992009-06-13 15:52:13 +08002342 might_sleep();
Sheng Yang8dd7f802008-10-21 17:38:25 +08002343
Yu Zhao8c1c6992009-06-13 15:52:13 +08002344 if (!probe) {
2345 pci_block_user_cfg_access(dev);
2346 /* block PM suspend, driver probe, etc. */
2347 down(&dev->dev.sem);
2348 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002349
Dexuan Cuib9c3b262009-12-07 13:03:21 +08002350 rc = pci_dev_specific_reset(dev, probe);
2351 if (rc != -ENOTTY)
2352 goto done;
2353
Yu Zhao8c1c6992009-06-13 15:52:13 +08002354 rc = pcie_flr(dev, probe);
2355 if (rc != -ENOTTY)
2356 goto done;
2357
2358 rc = pci_af_flr(dev, probe);
Yu Zhaof85876b2009-06-13 15:52:14 +08002359 if (rc != -ENOTTY)
2360 goto done;
2361
2362 rc = pci_pm_reset(dev, probe);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002363 if (rc != -ENOTTY)
2364 goto done;
2365
2366 rc = pci_parent_bus_reset(dev, probe);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002367done:
2368 if (!probe) {
2369 up(&dev->dev.sem);
2370 pci_unblock_user_cfg_access(dev);
2371 }
2372
2373 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002374}
2375
2376/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002377 * __pci_reset_function - reset a PCI device function
2378 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002379 *
2380 * Some devices allow an individual function to be reset without affecting
2381 * other functions in the same device. The PCI device must be responsive
2382 * to PCI config space in order to use this function.
2383 *
2384 * The device function is presumed to be unused when this function is called.
2385 * Resetting the device will make the contents of PCI configuration space
2386 * random, so any caller of this must be prepared to reinitialise the
2387 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
2388 * etc.
2389 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002390 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002391 * device doesn't support resetting a single function.
2392 */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002393int __pci_reset_function(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002394{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002395 return pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002396}
Yu Zhao8c1c6992009-06-13 15:52:13 +08002397EXPORT_SYMBOL_GPL(__pci_reset_function);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002398
2399/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03002400 * pci_probe_reset_function - check whether the device can be safely reset
2401 * @dev: PCI device to reset
2402 *
2403 * Some devices allow an individual function to be reset without affecting
2404 * other functions in the same device. The PCI device must be responsive
2405 * to PCI config space in order to use this function.
2406 *
2407 * Returns 0 if the device function can be reset or negative if the
2408 * device doesn't support resetting a single function.
2409 */
2410int pci_probe_reset_function(struct pci_dev *dev)
2411{
2412 return pci_dev_reset(dev, 1);
2413}
2414
2415/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002416 * pci_reset_function - quiesce and reset a PCI device function
2417 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002418 *
2419 * Some devices allow an individual function to be reset without affecting
2420 * other functions in the same device. The PCI device must be responsive
2421 * to PCI config space in order to use this function.
2422 *
2423 * This function does not just reset the PCI portion of a device, but
2424 * clears all the state associated with the device. This function differs
Yu Zhao8c1c6992009-06-13 15:52:13 +08002425 * from __pci_reset_function in that it saves and restores device state
Sheng Yang8dd7f802008-10-21 17:38:25 +08002426 * over the reset.
2427 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002428 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002429 * device doesn't support resetting a single function.
2430 */
2431int pci_reset_function(struct pci_dev *dev)
2432{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002433 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002434
Yu Zhao8c1c6992009-06-13 15:52:13 +08002435 rc = pci_dev_reset(dev, 1);
2436 if (rc)
2437 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002438
Sheng Yang8dd7f802008-10-21 17:38:25 +08002439 pci_save_state(dev);
2440
Yu Zhao8c1c6992009-06-13 15:52:13 +08002441 /*
2442 * both INTx and MSI are disabled after the Interrupt Disable bit
2443 * is set and the Bus Master bit is cleared.
2444 */
Sheng Yang8dd7f802008-10-21 17:38:25 +08002445 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
2446
Yu Zhao8c1c6992009-06-13 15:52:13 +08002447 rc = pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002448
2449 pci_restore_state(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002450
Yu Zhao8c1c6992009-06-13 15:52:13 +08002451 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002452}
2453EXPORT_SYMBOL_GPL(pci_reset_function);
2454
2455/**
Peter Orubad556ad42007-05-15 13:59:13 +02002456 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
2457 * @dev: PCI device to query
2458 *
2459 * Returns mmrbc: maximum designed memory read count in bytes
2460 * or appropriate error value.
2461 */
2462int pcix_get_max_mmrbc(struct pci_dev *dev)
2463{
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002464 int err, cap;
Peter Orubad556ad42007-05-15 13:59:13 +02002465 u32 stat;
2466
2467 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2468 if (!cap)
2469 return -EINVAL;
2470
2471 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2472 if (err)
2473 return -EINVAL;
2474
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002475 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
Peter Orubad556ad42007-05-15 13:59:13 +02002476}
2477EXPORT_SYMBOL(pcix_get_max_mmrbc);
2478
2479/**
2480 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
2481 * @dev: PCI device to query
2482 *
2483 * Returns mmrbc: maximum memory read count in bytes
2484 * or appropriate error value.
2485 */
2486int pcix_get_mmrbc(struct pci_dev *dev)
2487{
2488 int ret, cap;
2489 u32 cmd;
2490
2491 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2492 if (!cap)
2493 return -EINVAL;
2494
2495 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2496 if (!ret)
2497 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
2498
2499 return ret;
2500}
2501EXPORT_SYMBOL(pcix_get_mmrbc);
2502
2503/**
2504 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
2505 * @dev: PCI device to query
2506 * @mmrbc: maximum memory read count in bytes
2507 * valid values are 512, 1024, 2048, 4096
2508 *
2509 * If possible sets maximum memory read byte count, some bridges have erratas
2510 * that prevent this.
2511 */
2512int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
2513{
2514 int cap, err = -EINVAL;
2515 u32 stat, cmd, v, o;
2516
vignesh babu229f5af2007-08-13 18:23:14 +05302517 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Peter Orubad556ad42007-05-15 13:59:13 +02002518 goto out;
2519
2520 v = ffs(mmrbc) - 10;
2521
2522 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2523 if (!cap)
2524 goto out;
2525
2526 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2527 if (err)
2528 goto out;
2529
2530 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
2531 return -E2BIG;
2532
2533 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2534 if (err)
2535 goto out;
2536
2537 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
2538 if (o != v) {
2539 if (v > o && dev->bus &&
2540 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
2541 return -EIO;
2542
2543 cmd &= ~PCI_X_CMD_MAX_READ;
2544 cmd |= v << 2;
2545 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
2546 }
2547out:
2548 return err;
2549}
2550EXPORT_SYMBOL(pcix_set_mmrbc);
2551
2552/**
2553 * pcie_get_readrq - get PCI Express read request size
2554 * @dev: PCI device to query
2555 *
2556 * Returns maximum memory read request in bytes
2557 * or appropriate error value.
2558 */
2559int pcie_get_readrq(struct pci_dev *dev)
2560{
2561 int ret, cap;
2562 u16 ctl;
2563
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002564 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002565 if (!cap)
2566 return -EINVAL;
2567
2568 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2569 if (!ret)
2570 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
2571
2572 return ret;
2573}
2574EXPORT_SYMBOL(pcie_get_readrq);
2575
2576/**
2577 * pcie_set_readrq - set PCI Express maximum memory read request
2578 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07002579 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02002580 * valid values are 128, 256, 512, 1024, 2048, 4096
2581 *
2582 * If possible sets maximum read byte count
2583 */
2584int pcie_set_readrq(struct pci_dev *dev, int rq)
2585{
2586 int cap, err = -EINVAL;
2587 u16 ctl, v;
2588
vignesh babu229f5af2007-08-13 18:23:14 +05302589 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Peter Orubad556ad42007-05-15 13:59:13 +02002590 goto out;
2591
2592 v = (ffs(rq) - 8) << 12;
2593
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002594 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002595 if (!cap)
2596 goto out;
2597
2598 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2599 if (err)
2600 goto out;
2601
2602 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
2603 ctl &= ~PCI_EXP_DEVCTL_READRQ;
2604 ctl |= v;
2605 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
2606 }
2607
2608out:
2609 return err;
2610}
2611EXPORT_SYMBOL(pcie_set_readrq);
2612
2613/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002614 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08002615 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002616 * @flags: resource type mask to be selected
2617 *
2618 * This helper routine makes bar mask from the type of resource.
2619 */
2620int pci_select_bars(struct pci_dev *dev, unsigned long flags)
2621{
2622 int i, bars = 0;
2623 for (i = 0; i < PCI_NUM_RESOURCES; i++)
2624 if (pci_resource_flags(dev, i) & flags)
2625 bars |= (1 << i);
2626 return bars;
2627}
2628
Yu Zhao613e7ed2008-11-22 02:41:27 +08002629/**
2630 * pci_resource_bar - get position of the BAR associated with a resource
2631 * @dev: the PCI device
2632 * @resno: the resource number
2633 * @type: the BAR type to be filled in
2634 *
2635 * Returns BAR position in config space, or 0 if the BAR is invalid.
2636 */
2637int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
2638{
Yu Zhaod1b054d2009-03-20 11:25:11 +08002639 int reg;
2640
Yu Zhao613e7ed2008-11-22 02:41:27 +08002641 if (resno < PCI_ROM_RESOURCE) {
2642 *type = pci_bar_unknown;
2643 return PCI_BASE_ADDRESS_0 + 4 * resno;
2644 } else if (resno == PCI_ROM_RESOURCE) {
2645 *type = pci_bar_mem32;
2646 return dev->rom_base_reg;
Yu Zhaod1b054d2009-03-20 11:25:11 +08002647 } else if (resno < PCI_BRIDGE_RESOURCES) {
2648 /* device specific resource */
2649 reg = pci_iov_resource_bar(dev, resno, type);
2650 if (reg)
2651 return reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +08002652 }
2653
Bjorn Helgaas865df572009-11-04 10:32:57 -07002654 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
Yu Zhao613e7ed2008-11-22 02:41:27 +08002655 return 0;
2656}
2657
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002658/**
2659 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07002660 * @dev: the PCI device
2661 * @decode: true = enable decoding, false = disable decoding
2662 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
2663 * @change_bridge: traverse ancestors and change bridges
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002664 */
2665int pci_set_vga_state(struct pci_dev *dev, bool decode,
2666 unsigned int command_bits, bool change_bridge)
2667{
2668 struct pci_bus *bus;
2669 struct pci_dev *bridge;
2670 u16 cmd;
2671
2672 WARN_ON(command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY));
2673
2674 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2675 if (decode == true)
2676 cmd |= command_bits;
2677 else
2678 cmd &= ~command_bits;
2679 pci_write_config_word(dev, PCI_COMMAND, cmd);
2680
2681 if (change_bridge == false)
2682 return 0;
2683
2684 bus = dev->bus;
2685 while (bus) {
2686 bridge = bus->self;
2687 if (bridge) {
2688 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
2689 &cmd);
2690 if (decode == true)
2691 cmd |= PCI_BRIDGE_CTL_VGA;
2692 else
2693 cmd &= ~PCI_BRIDGE_CTL_VGA;
2694 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
2695 cmd);
2696 }
2697 bus = bus->parent;
2698 }
2699 return 0;
2700}
2701
Yuji Shimada32a9a682009-03-16 17:13:39 +09002702#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
2703static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00002704static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a682009-03-16 17:13:39 +09002705
2706/**
2707 * pci_specified_resource_alignment - get resource alignment specified by user.
2708 * @dev: the PCI device to get
2709 *
2710 * RETURNS: Resource alignment if it is specified.
2711 * Zero if it is not specified.
2712 */
2713resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
2714{
2715 int seg, bus, slot, func, align_order, count;
2716 resource_size_t align = 0;
2717 char *p;
2718
2719 spin_lock(&resource_alignment_lock);
2720 p = resource_alignment_param;
2721 while (*p) {
2722 count = 0;
2723 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
2724 p[count] == '@') {
2725 p += count + 1;
2726 } else {
2727 align_order = -1;
2728 }
2729 if (sscanf(p, "%x:%x:%x.%x%n",
2730 &seg, &bus, &slot, &func, &count) != 4) {
2731 seg = 0;
2732 if (sscanf(p, "%x:%x.%x%n",
2733 &bus, &slot, &func, &count) != 3) {
2734 /* Invalid format */
2735 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
2736 p);
2737 break;
2738 }
2739 }
2740 p += count;
2741 if (seg == pci_domain_nr(dev->bus) &&
2742 bus == dev->bus->number &&
2743 slot == PCI_SLOT(dev->devfn) &&
2744 func == PCI_FUNC(dev->devfn)) {
2745 if (align_order == -1) {
2746 align = PAGE_SIZE;
2747 } else {
2748 align = 1 << align_order;
2749 }
2750 /* Found */
2751 break;
2752 }
2753 if (*p != ';' && *p != ',') {
2754 /* End of param or invalid format */
2755 break;
2756 }
2757 p++;
2758 }
2759 spin_unlock(&resource_alignment_lock);
2760 return align;
2761}
2762
2763/**
2764 * pci_is_reassigndev - check if specified PCI is target device to reassign
2765 * @dev: the PCI device to check
2766 *
2767 * RETURNS: non-zero for PCI device is a target device to reassign,
2768 * or zero is not.
2769 */
2770int pci_is_reassigndev(struct pci_dev *dev)
2771{
2772 return (pci_specified_resource_alignment(dev) != 0);
2773}
2774
2775ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
2776{
2777 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
2778 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
2779 spin_lock(&resource_alignment_lock);
2780 strncpy(resource_alignment_param, buf, count);
2781 resource_alignment_param[count] = '\0';
2782 spin_unlock(&resource_alignment_lock);
2783 return count;
2784}
2785
2786ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
2787{
2788 size_t count;
2789 spin_lock(&resource_alignment_lock);
2790 count = snprintf(buf, size, "%s", resource_alignment_param);
2791 spin_unlock(&resource_alignment_lock);
2792 return count;
2793}
2794
2795static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
2796{
2797 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
2798}
2799
2800static ssize_t pci_resource_alignment_store(struct bus_type *bus,
2801 const char *buf, size_t count)
2802{
2803 return pci_set_resource_alignment_param(buf, count);
2804}
2805
2806BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
2807 pci_resource_alignment_store);
2808
2809static int __init pci_resource_alignment_sysfs_init(void)
2810{
2811 return bus_create_file(&pci_bus_type,
2812 &bus_attr_resource_alignment);
2813}
2814
2815late_initcall(pci_resource_alignment_sysfs_init);
2816
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002817static void __devinit pci_no_domains(void)
2818{
2819#ifdef CONFIG_PCI_DOMAINS
2820 pci_domains_supported = 0;
2821#endif
2822}
2823
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07002824/**
2825 * pci_ext_cfg_enabled - can we access extended PCI config space?
2826 * @dev: The PCI device of the root bridge.
2827 *
2828 * Returns 1 if we can access PCI extended config space (offsets
2829 * greater than 0xff). This is the default implementation. Architecture
2830 * implementations can override this.
2831 */
2832int __attribute__ ((weak)) pci_ext_cfg_avail(struct pci_dev *dev)
2833{
2834 return 1;
2835}
2836
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11002837void __weak pci_fixup_cardbus(struct pci_bus *bus)
2838{
2839}
2840EXPORT_SYMBOL(pci_fixup_cardbus);
2841
Al Viroad04d312008-11-22 17:37:14 +00002842static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 while (str) {
2845 char *k = strchr(str, ',');
2846 if (k)
2847 *k++ = 0;
2848 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002849 if (!strcmp(str, "nomsi")) {
2850 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07002851 } else if (!strcmp(str, "noaer")) {
2852 pci_no_aer();
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002853 } else if (!strcmp(str, "nodomains")) {
2854 pci_no_domains();
Atsushi Nemoto4516a612007-02-05 16:36:06 -08002855 } else if (!strncmp(str, "cbiosize=", 9)) {
2856 pci_cardbus_io_size = memparse(str + 9, &str);
2857 } else if (!strncmp(str, "cbmemsize=", 10)) {
2858 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a682009-03-16 17:13:39 +09002859 } else if (!strncmp(str, "resource_alignment=", 19)) {
2860 pci_set_resource_alignment_param(str + 19,
2861 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06002862 } else if (!strncmp(str, "ecrc=", 5)) {
2863 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07002864 } else if (!strncmp(str, "hpiosize=", 9)) {
2865 pci_hotplug_io_size = memparse(str + 9, &str);
2866 } else if (!strncmp(str, "hpmemsize=", 10)) {
2867 pci_hotplug_mem_size = memparse(str + 10, &str);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002868 } else {
2869 printk(KERN_ERR "PCI: Unknown option `%s'\n",
2870 str);
2871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 }
2873 str = k;
2874 }
Andi Kleen0637a702006-09-26 10:52:41 +02002875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
Andi Kleen0637a702006-09-26 10:52:41 +02002877early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Tejun Heo0b62e132007-07-27 14:43:35 +09002879EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11002880EXPORT_SYMBOL(pci_enable_device_io);
2881EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09002883EXPORT_SYMBOL(pcim_enable_device);
2884EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886EXPORT_SYMBOL(pci_find_capability);
2887EXPORT_SYMBOL(pci_bus_find_capability);
2888EXPORT_SYMBOL(pci_release_regions);
2889EXPORT_SYMBOL(pci_request_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002890EXPORT_SYMBOL(pci_request_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891EXPORT_SYMBOL(pci_release_region);
2892EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002893EXPORT_SYMBOL(pci_request_region_exclusive);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002894EXPORT_SYMBOL(pci_release_selected_regions);
2895EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002896EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897EXPORT_SYMBOL(pci_set_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00002898EXPORT_SYMBOL(pci_clear_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07002900EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04002902EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904EXPORT_SYMBOL(pci_set_consistent_dma_mask);
2905EXPORT_SYMBOL(pci_assign_resource);
2906EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002907EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909EXPORT_SYMBOL(pci_set_power_state);
2910EXPORT_SYMBOL(pci_save_state);
2911EXPORT_SYMBOL(pci_restore_state);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002912EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02002913EXPORT_SYMBOL(pci_pme_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002915EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002916EXPORT_SYMBOL(pci_target_state);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002917EXPORT_SYMBOL(pci_prepare_to_sleep);
2918EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05002919EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920