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