blob: 4627a51d1d6c285b921320709261a95bea4785d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: pci.c,v 1.91 1999/01/21 13:34:01 davem Exp $
3 *
4 * PCI Bus Services, see include/linux/pci.h for further explanation.
5 *
6 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
7 * David Mosberger-Tang
8 *
9 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
10 */
11
12#include <linux/kernel.h>
13#include <linux/delay.h>
14#include <linux/init.h>
15#include <linux/pci.h>
16#include <linux/module.h>
17#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080018#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/dma.h> /* isa_dma_bridge_buggy */
Greg KHbc56b9e2005-04-08 14:53:31 +090020#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -070022unsigned int pci_pm_d3_delay = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/**
25 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
26 * @bus: pointer to PCI bus structure to search
27 *
28 * Given a PCI bus, returns the highest PCI bus number present in the set
29 * including the given PCI bus and its list of child PCI buses.
30 */
31unsigned char __devinit
32pci_bus_max_busnr(struct pci_bus* bus)
33{
34 struct list_head *tmp;
35 unsigned char max, n;
36
Kristen Accardib82db5c2006-01-17 16:56:56 -080037 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 list_for_each(tmp, &bus->children) {
39 n = pci_bus_max_busnr(pci_bus_b(tmp));
40 if(n > max)
41 max = n;
42 }
43 return max;
44}
Kristen Accardib82db5c2006-01-17 16:56:56 -080045EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Kristen Accardib82db5c2006-01-17 16:56:56 -080047#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/**
49 * pci_max_busnr - returns maximum PCI bus number
50 *
51 * Returns the highest PCI bus number present in the system global list of
52 * PCI buses.
53 */
54unsigned char __devinit
55pci_max_busnr(void)
56{
57 struct pci_bus *bus = NULL;
58 unsigned char max, n;
59
60 max = 0;
61 while ((bus = pci_find_next_bus(bus)) != NULL) {
62 n = pci_bus_max_busnr(bus);
63 if(n > max)
64 max = n;
65 }
66 return max;
67}
68
Adrian Bunk54c762f2005-12-22 01:08:52 +010069#endif /* 0 */
70
Roland Dreier24a4e372005-10-28 17:35:34 -070071static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap)
72{
73 u8 id;
74 int ttl = 48;
75
76 while (ttl--) {
77 pci_bus_read_config_byte(bus, devfn, pos, &pos);
78 if (pos < 0x40)
79 break;
80 pos &= ~3;
81 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
82 &id);
83 if (id == 0xff)
84 break;
85 if (id == cap)
86 return pos;
87 pos += PCI_CAP_LIST_NEXT;
88 }
89 return 0;
90}
91
92int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
93{
94 return __pci_find_next_cap(dev->bus, dev->devfn,
95 pos + PCI_CAP_LIST_NEXT, cap);
96}
97EXPORT_SYMBOL_GPL(pci_find_next_capability);
98
Michael Ellermand3bac112006-11-22 18:26:16 +110099static int __pci_bus_find_cap_start(struct pci_bus *bus,
100 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
105 if (!(status & PCI_STATUS_CAP_LIST))
106 return 0;
107
108 switch (hdr_type) {
109 case PCI_HEADER_TYPE_NORMAL:
110 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100111 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100113 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 default:
115 return 0;
116 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100117
118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121/**
122 * pci_find_capability - query for devices' capabilities
123 * @dev: PCI device to query
124 * @cap: capability code
125 *
126 * Tell if a device supports a given PCI capability.
127 * Returns the address of the requested capability structure within the
128 * device's PCI configuration space or 0 in case the device does not
129 * support it. Possible values for @cap:
130 *
131 * %PCI_CAP_ID_PM Power Management
132 * %PCI_CAP_ID_AGP Accelerated Graphics Port
133 * %PCI_CAP_ID_VPD Vital Product Data
134 * %PCI_CAP_ID_SLOTID Slot Identification
135 * %PCI_CAP_ID_MSI Message Signalled Interrupts
136 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
137 * %PCI_CAP_ID_PCIX PCI-X
138 * %PCI_CAP_ID_EXP PCI Express
139 */
140int pci_find_capability(struct pci_dev *dev, int cap)
141{
Michael Ellermand3bac112006-11-22 18:26:16 +1100142 int pos;
143
144 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
145 if (pos)
146 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
147
148 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151/**
152 * pci_bus_find_capability - query for devices' capabilities
153 * @bus: the PCI bus to query
154 * @devfn: PCI device to query
155 * @cap: capability code
156 *
157 * Like pci_find_capability() but works for pci devices that do not have a
158 * pci_dev structure set up yet.
159 *
160 * Returns the address of the requested capability structure within the
161 * device's PCI configuration space or 0 in case the device does not
162 * support it.
163 */
164int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
165{
Michael Ellermand3bac112006-11-22 18:26:16 +1100166 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 u8 hdr_type;
168
169 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
170
Michael Ellermand3bac112006-11-22 18:26:16 +1100171 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
172 if (pos)
173 pos = __pci_find_next_cap(bus, devfn, pos, cap);
174
175 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178/**
179 * pci_find_ext_capability - Find an extended capability
180 * @dev: PCI device to query
181 * @cap: capability code
182 *
183 * Returns the address of the requested extended capability structure
184 * within the device's PCI configuration space or 0 if the device does
185 * not support it. Possible values for @cap:
186 *
187 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
188 * %PCI_EXT_CAP_ID_VC Virtual Channel
189 * %PCI_EXT_CAP_ID_DSN Device Serial Number
190 * %PCI_EXT_CAP_ID_PWR Power Budgeting
191 */
192int pci_find_ext_capability(struct pci_dev *dev, int cap)
193{
194 u32 header;
195 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
196 int pos = 0x100;
197
198 if (dev->cfg_size <= 256)
199 return 0;
200
201 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
202 return 0;
203
204 /*
205 * If we have no capabilities, this is indicated by cap ID,
206 * cap version and next pointer all being 0.
207 */
208 if (header == 0)
209 return 0;
210
211 while (ttl-- > 0) {
212 if (PCI_EXT_CAP_ID(header) == cap)
213 return pos;
214
215 pos = PCI_EXT_CAP_NEXT(header);
216 if (pos < 0x100)
217 break;
218
219 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
220 break;
221 }
222
223 return 0;
224}
Brice Goglin3a720d72006-05-23 06:10:01 -0400225EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227/**
228 * pci_find_parent_resource - return resource region of parent bus of given region
229 * @dev: PCI device structure contains resources to be searched
230 * @res: child resource record for which parent is sought
231 *
232 * For given resource region of given device, return the resource
233 * region of parent bus the given region is contained in or where
234 * it should be allocated from.
235 */
236struct resource *
237pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
238{
239 const struct pci_bus *bus = dev->bus;
240 int i;
241 struct resource *best = NULL;
242
243 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
244 struct resource *r = bus->resource[i];
245 if (!r)
246 continue;
247 if (res->start && !(res->start >= r->start && res->end <= r->end))
248 continue; /* Not contained */
249 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
250 continue; /* Wrong type */
251 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
252 return r; /* Exact match */
253 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
254 best = r; /* Approximating prefetchable by non-prefetchable */
255 }
256 return best;
257}
258
259/**
John W. Linville064b53db2005-07-27 10:19:44 -0400260 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
261 * @dev: PCI device to have its BARs restored
262 *
263 * Restore the BAR values for a given device, so as to make it
264 * accessible by its driver.
265 */
266void
267pci_restore_bars(struct pci_dev *dev)
268{
269 int i, numres;
270
271 switch (dev->hdr_type) {
272 case PCI_HEADER_TYPE_NORMAL:
273 numres = 6;
274 break;
275 case PCI_HEADER_TYPE_BRIDGE:
276 numres = 2;
277 break;
278 case PCI_HEADER_TYPE_CARDBUS:
279 numres = 1;
280 break;
281 default:
282 /* Should never get here, but just in case... */
283 return;
284 }
285
286 for (i = 0; i < numres; i ++)
287 pci_update_resource(dev, &dev->resource[i], i);
288}
289
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700290int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t);
291
John W. Linville064b53db2005-07-27 10:19:44 -0400292/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * pci_set_power_state - Set the power state of a PCI device
294 * @dev: PCI device to be suspended
295 * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering
296 *
297 * Transition a device to a new power state, using the Power Management
298 * Capabilities in the device's config space.
299 *
300 * RETURN VALUE:
301 * -EINVAL if trying to enter a lower state than we're already in.
302 * 0 if we're already in the requested state.
303 * -EIO if device does not support PCI PM.
304 * 0 if we can successfully change the power state.
305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306int
307pci_set_power_state(struct pci_dev *dev, pci_power_t state)
308{
John W. Linville064b53db2005-07-27 10:19:44 -0400309 int pm, need_restore = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 u16 pmcsr, pmc;
311
312 /* bound the state we're entering */
313 if (state > PCI_D3hot)
314 state = PCI_D3hot;
315
316 /* Validate current state:
317 * Can enter D0 from any state, but if we can only go deeper
318 * to sleep if we're already in a low power state
319 */
Andrew Morton02669492006-03-23 01:38:34 -0800320 if (state != PCI_D0 && dev->current_state > state) {
321 printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n",
322 __FUNCTION__, pci_name(dev), state, dev->current_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return -EINVAL;
Andrew Morton02669492006-03-23 01:38:34 -0800324 } else if (dev->current_state == state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0; /* we're already there */
326
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700327 /*
328 * If the device or the parent bridge can't support PCI PM, ignore
329 * the request if we're doing anything besides putting it into D0
330 * (which would only happen on boot).
331 */
332 if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
333 return 0;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* find PCI PM capability in list */
336 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
337
338 /* abort if the device doesn't support PM capabilities */
339 if (!pm)
340 return -EIO;
341
342 pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700343 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 printk(KERN_DEBUG
345 "PCI: %s has unsupported PM cap regs version (%u)\n",
346 pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
347 return -EIO;
348 }
349
350 /* check if this device supports the desired state */
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700351 if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
352 return -EIO;
353 else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
354 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
John W. Linville064b53db2005-07-27 10:19:44 -0400356 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
357
John W. Linville32a36582005-09-14 09:52:42 -0400358 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * This doesn't affect PME_Status, disables PME_En, and
360 * sets PowerState to 0.
361 */
John W. Linville32a36582005-09-14 09:52:42 -0400362 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400363 case PCI_D0:
364 case PCI_D1:
365 case PCI_D2:
366 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
367 pmcsr |= state;
368 break;
John W. Linville32a36582005-09-14 09:52:42 -0400369 case PCI_UNKNOWN: /* Boot-up */
370 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
371 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
John W. Linville064b53db2005-07-27 10:19:44 -0400372 need_restore = 1;
John W. Linville32a36582005-09-14 09:52:42 -0400373 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400374 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400375 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400376 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
379 /* enter specified state */
380 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
381
382 /* Mandatory power management transition delays */
383 /* see PCI PM 1.1 5.6.1 table 18 */
384 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700385 msleep(pci_pm_d3_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 else if (state == PCI_D2 || dev->current_state == PCI_D2)
387 udelay(200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
David Shaohua Lib9131002005-03-19 00:16:18 -0500389 /*
390 * Give firmware a chance to be called, such as ACPI _PRx, _PSx
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200391 * Firmware method after native method ?
David Shaohua Lib9131002005-03-19 00:16:18 -0500392 */
393 if (platform_pci_set_power_state)
394 platform_pci_set_power_state(dev, state);
395
396 dev->current_state = state;
John W. Linville064b53db2005-07-27 10:19:44 -0400397
398 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
399 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
400 * from D3hot to D0 _may_ perform an internal reset, thereby
401 * going to "D0 Uninitialized" rather than "D0 Initialized".
402 * For example, at least some versions of the 3c905B and the
403 * 3c556B exhibit this behaviour.
404 *
405 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
406 * devices in a D3hot state at boot. Consequently, we need to
407 * restore at least the BARs so that the device will be
408 * accessible to its driver.
409 */
410 if (need_restore)
411 pci_restore_bars(dev);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
Greg Kroah-Hartmanf165b102005-03-30 21:23:19 -0500416int (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state);
David Shaohua Li0f644742005-03-19 00:15:48 -0500417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/**
419 * pci_choose_state - Choose the power state of a PCI device
420 * @dev: PCI device to be suspended
421 * @state: target sleep state for the whole system. This is the value
422 * that is passed to suspend() function.
423 *
424 * Returns PCI power state suitable for given device and given system
425 * message.
426 */
427
428pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
429{
David Shaohua Li0f644742005-03-19 00:15:48 -0500430 int ret;
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
433 return PCI_D0;
434
David Shaohua Li0f644742005-03-19 00:15:48 -0500435 if (platform_pci_choose_state) {
436 ret = platform_pci_choose_state(dev, state);
437 if (ret >= 0)
Pavel Machekca078ba2005-09-03 15:56:57 -0700438 state.event = ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500439 }
Pavel Machekca078ba2005-09-03 15:56:57 -0700440
441 switch (state.event) {
442 case PM_EVENT_ON:
443 return PCI_D0;
444 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700445 case PM_EVENT_PRETHAW:
446 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700447 case PM_EVENT_SUSPEND:
448 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 default:
David Brownellb887d2e2006-08-14 23:11:05 -0700450 printk("Unrecognized suspend event %d\n", state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 BUG();
452 }
453 return PCI_D0;
454}
455
456EXPORT_SYMBOL(pci_choose_state);
457
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300458static int pci_save_pcie_state(struct pci_dev *dev)
459{
460 int pos, i = 0;
461 struct pci_cap_saved_state *save_state;
462 u16 *cap;
463
464 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
465 if (pos <= 0)
466 return 0;
467
468 save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
469 if (!save_state) {
470 dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
471 return -ENOMEM;
472 }
473 cap = (u16 *)&save_state->data[0];
474
475 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
476 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
477 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
478 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
479 pci_add_saved_cap(dev, save_state);
480 return 0;
481}
482
483static void pci_restore_pcie_state(struct pci_dev *dev)
484{
485 int i = 0, pos;
486 struct pci_cap_saved_state *save_state;
487 u16 *cap;
488
489 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
490 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
491 if (!save_state || pos <= 0)
492 return;
493 cap = (u16 *)&save_state->data[0];
494
495 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
496 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
497 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
498 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
499 pci_remove_saved_cap(save_state);
500 kfree(save_state);
501}
502
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800503
504static int pci_save_pcix_state(struct pci_dev *dev)
505{
506 int pos, i = 0;
507 struct pci_cap_saved_state *save_state;
508 u16 *cap;
509
510 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
511 if (pos <= 0)
512 return 0;
513
514 save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
515 if (!save_state) {
516 dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
517 return -ENOMEM;
518 }
519 cap = (u16 *)&save_state->data[0];
520
521 pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
522 pci_add_saved_cap(dev, save_state);
523 return 0;
524}
525
526static void pci_restore_pcix_state(struct pci_dev *dev)
527{
528 int i = 0, pos;
529 struct pci_cap_saved_state *save_state;
530 u16 *cap;
531
532 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
533 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
534 if (!save_state || pos <= 0)
535 return;
536 cap = (u16 *)&save_state->data[0];
537
538 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
539 pci_remove_saved_cap(save_state);
540 kfree(save_state);
541}
542
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/**
545 * pci_save_state - save the PCI configuration space of a device before suspending
546 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 */
548int
549pci_save_state(struct pci_dev *dev)
550{
551 int i;
552 /* XXX: 100% dword access ok here? */
553 for (i = 0; i < 16; i++)
554 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
Shaohua Li41017f02006-02-08 17:11:38 +0800555 if ((i = pci_save_msi_state(dev)) != 0)
556 return i;
557 if ((i = pci_save_msix_state(dev)) != 0)
558 return i;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300559 if ((i = pci_save_pcie_state(dev)) != 0)
560 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800561 if ((i = pci_save_pcix_state(dev)) != 0)
562 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564}
565
566/**
567 * pci_restore_state - Restore the saved state of a PCI device
568 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 */
570int
571pci_restore_state(struct pci_dev *dev)
572{
573 int i;
Dave Jones04d9c1a2006-04-18 21:06:51 -0700574 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300576 /* PCI Express register must be restored first */
577 pci_restore_pcie_state(dev);
578
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700579 /*
580 * The Base Address register should be programmed before the command
581 * register(s)
582 */
583 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700584 pci_read_config_dword(dev, i * 4, &val);
585 if (val != dev->saved_config_space[i]) {
586 printk(KERN_DEBUG "PM: Writing back config space on "
587 "device %s at offset %x (was %x, writing %x)\n",
588 pci_name(dev), i,
589 val, (int)dev->saved_config_space[i]);
590 pci_write_config_dword(dev,i * 4,
591 dev->saved_config_space[i]);
592 }
593 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800594 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800595 pci_restore_msi_state(dev);
596 pci_restore_msix_state(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return 0;
598}
599
600/**
601 * pci_enable_device_bars - Initialize some of a device for use
602 * @dev: PCI device to be initialized
603 * @bars: bitmask of BAR's that must be configured
604 *
605 * Initialize device before it's used by a driver. Ask low-level code
606 * to enable selected I/O and memory resources. Wake up the device if it
607 * was suspended. Beware, this function can fail.
608 */
609
610int
611pci_enable_device_bars(struct pci_dev *dev, int bars)
612{
613 int err;
614
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700615 err = pci_set_power_state(dev, PCI_D0);
Alan Stern11f38592005-08-10 15:18:44 -0400616 if (err < 0 && err != -EIO)
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700617 return err;
618 err = pcibios_enable_device(dev, bars);
619 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return err;
621 return 0;
622}
623
624/**
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800625 * __pci_enable_device - Initialize device before it's used by a driver.
626 * @dev: PCI device to be initialized
627 *
628 * Initialize device before it's used by a driver. Ask low-level code
629 * to enable I/O and memory. Wake up the device if it was suspended.
630 * Beware, this function can fail.
631 *
632 * Note this function is a backend and is not supposed to be called by
633 * normal code, use pci_enable_device() instead.
634 */
635int
636__pci_enable_device(struct pci_dev *dev)
637{
638 int err;
639
640 err = pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
641 if (err)
642 return err;
643 pci_fixup_device(pci_fixup_enable, dev);
644 return 0;
645}
646
647/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * pci_enable_device - Initialize device before it's used by a driver.
649 * @dev: PCI device to be initialized
650 *
651 * Initialize device before it's used by a driver. Ask low-level code
652 * to enable I/O and memory. Wake up the device if it was suspended.
653 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800654 *
655 * Note we don't actually enable the device many times if we call
656 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800658int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800660 int result;
661 if (atomic_add_return(1, &dev->enable_cnt) > 1)
662 return 0; /* already enabled */
663 result = __pci_enable_device(dev);
664 if (result < 0)
665 atomic_dec(&dev->enable_cnt);
666 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**
670 * pcibios_disable_device - disable arch specific PCI resources for device dev
671 * @dev: the PCI device to disable
672 *
673 * Disables architecture specific PCI resources for the device. This
674 * is the default implementation. Architecture implementations can
675 * override this.
676 */
677void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
678
679/**
680 * pci_disable_device - Disable PCI device after use
681 * @dev: PCI device to be disabled
682 *
683 * Signal to the system that the PCI device is not in use by the system
684 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800685 *
686 * Note we don't actually disable the device until all callers of
687 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 */
689void
690pci_disable_device(struct pci_dev *dev)
691{
692 u16 pci_command;
Shaohua Li99dc8042006-05-26 10:58:27 +0800693
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800694 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
695 return;
696
Shaohua Li99dc8042006-05-26 10:58:27 +0800697 if (dev->msi_enabled)
698 disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI),
699 PCI_CAP_ID_MSI);
700 if (dev->msix_enabled)
701 disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI),
702 PCI_CAP_ID_MSIX);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
705 if (pci_command & PCI_COMMAND_MASTER) {
706 pci_command &= ~PCI_COMMAND_MASTER;
707 pci_write_config_word(dev, PCI_COMMAND, pci_command);
708 }
Kenji Kaneshigeceb43742005-04-08 14:53:31 +0900709 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 pcibios_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/**
715 * pci_enable_wake - enable device to generate PME# when suspended
716 * @dev: - PCI device to operate on
717 * @state: - Current state of device.
718 * @enable: - Flag to enable or disable generation
719 *
720 * Set the bits in the device's PM Capabilities to generate PME# when
721 * the system is suspended.
722 *
723 * -EIO is returned if device doesn't have PM Capabilities.
724 * -EINVAL is returned if device supports it, but can't generate wake events.
725 * 0 if operation is successful.
726 *
727 */
728int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
729{
730 int pm;
731 u16 value;
732
733 /* find PCI PM capability in list */
734 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
735
736 /* If device doesn't support PM Capabilities, but request is to disable
737 * wake events, it's a nop; otherwise fail */
738 if (!pm)
739 return enable ? -EIO : 0;
740
741 /* Check device's ability to generate PME# */
742 pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
743
744 value &= PCI_PM_CAP_PME_MASK;
745 value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
746
747 /* Check if it can generate PME# from requested state. */
748 if (!value || !(value & (1 << state)))
749 return enable ? -EINVAL : 0;
750
751 pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
752
753 /* Clear PME_Status by writing 1 to it and enable PME# */
754 value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
755
756 if (!enable)
757 value &= ~PCI_PM_CTRL_PME_ENABLE;
758
759 pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
760
761 return 0;
762}
763
764int
765pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
766{
767 u8 pin;
768
Kristen Accardi514d2072005-11-02 16:24:39 -0800769 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!pin)
771 return -1;
772 pin--;
773 while (dev->bus->self) {
774 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
775 dev = dev->bus->self;
776 }
777 *bridge = dev;
778 return pin;
779}
780
781/**
782 * pci_release_region - Release a PCI bar
783 * @pdev: PCI device whose resources were previously reserved by pci_request_region
784 * @bar: BAR to release
785 *
786 * Releases the PCI I/O and memory resources previously reserved by a
787 * successful call to pci_request_region. Call this function only
788 * after all use of the PCI regions has ceased.
789 */
790void pci_release_region(struct pci_dev *pdev, int bar)
791{
792 if (pci_resource_len(pdev, bar) == 0)
793 return;
794 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
795 release_region(pci_resource_start(pdev, bar),
796 pci_resource_len(pdev, bar));
797 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
798 release_mem_region(pci_resource_start(pdev, bar),
799 pci_resource_len(pdev, bar));
800}
801
802/**
803 * pci_request_region - Reserved PCI I/O and memory resource
804 * @pdev: PCI device whose resources are to be reserved
805 * @bar: BAR to be reserved
806 * @res_name: Name to be associated with resource.
807 *
808 * Mark the PCI region associated with PCI device @pdev BR @bar as
809 * being reserved by owner @res_name. Do not access any
810 * address inside the PCI regions unless this call returns
811 * successfully.
812 *
813 * Returns 0 on success, or %EBUSY on error. A warning
814 * message is also printed on failure.
815 */
Jeff Garzik3c990e92006-03-04 21:52:42 -0500816int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 if (pci_resource_len(pdev, bar) == 0)
819 return 0;
820
821 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
822 if (!request_region(pci_resource_start(pdev, bar),
823 pci_resource_len(pdev, bar), res_name))
824 goto err_out;
825 }
826 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
827 if (!request_mem_region(pci_resource_start(pdev, bar),
828 pci_resource_len(pdev, bar), res_name))
829 goto err_out;
830 }
831
832 return 0;
833
834err_out:
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700835 printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%llx@%llx "
836 "for device %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
838 bar + 1, /* PCI BAR # */
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700839 (unsigned long long)pci_resource_len(pdev, bar),
840 (unsigned long long)pci_resource_start(pdev, bar),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 pci_name(pdev));
842 return -EBUSY;
843}
844
845
846/**
847 * pci_release_regions - Release reserved PCI I/O and memory resources
848 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
849 *
850 * Releases all PCI I/O and memory resources previously reserved by a
851 * successful call to pci_request_regions. Call this function only
852 * after all use of the PCI regions has ceased.
853 */
854
855void pci_release_regions(struct pci_dev *pdev)
856{
857 int i;
858
859 for (i = 0; i < 6; i++)
860 pci_release_region(pdev, i);
861}
862
863/**
864 * pci_request_regions - Reserved PCI I/O and memory resources
865 * @pdev: PCI device whose resources are to be reserved
866 * @res_name: Name to be associated with resource.
867 *
868 * Mark all PCI regions associated with PCI device @pdev as
869 * being reserved by owner @res_name. Do not access any
870 * address inside the PCI regions unless this call returns
871 * successfully.
872 *
873 * Returns 0 on success, or %EBUSY on error. A warning
874 * message is also printed on failure.
875 */
Jeff Garzik3c990e92006-03-04 21:52:42 -0500876int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 int i;
879
880 for (i = 0; i < 6; i++)
881 if(pci_request_region(pdev, i, res_name))
882 goto err_out;
883 return 0;
884
885err_out:
886 while(--i >= 0)
887 pci_release_region(pdev, i);
888
889 return -EBUSY;
890}
891
892/**
893 * pci_set_master - enables bus-mastering for device dev
894 * @dev: the PCI device to enable
895 *
896 * Enables bus-mastering on the device and calls pcibios_set_master()
897 * to do the needed arch specific settings.
898 */
899void
900pci_set_master(struct pci_dev *dev)
901{
902 u16 cmd;
903
904 pci_read_config_word(dev, PCI_COMMAND, &cmd);
905 if (! (cmd & PCI_COMMAND_MASTER)) {
906 pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
907 cmd |= PCI_COMMAND_MASTER;
908 pci_write_config_word(dev, PCI_COMMAND, cmd);
909 }
910 dev->is_busmaster = 1;
911 pcibios_set_master(dev);
912}
913
Matthew Wilcoxedb2d972006-10-10 08:01:21 -0600914#ifdef PCI_DISABLE_MWI
915int pci_set_mwi(struct pci_dev *dev)
916{
917 return 0;
918}
919
920void pci_clear_mwi(struct pci_dev *dev)
921{
922}
923
924#else
Matthew Wilcoxebf5a242006-10-10 08:01:20 -0600925
926#ifndef PCI_CACHE_LINE_BYTES
927#define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
928#endif
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/* This can be overridden by arch code. */
Matthew Wilcoxebf5a242006-10-10 08:01:20 -0600931/* Don't forget this is measured in 32-bit words, not bytes */
932u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -0600935 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
936 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -0600938 * Helper function for pci_set_mwi.
939 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
941 *
942 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
943 */
944static int
Matthew Wilcoxedb2d972006-10-10 08:01:21 -0600945pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 u8 cacheline_size;
948
949 if (!pci_cache_line_size)
950 return -EINVAL; /* The system doesn't support MWI. */
951
952 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
953 equal to or multiple of the right value. */
954 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
955 if (cacheline_size >= pci_cache_line_size &&
956 (cacheline_size % pci_cache_line_size) == 0)
957 return 0;
958
959 /* Write the correct value. */
960 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
961 /* Read it back. */
962 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
963 if (cacheline_size == pci_cache_line_size)
964 return 0;
965
966 printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
967 "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
968
969 return -EINVAL;
970}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972/**
973 * pci_set_mwi - enables memory-write-invalidate PCI transaction
974 * @dev: the PCI device for which MWI is enabled
975 *
976 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
977 * and then calls @pcibios_set_mwi to do the needed arch specific
978 * operations or a generic mwi-prep function.
979 *
980 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
981 */
982int
983pci_set_mwi(struct pci_dev *dev)
984{
985 int rc;
986 u16 cmd;
987
Matthew Wilcoxedb2d972006-10-10 08:01:21 -0600988 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (rc)
990 return rc;
991
992 pci_read_config_word(dev, PCI_COMMAND, &cmd);
993 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
994 pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
995 cmd |= PCI_COMMAND_INVALIDATE;
996 pci_write_config_word(dev, PCI_COMMAND, cmd);
997 }
998
999 return 0;
1000}
1001
1002/**
1003 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
1004 * @dev: the PCI device to disable
1005 *
1006 * Disables PCI Memory-Write-Invalidate transaction on the device
1007 */
1008void
1009pci_clear_mwi(struct pci_dev *dev)
1010{
1011 u16 cmd;
1012
1013 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1014 if (cmd & PCI_COMMAND_INVALIDATE) {
1015 cmd &= ~PCI_COMMAND_INVALIDATE;
1016 pci_write_config_word(dev, PCI_COMMAND, cmd);
1017 }
1018}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001019#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Brett M Russa04ce0f2005-08-15 15:23:41 -04001021/**
1022 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001023 * @pdev: the PCI device to operate on
1024 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04001025 *
1026 * Enables/disables PCI INTx for device dev
1027 */
1028void
1029pci_intx(struct pci_dev *pdev, int enable)
1030{
1031 u16 pci_command, new;
1032
1033 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
1034
1035 if (enable) {
1036 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
1037 } else {
1038 new = pci_command | PCI_COMMAND_INTX_DISABLE;
1039 }
1040
1041 if (new != pci_command) {
Brett M Russ2fd9d742005-09-09 10:02:22 -07001042 pci_write_config_word(pdev, PCI_COMMAND, new);
Brett M Russa04ce0f2005-08-15 15:23:41 -04001043 }
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
1047/*
1048 * These can be overridden by arch-specific implementations
1049 */
1050int
1051pci_set_dma_mask(struct pci_dev *dev, u64 mask)
1052{
1053 if (!pci_dma_supported(dev, mask))
1054 return -EIO;
1055
1056 dev->dma_mask = mask;
1057
1058 return 0;
1059}
1060
1061int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1063{
1064 if (!pci_dma_supported(dev, mask))
1065 return -EIO;
1066
1067 dev->dev.coherent_dma_mask = mask;
1068
1069 return 0;
1070}
1071#endif
1072
1073static int __devinit pci_init(void)
1074{
1075 struct pci_dev *dev = NULL;
1076
1077 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1078 pci_fixup_device(pci_fixup_final, dev);
1079 }
1080 return 0;
1081}
1082
1083static int __devinit pci_setup(char *str)
1084{
1085 while (str) {
1086 char *k = strchr(str, ',');
1087 if (k)
1088 *k++ = 0;
1089 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001090 if (!strcmp(str, "nomsi")) {
1091 pci_no_msi();
1092 } else {
1093 printk(KERN_ERR "PCI: Unknown option `%s'\n",
1094 str);
1095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097 str = k;
1098 }
Andi Kleen0637a702006-09-26 10:52:41 +02001099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
Andi Kleen0637a702006-09-26 10:52:41 +02001101early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103device_initcall(pci_init);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
1106/* FIXME: Some boxes have multiple ISA bridges! */
1107struct pci_dev *isa_bridge;
1108EXPORT_SYMBOL(isa_bridge);
1109#endif
1110
John W. Linville064b53db2005-07-27 10:19:44 -04001111EXPORT_SYMBOL_GPL(pci_restore_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112EXPORT_SYMBOL(pci_enable_device_bars);
1113EXPORT_SYMBOL(pci_enable_device);
1114EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115EXPORT_SYMBOL(pci_find_capability);
1116EXPORT_SYMBOL(pci_bus_find_capability);
1117EXPORT_SYMBOL(pci_release_regions);
1118EXPORT_SYMBOL(pci_request_regions);
1119EXPORT_SYMBOL(pci_release_region);
1120EXPORT_SYMBOL(pci_request_region);
1121EXPORT_SYMBOL(pci_set_master);
1122EXPORT_SYMBOL(pci_set_mwi);
1123EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04001124EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126EXPORT_SYMBOL(pci_set_consistent_dma_mask);
1127EXPORT_SYMBOL(pci_assign_resource);
1128EXPORT_SYMBOL(pci_find_parent_resource);
1129
1130EXPORT_SYMBOL(pci_set_power_state);
1131EXPORT_SYMBOL(pci_save_state);
1132EXPORT_SYMBOL(pci_restore_state);
1133EXPORT_SYMBOL(pci_enable_wake);
1134
1135/* Quirk info */
1136
1137EXPORT_SYMBOL(isa_dma_bridge_buggy);
1138EXPORT_SYMBOL(pci_pci_problems);