]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/pci/pci.c
x86/PCI: Fix PCI config space for domains > 0
[mirror_ubuntu-artful-kernel.git] / drivers / pci / pci.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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>
075c1771 14#include <linux/pm.h>
1da177e4
LT
15#include <linux/module.h>
16#include <linux/spinlock.h>
4e57b681 17#include <linux/string.h>
229f5afd 18#include <linux/log2.h>
7d715a6c 19#include <linux/pci-aspm.h>
1da177e4 20#include <asm/dma.h> /* isa_dma_bridge_buggy */
bc56b9e0 21#include "pci.h"
1da177e4 22
ffadcc2f 23unsigned int pci_pm_d3_delay = 10;
1da177e4 24
32a2eea7
JG
25#ifdef CONFIG_PCI_DOMAINS
26int pci_domains_supported = 1;
27#endif
28
4516a618
AN
29#define DEFAULT_CARDBUS_IO_SIZE (256)
30#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
31/* pci=cbmemsize=nnM,cbiosize=nn can override this */
32unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
33unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
34
1da177e4
LT
35/**
36 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
37 * @bus: pointer to PCI bus structure to search
38 *
39 * Given a PCI bus, returns the highest PCI bus number present in the set
40 * including the given PCI bus and its list of child PCI buses.
41 */
96bde06a 42unsigned char pci_bus_max_busnr(struct pci_bus* bus)
1da177e4
LT
43{
44 struct list_head *tmp;
45 unsigned char max, n;
46
b82db5ce 47 max = bus->subordinate;
1da177e4
LT
48 list_for_each(tmp, &bus->children) {
49 n = pci_bus_max_busnr(pci_bus_b(tmp));
50 if(n > max)
51 max = n;
52 }
53 return max;
54}
b82db5ce 55EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
1da177e4 56
b82db5ce 57#if 0
1da177e4
LT
58/**
59 * pci_max_busnr - returns maximum PCI bus number
60 *
61 * Returns the highest PCI bus number present in the system global list of
62 * PCI buses.
63 */
64unsigned char __devinit
65pci_max_busnr(void)
66{
67 struct pci_bus *bus = NULL;
68 unsigned char max, n;
69
70 max = 0;
71 while ((bus = pci_find_next_bus(bus)) != NULL) {
72 n = pci_bus_max_busnr(bus);
73 if(n > max)
74 max = n;
75 }
76 return max;
77}
78
54c762fe
AB
79#endif /* 0 */
80
687d5fe3
ME
81#define PCI_FIND_CAP_TTL 48
82
83static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
84 u8 pos, int cap, int *ttl)
24a4e377
RD
85{
86 u8 id;
24a4e377 87
687d5fe3 88 while ((*ttl)--) {
24a4e377
RD
89 pci_bus_read_config_byte(bus, devfn, pos, &pos);
90 if (pos < 0x40)
91 break;
92 pos &= ~3;
93 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
94 &id);
95 if (id == 0xff)
96 break;
97 if (id == cap)
98 return pos;
99 pos += PCI_CAP_LIST_NEXT;
100 }
101 return 0;
102}
103
687d5fe3
ME
104static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
105 u8 pos, int cap)
106{
107 int ttl = PCI_FIND_CAP_TTL;
108
109 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
110}
111
24a4e377
RD
112int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
113{
114 return __pci_find_next_cap(dev->bus, dev->devfn,
115 pos + PCI_CAP_LIST_NEXT, cap);
116}
117EXPORT_SYMBOL_GPL(pci_find_next_capability);
118
d3bac118
ME
119static int __pci_bus_find_cap_start(struct pci_bus *bus,
120 unsigned int devfn, u8 hdr_type)
1da177e4
LT
121{
122 u16 status;
1da177e4
LT
123
124 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
125 if (!(status & PCI_STATUS_CAP_LIST))
126 return 0;
127
128 switch (hdr_type) {
129 case PCI_HEADER_TYPE_NORMAL:
130 case PCI_HEADER_TYPE_BRIDGE:
d3bac118 131 return PCI_CAPABILITY_LIST;
1da177e4 132 case PCI_HEADER_TYPE_CARDBUS:
d3bac118 133 return PCI_CB_CAPABILITY_LIST;
1da177e4
LT
134 default:
135 return 0;
136 }
d3bac118
ME
137
138 return 0;
1da177e4
LT
139}
140
141/**
142 * pci_find_capability - query for devices' capabilities
143 * @dev: PCI device to query
144 * @cap: capability code
145 *
146 * Tell if a device supports a given PCI capability.
147 * Returns the address of the requested capability structure within the
148 * device's PCI configuration space or 0 in case the device does not
149 * support it. Possible values for @cap:
150 *
151 * %PCI_CAP_ID_PM Power Management
152 * %PCI_CAP_ID_AGP Accelerated Graphics Port
153 * %PCI_CAP_ID_VPD Vital Product Data
154 * %PCI_CAP_ID_SLOTID Slot Identification
155 * %PCI_CAP_ID_MSI Message Signalled Interrupts
156 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
157 * %PCI_CAP_ID_PCIX PCI-X
158 * %PCI_CAP_ID_EXP PCI Express
159 */
160int pci_find_capability(struct pci_dev *dev, int cap)
161{
d3bac118
ME
162 int pos;
163
164 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
165 if (pos)
166 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
167
168 return pos;
1da177e4
LT
169}
170
171/**
172 * pci_bus_find_capability - query for devices' capabilities
173 * @bus: the PCI bus to query
174 * @devfn: PCI device to query
175 * @cap: capability code
176 *
177 * Like pci_find_capability() but works for pci devices that do not have a
178 * pci_dev structure set up yet.
179 *
180 * Returns the address of the requested capability structure within the
181 * device's PCI configuration space or 0 in case the device does not
182 * support it.
183 */
184int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
185{
d3bac118 186 int pos;
1da177e4
LT
187 u8 hdr_type;
188
189 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
190
d3bac118
ME
191 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
192 if (pos)
193 pos = __pci_find_next_cap(bus, devfn, pos, cap);
194
195 return pos;
1da177e4
LT
196}
197
198/**
199 * pci_find_ext_capability - Find an extended capability
200 * @dev: PCI device to query
201 * @cap: capability code
202 *
203 * Returns the address of the requested extended capability structure
204 * within the device's PCI configuration space or 0 if the device does
205 * not support it. Possible values for @cap:
206 *
207 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
208 * %PCI_EXT_CAP_ID_VC Virtual Channel
209 * %PCI_EXT_CAP_ID_DSN Device Serial Number
210 * %PCI_EXT_CAP_ID_PWR Power Budgeting
211 */
212int pci_find_ext_capability(struct pci_dev *dev, int cap)
213{
214 u32 header;
215 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
216 int pos = 0x100;
217
218 if (dev->cfg_size <= 256)
219 return 0;
220
221 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
222 return 0;
223
224 /*
225 * If we have no capabilities, this is indicated by cap ID,
226 * cap version and next pointer all being 0.
227 */
228 if (header == 0)
229 return 0;
230
231 while (ttl-- > 0) {
232 if (PCI_EXT_CAP_ID(header) == cap)
233 return pos;
234
235 pos = PCI_EXT_CAP_NEXT(header);
236 if (pos < 0x100)
237 break;
238
239 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
240 break;
241 }
242
243 return 0;
244}
3a720d72 245EXPORT_SYMBOL_GPL(pci_find_ext_capability);
1da177e4 246
687d5fe3
ME
247static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
248{
249 int rc, ttl = PCI_FIND_CAP_TTL;
250 u8 cap, mask;
251
252 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
253 mask = HT_3BIT_CAP_MASK;
254 else
255 mask = HT_5BIT_CAP_MASK;
256
257 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
258 PCI_CAP_ID_HT, &ttl);
259 while (pos) {
260 rc = pci_read_config_byte(dev, pos + 3, &cap);
261 if (rc != PCIBIOS_SUCCESSFUL)
262 return 0;
263
264 if ((cap & mask) == ht_cap)
265 return pos;
266
47a4d5be
BG
267 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
268 pos + PCI_CAP_LIST_NEXT,
687d5fe3
ME
269 PCI_CAP_ID_HT, &ttl);
270 }
271
272 return 0;
273}
274/**
275 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
276 * @dev: PCI device to query
277 * @pos: Position from which to continue searching
278 * @ht_cap: Hypertransport capability code
279 *
280 * To be used in conjunction with pci_find_ht_capability() to search for
281 * all capabilities matching @ht_cap. @pos should always be a value returned
282 * from pci_find_ht_capability().
283 *
284 * NB. To be 100% safe against broken PCI devices, the caller should take
285 * steps to avoid an infinite loop.
286 */
287int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
288{
289 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
290}
291EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
292
293/**
294 * pci_find_ht_capability - query a device's Hypertransport capabilities
295 * @dev: PCI device to query
296 * @ht_cap: Hypertransport capability code
297 *
298 * Tell if a device supports a given Hypertransport capability.
299 * Returns an address within the device's PCI configuration space
300 * or 0 in case the device does not support the request capability.
301 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
302 * which has a Hypertransport capability matching @ht_cap.
303 */
304int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
305{
306 int pos;
307
308 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
309 if (pos)
310 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
311
312 return pos;
313}
314EXPORT_SYMBOL_GPL(pci_find_ht_capability);
315
1da177e4
LT
316/**
317 * pci_find_parent_resource - return resource region of parent bus of given region
318 * @dev: PCI device structure contains resources to be searched
319 * @res: child resource record for which parent is sought
320 *
321 * For given resource region of given device, return the resource
322 * region of parent bus the given region is contained in or where
323 * it should be allocated from.
324 */
325struct resource *
326pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
327{
328 const struct pci_bus *bus = dev->bus;
329 int i;
330 struct resource *best = NULL;
331
332 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
333 struct resource *r = bus->resource[i];
334 if (!r)
335 continue;
336 if (res->start && !(res->start >= r->start && res->end <= r->end))
337 continue; /* Not contained */
338 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
339 continue; /* Wrong type */
340 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
341 return r; /* Exact match */
342 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
343 best = r; /* Approximating prefetchable by non-prefetchable */
344 }
345 return best;
346}
347
064b53db
JL
348/**
349 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
350 * @dev: PCI device to have its BARs restored
351 *
352 * Restore the BAR values for a given device, so as to make it
353 * accessible by its driver.
354 */
ad668599 355static void
064b53db
JL
356pci_restore_bars(struct pci_dev *dev)
357{
358 int i, numres;
359
360 switch (dev->hdr_type) {
361 case PCI_HEADER_TYPE_NORMAL:
362 numres = 6;
363 break;
364 case PCI_HEADER_TYPE_BRIDGE:
365 numres = 2;
366 break;
367 case PCI_HEADER_TYPE_CARDBUS:
368 numres = 1;
369 break;
370 default:
371 /* Should never get here, but just in case... */
372 return;
373 }
374
375 for (i = 0; i < numres; i ++)
376 pci_update_resource(dev, &dev->resource[i], i);
377}
378
961d9120
RW
379static struct pci_platform_pm_ops *pci_platform_pm;
380
381int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
382{
eb9d0fe4
RW
383 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
384 || !ops->sleep_wake || !ops->can_wakeup)
961d9120
RW
385 return -EINVAL;
386 pci_platform_pm = ops;
387 return 0;
388}
389
390static inline bool platform_pci_power_manageable(struct pci_dev *dev)
391{
392 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
393}
394
395static inline int platform_pci_set_power_state(struct pci_dev *dev,
396 pci_power_t t)
397{
398 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
399}
400
401static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
402{
403 return pci_platform_pm ?
404 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
405}
8f7020d3 406
eb9d0fe4
RW
407static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
408{
409 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
410}
411
412static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
413{
414 return pci_platform_pm ?
415 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
416}
417
1da177e4 418/**
44e4e66e
RW
419 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
420 * given PCI device
421 * @dev: PCI device to handle.
44e4e66e 422 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
1da177e4 423 *
44e4e66e
RW
424 * RETURN VALUE:
425 * -EINVAL if the requested state is invalid.
426 * -EIO if device does not support PCI PM or its PM capabilities register has a
427 * wrong version, or device doesn't support the requested state.
428 * 0 if device already is in the requested state.
429 * 0 if device's power state has been successfully changed.
1da177e4 430 */
44e4e66e 431static int
337001b6 432pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
1da177e4 433{
337001b6 434 u16 pmcsr;
44e4e66e 435 bool need_restore = false;
1da177e4 436
337001b6 437 if (!dev->pm_cap)
cca03dec
AL
438 return -EIO;
439
44e4e66e
RW
440 if (state < PCI_D0 || state > PCI_D3hot)
441 return -EINVAL;
442
1da177e4
LT
443 /* Validate current state:
444 * Can enter D0 from any state, but if we can only go deeper
445 * to sleep if we're already in a low power state
446 */
44e4e66e
RW
447 if (dev->current_state == state) {
448 /* we're already there */
449 return 0;
450 } else if (state != PCI_D0 && dev->current_state <= PCI_D3cold
451 && dev->current_state > state) {
80ccba11
BH
452 dev_err(&dev->dev, "invalid power transition "
453 "(from state %d to %d)\n", dev->current_state, state);
1da177e4 454 return -EINVAL;
44e4e66e 455 }
1da177e4 456
1da177e4 457 /* check if this device supports the desired state */
337001b6
RW
458 if ((state == PCI_D1 && !dev->d1_support)
459 || (state == PCI_D2 && !dev->d2_support))
3fe9d19f 460 return -EIO;
1da177e4 461
337001b6 462 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
064b53db 463
32a36585 464 /* If we're (effectively) in D3, force entire word to 0.
1da177e4
LT
465 * This doesn't affect PME_Status, disables PME_En, and
466 * sets PowerState to 0.
467 */
32a36585 468 switch (dev->current_state) {
d3535fbb
JL
469 case PCI_D0:
470 case PCI_D1:
471 case PCI_D2:
472 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
473 pmcsr |= state;
474 break;
32a36585
JL
475 case PCI_UNKNOWN: /* Boot-up */
476 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
477 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
44e4e66e 478 need_restore = true;
32a36585 479 /* Fall-through: force to D0 */
32a36585 480 default:
d3535fbb 481 pmcsr = 0;
32a36585 482 break;
1da177e4
LT
483 }
484
485 /* enter specified state */
337001b6 486 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
1da177e4
LT
487
488 /* Mandatory power management transition delays */
489 /* see PCI PM 1.1 5.6.1 table 18 */
490 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
ffadcc2f 491 msleep(pci_pm_d3_delay);
1da177e4
LT
492 else if (state == PCI_D2 || dev->current_state == PCI_D2)
493 udelay(200);
1da177e4 494
b913100d 495 dev->current_state = state;
064b53db
JL
496
497 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
498 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
499 * from D3hot to D0 _may_ perform an internal reset, thereby
500 * going to "D0 Uninitialized" rather than "D0 Initialized".
501 * For example, at least some versions of the 3c905B and the
502 * 3c556B exhibit this behaviour.
503 *
504 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
505 * devices in a D3hot state at boot. Consequently, we need to
506 * restore at least the BARs so that the device will be
507 * accessible to its driver.
508 */
509 if (need_restore)
510 pci_restore_bars(dev);
511
7d715a6c
SL
512 if (dev->bus->self)
513 pcie_aspm_pm_state_change(dev->bus->self);
514
1da177e4
LT
515 return 0;
516}
517
44e4e66e
RW
518/**
519 * pci_update_current_state - Read PCI power state of given device from its
520 * PCI PM registers and cache it
521 * @dev: PCI device to handle.
44e4e66e 522 */
337001b6 523static void pci_update_current_state(struct pci_dev *dev)
44e4e66e 524{
337001b6 525 if (dev->pm_cap) {
44e4e66e
RW
526 u16 pmcsr;
527
337001b6 528 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
44e4e66e
RW
529 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
530 }
531}
532
533/**
534 * pci_set_power_state - Set the power state of a PCI device
535 * @dev: PCI device to handle.
536 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
537 *
538 * Transition a device to a new power state, using the platform formware and/or
539 * the device's PCI PM registers.
540 *
541 * RETURN VALUE:
542 * -EINVAL if the requested state is invalid.
543 * -EIO if device does not support PCI PM or its PM capabilities register has a
544 * wrong version, or device doesn't support the requested state.
545 * 0 if device already is in the requested state.
546 * 0 if device's power state has been successfully changed.
547 */
548int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
549{
337001b6 550 int error;
44e4e66e
RW
551
552 /* bound the state we're entering */
553 if (state > PCI_D3hot)
554 state = PCI_D3hot;
555 else if (state < PCI_D0)
556 state = PCI_D0;
557 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
558 /*
559 * If the device or the parent bridge do not support PCI PM,
560 * ignore the request if we're doing anything other than putting
561 * it into D0 (which would only happen on boot).
562 */
563 return 0;
564
44e4e66e
RW
565 if (state == PCI_D0 && platform_pci_power_manageable(dev)) {
566 /*
567 * Allow the platform to change the state, for example via ACPI
568 * _PR0, _PS0 and some such, but do not trust it.
569 */
570 int ret = platform_pci_set_power_state(dev, PCI_D0);
571 if (!ret)
337001b6 572 pci_update_current_state(dev);
44e4e66e
RW
573 }
574
337001b6 575 error = pci_raw_set_power_state(dev, state);
44e4e66e
RW
576
577 if (state > PCI_D0 && platform_pci_power_manageable(dev)) {
578 /* Allow the platform to finalize the transition */
579 int ret = platform_pci_set_power_state(dev, state);
580 if (!ret) {
337001b6 581 pci_update_current_state(dev);
44e4e66e
RW
582 error = 0;
583 }
584 }
585
586 return error;
587}
588
1da177e4
LT
589/**
590 * pci_choose_state - Choose the power state of a PCI device
591 * @dev: PCI device to be suspended
592 * @state: target sleep state for the whole system. This is the value
593 * that is passed to suspend() function.
594 *
595 * Returns PCI power state suitable for given device and given system
596 * message.
597 */
598
599pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
600{
ab826ca4 601 pci_power_t ret;
0f64474b 602
1da177e4
LT
603 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
604 return PCI_D0;
605
961d9120
RW
606 ret = platform_pci_choose_state(dev);
607 if (ret != PCI_POWER_ERROR)
608 return ret;
ca078bae
PM
609
610 switch (state.event) {
611 case PM_EVENT_ON:
612 return PCI_D0;
613 case PM_EVENT_FREEZE:
b887d2e6
DB
614 case PM_EVENT_PRETHAW:
615 /* REVISIT both freeze and pre-thaw "should" use D0 */
ca078bae 616 case PM_EVENT_SUSPEND:
3a2d5b70 617 case PM_EVENT_HIBERNATE:
ca078bae 618 return PCI_D3hot;
1da177e4 619 default:
80ccba11
BH
620 dev_info(&dev->dev, "unrecognized suspend event %d\n",
621 state.event);
1da177e4
LT
622 BUG();
623 }
624 return PCI_D0;
625}
626
627EXPORT_SYMBOL(pci_choose_state);
628
b56a5a23
MT
629static int pci_save_pcie_state(struct pci_dev *dev)
630{
631 int pos, i = 0;
632 struct pci_cap_saved_state *save_state;
633 u16 *cap;
017fc480 634 int found = 0;
b56a5a23
MT
635
636 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
637 if (pos <= 0)
638 return 0;
639
9f35575d
EB
640 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
641 if (!save_state)
642 save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
017fc480
SL
643 else
644 found = 1;
b56a5a23 645 if (!save_state) {
80ccba11 646 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
b56a5a23
MT
647 return -ENOMEM;
648 }
649 cap = (u16 *)&save_state->data[0];
650
651 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
652 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
653 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
654 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
ec0a3a27 655 save_state->cap_nr = PCI_CAP_ID_EXP;
017fc480
SL
656 if (!found)
657 pci_add_saved_cap(dev, save_state);
b56a5a23
MT
658 return 0;
659}
660
661static void pci_restore_pcie_state(struct pci_dev *dev)
662{
663 int i = 0, pos;
664 struct pci_cap_saved_state *save_state;
665 u16 *cap;
666
667 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
668 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
669 if (!save_state || pos <= 0)
670 return;
671 cap = (u16 *)&save_state->data[0];
672
673 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
674 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
675 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
676 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
b56a5a23
MT
677}
678
cc692a5f
SH
679
680static int pci_save_pcix_state(struct pci_dev *dev)
681{
682 int pos, i = 0;
683 struct pci_cap_saved_state *save_state;
684 u16 *cap;
017fc480 685 int found = 0;
cc692a5f
SH
686
687 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
688 if (pos <= 0)
689 return 0;
690
f34303de 691 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
9f35575d
EB
692 if (!save_state)
693 save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
017fc480
SL
694 else
695 found = 1;
cc692a5f 696 if (!save_state) {
80ccba11 697 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
cc692a5f
SH
698 return -ENOMEM;
699 }
700 cap = (u16 *)&save_state->data[0];
701
702 pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
ec0a3a27 703 save_state->cap_nr = PCI_CAP_ID_PCIX;
017fc480
SL
704 if (!found)
705 pci_add_saved_cap(dev, save_state);
cc692a5f
SH
706 return 0;
707}
708
709static void pci_restore_pcix_state(struct pci_dev *dev)
710{
711 int i = 0, pos;
712 struct pci_cap_saved_state *save_state;
713 u16 *cap;
714
715 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
716 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
717 if (!save_state || pos <= 0)
718 return;
719 cap = (u16 *)&save_state->data[0];
720
721 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
cc692a5f
SH
722}
723
724
1da177e4
LT
725/**
726 * pci_save_state - save the PCI configuration space of a device before suspending
727 * @dev: - PCI device that we're dealing with
1da177e4
LT
728 */
729int
730pci_save_state(struct pci_dev *dev)
731{
732 int i;
733 /* XXX: 100% dword access ok here? */
734 for (i = 0; i < 16; i++)
735 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
b56a5a23
MT
736 if ((i = pci_save_pcie_state(dev)) != 0)
737 return i;
cc692a5f
SH
738 if ((i = pci_save_pcix_state(dev)) != 0)
739 return i;
1da177e4
LT
740 return 0;
741}
742
743/**
744 * pci_restore_state - Restore the saved state of a PCI device
745 * @dev: - PCI device that we're dealing with
1da177e4
LT
746 */
747int
748pci_restore_state(struct pci_dev *dev)
749{
750 int i;
b4482a4b 751 u32 val;
1da177e4 752
b56a5a23
MT
753 /* PCI Express register must be restored first */
754 pci_restore_pcie_state(dev);
755
8b8c8d28
YL
756 /*
757 * The Base Address register should be programmed before the command
758 * register(s)
759 */
760 for (i = 15; i >= 0; i--) {
04d9c1a1
DJ
761 pci_read_config_dword(dev, i * 4, &val);
762 if (val != dev->saved_config_space[i]) {
80ccba11
BH
763 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
764 "space at offset %#x (was %#x, writing %#x)\n",
765 i, val, (int)dev->saved_config_space[i]);
04d9c1a1
DJ
766 pci_write_config_dword(dev,i * 4,
767 dev->saved_config_space[i]);
768 }
769 }
cc692a5f 770 pci_restore_pcix_state(dev);
41017f0c 771 pci_restore_msi_state(dev);
8fed4b65 772
1da177e4
LT
773 return 0;
774}
775
38cc1302
HS
776static int do_pci_enable_device(struct pci_dev *dev, int bars)
777{
778 int err;
779
780 err = pci_set_power_state(dev, PCI_D0);
781 if (err < 0 && err != -EIO)
782 return err;
783 err = pcibios_enable_device(dev, bars);
784 if (err < 0)
785 return err;
786 pci_fixup_device(pci_fixup_enable, dev);
787
788 return 0;
789}
790
791/**
0b62e13b 792 * pci_reenable_device - Resume abandoned device
38cc1302
HS
793 * @dev: PCI device to be resumed
794 *
795 * Note this function is a backend of pci_default_resume and is not supposed
796 * to be called by normal code, write proper resume handler and use it instead.
797 */
0b62e13b 798int pci_reenable_device(struct pci_dev *dev)
38cc1302
HS
799{
800 if (atomic_read(&dev->enable_cnt))
801 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
802 return 0;
803}
804
b718989d
BH
805static int __pci_enable_device_flags(struct pci_dev *dev,
806 resource_size_t flags)
1da177e4
LT
807{
808 int err;
b718989d 809 int i, bars = 0;
1da177e4 810
9fb625c3
HS
811 if (atomic_add_return(1, &dev->enable_cnt) > 1)
812 return 0; /* already enabled */
813
b718989d
BH
814 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
815 if (dev->resource[i].flags & flags)
816 bars |= (1 << i);
817
38cc1302 818 err = do_pci_enable_device(dev, bars);
95a62965 819 if (err < 0)
38cc1302 820 atomic_dec(&dev->enable_cnt);
9fb625c3 821 return err;
1da177e4
LT
822}
823
b718989d
BH
824/**
825 * pci_enable_device_io - Initialize a device for use with IO space
826 * @dev: PCI device to be initialized
827 *
828 * Initialize device before it's used by a driver. Ask low-level code
829 * to enable I/O resources. Wake up the device if it was suspended.
830 * Beware, this function can fail.
831 */
832int pci_enable_device_io(struct pci_dev *dev)
833{
834 return __pci_enable_device_flags(dev, IORESOURCE_IO);
835}
836
837/**
838 * pci_enable_device_mem - Initialize a device for use with Memory space
839 * @dev: PCI device to be initialized
840 *
841 * Initialize device before it's used by a driver. Ask low-level code
842 * to enable Memory resources. Wake up the device if it was suspended.
843 * Beware, this function can fail.
844 */
845int pci_enable_device_mem(struct pci_dev *dev)
846{
847 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
848}
849
bae94d02
IPG
850/**
851 * pci_enable_device - Initialize device before it's used by a driver.
852 * @dev: PCI device to be initialized
853 *
854 * Initialize device before it's used by a driver. Ask low-level code
855 * to enable I/O and memory. Wake up the device if it was suspended.
856 * Beware, this function can fail.
857 *
858 * Note we don't actually enable the device many times if we call
859 * this function repeatedly (we just increment the count).
860 */
861int pci_enable_device(struct pci_dev *dev)
862{
b718989d 863 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
bae94d02
IPG
864}
865
9ac7849e
TH
866/*
867 * Managed PCI resources. This manages device on/off, intx/msi/msix
868 * on/off and BAR regions. pci_dev itself records msi/msix status, so
869 * there's no need to track it separately. pci_devres is initialized
870 * when a device is enabled using managed PCI device enable interface.
871 */
872struct pci_devres {
7f375f32
TH
873 unsigned int enabled:1;
874 unsigned int pinned:1;
9ac7849e
TH
875 unsigned int orig_intx:1;
876 unsigned int restore_intx:1;
877 u32 region_mask;
878};
879
880static void pcim_release(struct device *gendev, void *res)
881{
882 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
883 struct pci_devres *this = res;
884 int i;
885
886 if (dev->msi_enabled)
887 pci_disable_msi(dev);
888 if (dev->msix_enabled)
889 pci_disable_msix(dev);
890
891 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
892 if (this->region_mask & (1 << i))
893 pci_release_region(dev, i);
894
895 if (this->restore_intx)
896 pci_intx(dev, this->orig_intx);
897
7f375f32 898 if (this->enabled && !this->pinned)
9ac7849e
TH
899 pci_disable_device(dev);
900}
901
902static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
903{
904 struct pci_devres *dr, *new_dr;
905
906 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
907 if (dr)
908 return dr;
909
910 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
911 if (!new_dr)
912 return NULL;
913 return devres_get(&pdev->dev, new_dr, NULL, NULL);
914}
915
916static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
917{
918 if (pci_is_managed(pdev))
919 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
920 return NULL;
921}
922
923/**
924 * pcim_enable_device - Managed pci_enable_device()
925 * @pdev: PCI device to be initialized
926 *
927 * Managed pci_enable_device().
928 */
929int pcim_enable_device(struct pci_dev *pdev)
930{
931 struct pci_devres *dr;
932 int rc;
933
934 dr = get_pci_dr(pdev);
935 if (unlikely(!dr))
936 return -ENOMEM;
b95d58ea
TH
937 if (dr->enabled)
938 return 0;
9ac7849e
TH
939
940 rc = pci_enable_device(pdev);
941 if (!rc) {
942 pdev->is_managed = 1;
7f375f32 943 dr->enabled = 1;
9ac7849e
TH
944 }
945 return rc;
946}
947
948/**
949 * pcim_pin_device - Pin managed PCI device
950 * @pdev: PCI device to pin
951 *
952 * Pin managed PCI device @pdev. Pinned device won't be disabled on
953 * driver detach. @pdev must have been enabled with
954 * pcim_enable_device().
955 */
956void pcim_pin_device(struct pci_dev *pdev)
957{
958 struct pci_devres *dr;
959
960 dr = find_pci_dr(pdev);
7f375f32 961 WARN_ON(!dr || !dr->enabled);
9ac7849e 962 if (dr)
7f375f32 963 dr->pinned = 1;
9ac7849e
TH
964}
965
1da177e4
LT
966/**
967 * pcibios_disable_device - disable arch specific PCI resources for device dev
968 * @dev: the PCI device to disable
969 *
970 * Disables architecture specific PCI resources for the device. This
971 * is the default implementation. Architecture implementations can
972 * override this.
973 */
974void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
975
976/**
977 * pci_disable_device - Disable PCI device after use
978 * @dev: PCI device to be disabled
979 *
980 * Signal to the system that the PCI device is not in use by the system
981 * anymore. This only involves disabling PCI bus-mastering, if active.
bae94d02
IPG
982 *
983 * Note we don't actually disable the device until all callers of
984 * pci_device_enable() have called pci_device_disable().
1da177e4
LT
985 */
986void
987pci_disable_device(struct pci_dev *dev)
988{
9ac7849e 989 struct pci_devres *dr;
1da177e4 990 u16 pci_command;
99dc804d 991
9ac7849e
TH
992 dr = find_pci_dr(dev);
993 if (dr)
7f375f32 994 dr->enabled = 0;
9ac7849e 995
bae94d02
IPG
996 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
997 return;
998
1da177e4
LT
999 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1000 if (pci_command & PCI_COMMAND_MASTER) {
1001 pci_command &= ~PCI_COMMAND_MASTER;
1002 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1003 }
ceb43744 1004 dev->is_busmaster = 0;
1da177e4
LT
1005
1006 pcibios_disable_device(dev);
1007}
1008
f7bdd12d
BK
1009/**
1010 * pcibios_set_pcie_reset_state - set reset state for device dev
1011 * @dev: the PCI-E device reset
1012 * @state: Reset state to enter into
1013 *
1014 *
1015 * Sets the PCI-E reset state for the device. This is the default
1016 * implementation. Architecture implementations can override this.
1017 */
1018int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1019 enum pcie_reset_state state)
1020{
1021 return -EINVAL;
1022}
1023
1024/**
1025 * pci_set_pcie_reset_state - set reset state for device dev
1026 * @dev: the PCI-E device reset
1027 * @state: Reset state to enter into
1028 *
1029 *
1030 * Sets the PCI reset state for the device.
1031 */
1032int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1033{
1034 return pcibios_set_pcie_reset_state(dev, state);
1035}
1036
eb9d0fe4
RW
1037/**
1038 * pci_pme_capable - check the capability of PCI device to generate PME#
1039 * @dev: PCI device to handle.
eb9d0fe4
RW
1040 * @state: PCI state from which device will issue PME#.
1041 */
337001b6 1042static bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
eb9d0fe4 1043{
337001b6 1044 if (!dev->pm_cap)
eb9d0fe4
RW
1045 return false;
1046
337001b6 1047 return !!(dev->pme_support & (1 << state));
eb9d0fe4
RW
1048}
1049
1050/**
1051 * pci_pme_active - enable or disable PCI device's PME# function
1052 * @dev: PCI device to handle.
eb9d0fe4
RW
1053 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1054 *
1055 * The caller must verify that the device is capable of generating PME# before
1056 * calling this function with @enable equal to 'true'.
1057 */
337001b6 1058static void pci_pme_active(struct pci_dev *dev, bool enable)
eb9d0fe4
RW
1059{
1060 u16 pmcsr;
1061
337001b6 1062 if (!dev->pm_cap)
eb9d0fe4
RW
1063 return;
1064
337001b6 1065 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
eb9d0fe4
RW
1066 /* Clear PME_Status by writing 1 to it and enable PME# */
1067 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1068 if (!enable)
1069 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1070
337001b6 1071 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
eb9d0fe4
RW
1072
1073 dev_printk(KERN_INFO, &dev->dev, "PME# %s\n",
1074 enable ? "enabled" : "disabled");
1075}
1076
1da177e4 1077/**
075c1771
DB
1078 * pci_enable_wake - enable PCI device as wakeup event source
1079 * @dev: PCI device affected
1080 * @state: PCI state from which device will issue wakeup events
1081 * @enable: True to enable event generation; false to disable
1082 *
1083 * This enables the device as a wakeup event source, or disables it.
1084 * When such events involves platform-specific hooks, those hooks are
1085 * called automatically by this routine.
1086 *
1087 * Devices with legacy power management (no standard PCI PM capabilities)
eb9d0fe4 1088 * always require such platform hooks.
075c1771 1089 *
eb9d0fe4
RW
1090 * RETURN VALUE:
1091 * 0 is returned on success
1092 * -EINVAL is returned if device is not supposed to wake up the system
1093 * Error code depending on the platform is returned if both the platform and
1094 * the native mechanism fail to enable the generation of wake-up events
1da177e4
LT
1095 */
1096int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
1097{
eb9d0fe4
RW
1098 int error = 0;
1099 bool pme_done = false;
075c1771 1100
eb9d0fe4
RW
1101 if (!device_may_wakeup(&dev->dev))
1102 return -EINVAL;
1da177e4 1103
eb9d0fe4
RW
1104 /*
1105 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1106 * Anderson we should be doing PME# wake enable followed by ACPI wake
1107 * enable. To disable wake-up we call the platform first, for symmetry.
075c1771 1108 */
1da177e4 1109
eb9d0fe4
RW
1110 if (!enable && platform_pci_can_wakeup(dev))
1111 error = platform_pci_sleep_wake(dev, false);
1da177e4 1112
337001b6
RW
1113 if (!enable || pci_pme_capable(dev, state)) {
1114 pci_pme_active(dev, enable);
eb9d0fe4 1115 pme_done = true;
075c1771 1116 }
1da177e4 1117
eb9d0fe4
RW
1118 if (enable && platform_pci_can_wakeup(dev))
1119 error = platform_pci_sleep_wake(dev, true);
1da177e4 1120
eb9d0fe4
RW
1121 return pme_done ? 0 : error;
1122}
1da177e4 1123
404cc2d8
RW
1124/**
1125 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into
1126 * a sleep state
1127 * @dev: Device to handle.
1128 *
1129 * Choose the power state appropriate for the device depending on whether
1130 * it can wake up the system and/or is power manageable by the platform
1131 * (PCI_D3hot is the default) and put the device into that state.
1132 */
1133int pci_prepare_to_sleep(struct pci_dev *dev)
1134{
1135 pci_power_t target_state = PCI_D3hot;
404cc2d8
RW
1136 int error;
1137
1138 if (platform_pci_power_manageable(dev)) {
1139 /*
1140 * Call the platform to choose the target state of the device
1141 * and enable wake-up from this state if supported.
1142 */
1143 pci_power_t state = platform_pci_choose_state(dev);
1144
1145 switch (state) {
1146 case PCI_POWER_ERROR:
1147 case PCI_UNKNOWN:
1148 break;
1149 case PCI_D1:
1150 case PCI_D2:
1151 if (pci_no_d1d2(dev))
1152 break;
1153 default:
1154 target_state = state;
1155 pci_enable_wake(dev, target_state, true);
1156 }
1157 } else if (device_may_wakeup(&dev->dev)) {
1158 /*
1159 * Find the deepest state from which the device can generate
1160 * wake-up events, make it the target state and enable device
1161 * to generate PME#.
1162 */
337001b6 1163 if (!dev->pm_cap)
404cc2d8
RW
1164 return -EIO;
1165
337001b6
RW
1166 if (dev->pme_support) {
1167 while (target_state
1168 && !(dev->pme_support & (1 << target_state)))
1169 target_state--;
1170 pci_pme_active(dev, true);
404cc2d8
RW
1171 }
1172 }
1173
1174 error = pci_set_power_state(dev, target_state);
1175
1176 if (error)
1177 pci_enable_wake(dev, target_state, false);
1178
1179 return error;
1180}
1181
1182/**
1183 * pci_back_from_sleep - turn PCI device on during system-wide transition into
1184 * the working state a sleep state
1185 * @dev: Device to handle.
1186 *
1187 * Disable device's sytem wake-up capability and put it into D0.
1188 */
1189int pci_back_from_sleep(struct pci_dev *dev)
1190{
1191 pci_enable_wake(dev, PCI_D0, false);
1192 return pci_set_power_state(dev, PCI_D0);
1193}
1194
eb9d0fe4
RW
1195/**
1196 * pci_pm_init - Initialize PM functions of given PCI device
1197 * @dev: PCI device to handle.
1198 */
1199void pci_pm_init(struct pci_dev *dev)
1200{
1201 int pm;
1202 u16 pmc;
1da177e4 1203
337001b6
RW
1204 dev->pm_cap = 0;
1205
eb9d0fe4
RW
1206 /* find PCI PM capability in list */
1207 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
1208 if (!pm)
1209 return;
1210 /* Check device's ability to generate PME# */
1211 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
075c1771 1212
eb9d0fe4
RW
1213 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1214 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1215 pmc & PCI_PM_CAP_VER_MASK);
1216 return;
1217 }
1218
337001b6
RW
1219 dev->pm_cap = pm;
1220
1221 dev->d1_support = false;
1222 dev->d2_support = false;
1223 if (!pci_no_d1d2(dev)) {
1224 if (pmc & PCI_PM_CAP_D1) {
1225 dev_printk(KERN_DEBUG, &dev->dev, "supports D1\n");
1226 dev->d1_support = true;
1227 }
1228 if (pmc & PCI_PM_CAP_D2) {
1229 dev_printk(KERN_DEBUG, &dev->dev, "supports D2\n");
1230 dev->d2_support = true;
1231 }
1232 }
1233
1234 pmc &= PCI_PM_CAP_PME_MASK;
1235 if (pmc) {
eb9d0fe4
RW
1236 dev_printk(KERN_INFO, &dev->dev,
1237 "PME# supported from%s%s%s%s%s\n",
1238 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1239 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1240 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1241 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1242 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
337001b6 1243 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
eb9d0fe4
RW
1244 /*
1245 * Make device's PM flags reflect the wake-up capability, but
1246 * let the user space enable it to wake up the system as needed.
1247 */
1248 device_set_wakeup_capable(&dev->dev, true);
1249 device_set_wakeup_enable(&dev->dev, false);
1250 /* Disable the PME# generation functionality */
337001b6
RW
1251 pci_pme_active(dev, false);
1252 } else {
1253 dev->pme_support = 0;
eb9d0fe4 1254 }
1da177e4
LT
1255}
1256
1257int
1258pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1259{
1260 u8 pin;
1261
514d207d 1262 pin = dev->pin;
1da177e4
LT
1263 if (!pin)
1264 return -1;
1265 pin--;
1266 while (dev->bus->self) {
1267 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
1268 dev = dev->bus->self;
1269 }
1270 *bridge = dev;
1271 return pin;
1272}
1273
1274/**
1275 * pci_release_region - Release a PCI bar
1276 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1277 * @bar: BAR to release
1278 *
1279 * Releases the PCI I/O and memory resources previously reserved by a
1280 * successful call to pci_request_region. Call this function only
1281 * after all use of the PCI regions has ceased.
1282 */
1283void pci_release_region(struct pci_dev *pdev, int bar)
1284{
9ac7849e
TH
1285 struct pci_devres *dr;
1286
1da177e4
LT
1287 if (pci_resource_len(pdev, bar) == 0)
1288 return;
1289 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1290 release_region(pci_resource_start(pdev, bar),
1291 pci_resource_len(pdev, bar));
1292 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1293 release_mem_region(pci_resource_start(pdev, bar),
1294 pci_resource_len(pdev, bar));
9ac7849e
TH
1295
1296 dr = find_pci_dr(pdev);
1297 if (dr)
1298 dr->region_mask &= ~(1 << bar);
1da177e4
LT
1299}
1300
1301/**
1302 * pci_request_region - Reserved PCI I/O and memory resource
1303 * @pdev: PCI device whose resources are to be reserved
1304 * @bar: BAR to be reserved
1305 * @res_name: Name to be associated with resource.
1306 *
1307 * Mark the PCI region associated with PCI device @pdev BR @bar as
1308 * being reserved by owner @res_name. Do not access any
1309 * address inside the PCI regions unless this call returns
1310 * successfully.
1311 *
1312 * Returns 0 on success, or %EBUSY on error. A warning
1313 * message is also printed on failure.
1314 */
3c990e92 1315int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
1da177e4 1316{
9ac7849e
TH
1317 struct pci_devres *dr;
1318
1da177e4
LT
1319 if (pci_resource_len(pdev, bar) == 0)
1320 return 0;
1321
1322 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1323 if (!request_region(pci_resource_start(pdev, bar),
1324 pci_resource_len(pdev, bar), res_name))
1325 goto err_out;
1326 }
1327 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
1328 if (!request_mem_region(pci_resource_start(pdev, bar),
1329 pci_resource_len(pdev, bar), res_name))
1330 goto err_out;
1331 }
9ac7849e
TH
1332
1333 dr = find_pci_dr(pdev);
1334 if (dr)
1335 dr->region_mask |= 1 << bar;
1336
1da177e4
LT
1337 return 0;
1338
1339err_out:
80ccba11 1340 dev_warn(&pdev->dev, "BAR %d: can't reserve %s region [%#llx-%#llx]\n",
e4ec7a00
JB
1341 bar,
1342 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
1343 (unsigned long long)pci_resource_start(pdev, bar),
1344 (unsigned long long)pci_resource_end(pdev, bar));
1da177e4
LT
1345 return -EBUSY;
1346}
1347
c87deff7
HS
1348/**
1349 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1350 * @pdev: PCI device whose resources were previously reserved
1351 * @bars: Bitmask of BARs to be released
1352 *
1353 * Release selected PCI I/O and memory resources previously reserved.
1354 * Call this function only after all use of the PCI regions has ceased.
1355 */
1356void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1357{
1358 int i;
1359
1360 for (i = 0; i < 6; i++)
1361 if (bars & (1 << i))
1362 pci_release_region(pdev, i);
1363}
1364
1365/**
1366 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1367 * @pdev: PCI device whose resources are to be reserved
1368 * @bars: Bitmask of BARs to be requested
1369 * @res_name: Name to be associated with resource
1370 */
1371int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1372 const char *res_name)
1373{
1374 int i;
1375
1376 for (i = 0; i < 6; i++)
1377 if (bars & (1 << i))
1378 if(pci_request_region(pdev, i, res_name))
1379 goto err_out;
1380 return 0;
1381
1382err_out:
1383 while(--i >= 0)
1384 if (bars & (1 << i))
1385 pci_release_region(pdev, i);
1386
1387 return -EBUSY;
1388}
1da177e4
LT
1389
1390/**
1391 * pci_release_regions - Release reserved PCI I/O and memory resources
1392 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1393 *
1394 * Releases all PCI I/O and memory resources previously reserved by a
1395 * successful call to pci_request_regions. Call this function only
1396 * after all use of the PCI regions has ceased.
1397 */
1398
1399void pci_release_regions(struct pci_dev *pdev)
1400{
c87deff7 1401 pci_release_selected_regions(pdev, (1 << 6) - 1);
1da177e4
LT
1402}
1403
1404/**
1405 * pci_request_regions - Reserved PCI I/O and memory resources
1406 * @pdev: PCI device whose resources are to be reserved
1407 * @res_name: Name to be associated with resource.
1408 *
1409 * Mark all PCI regions associated with PCI device @pdev as
1410 * being reserved by owner @res_name. Do not access any
1411 * address inside the PCI regions unless this call returns
1412 * successfully.
1413 *
1414 * Returns 0 on success, or %EBUSY on error. A warning
1415 * message is also printed on failure.
1416 */
3c990e92 1417int pci_request_regions(struct pci_dev *pdev, const char *res_name)
1da177e4 1418{
c87deff7 1419 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
1da177e4
LT
1420}
1421
1422/**
1423 * pci_set_master - enables bus-mastering for device dev
1424 * @dev: the PCI device to enable
1425 *
1426 * Enables bus-mastering on the device and calls pcibios_set_master()
1427 * to do the needed arch specific settings.
1428 */
1429void
1430pci_set_master(struct pci_dev *dev)
1431{
1432 u16 cmd;
1433
1434 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1435 if (! (cmd & PCI_COMMAND_MASTER)) {
80ccba11 1436 dev_dbg(&dev->dev, "enabling bus mastering\n");
1da177e4
LT
1437 cmd |= PCI_COMMAND_MASTER;
1438 pci_write_config_word(dev, PCI_COMMAND, cmd);
1439 }
1440 dev->is_busmaster = 1;
1441 pcibios_set_master(dev);
1442}
1443
edb2d97e
MW
1444#ifdef PCI_DISABLE_MWI
1445int pci_set_mwi(struct pci_dev *dev)
1446{
1447 return 0;
1448}
1449
694625c0
RD
1450int pci_try_set_mwi(struct pci_dev *dev)
1451{
1452 return 0;
1453}
1454
edb2d97e
MW
1455void pci_clear_mwi(struct pci_dev *dev)
1456{
1457}
1458
1459#else
ebf5a248
MW
1460
1461#ifndef PCI_CACHE_LINE_BYTES
1462#define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
1463#endif
1464
1da177e4 1465/* This can be overridden by arch code. */
ebf5a248
MW
1466/* Don't forget this is measured in 32-bit words, not bytes */
1467u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
1da177e4
LT
1468
1469/**
edb2d97e
MW
1470 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1471 * @dev: the PCI device for which MWI is to be enabled
1da177e4 1472 *
edb2d97e
MW
1473 * Helper function for pci_set_mwi.
1474 * Originally copied from drivers/net/acenic.c.
1da177e4
LT
1475 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1476 *
1477 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1478 */
1479static int
edb2d97e 1480pci_set_cacheline_size(struct pci_dev *dev)
1da177e4
LT
1481{
1482 u8 cacheline_size;
1483
1484 if (!pci_cache_line_size)
1485 return -EINVAL; /* The system doesn't support MWI. */
1486
1487 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
1488 equal to or multiple of the right value. */
1489 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1490 if (cacheline_size >= pci_cache_line_size &&
1491 (cacheline_size % pci_cache_line_size) == 0)
1492 return 0;
1493
1494 /* Write the correct value. */
1495 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
1496 /* Read it back. */
1497 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1498 if (cacheline_size == pci_cache_line_size)
1499 return 0;
1500
80ccba11
BH
1501 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
1502 "supported\n", pci_cache_line_size << 2);
1da177e4
LT
1503
1504 return -EINVAL;
1505}
1da177e4
LT
1506
1507/**
1508 * pci_set_mwi - enables memory-write-invalidate PCI transaction
1509 * @dev: the PCI device for which MWI is enabled
1510 *
694625c0 1511 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
1da177e4
LT
1512 *
1513 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1514 */
1515int
1516pci_set_mwi(struct pci_dev *dev)
1517{
1518 int rc;
1519 u16 cmd;
1520
edb2d97e 1521 rc = pci_set_cacheline_size(dev);
1da177e4
LT
1522 if (rc)
1523 return rc;
1524
1525 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1526 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
80ccba11 1527 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
1da177e4
LT
1528 cmd |= PCI_COMMAND_INVALIDATE;
1529 pci_write_config_word(dev, PCI_COMMAND, cmd);
1530 }
1531
1532 return 0;
1533}
1534
694625c0
RD
1535/**
1536 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
1537 * @dev: the PCI device for which MWI is enabled
1538 *
1539 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
1540 * Callers are not required to check the return value.
1541 *
1542 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1543 */
1544int pci_try_set_mwi(struct pci_dev *dev)
1545{
1546 int rc = pci_set_mwi(dev);
1547 return rc;
1548}
1549
1da177e4
LT
1550/**
1551 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
1552 * @dev: the PCI device to disable
1553 *
1554 * Disables PCI Memory-Write-Invalidate transaction on the device
1555 */
1556void
1557pci_clear_mwi(struct pci_dev *dev)
1558{
1559 u16 cmd;
1560
1561 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1562 if (cmd & PCI_COMMAND_INVALIDATE) {
1563 cmd &= ~PCI_COMMAND_INVALIDATE;
1564 pci_write_config_word(dev, PCI_COMMAND, cmd);
1565 }
1566}
edb2d97e 1567#endif /* ! PCI_DISABLE_MWI */
1da177e4 1568
a04ce0ff
BR
1569/**
1570 * pci_intx - enables/disables PCI INTx for device dev
8f7020d3
RD
1571 * @pdev: the PCI device to operate on
1572 * @enable: boolean: whether to enable or disable PCI INTx
a04ce0ff
BR
1573 *
1574 * Enables/disables PCI INTx for device dev
1575 */
1576void
1577pci_intx(struct pci_dev *pdev, int enable)
1578{
1579 u16 pci_command, new;
1580
1581 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
1582
1583 if (enable) {
1584 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
1585 } else {
1586 new = pci_command | PCI_COMMAND_INTX_DISABLE;
1587 }
1588
1589 if (new != pci_command) {
9ac7849e
TH
1590 struct pci_devres *dr;
1591
2fd9d74b 1592 pci_write_config_word(pdev, PCI_COMMAND, new);
9ac7849e
TH
1593
1594 dr = find_pci_dr(pdev);
1595 if (dr && !dr->restore_intx) {
1596 dr->restore_intx = 1;
1597 dr->orig_intx = !enable;
1598 }
a04ce0ff
BR
1599 }
1600}
1601
f5f2b131
EB
1602/**
1603 * pci_msi_off - disables any msi or msix capabilities
8d7d86e9 1604 * @dev: the PCI device to operate on
f5f2b131
EB
1605 *
1606 * If you want to use msi see pci_enable_msi and friends.
1607 * This is a lower level primitive that allows us to disable
1608 * msi operation at the device level.
1609 */
1610void pci_msi_off(struct pci_dev *dev)
1611{
1612 int pos;
1613 u16 control;
1614
1615 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
1616 if (pos) {
1617 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
1618 control &= ~PCI_MSI_FLAGS_ENABLE;
1619 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
1620 }
1621 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1622 if (pos) {
1623 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
1624 control &= ~PCI_MSIX_FLAGS_ENABLE;
1625 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
1626 }
1627}
1628
1da177e4
LT
1629#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
1630/*
1631 * These can be overridden by arch-specific implementations
1632 */
1633int
1634pci_set_dma_mask(struct pci_dev *dev, u64 mask)
1635{
1636 if (!pci_dma_supported(dev, mask))
1637 return -EIO;
1638
1639 dev->dma_mask = mask;
1640
1641 return 0;
1642}
1643
1da177e4
LT
1644int
1645pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1646{
1647 if (!pci_dma_supported(dev, mask))
1648 return -EIO;
1649
1650 dev->dev.coherent_dma_mask = mask;
1651
1652 return 0;
1653}
1654#endif
c87deff7 1655
4d57cdfa
FT
1656#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
1657int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
1658{
1659 return dma_set_max_seg_size(&dev->dev, size);
1660}
1661EXPORT_SYMBOL(pci_set_dma_max_seg_size);
1662#endif
1663
59fc67de
FT
1664#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
1665int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
1666{
1667 return dma_set_seg_boundary(&dev->dev, mask);
1668}
1669EXPORT_SYMBOL(pci_set_dma_seg_boundary);
1670#endif
1671
d556ad4b
PO
1672/**
1673 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
1674 * @dev: PCI device to query
1675 *
1676 * Returns mmrbc: maximum designed memory read count in bytes
1677 * or appropriate error value.
1678 */
1679int pcix_get_max_mmrbc(struct pci_dev *dev)
1680{
b7b095c1 1681 int err, cap;
d556ad4b
PO
1682 u32 stat;
1683
1684 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1685 if (!cap)
1686 return -EINVAL;
1687
1688 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1689 if (err)
1690 return -EINVAL;
1691
b7b095c1 1692 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
d556ad4b
PO
1693}
1694EXPORT_SYMBOL(pcix_get_max_mmrbc);
1695
1696/**
1697 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
1698 * @dev: PCI device to query
1699 *
1700 * Returns mmrbc: maximum memory read count in bytes
1701 * or appropriate error value.
1702 */
1703int pcix_get_mmrbc(struct pci_dev *dev)
1704{
1705 int ret, cap;
1706 u32 cmd;
1707
1708 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1709 if (!cap)
1710 return -EINVAL;
1711
1712 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1713 if (!ret)
1714 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
1715
1716 return ret;
1717}
1718EXPORT_SYMBOL(pcix_get_mmrbc);
1719
1720/**
1721 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
1722 * @dev: PCI device to query
1723 * @mmrbc: maximum memory read count in bytes
1724 * valid values are 512, 1024, 2048, 4096
1725 *
1726 * If possible sets maximum memory read byte count, some bridges have erratas
1727 * that prevent this.
1728 */
1729int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
1730{
1731 int cap, err = -EINVAL;
1732 u32 stat, cmd, v, o;
1733
229f5afd 1734 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
d556ad4b
PO
1735 goto out;
1736
1737 v = ffs(mmrbc) - 10;
1738
1739 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1740 if (!cap)
1741 goto out;
1742
1743 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1744 if (err)
1745 goto out;
1746
1747 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
1748 return -E2BIG;
1749
1750 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1751 if (err)
1752 goto out;
1753
1754 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
1755 if (o != v) {
1756 if (v > o && dev->bus &&
1757 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
1758 return -EIO;
1759
1760 cmd &= ~PCI_X_CMD_MAX_READ;
1761 cmd |= v << 2;
1762 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
1763 }
1764out:
1765 return err;
1766}
1767EXPORT_SYMBOL(pcix_set_mmrbc);
1768
1769/**
1770 * pcie_get_readrq - get PCI Express read request size
1771 * @dev: PCI device to query
1772 *
1773 * Returns maximum memory read request in bytes
1774 * or appropriate error value.
1775 */
1776int pcie_get_readrq(struct pci_dev *dev)
1777{
1778 int ret, cap;
1779 u16 ctl;
1780
1781 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1782 if (!cap)
1783 return -EINVAL;
1784
1785 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1786 if (!ret)
1787 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
1788
1789 return ret;
1790}
1791EXPORT_SYMBOL(pcie_get_readrq);
1792
1793/**
1794 * pcie_set_readrq - set PCI Express maximum memory read request
1795 * @dev: PCI device to query
42e61f4a 1796 * @rq: maximum memory read count in bytes
d556ad4b
PO
1797 * valid values are 128, 256, 512, 1024, 2048, 4096
1798 *
1799 * If possible sets maximum read byte count
1800 */
1801int pcie_set_readrq(struct pci_dev *dev, int rq)
1802{
1803 int cap, err = -EINVAL;
1804 u16 ctl, v;
1805
229f5afd 1806 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
d556ad4b
PO
1807 goto out;
1808
1809 v = (ffs(rq) - 8) << 12;
1810
1811 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1812 if (!cap)
1813 goto out;
1814
1815 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1816 if (err)
1817 goto out;
1818
1819 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
1820 ctl &= ~PCI_EXP_DEVCTL_READRQ;
1821 ctl |= v;
1822 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
1823 }
1824
1825out:
1826 return err;
1827}
1828EXPORT_SYMBOL(pcie_set_readrq);
1829
c87deff7
HS
1830/**
1831 * pci_select_bars - Make BAR mask from the type of resource
f95d882d 1832 * @dev: the PCI device for which BAR mask is made
c87deff7
HS
1833 * @flags: resource type mask to be selected
1834 *
1835 * This helper routine makes bar mask from the type of resource.
1836 */
1837int pci_select_bars(struct pci_dev *dev, unsigned long flags)
1838{
1839 int i, bars = 0;
1840 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1841 if (pci_resource_flags(dev, i) & flags)
1842 bars |= (1 << i);
1843 return bars;
1844}
1845
32a2eea7
JG
1846static void __devinit pci_no_domains(void)
1847{
1848#ifdef CONFIG_PCI_DOMAINS
1849 pci_domains_supported = 0;
1850#endif
1851}
1852
1da177e4
LT
1853static int __devinit pci_init(void)
1854{
1855 struct pci_dev *dev = NULL;
1856
1857 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1858 pci_fixup_device(pci_fixup_final, dev);
1859 }
1860 return 0;
1861}
1862
1863static int __devinit pci_setup(char *str)
1864{
1865 while (str) {
1866 char *k = strchr(str, ',');
1867 if (k)
1868 *k++ = 0;
1869 if (*str && (str = pcibios_setup(str)) && *str) {
309e57df
MW
1870 if (!strcmp(str, "nomsi")) {
1871 pci_no_msi();
7f785763
RD
1872 } else if (!strcmp(str, "noaer")) {
1873 pci_no_aer();
32a2eea7
JG
1874 } else if (!strcmp(str, "nodomains")) {
1875 pci_no_domains();
4516a618
AN
1876 } else if (!strncmp(str, "cbiosize=", 9)) {
1877 pci_cardbus_io_size = memparse(str + 9, &str);
1878 } else if (!strncmp(str, "cbmemsize=", 10)) {
1879 pci_cardbus_mem_size = memparse(str + 10, &str);
309e57df
MW
1880 } else {
1881 printk(KERN_ERR "PCI: Unknown option `%s'\n",
1882 str);
1883 }
1da177e4
LT
1884 }
1885 str = k;
1886 }
0637a70a 1887 return 0;
1da177e4 1888}
0637a70a 1889early_param("pci", pci_setup);
1da177e4
LT
1890
1891device_initcall(pci_init);
1da177e4 1892
0b62e13b 1893EXPORT_SYMBOL(pci_reenable_device);
b718989d
BH
1894EXPORT_SYMBOL(pci_enable_device_io);
1895EXPORT_SYMBOL(pci_enable_device_mem);
1da177e4 1896EXPORT_SYMBOL(pci_enable_device);
9ac7849e
TH
1897EXPORT_SYMBOL(pcim_enable_device);
1898EXPORT_SYMBOL(pcim_pin_device);
1da177e4 1899EXPORT_SYMBOL(pci_disable_device);
1da177e4
LT
1900EXPORT_SYMBOL(pci_find_capability);
1901EXPORT_SYMBOL(pci_bus_find_capability);
1902EXPORT_SYMBOL(pci_release_regions);
1903EXPORT_SYMBOL(pci_request_regions);
1904EXPORT_SYMBOL(pci_release_region);
1905EXPORT_SYMBOL(pci_request_region);
c87deff7
HS
1906EXPORT_SYMBOL(pci_release_selected_regions);
1907EXPORT_SYMBOL(pci_request_selected_regions);
1da177e4
LT
1908EXPORT_SYMBOL(pci_set_master);
1909EXPORT_SYMBOL(pci_set_mwi);
694625c0 1910EXPORT_SYMBOL(pci_try_set_mwi);
1da177e4 1911EXPORT_SYMBOL(pci_clear_mwi);
a04ce0ff 1912EXPORT_SYMBOL_GPL(pci_intx);
1da177e4 1913EXPORT_SYMBOL(pci_set_dma_mask);
1da177e4
LT
1914EXPORT_SYMBOL(pci_set_consistent_dma_mask);
1915EXPORT_SYMBOL(pci_assign_resource);
1916EXPORT_SYMBOL(pci_find_parent_resource);
c87deff7 1917EXPORT_SYMBOL(pci_select_bars);
1da177e4
LT
1918
1919EXPORT_SYMBOL(pci_set_power_state);
1920EXPORT_SYMBOL(pci_save_state);
1921EXPORT_SYMBOL(pci_restore_state);
1922EXPORT_SYMBOL(pci_enable_wake);
404cc2d8
RW
1923EXPORT_SYMBOL(pci_prepare_to_sleep);
1924EXPORT_SYMBOL(pci_back_from_sleep);
f7bdd12d 1925EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
1da177e4 1926