blob: 315fea47e7843956772514a25a64afae736cd38e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * PCI Bus Services, see include/linux/pci.h for further explanation.
3 *
4 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
5 * David Mosberger-Tang
6 *
7 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
8 */
9
10#include <linux/kernel.h>
11#include <linux/delay.h>
12#include <linux/init.h>
13#include <linux/pci.h>
David Brownell075c1772007-04-26 00:12:06 -070014#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053018#include <linux/log2.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080019#include <linux/pci-aspm.h>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020020#include <linux/pm_wakeup.h>
Sheng Yang8dd7f802008-10-21 17:38:25 +080021#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/dma.h> /* isa_dma_bridge_buggy */
Yuji Shimada32a9a6822009-03-16 17:13:39 +090023#include <linux/device.h>
24#include <asm/setup.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090025#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alan Stern00240c32009-04-27 13:33:16 -040027const char *pci_power_names[] = {
28 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
29};
30EXPORT_SYMBOL_GPL(pci_power_names);
31
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +010032unsigned int pci_pm_d3_delay;
33
34static void pci_dev_d3_sleep(struct pci_dev *dev)
35{
36 unsigned int delay = dev->d3_delay;
37
38 if (delay < pci_pm_d3_delay)
39 delay = pci_pm_d3_delay;
40
41 msleep(delay);
42}
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jeff Garzik32a2eea2007-10-11 16:57:27 -040044#ifdef CONFIG_PCI_DOMAINS
45int pci_domains_supported = 1;
46#endif
47
Atsushi Nemoto4516a612007-02-05 16:36:06 -080048#define DEFAULT_CARDBUS_IO_SIZE (256)
49#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
50/* pci=cbmemsize=nnM,cbiosize=nn can override this */
51unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
52unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
53
Eric W. Biederman28760482009-09-09 14:09:24 -070054#define DEFAULT_HOTPLUG_IO_SIZE (256)
55#define DEFAULT_HOTPLUG_MEM_SIZE (2*1024*1024)
56/* pci=hpmemsize=nnM,hpiosize=nn can override this */
57unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
58unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
59
Jesse Barnesac1aa472009-10-26 13:20:44 -070060/*
61 * The default CLS is used if arch didn't set CLS explicitly and not
62 * all pci devices agree on the same value. Arch can override either
63 * the dfl or actual value as it sees fit. Don't forget this is
64 * measured in 32-bit words, not bytes.
65 */
Tejun Heo98e724c2009-10-08 18:59:53 +090066u8 pci_dfl_cache_line_size __devinitdata = L1_CACHE_BYTES >> 2;
Jesse Barnesac1aa472009-10-26 13:20:44 -070067u8 pci_cache_line_size;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
71 * @bus: pointer to PCI bus structure to search
72 *
73 * Given a PCI bus, returns the highest PCI bus number present in the set
74 * including the given PCI bus and its list of child PCI buses.
75 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080076unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct list_head *tmp;
79 unsigned char max, n;
80
Kristen Accardib82db5c2006-01-17 16:56:56 -080081 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 list_for_each(tmp, &bus->children) {
83 n = pci_bus_max_busnr(pci_bus_b(tmp));
84 if(n > max)
85 max = n;
86 }
87 return max;
88}
Kristen Accardib82db5c2006-01-17 16:56:56 -080089EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Andrew Morton1684f5d2008-12-01 14:30:30 -080091#ifdef CONFIG_HAS_IOMEM
92void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
93{
94 /*
95 * Make sure the BAR is actually a memory resource, not an IO resource
96 */
97 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
98 WARN_ON(1);
99 return NULL;
100 }
101 return ioremap_nocache(pci_resource_start(pdev, bar),
102 pci_resource_len(pdev, bar));
103}
104EXPORT_SYMBOL_GPL(pci_ioremap_bar);
105#endif
106
Kristen Accardib82db5c2006-01-17 16:56:56 -0800107#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
109 * pci_max_busnr - returns maximum PCI bus number
110 *
111 * Returns the highest PCI bus number present in the system global list of
112 * PCI buses.
113 */
114unsigned char __devinit
115pci_max_busnr(void)
116{
117 struct pci_bus *bus = NULL;
118 unsigned char max, n;
119
120 max = 0;
121 while ((bus = pci_find_next_bus(bus)) != NULL) {
122 n = pci_bus_max_busnr(bus);
123 if(n > max)
124 max = n;
125 }
126 return max;
127}
128
Adrian Bunk54c762f2005-12-22 01:08:52 +0100129#endif /* 0 */
130
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100131#define PCI_FIND_CAP_TTL 48
132
133static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
134 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -0700135{
136 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -0700137
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100138 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -0700139 pci_bus_read_config_byte(bus, devfn, pos, &pos);
140 if (pos < 0x40)
141 break;
142 pos &= ~3;
143 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
144 &id);
145 if (id == 0xff)
146 break;
147 if (id == cap)
148 return pos;
149 pos += PCI_CAP_LIST_NEXT;
150 }
151 return 0;
152}
153
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100154static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
155 u8 pos, int cap)
156{
157 int ttl = PCI_FIND_CAP_TTL;
158
159 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
160}
161
Roland Dreier24a4e372005-10-28 17:35:34 -0700162int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
163{
164 return __pci_find_next_cap(dev->bus, dev->devfn,
165 pos + PCI_CAP_LIST_NEXT, cap);
166}
167EXPORT_SYMBOL_GPL(pci_find_next_capability);
168
Michael Ellermand3bac112006-11-22 18:26:16 +1100169static int __pci_bus_find_cap_start(struct pci_bus *bus,
170 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
175 if (!(status & PCI_STATUS_CAP_LIST))
176 return 0;
177
178 switch (hdr_type) {
179 case PCI_HEADER_TYPE_NORMAL:
180 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100181 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100183 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 default:
185 return 0;
186 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100187
188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191/**
192 * pci_find_capability - query for devices' capabilities
193 * @dev: PCI device to query
194 * @cap: capability code
195 *
196 * Tell if a device supports a given PCI capability.
197 * Returns the address of the requested capability structure within the
198 * device's PCI configuration space or 0 in case the device does not
199 * support it. Possible values for @cap:
200 *
201 * %PCI_CAP_ID_PM Power Management
202 * %PCI_CAP_ID_AGP Accelerated Graphics Port
203 * %PCI_CAP_ID_VPD Vital Product Data
204 * %PCI_CAP_ID_SLOTID Slot Identification
205 * %PCI_CAP_ID_MSI Message Signalled Interrupts
206 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
207 * %PCI_CAP_ID_PCIX PCI-X
208 * %PCI_CAP_ID_EXP PCI Express
209 */
210int pci_find_capability(struct pci_dev *dev, int cap)
211{
Michael Ellermand3bac112006-11-22 18:26:16 +1100212 int pos;
213
214 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
215 if (pos)
216 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
217
218 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/**
222 * pci_bus_find_capability - query for devices' capabilities
223 * @bus: the PCI bus to query
224 * @devfn: PCI device to query
225 * @cap: capability code
226 *
227 * Like pci_find_capability() but works for pci devices that do not have a
228 * pci_dev structure set up yet.
229 *
230 * Returns the address of the requested capability structure within the
231 * device's PCI configuration space or 0 in case the device does not
232 * support it.
233 */
234int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
235{
Michael Ellermand3bac112006-11-22 18:26:16 +1100236 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 u8 hdr_type;
238
239 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
240
Michael Ellermand3bac112006-11-22 18:26:16 +1100241 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
242 if (pos)
243 pos = __pci_find_next_cap(bus, devfn, pos, cap);
244
245 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/**
249 * pci_find_ext_capability - Find an extended capability
250 * @dev: PCI device to query
251 * @cap: capability code
252 *
253 * Returns the address of the requested extended capability structure
254 * within the device's PCI configuration space or 0 if the device does
255 * not support it. Possible values for @cap:
256 *
257 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
258 * %PCI_EXT_CAP_ID_VC Virtual Channel
259 * %PCI_EXT_CAP_ID_DSN Device Serial Number
260 * %PCI_EXT_CAP_ID_PWR Power Budgeting
261 */
262int pci_find_ext_capability(struct pci_dev *dev, int cap)
263{
264 u32 header;
Zhao, Yu557848c2008-10-13 19:18:07 +0800265 int ttl;
266 int pos = PCI_CFG_SPACE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Zhao, Yu557848c2008-10-13 19:18:07 +0800268 /* minimum 8 bytes per capability */
269 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
270
271 if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273
274 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
275 return 0;
276
277 /*
278 * If we have no capabilities, this is indicated by cap ID,
279 * cap version and next pointer all being 0.
280 */
281 if (header == 0)
282 return 0;
283
284 while (ttl-- > 0) {
285 if (PCI_EXT_CAP_ID(header) == cap)
286 return pos;
287
288 pos = PCI_EXT_CAP_NEXT(header);
Zhao, Yu557848c2008-10-13 19:18:07 +0800289 if (pos < PCI_CFG_SPACE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291
292 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
293 break;
294 }
295
296 return 0;
297}
Brice Goglin3a720d72006-05-23 06:10:01 -0400298EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100300static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
301{
302 int rc, ttl = PCI_FIND_CAP_TTL;
303 u8 cap, mask;
304
305 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
306 mask = HT_3BIT_CAP_MASK;
307 else
308 mask = HT_5BIT_CAP_MASK;
309
310 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
311 PCI_CAP_ID_HT, &ttl);
312 while (pos) {
313 rc = pci_read_config_byte(dev, pos + 3, &cap);
314 if (rc != PCIBIOS_SUCCESSFUL)
315 return 0;
316
317 if ((cap & mask) == ht_cap)
318 return pos;
319
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800320 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
321 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100322 PCI_CAP_ID_HT, &ttl);
323 }
324
325 return 0;
326}
327/**
328 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
329 * @dev: PCI device to query
330 * @pos: Position from which to continue searching
331 * @ht_cap: Hypertransport capability code
332 *
333 * To be used in conjunction with pci_find_ht_capability() to search for
334 * all capabilities matching @ht_cap. @pos should always be a value returned
335 * from pci_find_ht_capability().
336 *
337 * NB. To be 100% safe against broken PCI devices, the caller should take
338 * steps to avoid an infinite loop.
339 */
340int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
341{
342 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
343}
344EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
345
346/**
347 * pci_find_ht_capability - query a device's Hypertransport capabilities
348 * @dev: PCI device to query
349 * @ht_cap: Hypertransport capability code
350 *
351 * Tell if a device supports a given Hypertransport capability.
352 * Returns an address within the device's PCI configuration space
353 * or 0 in case the device does not support the request capability.
354 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
355 * which has a Hypertransport capability matching @ht_cap.
356 */
357int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
358{
359 int pos;
360
361 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
362 if (pos)
363 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
364
365 return pos;
366}
367EXPORT_SYMBOL_GPL(pci_find_ht_capability);
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/**
370 * pci_find_parent_resource - return resource region of parent bus of given region
371 * @dev: PCI device structure contains resources to be searched
372 * @res: child resource record for which parent is sought
373 *
374 * For given resource region of given device, return the resource
375 * region of parent bus the given region is contained in or where
376 * it should be allocated from.
377 */
378struct resource *
379pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
380{
381 const struct pci_bus *bus = dev->bus;
382 int i;
383 struct resource *best = NULL;
384
385 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
386 struct resource *r = bus->resource[i];
387 if (!r)
388 continue;
389 if (res->start && !(res->start >= r->start && res->end <= r->end))
390 continue; /* Not contained */
391 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
392 continue; /* Wrong type */
393 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
394 return r; /* Exact match */
Linus Torvalds8c8def22009-11-09 12:04:32 -0800395 /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
396 if (r->flags & IORESOURCE_PREFETCH)
397 continue;
398 /* .. but we can put a prefetchable resource inside a non-prefetchable one */
399 if (!best)
400 best = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402 return best;
403}
404
405/**
John W. Linville064b53db2005-07-27 10:19:44 -0400406 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
407 * @dev: PCI device to have its BARs restored
408 *
409 * Restore the BAR values for a given device, so as to make it
410 * accessible by its driver.
411 */
Adrian Bunkad6685992007-10-27 03:06:22 +0200412static void
John W. Linville064b53db2005-07-27 10:19:44 -0400413pci_restore_bars(struct pci_dev *dev)
414{
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800415 int i;
John W. Linville064b53db2005-07-27 10:19:44 -0400416
Yu Zhaobc5f5a82008-11-22 02:40:00 +0800417 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
Yu Zhao14add802008-11-22 02:38:52 +0800418 pci_update_resource(dev, i);
John W. Linville064b53db2005-07-27 10:19:44 -0400419}
420
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200421static struct pci_platform_pm_ops *pci_platform_pm;
422
423int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
424{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200425 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
426 || !ops->sleep_wake || !ops->can_wakeup)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200427 return -EINVAL;
428 pci_platform_pm = ops;
429 return 0;
430}
431
432static inline bool platform_pci_power_manageable(struct pci_dev *dev)
433{
434 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
435}
436
437static inline int platform_pci_set_power_state(struct pci_dev *dev,
438 pci_power_t t)
439{
440 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
441}
442
443static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
444{
445 return pci_platform_pm ?
446 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
447}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700448
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200449static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
450{
451 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
452}
453
454static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
455{
456 return pci_platform_pm ?
457 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
458}
459
John W. Linville064b53db2005-07-27 10:19:44 -0400460/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200461 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
462 * given PCI device
463 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200464 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200466 * RETURN VALUE:
467 * -EINVAL if the requested state is invalid.
468 * -EIO if device does not support PCI PM or its PM capabilities register has a
469 * wrong version, or device doesn't support the requested state.
470 * 0 if device already is in the requested state.
471 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100473static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200475 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200476 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100478 /* Check if we're already there */
479 if (dev->current_state == state)
480 return 0;
481
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200482 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700483 return -EIO;
484
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200485 if (state < PCI_D0 || state > PCI_D3hot)
486 return -EINVAL;
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* Validate current state:
489 * Can enter D0 from any state, but if we can only go deeper
490 * to sleep if we're already in a low power state
491 */
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100492 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200493 && dev->current_state > state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600494 dev_err(&dev->dev, "invalid power transition "
495 "(from state %d to %d)\n", dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200500 if ((state == PCI_D1 && !dev->d1_support)
501 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700502 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200504 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53db2005-07-27 10:19:44 -0400505
John W. Linville32a36582005-09-14 09:52:42 -0400506 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * This doesn't affect PME_Status, disables PME_En, and
508 * sets PowerState to 0.
509 */
John W. Linville32a36582005-09-14 09:52:42 -0400510 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400511 case PCI_D0:
512 case PCI_D1:
513 case PCI_D2:
514 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
515 pmcsr |= state;
516 break;
Rafael J. Wysockif62795f2009-05-18 22:51:12 +0200517 case PCI_D3hot:
518 case PCI_D3cold:
John W. Linville32a36582005-09-14 09:52:42 -0400519 case PCI_UNKNOWN: /* Boot-up */
520 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100521 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200522 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400523 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400524 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400525 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400526 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
529 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200530 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /* Mandatory power management transition delays */
533 /* see PCI PM 1.1 5.6.1 table 18 */
534 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +0100535 pci_dev_d3_sleep(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 else if (state == PCI_D2 || dev->current_state == PCI_D2)
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100537 udelay(PCI_PM_D2_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Rafael J. Wysockie13cdbd2009-10-05 00:48:40 +0200539 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
540 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
541 if (dev->current_state != state && printk_ratelimit())
542 dev_info(&dev->dev, "Refused to change power state, "
543 "currently in D%d\n", dev->current_state);
John W. Linville064b53db2005-07-27 10:19:44 -0400544
545 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
546 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
547 * from D3hot to D0 _may_ perform an internal reset, thereby
548 * going to "D0 Uninitialized" rather than "D0 Initialized".
549 * For example, at least some versions of the 3c905B and the
550 * 3c556B exhibit this behaviour.
551 *
552 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
553 * devices in a D3hot state at boot. Consequently, we need to
554 * restore at least the BARs so that the device will be
555 * accessible to its driver.
556 */
557 if (need_restore)
558 pci_restore_bars(dev);
559
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100560 if (dev->bus->self)
Shaohua Li7d715a62008-02-25 09:46:41 +0800561 pcie_aspm_pm_state_change(dev->bus->self);
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564}
565
566/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200567 * pci_update_current_state - Read PCI power state of given device from its
568 * PCI PM registers and cache it
569 * @dev: PCI device to handle.
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100570 * @state: State to cache in case the device doesn't have the PM capability
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200571 */
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100572void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200573{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200574 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200575 u16 pmcsr;
576
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200577 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200578 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
Rafael J. Wysockif06fc0b2008-12-27 16:30:52 +0100579 } else {
580 dev->current_state = state;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200581 }
582}
583
584/**
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100585 * pci_platform_power_transition - Use platform to change device power state
586 * @dev: PCI device to handle.
587 * @state: State to put the device into.
588 */
589static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
590{
591 int error;
592
593 if (platform_pci_power_manageable(dev)) {
594 error = platform_pci_set_power_state(dev, state);
595 if (!error)
596 pci_update_current_state(dev, state);
597 } else {
598 error = -ENODEV;
599 /* Fall back to PCI_D0 if native PM is not supported */
Rafael J. Wysockib3bad722009-05-17 20:17:06 +0200600 if (!dev->pm_cap)
601 dev->current_state = PCI_D0;
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100602 }
603
604 return error;
605}
606
607/**
608 * __pci_start_power_transition - Start power transition of a PCI device
609 * @dev: PCI device to handle.
610 * @state: State to put the device into.
611 */
612static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
613{
614 if (state == PCI_D0)
615 pci_platform_power_transition(dev, PCI_D0);
616}
617
618/**
619 * __pci_complete_power_transition - Complete power transition of a PCI device
620 * @dev: PCI device to handle.
621 * @state: State to put the device into.
622 *
623 * This function should not be called directly by device drivers.
624 */
625int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
626{
627 return state > PCI_D0 ?
628 pci_platform_power_transition(dev, state) : -EINVAL;
629}
630EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
631
632/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200633 * pci_set_power_state - Set the power state of a PCI device
634 * @dev: PCI device to handle.
635 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
636 *
Nick Andrew877d0312009-01-26 11:06:57 +0100637 * Transition a device to a new power state, using the platform firmware and/or
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200638 * the device's PCI PM registers.
639 *
640 * RETURN VALUE:
641 * -EINVAL if the requested state is invalid.
642 * -EIO if device does not support PCI PM or its PM capabilities register has a
643 * wrong version, or device doesn't support the requested state.
644 * 0 if device already is in the requested state.
645 * 0 if device's power state has been successfully changed.
646 */
647int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
648{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200649 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200650
651 /* bound the state we're entering */
652 if (state > PCI_D3hot)
653 state = PCI_D3hot;
654 else if (state < PCI_D0)
655 state = PCI_D0;
656 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
657 /*
658 * If the device or the parent bridge do not support PCI PM,
659 * ignore the request if we're doing anything other than putting
660 * it into D0 (which would only happen on boot).
661 */
662 return 0;
663
Rafael J. Wysocki4a865902009-03-16 22:40:36 +0100664 /* Check if we're already there */
665 if (dev->current_state == state)
666 return 0;
667
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100668 __pci_start_power_transition(dev, state);
669
Alan Cox979b1792008-07-24 17:18:38 +0100670 /* This device is quirked not to be put into D3, so
671 don't put it in D3 */
672 if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
673 return 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200674
Rafael J. Wysockif00a20e2009-03-16 22:40:08 +0100675 error = pci_raw_set_power_state(dev, state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200676
Rafael J. Wysocki0e5dd462009-03-26 22:51:40 +0100677 if (!__pci_complete_power_transition(dev, state))
678 error = 0;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200679
680 return error;
681}
682
683/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 * pci_choose_state - Choose the power state of a PCI device
685 * @dev: PCI device to be suspended
686 * @state: target sleep state for the whole system. This is the value
687 * that is passed to suspend() function.
688 *
689 * Returns PCI power state suitable for given device and given system
690 * message.
691 */
692
693pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
694{
Shaohua Liab826ca2007-07-20 10:03:22 +0800695 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
698 return PCI_D0;
699
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200700 ret = platform_pci_choose_state(dev);
701 if (ret != PCI_POWER_ERROR)
702 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700703
704 switch (state.event) {
705 case PM_EVENT_ON:
706 return PCI_D0;
707 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700708 case PM_EVENT_PRETHAW:
709 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700710 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100711 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700712 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600714 dev_info(&dev->dev, "unrecognized suspend event %d\n",
715 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 BUG();
717 }
718 return PCI_D0;
719}
720
721EXPORT_SYMBOL(pci_choose_state);
722
Yu Zhao89858512009-02-16 02:55:47 +0800723#define PCI_EXP_SAVE_REGS 7
724
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800725#define pcie_cap_has_devctl(type, flags) 1
726#define pcie_cap_has_lnkctl(type, flags) \
727 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
728 (type == PCI_EXP_TYPE_ROOT_PORT || \
729 type == PCI_EXP_TYPE_ENDPOINT || \
730 type == PCI_EXP_TYPE_LEG_END))
731#define pcie_cap_has_sltctl(type, flags) \
732 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
733 ((type == PCI_EXP_TYPE_ROOT_PORT) || \
734 (type == PCI_EXP_TYPE_DOWNSTREAM && \
735 (flags & PCI_EXP_FLAGS_SLOT))))
736#define pcie_cap_has_rtctl(type, flags) \
737 ((flags & PCI_EXP_FLAGS_VERS) > 1 || \
738 (type == PCI_EXP_TYPE_ROOT_PORT || \
739 type == PCI_EXP_TYPE_RC_EC))
740#define pcie_cap_has_devctl2(type, flags) \
741 ((flags & PCI_EXP_FLAGS_VERS) > 1)
742#define pcie_cap_has_lnkctl2(type, flags) \
743 ((flags & PCI_EXP_FLAGS_VERS) > 1)
744#define pcie_cap_has_sltctl2(type, flags) \
745 ((flags & PCI_EXP_FLAGS_VERS) > 1)
746
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300747static int pci_save_pcie_state(struct pci_dev *dev)
748{
749 int pos, i = 0;
750 struct pci_cap_saved_state *save_state;
751 u16 *cap;
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800752 u16 flags;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300753
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +0900754 pos = pci_pcie_cap(dev);
755 if (!pos)
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300756 return 0;
757
Eric W. Biederman9f355752007-03-08 13:06:13 -0700758 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300759 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800760 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300761 return -ENOMEM;
762 }
763 cap = (u16 *)&save_state->data[0];
764
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800765 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
766
767 if (pcie_cap_has_devctl(dev->pcie_type, flags))
768 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
769 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
770 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
771 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
772 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
773 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
774 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
775 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
776 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]);
777 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
778 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]);
779 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
780 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]);
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100781
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300782 return 0;
783}
784
785static void pci_restore_pcie_state(struct pci_dev *dev)
786{
787 int i = 0, pos;
788 struct pci_cap_saved_state *save_state;
789 u16 *cap;
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800790 u16 flags;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300791
792 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
793 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
794 if (!save_state || pos <= 0)
795 return;
796 cap = (u16 *)&save_state->data[0];
797
Yu Zhao1b6b8ce2009-04-09 14:57:39 +0800798 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags);
799
800 if (pcie_cap_has_devctl(dev->pcie_type, flags))
801 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
802 if (pcie_cap_has_lnkctl(dev->pcie_type, flags))
803 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
804 if (pcie_cap_has_sltctl(dev->pcie_type, flags))
805 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
806 if (pcie_cap_has_rtctl(dev->pcie_type, flags))
807 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
808 if (pcie_cap_has_devctl2(dev->pcie_type, flags))
809 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]);
810 if (pcie_cap_has_lnkctl2(dev->pcie_type, flags))
811 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]);
812 if (pcie_cap_has_sltctl2(dev->pcie_type, flags))
813 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300814}
815
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800816
817static int pci_save_pcix_state(struct pci_dev *dev)
818{
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100819 int pos;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800820 struct pci_cap_saved_state *save_state;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800821
822 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
823 if (pos <= 0)
824 return 0;
825
Shaohua Lif34303d2007-12-18 09:56:47 +0800826 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800827 if (!save_state) {
Harvey Harrisone496b612009-01-07 16:22:37 -0800828 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800829 return -ENOMEM;
830 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800831
Rafael J. Wysocki63f48982008-12-07 22:02:58 +0100832 pci_read_config_word(dev, pos + PCI_X_CMD, (u16 *)save_state->data);
833
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800834 return 0;
835}
836
837static void pci_restore_pcix_state(struct pci_dev *dev)
838{
839 int i = 0, pos;
840 struct pci_cap_saved_state *save_state;
841 u16 *cap;
842
843 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
844 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
845 if (!save_state || pos <= 0)
846 return;
847 cap = (u16 *)&save_state->data[0];
848
849 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800850}
851
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853/**
854 * pci_save_state - save the PCI configuration space of a device before suspending
855 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 */
857int
858pci_save_state(struct pci_dev *dev)
859{
860 int i;
861 /* XXX: 100% dword access ok here? */
862 for (i = 0; i < 16; i++)
Kleber Sacilotto de Souza9e0b5b22009-11-25 00:55:51 -0200863 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100864 dev->state_saved = true;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300865 if ((i = pci_save_pcie_state(dev)) != 0)
866 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800867 if ((i = pci_save_pcix_state(dev)) != 0)
868 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 0;
870}
871
872/**
873 * pci_restore_state - Restore the saved state of a PCI device
874 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876int
877pci_restore_state(struct pci_dev *dev)
878{
879 int i;
Al Virob4482a42007-10-14 19:35:40 +0100880 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Alek Duc82f63e2009-08-08 08:46:19 +0800882 if (!dev->state_saved)
883 return 0;
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200884
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300885 /* PCI Express register must be restored first */
886 pci_restore_pcie_state(dev);
887
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700888 /*
889 * The Base Address register should be programmed before the command
890 * register(s)
891 */
892 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700893 pci_read_config_dword(dev, i * 4, &val);
894 if (val != dev->saved_config_space[i]) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600895 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
896 "space at offset %#x (was %#x, writing %#x)\n",
897 i, val, (int)dev->saved_config_space[i]);
Dave Jones04d9c1a2006-04-18 21:06:51 -0700898 pci_write_config_dword(dev,i * 4,
899 dev->saved_config_space[i]);
900 }
901 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800902 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800903 pci_restore_msi_state(dev);
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800904 pci_restore_iov_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100905
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200906 dev->state_saved = false;
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return 0;
909}
910
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900911static int do_pci_enable_device(struct pci_dev *dev, int bars)
912{
913 int err;
914
915 err = pci_set_power_state(dev, PCI_D0);
916 if (err < 0 && err != -EIO)
917 return err;
918 err = pcibios_enable_device(dev, bars);
919 if (err < 0)
920 return err;
921 pci_fixup_device(pci_fixup_enable, dev);
922
923 return 0;
924}
925
926/**
Tejun Heo0b62e132007-07-27 14:43:35 +0900927 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900928 * @dev: PCI device to be resumed
929 *
930 * Note this function is a backend of pci_default_resume and is not supposed
931 * to be called by normal code, write proper resume handler and use it instead.
932 */
Tejun Heo0b62e132007-07-27 14:43:35 +0900933int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900934{
Yuji Shimada296ccb02009-04-03 16:41:46 +0900935 if (pci_is_enabled(dev))
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900936 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
937 return 0;
938}
939
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100940static int __pci_enable_device_flags(struct pci_dev *dev,
941 resource_size_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100944 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900946 if (atomic_add_return(1, &dev->enable_cnt) > 1)
947 return 0; /* already enabled */
948
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100949 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
950 if (dev->resource[i].flags & flags)
951 bars |= (1 << i);
952
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900953 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700954 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900955 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900956 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100960 * pci_enable_device_io - Initialize a device for use with IO space
961 * @dev: PCI device to be initialized
962 *
963 * Initialize device before it's used by a driver. Ask low-level code
964 * to enable I/O resources. Wake up the device if it was suspended.
965 * Beware, this function can fail.
966 */
967int pci_enable_device_io(struct pci_dev *dev)
968{
969 return __pci_enable_device_flags(dev, IORESOURCE_IO);
970}
971
972/**
973 * pci_enable_device_mem - Initialize a device for use with Memory space
974 * @dev: PCI device to be initialized
975 *
976 * Initialize device before it's used by a driver. Ask low-level code
977 * to enable Memory resources. Wake up the device if it was suspended.
978 * Beware, this function can fail.
979 */
980int pci_enable_device_mem(struct pci_dev *dev)
981{
982 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/**
986 * pci_enable_device - Initialize device before it's used by a driver.
987 * @dev: PCI device to be initialized
988 *
989 * Initialize device before it's used by a driver. Ask low-level code
990 * to enable I/O and memory. Wake up the device if it was suspended.
991 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800992 *
993 * Note we don't actually enable the device many times if we call
994 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800996int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100998 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Tejun Heo9ac78492007-01-20 16:00:26 +09001001/*
1002 * Managed PCI resources. This manages device on/off, intx/msi/msix
1003 * on/off and BAR regions. pci_dev itself records msi/msix status, so
1004 * there's no need to track it separately. pci_devres is initialized
1005 * when a device is enabled using managed PCI device enable interface.
1006 */
1007struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -08001008 unsigned int enabled:1;
1009 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001010 unsigned int orig_intx:1;
1011 unsigned int restore_intx:1;
1012 u32 region_mask;
1013};
1014
1015static void pcim_release(struct device *gendev, void *res)
1016{
1017 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1018 struct pci_devres *this = res;
1019 int i;
1020
1021 if (dev->msi_enabled)
1022 pci_disable_msi(dev);
1023 if (dev->msix_enabled)
1024 pci_disable_msix(dev);
1025
1026 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1027 if (this->region_mask & (1 << i))
1028 pci_release_region(dev, i);
1029
1030 if (this->restore_intx)
1031 pci_intx(dev, this->orig_intx);
1032
Tejun Heo7f375f32007-02-25 04:36:01 -08001033 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +09001034 pci_disable_device(dev);
1035}
1036
1037static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
1038{
1039 struct pci_devres *dr, *new_dr;
1040
1041 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1042 if (dr)
1043 return dr;
1044
1045 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1046 if (!new_dr)
1047 return NULL;
1048 return devres_get(&pdev->dev, new_dr, NULL, NULL);
1049}
1050
1051static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
1052{
1053 if (pci_is_managed(pdev))
1054 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1055 return NULL;
1056}
1057
1058/**
1059 * pcim_enable_device - Managed pci_enable_device()
1060 * @pdev: PCI device to be initialized
1061 *
1062 * Managed pci_enable_device().
1063 */
1064int pcim_enable_device(struct pci_dev *pdev)
1065{
1066 struct pci_devres *dr;
1067 int rc;
1068
1069 dr = get_pci_dr(pdev);
1070 if (unlikely(!dr))
1071 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +09001072 if (dr->enabled)
1073 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001074
1075 rc = pci_enable_device(pdev);
1076 if (!rc) {
1077 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -08001078 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001079 }
1080 return rc;
1081}
1082
1083/**
1084 * pcim_pin_device - Pin managed PCI device
1085 * @pdev: PCI device to pin
1086 *
1087 * Pin managed PCI device @pdev. Pinned device won't be disabled on
1088 * driver detach. @pdev must have been enabled with
1089 * pcim_enable_device().
1090 */
1091void pcim_pin_device(struct pci_dev *pdev)
1092{
1093 struct pci_devres *dr;
1094
1095 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -08001096 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +09001097 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001098 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +09001099}
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101/**
1102 * pcibios_disable_device - disable arch specific PCI resources for device dev
1103 * @dev: the PCI device to disable
1104 *
1105 * Disables architecture specific PCI resources for the device. This
1106 * is the default implementation. Architecture implementations can
1107 * override this.
1108 */
1109void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
1110
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001111static void do_pci_disable_device(struct pci_dev *dev)
1112{
1113 u16 pci_command;
1114
1115 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1116 if (pci_command & PCI_COMMAND_MASTER) {
1117 pci_command &= ~PCI_COMMAND_MASTER;
1118 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1119 }
1120
1121 pcibios_disable_device(dev);
1122}
1123
1124/**
1125 * pci_disable_enabled_device - Disable device without updating enable_cnt
1126 * @dev: PCI device to disable
1127 *
1128 * NOTE: This function is a backend of PCI power management routines and is
1129 * not supposed to be called drivers.
1130 */
1131void pci_disable_enabled_device(struct pci_dev *dev)
1132{
Yuji Shimada296ccb02009-04-03 16:41:46 +09001133 if (pci_is_enabled(dev))
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001134 do_pci_disable_device(dev);
1135}
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/**
1138 * pci_disable_device - Disable PCI device after use
1139 * @dev: PCI device to be disabled
1140 *
1141 * Signal to the system that the PCI device is not in use by the system
1142 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001143 *
1144 * Note we don't actually disable the device until all callers of
1145 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
1147void
1148pci_disable_device(struct pci_dev *dev)
1149{
Tejun Heo9ac78492007-01-20 16:00:26 +09001150 struct pci_devres *dr;
Shaohua Li99dc8042006-05-26 10:58:27 +08001151
Tejun Heo9ac78492007-01-20 16:00:26 +09001152 dr = find_pci_dr(dev);
1153 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001154 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001155
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001156 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
1157 return;
1158
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001159 do_pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Rafael J. Wysockifa58d302009-01-07 13:03:42 +01001161 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
1164/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001165 * pcibios_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001166 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001167 * @state: Reset state to enter into
1168 *
1169 *
Stefan Assmann45e829e2009-12-03 06:49:24 -05001170 * Sets the PCIe reset state for the device. This is the default
Brian Kingf7bdd122007-04-06 16:39:36 -05001171 * implementation. Architecture implementations can override this.
1172 */
1173int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1174 enum pcie_reset_state state)
1175{
1176 return -EINVAL;
1177}
1178
1179/**
1180 * pci_set_pcie_reset_state - set reset state for device dev
Stefan Assmann45e829e2009-12-03 06:49:24 -05001181 * @dev: the PCIe device reset
Brian Kingf7bdd122007-04-06 16:39:36 -05001182 * @state: Reset state to enter into
1183 *
1184 *
1185 * Sets the PCI reset state for the device.
1186 */
1187int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1188{
1189 return pcibios_set_pcie_reset_state(dev, state);
1190}
1191
1192/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001193 * pci_pme_capable - check the capability of PCI device to generate PME#
1194 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001195 * @state: PCI state from which device will issue PME#.
1196 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001197bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001198{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001199 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001200 return false;
1201
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001202 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001203}
1204
1205/**
1206 * pci_pme_active - enable or disable PCI device's PME# function
1207 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001208 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1209 *
1210 * The caller must verify that the device is capable of generating PME# before
1211 * calling this function with @enable equal to 'true'.
1212 */
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02001213void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001214{
1215 u16 pmcsr;
1216
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001217 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001218 return;
1219
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001220 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001221 /* Clear PME_Status by writing 1 to it and enable PME# */
1222 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1223 if (!enable)
1224 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1225
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001226 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001227
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001228 dev_printk(KERN_DEBUG, &dev->dev, "PME# %s\n",
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001229 enable ? "enabled" : "disabled");
1230}
1231
1232/**
David Brownell075c1772007-04-26 00:12:06 -07001233 * pci_enable_wake - enable PCI device as wakeup event source
1234 * @dev: PCI device affected
1235 * @state: PCI state from which device will issue wakeup events
1236 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 *
David Brownell075c1772007-04-26 00:12:06 -07001238 * This enables the device as a wakeup event source, or disables it.
1239 * When such events involves platform-specific hooks, those hooks are
1240 * called automatically by this routine.
1241 *
1242 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001243 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001244 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001245 * RETURN VALUE:
1246 * 0 is returned on success
1247 * -EINVAL is returned if device is not supposed to wake up the system
1248 * Error code depending on the platform is returned if both the platform and
1249 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 */
Frans Pop7d9a73f2009-06-17 00:16:15 +02001251int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001253 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Alan Sternbebd5902008-12-16 14:06:58 -05001255 if (enable && !device_may_wakeup(&dev->dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001256 return -EINVAL;
1257
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001258 /* Don't do the same thing twice in a row for one device. */
1259 if (!!enable == !!dev->wakeup_prepared)
1260 return 0;
1261
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001262 /*
1263 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1264 * Anderson we should be doing PME# wake enable followed by ACPI wake
1265 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001266 */
1267
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001268 if (enable) {
1269 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001270
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001271 if (pci_pme_capable(dev, state))
1272 pci_pme_active(dev, true);
1273 else
1274 ret = 1;
1275 error = platform_pci_sleep_wake(dev, true);
1276 if (ret)
1277 ret = error;
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001278 if (!ret)
1279 dev->wakeup_prepared = true;
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001280 } else {
1281 platform_pci_sleep_wake(dev, false);
1282 pci_pme_active(dev, false);
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001283 dev->wakeup_prepared = false;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001284 }
1285
Rafael J. Wysocki5bcc2fb2009-09-08 23:12:59 +02001286 return ret;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001287}
1288
1289/**
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02001290 * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1291 * @dev: PCI device to prepare
1292 * @enable: True to enable wake-up event generation; false to disable
1293 *
1294 * Many drivers want the device to wake up the system from D3_hot or D3_cold
1295 * and this function allows them to set that up cleanly - pci_enable_wake()
1296 * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1297 * ordering constraints.
1298 *
1299 * This function only returns error code if the device is not capable of
1300 * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1301 * enable wake-up power for it.
1302 */
1303int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1304{
1305 return pci_pme_capable(dev, PCI_D3cold) ?
1306 pci_enable_wake(dev, PCI_D3cold, enable) :
1307 pci_enable_wake(dev, PCI_D3hot, enable);
1308}
1309
1310/**
Jesse Barnes37139072008-07-28 11:49:26 -07001311 * pci_target_state - find an appropriate low power state for a given PCI dev
1312 * @dev: PCI device
1313 *
1314 * Use underlying platform code to find a supported low power state for @dev.
1315 * If the platform can't manage @dev, return the deepest state from which it
1316 * can generate wake events, based on any available PME info.
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001317 */
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001318pci_power_t pci_target_state(struct pci_dev *dev)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001319{
1320 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001321
1322 if (platform_pci_power_manageable(dev)) {
1323 /*
1324 * Call the platform to choose the target state of the device
1325 * and enable wake-up from this state if supported.
1326 */
1327 pci_power_t state = platform_pci_choose_state(dev);
1328
1329 switch (state) {
1330 case PCI_POWER_ERROR:
1331 case PCI_UNKNOWN:
1332 break;
1333 case PCI_D1:
1334 case PCI_D2:
1335 if (pci_no_d1d2(dev))
1336 break;
1337 default:
1338 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001339 }
Rafael J. Wysockid2abdf62009-06-14 21:25:02 +02001340 } else if (!dev->pm_cap) {
1341 target_state = PCI_D0;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001342 } else if (device_may_wakeup(&dev->dev)) {
1343 /*
1344 * Find the deepest state from which the device can generate
1345 * wake-up events, make it the target state and enable device
1346 * to generate PME#.
1347 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001348 if (dev->pme_support) {
1349 while (target_state
1350 && !(dev->pme_support & (1 << target_state)))
1351 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001352 }
1353 }
1354
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02001355 return target_state;
1356}
1357
1358/**
1359 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1360 * @dev: Device to handle.
1361 *
1362 * Choose the power state appropriate for the device depending on whether
1363 * it can wake up the system and/or is power manageable by the platform
1364 * (PCI_D3hot is the default) and put the device into that state.
1365 */
1366int pci_prepare_to_sleep(struct pci_dev *dev)
1367{
1368 pci_power_t target_state = pci_target_state(dev);
1369 int error;
1370
1371 if (target_state == PCI_POWER_ERROR)
1372 return -EIO;
1373
Rafael J. Wysocki8efb8c72009-03-30 21:46:27 +02001374 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001375
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001376 error = pci_set_power_state(dev, target_state);
1377
1378 if (error)
1379 pci_enable_wake(dev, target_state, false);
1380
1381 return error;
1382}
1383
1384/**
Randy Dunlap443bd1c2008-07-21 09:27:18 -07001385 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001386 * @dev: Device to handle.
1387 *
1388 * Disable device's sytem wake-up capability and put it into D0.
1389 */
1390int pci_back_from_sleep(struct pci_dev *dev)
1391{
1392 pci_enable_wake(dev, PCI_D0, false);
1393 return pci_set_power_state(dev, PCI_D0);
1394}
1395
1396/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001397 * pci_pm_init - Initialize PM functions of given PCI device
1398 * @dev: PCI device to handle.
1399 */
1400void pci_pm_init(struct pci_dev *dev)
1401{
1402 int pm;
1403 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001404
Rafael J. Wysockie80bb092009-09-08 23:14:49 +02001405 dev->wakeup_prepared = false;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001406 dev->pm_cap = 0;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /* find PCI PM capability in list */
1409 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001410 if (!pm)
Linus Torvalds50246dd2009-01-16 08:14:51 -08001411 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001413 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001415 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1416 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1417 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds50246dd2009-01-16 08:14:51 -08001418 return;
David Brownell075c1772007-04-26 00:12:06 -07001419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001421 dev->pm_cap = pm;
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01001422 dev->d3_delay = PCI_PM_D3_WAIT;
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001423
1424 dev->d1_support = false;
1425 dev->d2_support = false;
1426 if (!pci_no_d1d2(dev)) {
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001427 if (pmc & PCI_PM_CAP_D1)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001428 dev->d1_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001429 if (pmc & PCI_PM_CAP_D2)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001430 dev->d2_support = true;
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001431
1432 if (dev->d1_support || dev->d2_support)
1433 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
Jesse Barnesec84f122008-09-23 11:43:34 -07001434 dev->d1_support ? " D1" : "",
1435 dev->d2_support ? " D2" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001436 }
1437
1438 pmc &= PCI_PM_CAP_PME_MASK;
1439 if (pmc) {
Bjorn Helgaas10c3d712009-11-04 10:32:42 -07001440 dev_printk(KERN_DEBUG, &dev->dev,
1441 "PME# supported from%s%s%s%s%s\n",
Bjorn Helgaasc9ed77e2008-08-22 09:37:02 -06001442 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1443 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1444 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1445 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1446 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001447 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001448 /*
1449 * Make device's PM flags reflect the wake-up capability, but
1450 * let the user space enable it to wake up the system as needed.
1451 */
1452 device_set_wakeup_capable(&dev->dev, true);
1453 device_set_wakeup_enable(&dev->dev, false);
1454 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001455 pci_pme_active(dev, false);
1456 } else {
1457 dev->pme_support = 0;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Yu Zhao58c3a722008-10-14 14:02:53 +08001461/**
Jesse Barneseb9c39d2008-12-17 12:10:05 -08001462 * platform_pci_wakeup_init - init platform wakeup if present
1463 * @dev: PCI device
1464 *
1465 * Some devices don't have PCI PM caps but can still generate wakeup
1466 * events through platform methods (like ACPI events). If @dev supports
1467 * platform wakeup events, set the device flag to indicate as much. This
1468 * may be redundant if the device also supports PCI PM caps, but double
1469 * initialization should be safe in that case.
1470 */
1471void platform_pci_wakeup_init(struct pci_dev *dev)
1472{
1473 if (!platform_pci_can_wakeup(dev))
1474 return;
1475
1476 device_set_wakeup_capable(&dev->dev, true);
1477 device_set_wakeup_enable(&dev->dev, false);
1478 platform_pci_sleep_wake(dev, false);
1479}
1480
1481/**
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001482 * pci_add_save_buffer - allocate buffer for saving given capability registers
1483 * @dev: the PCI device
1484 * @cap: the capability to allocate the buffer for
1485 * @size: requested size of the buffer
1486 */
1487static int pci_add_cap_save_buffer(
1488 struct pci_dev *dev, char cap, unsigned int size)
1489{
1490 int pos;
1491 struct pci_cap_saved_state *save_state;
1492
1493 pos = pci_find_capability(dev, cap);
1494 if (pos <= 0)
1495 return 0;
1496
1497 save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
1498 if (!save_state)
1499 return -ENOMEM;
1500
1501 save_state->cap_nr = cap;
1502 pci_add_saved_cap(dev, save_state);
1503
1504 return 0;
1505}
1506
1507/**
1508 * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
1509 * @dev: the PCI device
1510 */
1511void pci_allocate_cap_save_buffers(struct pci_dev *dev)
1512{
1513 int error;
1514
Yu Zhao89858512009-02-16 02:55:47 +08001515 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
1516 PCI_EXP_SAVE_REGS * sizeof(u16));
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01001517 if (error)
1518 dev_err(&dev->dev,
1519 "unable to preallocate PCI Express save buffer\n");
1520
1521 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
1522 if (error)
1523 dev_err(&dev->dev,
1524 "unable to preallocate PCI-X save buffer\n");
1525}
1526
1527/**
Yu Zhao58c3a722008-10-14 14:02:53 +08001528 * pci_enable_ari - enable ARI forwarding if hardware support it
1529 * @dev: the PCI device
1530 */
1531void pci_enable_ari(struct pci_dev *dev)
1532{
1533 int pos;
1534 u32 cap;
1535 u16 ctrl;
Zhao, Yu81135872008-10-23 13:15:39 +08001536 struct pci_dev *bridge;
Yu Zhao58c3a722008-10-14 14:02:53 +08001537
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001538 if (!pci_is_pcie(dev) || dev->devfn)
Yu Zhao58c3a722008-10-14 14:02:53 +08001539 return;
1540
Zhao, Yu81135872008-10-23 13:15:39 +08001541 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
Yu Zhao58c3a722008-10-14 14:02:53 +08001542 if (!pos)
1543 return;
1544
Zhao, Yu81135872008-10-23 13:15:39 +08001545 bridge = dev->bus->self;
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001546 if (!bridge || !pci_is_pcie(bridge))
Zhao, Yu81135872008-10-23 13:15:39 +08001547 return;
1548
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09001549 pos = pci_pcie_cap(bridge);
Zhao, Yu81135872008-10-23 13:15:39 +08001550 if (!pos)
1551 return;
1552
1553 pci_read_config_dword(bridge, pos + PCI_EXP_DEVCAP2, &cap);
Yu Zhao58c3a722008-10-14 14:02:53 +08001554 if (!(cap & PCI_EXP_DEVCAP2_ARI))
1555 return;
1556
Zhao, Yu81135872008-10-23 13:15:39 +08001557 pci_read_config_word(bridge, pos + PCI_EXP_DEVCTL2, &ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001558 ctrl |= PCI_EXP_DEVCTL2_ARI;
Zhao, Yu81135872008-10-23 13:15:39 +08001559 pci_write_config_word(bridge, pos + PCI_EXP_DEVCTL2, ctrl);
Yu Zhao58c3a722008-10-14 14:02:53 +08001560
Zhao, Yu81135872008-10-23 13:15:39 +08001561 bridge->ari_enabled = 1;
Yu Zhao58c3a722008-10-14 14:02:53 +08001562}
1563
Chris Wright5d990b62009-12-04 12:15:21 -08001564static int pci_acs_enable;
1565
1566/**
1567 * pci_request_acs - ask for ACS to be enabled if supported
1568 */
1569void pci_request_acs(void)
1570{
1571 pci_acs_enable = 1;
1572}
1573
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001574/**
Allen Kayae21ee62009-10-07 10:27:17 -07001575 * pci_enable_acs - enable ACS if hardware support it
1576 * @dev: the PCI device
1577 */
1578void pci_enable_acs(struct pci_dev *dev)
1579{
1580 int pos;
1581 u16 cap;
1582 u16 ctrl;
1583
Chris Wright5d990b62009-12-04 12:15:21 -08001584 if (!pci_acs_enable)
1585 return;
1586
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001587 if (!pci_is_pcie(dev))
Allen Kayae21ee62009-10-07 10:27:17 -07001588 return;
1589
1590 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
1591 if (!pos)
1592 return;
1593
1594 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
1595 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
1596
1597 /* Source Validation */
1598 ctrl |= (cap & PCI_ACS_SV);
1599
1600 /* P2P Request Redirect */
1601 ctrl |= (cap & PCI_ACS_RR);
1602
1603 /* P2P Completion Redirect */
1604 ctrl |= (cap & PCI_ACS_CR);
1605
1606 /* Upstream Forwarding */
1607 ctrl |= (cap & PCI_ACS_UF);
1608
1609 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
1610}
1611
1612/**
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001613 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
1614 * @dev: the PCI device
1615 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1616 *
1617 * Perform INTx swizzling for a device behind one level of bridge. This is
1618 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001619 * behind bridges on add-in cards. For devices with ARI enabled, the slot
1620 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
1621 * the PCI Express Base Specification, Revision 2.1)
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001622 */
1623u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin)
1624{
Matthew Wilcox46b952a2009-07-01 14:24:30 -07001625 int slot;
1626
1627 if (pci_ari_enabled(dev->bus))
1628 slot = 0;
1629 else
1630 slot = PCI_SLOT(dev->devfn);
1631
1632 return (((pin - 1) + slot) % 4) + 1;
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001633}
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635int
1636pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1637{
1638 u8 pin;
1639
Kristen Accardi514d2072005-11-02 16:24:39 -08001640 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!pin)
1642 return -1;
Bjorn Helgaas878f2e52008-12-09 16:11:46 -07001643
Kenji Kaneshige8784fd42009-05-26 16:07:33 +09001644 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas57c2cf72008-12-11 11:24:23 -07001645 pin = pci_swizzle_interrupt_pin(dev, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 dev = dev->bus->self;
1647 }
1648 *bridge = dev;
1649 return pin;
1650}
1651
1652/**
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001653 * pci_common_swizzle - swizzle INTx all the way to root bridge
1654 * @dev: the PCI device
1655 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1656 *
1657 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
1658 * bridges all the way up to a PCI root bus.
1659 */
1660u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
1661{
1662 u8 pin = *pinp;
1663
Kenji Kaneshige1eb39482009-05-26 16:08:36 +09001664 while (!pci_is_root_bus(dev->bus)) {
Bjorn Helgaas68feac82008-12-16 21:36:55 -07001665 pin = pci_swizzle_interrupt_pin(dev, pin);
1666 dev = dev->bus->self;
1667 }
1668 *pinp = pin;
1669 return PCI_SLOT(dev->devfn);
1670}
1671
1672/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 * pci_release_region - Release a PCI bar
1674 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1675 * @bar: BAR to release
1676 *
1677 * Releases the PCI I/O and memory resources previously reserved by a
1678 * successful call to pci_request_region. Call this function only
1679 * after all use of the PCI regions has ceased.
1680 */
1681void pci_release_region(struct pci_dev *pdev, int bar)
1682{
Tejun Heo9ac78492007-01-20 16:00:26 +09001683 struct pci_devres *dr;
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (pci_resource_len(pdev, bar) == 0)
1686 return;
1687 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1688 release_region(pci_resource_start(pdev, bar),
1689 pci_resource_len(pdev, bar));
1690 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1691 release_mem_region(pci_resource_start(pdev, bar),
1692 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09001693
1694 dr = find_pci_dr(pdev);
1695 if (dr)
1696 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
1699/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001700 * __pci_request_region - Reserved PCI I/O and memory resource
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 * @pdev: PCI device whose resources are to be reserved
1702 * @bar: BAR to be reserved
1703 * @res_name: Name to be associated with resource.
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001704 * @exclusive: whether the region access is exclusive or not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 *
1706 * Mark the PCI region associated with PCI device @pdev BR @bar as
1707 * being reserved by owner @res_name. Do not access any
1708 * address inside the PCI regions unless this call returns
1709 * successfully.
1710 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001711 * If @exclusive is set, then the region is marked so that userspace
1712 * is explicitly not allowed to map the resource via /dev/mem or
1713 * sysfs MMIO access.
1714 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 * Returns 0 on success, or %EBUSY on error. A warning
1716 * message is also printed on failure.
1717 */
Arjan van de Vene8de1482008-10-22 19:55:31 -07001718static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
1719 int exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Tejun Heo9ac78492007-01-20 16:00:26 +09001721 struct pci_devres *dr;
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (pci_resource_len(pdev, bar) == 0)
1724 return 0;
1725
1726 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1727 if (!request_region(pci_resource_start(pdev, bar),
1728 pci_resource_len(pdev, bar), res_name))
1729 goto err_out;
1730 }
1731 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001732 if (!__request_mem_region(pci_resource_start(pdev, bar),
1733 pci_resource_len(pdev, bar), res_name,
1734 exclusive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 goto err_out;
1736 }
Tejun Heo9ac78492007-01-20 16:00:26 +09001737
1738 dr = find_pci_dr(pdev);
1739 if (dr)
1740 dr->region_mask |= 1 << bar;
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return 0;
1743
1744err_out:
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001745 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
Benjamin Herrenschmidt096e6f62008-10-20 15:07:37 +11001746 &pdev->resource[bar]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return -EBUSY;
1748}
1749
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001750/**
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001751 * pci_request_region - Reserve PCI I/O and memory resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001752 * @pdev: PCI device whose resources are to be reserved
1753 * @bar: BAR to be reserved
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001754 * @res_name: Name to be associated with resource
Arjan van de Vene8de1482008-10-22 19:55:31 -07001755 *
Randy Dunlapf5ddcac2009-01-09 17:03:20 -08001756 * Mark the PCI region associated with PCI device @pdev BAR @bar as
Arjan van de Vene8de1482008-10-22 19:55:31 -07001757 * being reserved by owner @res_name. Do not access any
1758 * address inside the PCI regions unless this call returns
1759 * successfully.
1760 *
1761 * Returns 0 on success, or %EBUSY on error. A warning
1762 * message is also printed on failure.
1763 */
1764int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
1765{
1766 return __pci_request_region(pdev, bar, res_name, 0);
1767}
1768
1769/**
1770 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
1771 * @pdev: PCI device whose resources are to be reserved
1772 * @bar: BAR to be reserved
1773 * @res_name: Name to be associated with resource.
1774 *
1775 * Mark the PCI region associated with PCI device @pdev BR @bar as
1776 * being reserved by owner @res_name. Do not access any
1777 * address inside the PCI regions unless this call returns
1778 * successfully.
1779 *
1780 * Returns 0 on success, or %EBUSY on error. A warning
1781 * message is also printed on failure.
1782 *
1783 * The key difference that _exclusive makes it that userspace is
1784 * explicitly not allowed to map the resource via /dev/mem or
1785 * sysfs.
1786 */
1787int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
1788{
1789 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
1790}
1791/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001792 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1793 * @pdev: PCI device whose resources were previously reserved
1794 * @bars: Bitmask of BARs to be released
1795 *
1796 * Release selected PCI I/O and memory resources previously reserved.
1797 * Call this function only after all use of the PCI regions has ceased.
1798 */
1799void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1800{
1801 int i;
1802
1803 for (i = 0; i < 6; i++)
1804 if (bars & (1 << i))
1805 pci_release_region(pdev, i);
1806}
1807
Arjan van de Vene8de1482008-10-22 19:55:31 -07001808int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
1809 const char *res_name, int excl)
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001810{
1811 int i;
1812
1813 for (i = 0; i < 6; i++)
1814 if (bars & (1 << i))
Arjan van de Vene8de1482008-10-22 19:55:31 -07001815 if (__pci_request_region(pdev, i, res_name, excl))
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001816 goto err_out;
1817 return 0;
1818
1819err_out:
1820 while(--i >= 0)
1821 if (bars & (1 << i))
1822 pci_release_region(pdev, i);
1823
1824 return -EBUSY;
1825}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Arjan van de Vene8de1482008-10-22 19:55:31 -07001827
1828/**
1829 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1830 * @pdev: PCI device whose resources are to be reserved
1831 * @bars: Bitmask of BARs to be requested
1832 * @res_name: Name to be associated with resource
1833 */
1834int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1835 const char *res_name)
1836{
1837 return __pci_request_selected_regions(pdev, bars, res_name, 0);
1838}
1839
1840int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
1841 int bars, const char *res_name)
1842{
1843 return __pci_request_selected_regions(pdev, bars, res_name,
1844 IORESOURCE_EXCLUSIVE);
1845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847/**
1848 * pci_release_regions - Release reserved PCI I/O and memory resources
1849 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1850 *
1851 * Releases all PCI I/O and memory resources previously reserved by a
1852 * successful call to pci_request_regions. Call this function only
1853 * after all use of the PCI regions has ceased.
1854 */
1855
1856void pci_release_regions(struct pci_dev *pdev)
1857{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001858 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860
1861/**
1862 * pci_request_regions - Reserved PCI I/O and memory resources
1863 * @pdev: PCI device whose resources are to be reserved
1864 * @res_name: Name to be associated with resource.
1865 *
1866 * Mark all PCI regions associated with PCI device @pdev as
1867 * being reserved by owner @res_name. Do not access any
1868 * address inside the PCI regions unless this call returns
1869 * successfully.
1870 *
1871 * Returns 0 on success, or %EBUSY on error. A warning
1872 * message is also printed on failure.
1873 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001874int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001876 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
1878
1879/**
Arjan van de Vene8de1482008-10-22 19:55:31 -07001880 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
1881 * @pdev: PCI device whose resources are to be reserved
1882 * @res_name: Name to be associated with resource.
1883 *
1884 * Mark all PCI regions associated with PCI device @pdev as
1885 * being reserved by owner @res_name. Do not access any
1886 * address inside the PCI regions unless this call returns
1887 * successfully.
1888 *
1889 * pci_request_regions_exclusive() will mark the region so that
1890 * /dev/mem and the sysfs MMIO access will not be allowed.
1891 *
1892 * Returns 0 on success, or %EBUSY on error. A warning
1893 * message is also printed on failure.
1894 */
1895int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
1896{
1897 return pci_request_selected_regions_exclusive(pdev,
1898 ((1 << 6) - 1), res_name);
1899}
1900
Ben Hutchings6a479072008-12-23 03:08:29 +00001901static void __pci_set_master(struct pci_dev *dev, bool enable)
1902{
1903 u16 old_cmd, cmd;
1904
1905 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
1906 if (enable)
1907 cmd = old_cmd | PCI_COMMAND_MASTER;
1908 else
1909 cmd = old_cmd & ~PCI_COMMAND_MASTER;
1910 if (cmd != old_cmd) {
1911 dev_dbg(&dev->dev, "%s bus mastering\n",
1912 enable ? "enabling" : "disabling");
1913 pci_write_config_word(dev, PCI_COMMAND, cmd);
1914 }
1915 dev->is_busmaster = enable;
1916}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001917
1918/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 * pci_set_master - enables bus-mastering for device dev
1920 * @dev: the PCI device to enable
1921 *
1922 * Enables bus-mastering on the device and calls pcibios_set_master()
1923 * to do the needed arch specific settings.
1924 */
Ben Hutchings6a479072008-12-23 03:08:29 +00001925void pci_set_master(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Ben Hutchings6a479072008-12-23 03:08:29 +00001927 __pci_set_master(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 pcibios_set_master(dev);
1929}
1930
Ben Hutchings6a479072008-12-23 03:08:29 +00001931/**
1932 * pci_clear_master - disables bus-mastering for device dev
1933 * @dev: the PCI device to disable
1934 */
1935void pci_clear_master(struct pci_dev *dev)
1936{
1937 __pci_set_master(dev, false);
1938}
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001941 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1942 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001944 * Helper function for pci_set_mwi.
1945 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1947 *
1948 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1949 */
Tejun Heo15ea76d2009-09-22 17:34:48 +09001950int pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 u8 cacheline_size;
1953
1954 if (!pci_cache_line_size)
Tejun Heo15ea76d2009-09-22 17:34:48 +09001955 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
1958 equal to or multiple of the right value. */
1959 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1960 if (cacheline_size >= pci_cache_line_size &&
1961 (cacheline_size % pci_cache_line_size) == 0)
1962 return 0;
1963
1964 /* Write the correct value. */
1965 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
1966 /* Read it back. */
1967 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1968 if (cacheline_size == pci_cache_line_size)
1969 return 0;
1970
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001971 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
1972 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 return -EINVAL;
1975}
Tejun Heo15ea76d2009-09-22 17:34:48 +09001976EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
1977
1978#ifdef PCI_DISABLE_MWI
1979int pci_set_mwi(struct pci_dev *dev)
1980{
1981 return 0;
1982}
1983
1984int pci_try_set_mwi(struct pci_dev *dev)
1985{
1986 return 0;
1987}
1988
1989void pci_clear_mwi(struct pci_dev *dev)
1990{
1991}
1992
1993#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995/**
1996 * pci_set_mwi - enables memory-write-invalidate PCI transaction
1997 * @dev: the PCI device for which MWI is enabled
1998 *
Randy Dunlap694625c2007-07-09 11:55:54 -07001999 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 *
2001 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2002 */
2003int
2004pci_set_mwi(struct pci_dev *dev)
2005{
2006 int rc;
2007 u16 cmd;
2008
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002009 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (rc)
2011 return rc;
2012
2013 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2014 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06002015 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 cmd |= PCI_COMMAND_INVALIDATE;
2017 pci_write_config_word(dev, PCI_COMMAND, cmd);
2018 }
2019
2020 return 0;
2021}
2022
2023/**
Randy Dunlap694625c2007-07-09 11:55:54 -07002024 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2025 * @dev: the PCI device for which MWI is enabled
2026 *
2027 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2028 * Callers are not required to check the return value.
2029 *
2030 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2031 */
2032int pci_try_set_mwi(struct pci_dev *dev)
2033{
2034 int rc = pci_set_mwi(dev);
2035 return rc;
2036}
2037
2038/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2040 * @dev: the PCI device to disable
2041 *
2042 * Disables PCI Memory-Write-Invalidate transaction on the device
2043 */
2044void
2045pci_clear_mwi(struct pci_dev *dev)
2046{
2047 u16 cmd;
2048
2049 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2050 if (cmd & PCI_COMMAND_INVALIDATE) {
2051 cmd &= ~PCI_COMMAND_INVALIDATE;
2052 pci_write_config_word(dev, PCI_COMMAND, cmd);
2053 }
2054}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06002055#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Brett M Russa04ce0f2005-08-15 15:23:41 -04002057/**
2058 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07002059 * @pdev: the PCI device to operate on
2060 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04002061 *
2062 * Enables/disables PCI INTx for device dev
2063 */
2064void
2065pci_intx(struct pci_dev *pdev, int enable)
2066{
2067 u16 pci_command, new;
2068
2069 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
2070
2071 if (enable) {
2072 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
2073 } else {
2074 new = pci_command | PCI_COMMAND_INTX_DISABLE;
2075 }
2076
2077 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09002078 struct pci_devres *dr;
2079
Brett M Russ2fd9d742005-09-09 10:02:22 -07002080 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09002081
2082 dr = find_pci_dr(pdev);
2083 if (dr && !dr->restore_intx) {
2084 dr->restore_intx = 1;
2085 dr->orig_intx = !enable;
2086 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04002087 }
2088}
2089
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002090/**
2091 * pci_msi_off - disables any msi or msix capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07002092 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08002093 *
2094 * If you want to use msi see pci_enable_msi and friends.
2095 * This is a lower level primitive that allows us to disable
2096 * msi operation at the device level.
2097 */
2098void pci_msi_off(struct pci_dev *dev)
2099{
2100 int pos;
2101 u16 control;
2102
2103 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
2104 if (pos) {
2105 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
2106 control &= ~PCI_MSI_FLAGS_ENABLE;
2107 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
2108 }
2109 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
2110 if (pos) {
2111 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
2112 control &= ~PCI_MSIX_FLAGS_ENABLE;
2113 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
2114 }
2115}
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
2118/*
2119 * These can be overridden by arch-specific implementations
2120 */
2121int
2122pci_set_dma_mask(struct pci_dev *dev, u64 mask)
2123{
2124 if (!pci_dma_supported(dev, mask))
2125 return -EIO;
2126
2127 dev->dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002128 dev_dbg(&dev->dev, "using %dbit DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 return 0;
2131}
2132
2133int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
2135{
2136 if (!pci_dma_supported(dev, mask))
2137 return -EIO;
2138
2139 dev->dev.coherent_dma_mask = mask;
Yinghai Luc6a41572009-11-25 16:28:50 -08002140 dev_dbg(&dev->dev, "using %dbit consistent DMA mask\n", fls64(mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 return 0;
2143}
2144#endif
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002145
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08002146#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
2147int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
2148{
2149 return dma_set_max_seg_size(&dev->dev, size);
2150}
2151EXPORT_SYMBOL(pci_set_dma_max_seg_size);
2152#endif
2153
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08002154#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
2155int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
2156{
2157 return dma_set_seg_boundary(&dev->dev, mask);
2158}
2159EXPORT_SYMBOL(pci_set_dma_seg_boundary);
2160#endif
2161
Yu Zhao8c1c6992009-06-13 15:52:13 +08002162static int pcie_flr(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002163{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002164 int i;
2165 int pos;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002166 u32 cap;
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002167 u16 status, control;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002168
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002169 pos = pci_pcie_cap(dev);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002170 if (!pos)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002171 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002172
2173 pci_read_config_dword(dev, pos + PCI_EXP_DEVCAP, &cap);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002174 if (!(cap & PCI_EXP_DEVCAP_FLR))
2175 return -ENOTTY;
2176
Sheng Yangd91cdc72008-11-11 17:17:47 +08002177 if (probe)
2178 return 0;
2179
Sheng Yang8dd7f802008-10-21 17:38:25 +08002180 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002181 for (i = 0; i < 4; i++) {
2182 if (i)
2183 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002184
Yu Zhao8c1c6992009-06-13 15:52:13 +08002185 pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &status);
2186 if (!(status & PCI_EXP_DEVSTA_TRPND))
2187 goto clear;
2188 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002189
Yu Zhao8c1c6992009-06-13 15:52:13 +08002190 dev_err(&dev->dev, "transaction is not cleared; "
2191 "proceeding with reset anyway\n");
Sheng Yang5fe5db02009-02-09 14:53:47 +08002192
Yu Zhao8c1c6992009-06-13 15:52:13 +08002193clear:
Shmulik Ravid04b55c42009-12-03 22:27:51 +02002194 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &control);
2195 control |= PCI_EXP_DEVCTL_BCR_FLR;
2196 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, control);
2197
Yu Zhao8c1c6992009-06-13 15:52:13 +08002198 msleep(100);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002199
Sheng Yang8dd7f802008-10-21 17:38:25 +08002200 return 0;
2201}
Sheng Yangd91cdc72008-11-11 17:17:47 +08002202
Yu Zhao8c1c6992009-06-13 15:52:13 +08002203static int pci_af_flr(struct pci_dev *dev, int probe)
Sheng Yang1ca88792008-11-11 17:17:48 +08002204{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002205 int i;
2206 int pos;
Sheng Yang1ca88792008-11-11 17:17:48 +08002207 u8 cap;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002208 u8 status;
Sheng Yang1ca88792008-11-11 17:17:48 +08002209
Yu Zhao8c1c6992009-06-13 15:52:13 +08002210 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
2211 if (!pos)
Sheng Yang1ca88792008-11-11 17:17:48 +08002212 return -ENOTTY;
Yu Zhao8c1c6992009-06-13 15:52:13 +08002213
2214 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
Sheng Yang1ca88792008-11-11 17:17:48 +08002215 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
2216 return -ENOTTY;
2217
2218 if (probe)
2219 return 0;
2220
Sheng Yang1ca88792008-11-11 17:17:48 +08002221 /* Wait for Transaction Pending bit clean */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002222 for (i = 0; i < 4; i++) {
2223 if (i)
2224 msleep((1 << (i - 1)) * 100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002225
Yu Zhao8c1c6992009-06-13 15:52:13 +08002226 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
2227 if (!(status & PCI_AF_STATUS_TP))
2228 goto clear;
2229 }
2230
2231 dev_err(&dev->dev, "transaction is not cleared; "
2232 "proceeding with reset anyway\n");
2233
2234clear:
2235 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
Sheng Yang1ca88792008-11-11 17:17:48 +08002236 msleep(100);
Sheng Yang5fe5db02009-02-09 14:53:47 +08002237
Sheng Yang1ca88792008-11-11 17:17:48 +08002238 return 0;
2239}
2240
Yu Zhaof85876b2009-06-13 15:52:14 +08002241static int pci_pm_reset(struct pci_dev *dev, int probe)
Sheng Yangd91cdc72008-11-11 17:17:47 +08002242{
Yu Zhaof85876b2009-06-13 15:52:14 +08002243 u16 csr;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002244
Yu Zhaof85876b2009-06-13 15:52:14 +08002245 if (!dev->pm_cap)
2246 return -ENOTTY;
Sheng Yangd91cdc72008-11-11 17:17:47 +08002247
Yu Zhaof85876b2009-06-13 15:52:14 +08002248 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
2249 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
2250 return -ENOTTY;
Sheng Yang1ca88792008-11-11 17:17:48 +08002251
Yu Zhaof85876b2009-06-13 15:52:14 +08002252 if (probe)
2253 return 0;
2254
2255 if (dev->current_state != PCI_D0)
2256 return -EINVAL;
2257
2258 csr &= ~PCI_PM_CTRL_STATE_MASK;
2259 csr |= PCI_D3hot;
2260 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002261 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002262
2263 csr &= ~PCI_PM_CTRL_STATE_MASK;
2264 csr |= PCI_D0;
2265 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
Rafael J. Wysocki1ae861e2009-12-31 12:15:54 +01002266 pci_dev_d3_sleep(dev);
Yu Zhaof85876b2009-06-13 15:52:14 +08002267
2268 return 0;
2269}
2270
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002271static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
2272{
2273 u16 ctrl;
2274 struct pci_dev *pdev;
2275
Yu Zhao654b75e2009-06-26 14:04:46 +08002276 if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002277 return -ENOTTY;
2278
2279 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
2280 if (pdev != dev)
2281 return -ENOTTY;
2282
2283 if (probe)
2284 return 0;
2285
2286 pci_read_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, &ctrl);
2287 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
2288 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2289 msleep(100);
2290
2291 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
2292 pci_write_config_word(dev->bus->self, PCI_BRIDGE_CONTROL, ctrl);
2293 msleep(100);
2294
2295 return 0;
2296}
2297
Yu Zhao8c1c6992009-06-13 15:52:13 +08002298static int pci_dev_reset(struct pci_dev *dev, int probe)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002299{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002300 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002301
Yu Zhao8c1c6992009-06-13 15:52:13 +08002302 might_sleep();
Sheng Yang8dd7f802008-10-21 17:38:25 +08002303
Yu Zhao8c1c6992009-06-13 15:52:13 +08002304 if (!probe) {
2305 pci_block_user_cfg_access(dev);
2306 /* block PM suspend, driver probe, etc. */
2307 down(&dev->dev.sem);
2308 }
Sheng Yang8dd7f802008-10-21 17:38:25 +08002309
Dexuan Cuib9c3b262009-12-07 13:03:21 +08002310 rc = pci_dev_specific_reset(dev, probe);
2311 if (rc != -ENOTTY)
2312 goto done;
2313
Yu Zhao8c1c6992009-06-13 15:52:13 +08002314 rc = pcie_flr(dev, probe);
2315 if (rc != -ENOTTY)
2316 goto done;
2317
2318 rc = pci_af_flr(dev, probe);
Yu Zhaof85876b2009-06-13 15:52:14 +08002319 if (rc != -ENOTTY)
2320 goto done;
2321
2322 rc = pci_pm_reset(dev, probe);
Yu Zhaoc12ff1d2009-06-13 15:52:15 +08002323 if (rc != -ENOTTY)
2324 goto done;
2325
2326 rc = pci_parent_bus_reset(dev, probe);
Yu Zhao8c1c6992009-06-13 15:52:13 +08002327done:
2328 if (!probe) {
2329 up(&dev->dev.sem);
2330 pci_unblock_user_cfg_access(dev);
2331 }
2332
2333 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002334}
2335
2336/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002337 * __pci_reset_function - reset a PCI device function
2338 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002339 *
2340 * Some devices allow an individual function to be reset without affecting
2341 * other functions in the same device. The PCI device must be responsive
2342 * to PCI config space in order to use this function.
2343 *
2344 * The device function is presumed to be unused when this function is called.
2345 * Resetting the device will make the contents of PCI configuration space
2346 * random, so any caller of this must be prepared to reinitialise the
2347 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
2348 * etc.
2349 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002350 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002351 * device doesn't support resetting a single function.
2352 */
Yu Zhao8c1c6992009-06-13 15:52:13 +08002353int __pci_reset_function(struct pci_dev *dev)
Sheng Yang8dd7f802008-10-21 17:38:25 +08002354{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002355 return pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002356}
Yu Zhao8c1c6992009-06-13 15:52:13 +08002357EXPORT_SYMBOL_GPL(__pci_reset_function);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002358
2359/**
Michael S. Tsirkin711d5772009-07-27 23:37:48 +03002360 * pci_probe_reset_function - check whether the device can be safely reset
2361 * @dev: PCI device to reset
2362 *
2363 * Some devices allow an individual function to be reset without affecting
2364 * other functions in the same device. The PCI device must be responsive
2365 * to PCI config space in order to use this function.
2366 *
2367 * Returns 0 if the device function can be reset or negative if the
2368 * device doesn't support resetting a single function.
2369 */
2370int pci_probe_reset_function(struct pci_dev *dev)
2371{
2372 return pci_dev_reset(dev, 1);
2373}
2374
2375/**
Yu Zhao8c1c6992009-06-13 15:52:13 +08002376 * pci_reset_function - quiesce and reset a PCI device function
2377 * @dev: PCI device to reset
Sheng Yang8dd7f802008-10-21 17:38:25 +08002378 *
2379 * Some devices allow an individual function to be reset without affecting
2380 * other functions in the same device. The PCI device must be responsive
2381 * to PCI config space in order to use this function.
2382 *
2383 * This function does not just reset the PCI portion of a device, but
2384 * clears all the state associated with the device. This function differs
Yu Zhao8c1c6992009-06-13 15:52:13 +08002385 * from __pci_reset_function in that it saves and restores device state
Sheng Yang8dd7f802008-10-21 17:38:25 +08002386 * over the reset.
2387 *
Yu Zhao8c1c6992009-06-13 15:52:13 +08002388 * Returns 0 if the device function was successfully reset or negative if the
Sheng Yang8dd7f802008-10-21 17:38:25 +08002389 * device doesn't support resetting a single function.
2390 */
2391int pci_reset_function(struct pci_dev *dev)
2392{
Yu Zhao8c1c6992009-06-13 15:52:13 +08002393 int rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002394
Yu Zhao8c1c6992009-06-13 15:52:13 +08002395 rc = pci_dev_reset(dev, 1);
2396 if (rc)
2397 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002398
Sheng Yang8dd7f802008-10-21 17:38:25 +08002399 pci_save_state(dev);
2400
Yu Zhao8c1c6992009-06-13 15:52:13 +08002401 /*
2402 * both INTx and MSI are disabled after the Interrupt Disable bit
2403 * is set and the Bus Master bit is cleared.
2404 */
Sheng Yang8dd7f802008-10-21 17:38:25 +08002405 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
2406
Yu Zhao8c1c6992009-06-13 15:52:13 +08002407 rc = pci_dev_reset(dev, 0);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002408
2409 pci_restore_state(dev);
Sheng Yang8dd7f802008-10-21 17:38:25 +08002410
Yu Zhao8c1c6992009-06-13 15:52:13 +08002411 return rc;
Sheng Yang8dd7f802008-10-21 17:38:25 +08002412}
2413EXPORT_SYMBOL_GPL(pci_reset_function);
2414
2415/**
Peter Orubad556ad42007-05-15 13:59:13 +02002416 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
2417 * @dev: PCI device to query
2418 *
2419 * Returns mmrbc: maximum designed memory read count in bytes
2420 * or appropriate error value.
2421 */
2422int pcix_get_max_mmrbc(struct pci_dev *dev)
2423{
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002424 int err, cap;
Peter Orubad556ad42007-05-15 13:59:13 +02002425 u32 stat;
2426
2427 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2428 if (!cap)
2429 return -EINVAL;
2430
2431 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2432 if (err)
2433 return -EINVAL;
2434
Andrew Mortonb7b095c2007-07-09 11:55:50 -07002435 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
Peter Orubad556ad42007-05-15 13:59:13 +02002436}
2437EXPORT_SYMBOL(pcix_get_max_mmrbc);
2438
2439/**
2440 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
2441 * @dev: PCI device to query
2442 *
2443 * Returns mmrbc: maximum memory read count in bytes
2444 * or appropriate error value.
2445 */
2446int pcix_get_mmrbc(struct pci_dev *dev)
2447{
2448 int ret, cap;
2449 u32 cmd;
2450
2451 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2452 if (!cap)
2453 return -EINVAL;
2454
2455 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2456 if (!ret)
2457 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
2458
2459 return ret;
2460}
2461EXPORT_SYMBOL(pcix_get_mmrbc);
2462
2463/**
2464 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
2465 * @dev: PCI device to query
2466 * @mmrbc: maximum memory read count in bytes
2467 * valid values are 512, 1024, 2048, 4096
2468 *
2469 * If possible sets maximum memory read byte count, some bridges have erratas
2470 * that prevent this.
2471 */
2472int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
2473{
2474 int cap, err = -EINVAL;
2475 u32 stat, cmd, v, o;
2476
vignesh babu229f5af2007-08-13 18:23:14 +05302477 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Peter Orubad556ad42007-05-15 13:59:13 +02002478 goto out;
2479
2480 v = ffs(mmrbc) - 10;
2481
2482 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
2483 if (!cap)
2484 goto out;
2485
2486 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
2487 if (err)
2488 goto out;
2489
2490 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
2491 return -E2BIG;
2492
2493 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
2494 if (err)
2495 goto out;
2496
2497 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
2498 if (o != v) {
2499 if (v > o && dev->bus &&
2500 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
2501 return -EIO;
2502
2503 cmd &= ~PCI_X_CMD_MAX_READ;
2504 cmd |= v << 2;
2505 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
2506 }
2507out:
2508 return err;
2509}
2510EXPORT_SYMBOL(pcix_set_mmrbc);
2511
2512/**
2513 * pcie_get_readrq - get PCI Express read request size
2514 * @dev: PCI device to query
2515 *
2516 * Returns maximum memory read request in bytes
2517 * or appropriate error value.
2518 */
2519int pcie_get_readrq(struct pci_dev *dev)
2520{
2521 int ret, cap;
2522 u16 ctl;
2523
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002524 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002525 if (!cap)
2526 return -EINVAL;
2527
2528 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2529 if (!ret)
2530 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
2531
2532 return ret;
2533}
2534EXPORT_SYMBOL(pcie_get_readrq);
2535
2536/**
2537 * pcie_set_readrq - set PCI Express maximum memory read request
2538 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07002539 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02002540 * valid values are 128, 256, 512, 1024, 2048, 4096
2541 *
2542 * If possible sets maximum read byte count
2543 */
2544int pcie_set_readrq(struct pci_dev *dev, int rq)
2545{
2546 int cap, err = -EINVAL;
2547 u16 ctl, v;
2548
vignesh babu229f5af2007-08-13 18:23:14 +05302549 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Peter Orubad556ad42007-05-15 13:59:13 +02002550 goto out;
2551
2552 v = (ffs(rq) - 8) << 12;
2553
Kenji Kaneshige06a1cba2009-11-11 14:30:56 +09002554 cap = pci_pcie_cap(dev);
Peter Orubad556ad42007-05-15 13:59:13 +02002555 if (!cap)
2556 goto out;
2557
2558 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
2559 if (err)
2560 goto out;
2561
2562 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
2563 ctl &= ~PCI_EXP_DEVCTL_READRQ;
2564 ctl |= v;
2565 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
2566 }
2567
2568out:
2569 return err;
2570}
2571EXPORT_SYMBOL(pcie_set_readrq);
2572
2573/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002574 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08002575 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002576 * @flags: resource type mask to be selected
2577 *
2578 * This helper routine makes bar mask from the type of resource.
2579 */
2580int pci_select_bars(struct pci_dev *dev, unsigned long flags)
2581{
2582 int i, bars = 0;
2583 for (i = 0; i < PCI_NUM_RESOURCES; i++)
2584 if (pci_resource_flags(dev, i) & flags)
2585 bars |= (1 << i);
2586 return bars;
2587}
2588
Yu Zhao613e7ed2008-11-22 02:41:27 +08002589/**
2590 * pci_resource_bar - get position of the BAR associated with a resource
2591 * @dev: the PCI device
2592 * @resno: the resource number
2593 * @type: the BAR type to be filled in
2594 *
2595 * Returns BAR position in config space, or 0 if the BAR is invalid.
2596 */
2597int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
2598{
Yu Zhaod1b054d2009-03-20 11:25:11 +08002599 int reg;
2600
Yu Zhao613e7ed2008-11-22 02:41:27 +08002601 if (resno < PCI_ROM_RESOURCE) {
2602 *type = pci_bar_unknown;
2603 return PCI_BASE_ADDRESS_0 + 4 * resno;
2604 } else if (resno == PCI_ROM_RESOURCE) {
2605 *type = pci_bar_mem32;
2606 return dev->rom_base_reg;
Yu Zhaod1b054d2009-03-20 11:25:11 +08002607 } else if (resno < PCI_BRIDGE_RESOURCES) {
2608 /* device specific resource */
2609 reg = pci_iov_resource_bar(dev, resno, type);
2610 if (reg)
2611 return reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +08002612 }
2613
Bjorn Helgaas865df572009-11-04 10:32:57 -07002614 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
Yu Zhao613e7ed2008-11-22 02:41:27 +08002615 return 0;
2616}
2617
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002618/**
2619 * pci_set_vga_state - set VGA decode state on device and parents if requested
Randy Dunlap19eea632009-09-17 15:28:22 -07002620 * @dev: the PCI device
2621 * @decode: true = enable decoding, false = disable decoding
2622 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
2623 * @change_bridge: traverse ancestors and change bridges
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +10002624 */
2625int pci_set_vga_state(struct pci_dev *dev, bool decode,
2626 unsigned int command_bits, bool change_bridge)
2627{
2628 struct pci_bus *bus;
2629 struct pci_dev *bridge;
2630 u16 cmd;
2631
2632 WARN_ON(command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY));
2633
2634 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2635 if (decode == true)
2636 cmd |= command_bits;
2637 else
2638 cmd &= ~command_bits;
2639 pci_write_config_word(dev, PCI_COMMAND, cmd);
2640
2641 if (change_bridge == false)
2642 return 0;
2643
2644 bus = dev->bus;
2645 while (bus) {
2646 bridge = bus->self;
2647 if (bridge) {
2648 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
2649 &cmd);
2650 if (decode == true)
2651 cmd |= PCI_BRIDGE_CTL_VGA;
2652 else
2653 cmd &= ~PCI_BRIDGE_CTL_VGA;
2654 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
2655 cmd);
2656 }
2657 bus = bus->parent;
2658 }
2659 return 0;
2660}
2661
Yuji Shimada32a9a6822009-03-16 17:13:39 +09002662#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
2663static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
Thomas Gleixnere9d1e492009-11-06 22:41:23 +00002664static DEFINE_SPINLOCK(resource_alignment_lock);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09002665
2666/**
2667 * pci_specified_resource_alignment - get resource alignment specified by user.
2668 * @dev: the PCI device to get
2669 *
2670 * RETURNS: Resource alignment if it is specified.
2671 * Zero if it is not specified.
2672 */
2673resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
2674{
2675 int seg, bus, slot, func, align_order, count;
2676 resource_size_t align = 0;
2677 char *p;
2678
2679 spin_lock(&resource_alignment_lock);
2680 p = resource_alignment_param;
2681 while (*p) {
2682 count = 0;
2683 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
2684 p[count] == '@') {
2685 p += count + 1;
2686 } else {
2687 align_order = -1;
2688 }
2689 if (sscanf(p, "%x:%x:%x.%x%n",
2690 &seg, &bus, &slot, &func, &count) != 4) {
2691 seg = 0;
2692 if (sscanf(p, "%x:%x.%x%n",
2693 &bus, &slot, &func, &count) != 3) {
2694 /* Invalid format */
2695 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
2696 p);
2697 break;
2698 }
2699 }
2700 p += count;
2701 if (seg == pci_domain_nr(dev->bus) &&
2702 bus == dev->bus->number &&
2703 slot == PCI_SLOT(dev->devfn) &&
2704 func == PCI_FUNC(dev->devfn)) {
2705 if (align_order == -1) {
2706 align = PAGE_SIZE;
2707 } else {
2708 align = 1 << align_order;
2709 }
2710 /* Found */
2711 break;
2712 }
2713 if (*p != ';' && *p != ',') {
2714 /* End of param or invalid format */
2715 break;
2716 }
2717 p++;
2718 }
2719 spin_unlock(&resource_alignment_lock);
2720 return align;
2721}
2722
2723/**
2724 * pci_is_reassigndev - check if specified PCI is target device to reassign
2725 * @dev: the PCI device to check
2726 *
2727 * RETURNS: non-zero for PCI device is a target device to reassign,
2728 * or zero is not.
2729 */
2730int pci_is_reassigndev(struct pci_dev *dev)
2731{
2732 return (pci_specified_resource_alignment(dev) != 0);
2733}
2734
2735ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
2736{
2737 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
2738 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
2739 spin_lock(&resource_alignment_lock);
2740 strncpy(resource_alignment_param, buf, count);
2741 resource_alignment_param[count] = '\0';
2742 spin_unlock(&resource_alignment_lock);
2743 return count;
2744}
2745
2746ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
2747{
2748 size_t count;
2749 spin_lock(&resource_alignment_lock);
2750 count = snprintf(buf, size, "%s", resource_alignment_param);
2751 spin_unlock(&resource_alignment_lock);
2752 return count;
2753}
2754
2755static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
2756{
2757 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
2758}
2759
2760static ssize_t pci_resource_alignment_store(struct bus_type *bus,
2761 const char *buf, size_t count)
2762{
2763 return pci_set_resource_alignment_param(buf, count);
2764}
2765
2766BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
2767 pci_resource_alignment_store);
2768
2769static int __init pci_resource_alignment_sysfs_init(void)
2770{
2771 return bus_create_file(&pci_bus_type,
2772 &bus_attr_resource_alignment);
2773}
2774
2775late_initcall(pci_resource_alignment_sysfs_init);
2776
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002777static void __devinit pci_no_domains(void)
2778{
2779#ifdef CONFIG_PCI_DOMAINS
2780 pci_domains_supported = 0;
2781#endif
2782}
2783
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -07002784/**
2785 * pci_ext_cfg_enabled - can we access extended PCI config space?
2786 * @dev: The PCI device of the root bridge.
2787 *
2788 * Returns 1 if we can access PCI extended config space (offsets
2789 * greater than 0xff). This is the default implementation. Architecture
2790 * implementations can override this.
2791 */
2792int __attribute__ ((weak)) pci_ext_cfg_avail(struct pci_dev *dev)
2793{
2794 return 1;
2795}
2796
Benjamin Herrenschmidt2d1c8612009-12-09 17:52:13 +11002797void __weak pci_fixup_cardbus(struct pci_bus *bus)
2798{
2799}
2800EXPORT_SYMBOL(pci_fixup_cardbus);
2801
Al Viroad04d312008-11-22 17:37:14 +00002802static int __init pci_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
2804 while (str) {
2805 char *k = strchr(str, ',');
2806 if (k)
2807 *k++ = 0;
2808 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002809 if (!strcmp(str, "nomsi")) {
2810 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07002811 } else if (!strcmp(str, "noaer")) {
2812 pci_no_aer();
Jeff Garzik32a2eea2007-10-11 16:57:27 -04002813 } else if (!strcmp(str, "nodomains")) {
2814 pci_no_domains();
Atsushi Nemoto4516a612007-02-05 16:36:06 -08002815 } else if (!strncmp(str, "cbiosize=", 9)) {
2816 pci_cardbus_io_size = memparse(str + 9, &str);
2817 } else if (!strncmp(str, "cbmemsize=", 10)) {
2818 pci_cardbus_mem_size = memparse(str + 10, &str);
Yuji Shimada32a9a6822009-03-16 17:13:39 +09002819 } else if (!strncmp(str, "resource_alignment=", 19)) {
2820 pci_set_resource_alignment_param(str + 19,
2821 strlen(str + 19));
Andrew Patterson43c16402009-04-22 16:52:09 -06002822 } else if (!strncmp(str, "ecrc=", 5)) {
2823 pcie_ecrc_get_policy(str + 5);
Eric W. Biederman28760482009-09-09 14:09:24 -07002824 } else if (!strncmp(str, "hpiosize=", 9)) {
2825 pci_hotplug_io_size = memparse(str + 9, &str);
2826 } else if (!strncmp(str, "hpmemsize=", 10)) {
2827 pci_hotplug_mem_size = memparse(str + 10, &str);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07002828 } else {
2829 printk(KERN_ERR "PCI: Unknown option `%s'\n",
2830 str);
2831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833 str = k;
2834 }
Andi Kleen0637a702006-09-26 10:52:41 +02002835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
Andi Kleen0637a702006-09-26 10:52:41 +02002837early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Tejun Heo0b62e132007-07-27 14:43:35 +09002839EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11002840EXPORT_SYMBOL(pci_enable_device_io);
2841EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09002843EXPORT_SYMBOL(pcim_enable_device);
2844EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846EXPORT_SYMBOL(pci_find_capability);
2847EXPORT_SYMBOL(pci_bus_find_capability);
2848EXPORT_SYMBOL(pci_release_regions);
2849EXPORT_SYMBOL(pci_request_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002850EXPORT_SYMBOL(pci_request_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851EXPORT_SYMBOL(pci_release_region);
2852EXPORT_SYMBOL(pci_request_region);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002853EXPORT_SYMBOL(pci_request_region_exclusive);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002854EXPORT_SYMBOL(pci_release_selected_regions);
2855EXPORT_SYMBOL(pci_request_selected_regions);
Arjan van de Vene8de1482008-10-22 19:55:31 -07002856EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857EXPORT_SYMBOL(pci_set_master);
Ben Hutchings6a479072008-12-23 03:08:29 +00002858EXPORT_SYMBOL(pci_clear_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07002860EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04002862EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864EXPORT_SYMBOL(pci_set_consistent_dma_mask);
2865EXPORT_SYMBOL(pci_assign_resource);
2866EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09002867EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869EXPORT_SYMBOL(pci_set_power_state);
2870EXPORT_SYMBOL(pci_save_state);
2871EXPORT_SYMBOL(pci_restore_state);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002872EXPORT_SYMBOL(pci_pme_capable);
Rafael J. Wysocki5a6c9b62008-08-08 00:14:24 +02002873EXPORT_SYMBOL(pci_pme_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysocki0235c4f2008-08-18 21:38:00 +02002875EXPORT_SYMBOL(pci_wake_from_d3);
Rafael J. Wysockie5899e12008-07-19 14:39:24 +02002876EXPORT_SYMBOL(pci_target_state);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02002877EXPORT_SYMBOL(pci_prepare_to_sleep);
2878EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05002879EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880