PCI: Remove unused Optimized Buffer Flush/Fill support
[platform/adaptation/renesas_rcar/renesas_kernel.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/slab.h>
16 #include <linux/module.h>
17 #include <linux/spinlock.h>
18 #include <linux/string.h>
19 #include <linux/log2.h>
20 #include <linux/pci-aspm.h>
21 #include <linux/pm_wakeup.h>
22 #include <linux/interrupt.h>
23 #include <linux/device.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/pci_hotplug.h>
26 #include <asm-generic/pci-bridge.h>
27 #include <asm/setup.h>
28 #include "pci.h"
29
30 const char *pci_power_names[] = {
31         "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
32 };
33 EXPORT_SYMBOL_GPL(pci_power_names);
34
35 int isa_dma_bridge_buggy;
36 EXPORT_SYMBOL(isa_dma_bridge_buggy);
37
38 int pci_pci_problems;
39 EXPORT_SYMBOL(pci_pci_problems);
40
41 unsigned int pci_pm_d3_delay;
42
43 static void pci_pme_list_scan(struct work_struct *work);
44
45 static LIST_HEAD(pci_pme_list);
46 static DEFINE_MUTEX(pci_pme_list_mutex);
47 static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
48
49 struct pci_pme_device {
50         struct list_head list;
51         struct pci_dev *dev;
52 };
53
54 #define PME_TIMEOUT 1000 /* How long between PME checks */
55
56 static void pci_dev_d3_sleep(struct pci_dev *dev)
57 {
58         unsigned int delay = dev->d3_delay;
59
60         if (delay < pci_pm_d3_delay)
61                 delay = pci_pm_d3_delay;
62
63         msleep(delay);
64 }
65
66 #ifdef CONFIG_PCI_DOMAINS
67 int pci_domains_supported = 1;
68 #endif
69
70 #define DEFAULT_CARDBUS_IO_SIZE         (256)
71 #define DEFAULT_CARDBUS_MEM_SIZE        (64*1024*1024)
72 /* pci=cbmemsize=nnM,cbiosize=nn can override this */
73 unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
74 unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
75
76 #define DEFAULT_HOTPLUG_IO_SIZE         (256)
77 #define DEFAULT_HOTPLUG_MEM_SIZE        (2*1024*1024)
78 /* pci=hpmemsize=nnM,hpiosize=nn can override this */
79 unsigned long pci_hotplug_io_size  = DEFAULT_HOTPLUG_IO_SIZE;
80 unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
81
82 enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_TUNE_OFF;
83
84 /*
85  * The default CLS is used if arch didn't set CLS explicitly and not
86  * all pci devices agree on the same value.  Arch can override either
87  * the dfl or actual value as it sees fit.  Don't forget this is
88  * measured in 32-bit words, not bytes.
89  */
90 u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
91 u8 pci_cache_line_size;
92
93 /*
94  * If we set up a device for bus mastering, we need to check the latency
95  * timer as certain BIOSes forget to set it properly.
96  */
97 unsigned int pcibios_max_latency = 255;
98
99 /* If set, the PCIe ARI capability will not be used. */
100 static bool pcie_ari_disabled;
101
102 /**
103  * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
104  * @bus: pointer to PCI bus structure to search
105  *
106  * Given a PCI bus, returns the highest PCI bus number present in the set
107  * including the given PCI bus and its list of child PCI buses.
108  */
109 unsigned char pci_bus_max_busnr(struct pci_bus* bus)
110 {
111         struct list_head *tmp;
112         unsigned char max, n;
113
114         max = bus->busn_res.end;
115         list_for_each(tmp, &bus->children) {
116                 n = pci_bus_max_busnr(pci_bus_b(tmp));
117                 if(n > max)
118                         max = n;
119         }
120         return max;
121 }
122 EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
123
124 #ifdef CONFIG_HAS_IOMEM
125 void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar)
126 {
127         /*
128          * Make sure the BAR is actually a memory resource, not an IO resource
129          */
130         if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
131                 WARN_ON(1);
132                 return NULL;
133         }
134         return ioremap_nocache(pci_resource_start(pdev, bar),
135                                      pci_resource_len(pdev, bar));
136 }
137 EXPORT_SYMBOL_GPL(pci_ioremap_bar);
138 #endif
139
140 #define PCI_FIND_CAP_TTL        48
141
142 static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
143                                    u8 pos, int cap, int *ttl)
144 {
145         u8 id;
146
147         while ((*ttl)--) {
148                 pci_bus_read_config_byte(bus, devfn, pos, &pos);
149                 if (pos < 0x40)
150                         break;
151                 pos &= ~3;
152                 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
153                                          &id);
154                 if (id == 0xff)
155                         break;
156                 if (id == cap)
157                         return pos;
158                 pos += PCI_CAP_LIST_NEXT;
159         }
160         return 0;
161 }
162
163 static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
164                                u8 pos, int cap)
165 {
166         int ttl = PCI_FIND_CAP_TTL;
167
168         return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
169 }
170
171 int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
172 {
173         return __pci_find_next_cap(dev->bus, dev->devfn,
174                                    pos + PCI_CAP_LIST_NEXT, cap);
175 }
176 EXPORT_SYMBOL_GPL(pci_find_next_capability);
177
178 static int __pci_bus_find_cap_start(struct pci_bus *bus,
179                                     unsigned int devfn, u8 hdr_type)
180 {
181         u16 status;
182
183         pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
184         if (!(status & PCI_STATUS_CAP_LIST))
185                 return 0;
186
187         switch (hdr_type) {
188         case PCI_HEADER_TYPE_NORMAL:
189         case PCI_HEADER_TYPE_BRIDGE:
190                 return PCI_CAPABILITY_LIST;
191         case PCI_HEADER_TYPE_CARDBUS:
192                 return PCI_CB_CAPABILITY_LIST;
193         default:
194                 return 0;
195         }
196
197         return 0;
198 }
199
200 /**
201  * pci_find_capability - query for devices' capabilities
202  * @dev: PCI device to query
203  * @cap: capability code
204  *
205  * Tell if a device supports a given PCI capability.
206  * Returns the address of the requested capability structure within the
207  * device's PCI configuration space or 0 in case the device does not
208  * support it.  Possible values for @cap:
209  *
210  *  %PCI_CAP_ID_PM           Power Management
211  *  %PCI_CAP_ID_AGP          Accelerated Graphics Port
212  *  %PCI_CAP_ID_VPD          Vital Product Data
213  *  %PCI_CAP_ID_SLOTID       Slot Identification
214  *  %PCI_CAP_ID_MSI          Message Signalled Interrupts
215  *  %PCI_CAP_ID_CHSWP        CompactPCI HotSwap
216  *  %PCI_CAP_ID_PCIX         PCI-X
217  *  %PCI_CAP_ID_EXP          PCI Express
218  */
219 int pci_find_capability(struct pci_dev *dev, int cap)
220 {
221         int pos;
222
223         pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
224         if (pos)
225                 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
226
227         return pos;
228 }
229
230 /**
231  * pci_bus_find_capability - query for devices' capabilities
232  * @bus:   the PCI bus to query
233  * @devfn: PCI device to query
234  * @cap:   capability code
235  *
236  * Like pci_find_capability() but works for pci devices that do not have a
237  * pci_dev structure set up yet.
238  *
239  * Returns the address of the requested capability structure within the
240  * device's PCI configuration space or 0 in case the device does not
241  * support it.
242  */
243 int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
244 {
245         int pos;
246         u8 hdr_type;
247
248         pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
249
250         pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
251         if (pos)
252                 pos = __pci_find_next_cap(bus, devfn, pos, cap);
253
254         return pos;
255 }
256
257 /**
258  * pci_find_next_ext_capability - Find an extended capability
259  * @dev: PCI device to query
260  * @start: address at which to start looking (0 to start at beginning of list)
261  * @cap: capability code
262  *
263  * Returns the address of the next matching extended capability structure
264  * within the device's PCI configuration space or 0 if the device does
265  * not support it.  Some capabilities can occur several times, e.g., the
266  * vendor-specific capability, and this provides a way to find them all.
267  */
268 int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
269 {
270         u32 header;
271         int ttl;
272         int pos = PCI_CFG_SPACE_SIZE;
273
274         /* minimum 8 bytes per capability */
275         ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
276
277         if (dev->cfg_size <= PCI_CFG_SPACE_SIZE)
278                 return 0;
279
280         if (start)
281                 pos = start;
282
283         if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
284                 return 0;
285
286         /*
287          * If we have no capabilities, this is indicated by cap ID,
288          * cap version and next pointer all being 0.
289          */
290         if (header == 0)
291                 return 0;
292
293         while (ttl-- > 0) {
294                 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
295                         return pos;
296
297                 pos = PCI_EXT_CAP_NEXT(header);
298                 if (pos < PCI_CFG_SPACE_SIZE)
299                         break;
300
301                 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
302                         break;
303         }
304
305         return 0;
306 }
307 EXPORT_SYMBOL_GPL(pci_find_next_ext_capability);
308
309 /**
310  * pci_find_ext_capability - Find an extended capability
311  * @dev: PCI device to query
312  * @cap: capability code
313  *
314  * Returns the address of the requested extended capability structure
315  * within the device's PCI configuration space or 0 if the device does
316  * not support it.  Possible values for @cap:
317  *
318  *  %PCI_EXT_CAP_ID_ERR         Advanced Error Reporting
319  *  %PCI_EXT_CAP_ID_VC          Virtual Channel
320  *  %PCI_EXT_CAP_ID_DSN         Device Serial Number
321  *  %PCI_EXT_CAP_ID_PWR         Power Budgeting
322  */
323 int pci_find_ext_capability(struct pci_dev *dev, int cap)
324 {
325         return pci_find_next_ext_capability(dev, 0, cap);
326 }
327 EXPORT_SYMBOL_GPL(pci_find_ext_capability);
328
329 static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
330 {
331         int rc, ttl = PCI_FIND_CAP_TTL;
332         u8 cap, mask;
333
334         if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
335                 mask = HT_3BIT_CAP_MASK;
336         else
337                 mask = HT_5BIT_CAP_MASK;
338
339         pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
340                                       PCI_CAP_ID_HT, &ttl);
341         while (pos) {
342                 rc = pci_read_config_byte(dev, pos + 3, &cap);
343                 if (rc != PCIBIOS_SUCCESSFUL)
344                         return 0;
345
346                 if ((cap & mask) == ht_cap)
347                         return pos;
348
349                 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
350                                               pos + PCI_CAP_LIST_NEXT,
351                                               PCI_CAP_ID_HT, &ttl);
352         }
353
354         return 0;
355 }
356 /**
357  * pci_find_next_ht_capability - query a device's Hypertransport capabilities
358  * @dev: PCI device to query
359  * @pos: Position from which to continue searching
360  * @ht_cap: Hypertransport capability code
361  *
362  * To be used in conjunction with pci_find_ht_capability() to search for
363  * all capabilities matching @ht_cap. @pos should always be a value returned
364  * from pci_find_ht_capability().
365  *
366  * NB. To be 100% safe against broken PCI devices, the caller should take
367  * steps to avoid an infinite loop.
368  */
369 int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
370 {
371         return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
372 }
373 EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
374
375 /**
376  * pci_find_ht_capability - query a device's Hypertransport capabilities
377  * @dev: PCI device to query
378  * @ht_cap: Hypertransport capability code
379  *
380  * Tell if a device supports a given Hypertransport capability.
381  * Returns an address within the device's PCI configuration space
382  * or 0 in case the device does not support the request capability.
383  * The address points to the PCI capability, of type PCI_CAP_ID_HT,
384  * which has a Hypertransport capability matching @ht_cap.
385  */
386 int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
387 {
388         int pos;
389
390         pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
391         if (pos)
392                 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
393
394         return pos;
395 }
396 EXPORT_SYMBOL_GPL(pci_find_ht_capability);
397
398 /**
399  * pci_find_parent_resource - return resource region of parent bus of given region
400  * @dev: PCI device structure contains resources to be searched
401  * @res: child resource record for which parent is sought
402  *
403  *  For given resource region of given device, return the resource
404  *  region of parent bus the given region is contained in or where
405  *  it should be allocated from.
406  */
407 struct resource *
408 pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
409 {
410         const struct pci_bus *bus = dev->bus;
411         int i;
412         struct resource *best = NULL, *r;
413
414         pci_bus_for_each_resource(bus, r, i) {
415                 if (!r)
416                         continue;
417                 if (res->start && !(res->start >= r->start && res->end <= r->end))
418                         continue;       /* Not contained */
419                 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
420                         continue;       /* Wrong type */
421                 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
422                         return r;       /* Exact match */
423                 /* We can't insert a non-prefetch resource inside a prefetchable parent .. */
424                 if (r->flags & IORESOURCE_PREFETCH)
425                         continue;
426                 /* .. but we can put a prefetchable resource inside a non-prefetchable one */
427                 if (!best)
428                         best = r;
429         }
430         return best;
431 }
432
433 /**
434  * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
435  * @dev: PCI device to have its BARs restored
436  *
437  * Restore the BAR values for a given device, so as to make it
438  * accessible by its driver.
439  */
440 static void
441 pci_restore_bars(struct pci_dev *dev)
442 {
443         int i;
444
445         for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
446                 pci_update_resource(dev, i);
447 }
448
449 static struct pci_platform_pm_ops *pci_platform_pm;
450
451 int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
452 {
453         if (!ops->is_manageable || !ops->set_state || !ops->choose_state
454             || !ops->sleep_wake)
455                 return -EINVAL;
456         pci_platform_pm = ops;
457         return 0;
458 }
459
460 static inline bool platform_pci_power_manageable(struct pci_dev *dev)
461 {
462         return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
463 }
464
465 static inline int platform_pci_set_power_state(struct pci_dev *dev,
466                                                 pci_power_t t)
467 {
468         return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
469 }
470
471 static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
472 {
473         return pci_platform_pm ?
474                         pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
475 }
476
477 static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
478 {
479         return pci_platform_pm ?
480                         pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
481 }
482
483 static inline int platform_pci_run_wake(struct pci_dev *dev, bool enable)
484 {
485         return pci_platform_pm ?
486                         pci_platform_pm->run_wake(dev, enable) : -ENODEV;
487 }
488
489 /**
490  * pci_raw_set_power_state - Use PCI PM registers to set the power state of
491  *                           given PCI device
492  * @dev: PCI device to handle.
493  * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
494  *
495  * RETURN VALUE:
496  * -EINVAL if the requested state is invalid.
497  * -EIO if device does not support PCI PM or its PM capabilities register has a
498  * wrong version, or device doesn't support the requested state.
499  * 0 if device already is in the requested state.
500  * 0 if device's power state has been successfully changed.
501  */
502 static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
503 {
504         u16 pmcsr;
505         bool need_restore = false;
506
507         /* Check if we're already there */
508         if (dev->current_state == state)
509                 return 0;
510
511         if (!dev->pm_cap)
512                 return -EIO;
513
514         if (state < PCI_D0 || state > PCI_D3hot)
515                 return -EINVAL;
516
517         /* Validate current state:
518          * Can enter D0 from any state, but if we can only go deeper
519          * to sleep if we're already in a low power state
520          */
521         if (state != PCI_D0 && dev->current_state <= PCI_D3cold
522             && dev->current_state > state) {
523                 dev_err(&dev->dev, "invalid power transition "
524                         "(from state %d to %d)\n", dev->current_state, state);
525                 return -EINVAL;
526         }
527
528         /* check if this device supports the desired state */
529         if ((state == PCI_D1 && !dev->d1_support)
530            || (state == PCI_D2 && !dev->d2_support))
531                 return -EIO;
532
533         pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
534
535         /* If we're (effectively) in D3, force entire word to 0.
536          * This doesn't affect PME_Status, disables PME_En, and
537          * sets PowerState to 0.
538          */
539         switch (dev->current_state) {
540         case PCI_D0:
541         case PCI_D1:
542         case PCI_D2:
543                 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
544                 pmcsr |= state;
545                 break;
546         case PCI_D3hot:
547         case PCI_D3cold:
548         case PCI_UNKNOWN: /* Boot-up */
549                 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
550                  && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
551                         need_restore = true;
552                 /* Fall-through: force to D0 */
553         default:
554                 pmcsr = 0;
555                 break;
556         }
557
558         /* enter specified state */
559         pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
560
561         /* Mandatory power management transition delays */
562         /* see PCI PM 1.1 5.6.1 table 18 */
563         if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
564                 pci_dev_d3_sleep(dev);
565         else if (state == PCI_D2 || dev->current_state == PCI_D2)
566                 udelay(PCI_PM_D2_DELAY);
567
568         pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
569         dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
570         if (dev->current_state != state && printk_ratelimit())
571                 dev_info(&dev->dev, "Refused to change power state, "
572                         "currently in D%d\n", dev->current_state);
573
574         /*
575          * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
576          * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
577          * from D3hot to D0 _may_ perform an internal reset, thereby
578          * going to "D0 Uninitialized" rather than "D0 Initialized".
579          * For example, at least some versions of the 3c905B and the
580          * 3c556B exhibit this behaviour.
581          *
582          * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
583          * devices in a D3hot state at boot.  Consequently, we need to
584          * restore at least the BARs so that the device will be
585          * accessible to its driver.
586          */
587         if (need_restore)
588                 pci_restore_bars(dev);
589
590         if (dev->bus->self)
591                 pcie_aspm_pm_state_change(dev->bus->self);
592
593         return 0;
594 }
595
596 /**
597  * pci_update_current_state - Read PCI power state of given device from its
598  *                            PCI PM registers and cache it
599  * @dev: PCI device to handle.
600  * @state: State to cache in case the device doesn't have the PM capability
601  */
602 void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
603 {
604         if (dev->pm_cap) {
605                 u16 pmcsr;
606
607                 /*
608                  * Configuration space is not accessible for device in
609                  * D3cold, so just keep or set D3cold for safety
610                  */
611                 if (dev->current_state == PCI_D3cold)
612                         return;
613                 if (state == PCI_D3cold) {
614                         dev->current_state = PCI_D3cold;
615                         return;
616                 }
617                 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
618                 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
619         } else {
620                 dev->current_state = state;
621         }
622 }
623
624 /**
625  * pci_power_up - Put the given device into D0 forcibly
626  * @dev: PCI device to power up
627  */
628 void pci_power_up(struct pci_dev *dev)
629 {
630         if (platform_pci_power_manageable(dev))
631                 platform_pci_set_power_state(dev, PCI_D0);
632
633         pci_raw_set_power_state(dev, PCI_D0);
634         pci_update_current_state(dev, PCI_D0);
635 }
636
637 /**
638  * pci_platform_power_transition - Use platform to change device power state
639  * @dev: PCI device to handle.
640  * @state: State to put the device into.
641  */
642 static int pci_platform_power_transition(struct pci_dev *dev, pci_power_t state)
643 {
644         int error;
645
646         if (platform_pci_power_manageable(dev)) {
647                 error = platform_pci_set_power_state(dev, state);
648                 if (!error)
649                         pci_update_current_state(dev, state);
650         } else
651                 error = -ENODEV;
652
653         if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
654                 dev->current_state = PCI_D0;
655
656         return error;
657 }
658
659 /**
660  * __pci_start_power_transition - Start power transition of a PCI device
661  * @dev: PCI device to handle.
662  * @state: State to put the device into.
663  */
664 static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
665 {
666         if (state == PCI_D0) {
667                 pci_platform_power_transition(dev, PCI_D0);
668                 /*
669                  * Mandatory power management transition delays, see
670                  * PCI Express Base Specification Revision 2.0 Section
671                  * 6.6.1: Conventional Reset.  Do not delay for
672                  * devices powered on/off by corresponding bridge,
673                  * because have already delayed for the bridge.
674                  */
675                 if (dev->runtime_d3cold) {
676                         msleep(dev->d3cold_delay);
677                         /*
678                          * When powering on a bridge from D3cold, the
679                          * whole hierarchy may be powered on into
680                          * D0uninitialized state, resume them to give
681                          * them a chance to suspend again
682                          */
683                         pci_wakeup_bus(dev->subordinate);
684                 }
685         }
686 }
687
688 /**
689  * __pci_dev_set_current_state - Set current state of a PCI device
690  * @dev: Device to handle
691  * @data: pointer to state to be set
692  */
693 static int __pci_dev_set_current_state(struct pci_dev *dev, void *data)
694 {
695         pci_power_t state = *(pci_power_t *)data;
696
697         dev->current_state = state;
698         return 0;
699 }
700
701 /**
702  * __pci_bus_set_current_state - Walk given bus and set current state of devices
703  * @bus: Top bus of the subtree to walk.
704  * @state: state to be set
705  */
706 static void __pci_bus_set_current_state(struct pci_bus *bus, pci_power_t state)
707 {
708         if (bus)
709                 pci_walk_bus(bus, __pci_dev_set_current_state, &state);
710 }
711
712 /**
713  * __pci_complete_power_transition - Complete power transition of a PCI device
714  * @dev: PCI device to handle.
715  * @state: State to put the device into.
716  *
717  * This function should not be called directly by device drivers.
718  */
719 int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
720 {
721         int ret;
722
723         if (state <= PCI_D0)
724                 return -EINVAL;
725         ret = pci_platform_power_transition(dev, state);
726         /* Power off the bridge may power off the whole hierarchy */
727         if (!ret && state == PCI_D3cold)
728                 __pci_bus_set_current_state(dev->subordinate, PCI_D3cold);
729         return ret;
730 }
731 EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
732
733 /**
734  * pci_set_power_state - Set the power state of a PCI device
735  * @dev: PCI device to handle.
736  * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
737  *
738  * Transition a device to a new power state, using the platform firmware and/or
739  * the device's PCI PM registers.
740  *
741  * RETURN VALUE:
742  * -EINVAL if the requested state is invalid.
743  * -EIO if device does not support PCI PM or its PM capabilities register has a
744  * wrong version, or device doesn't support the requested state.
745  * 0 if device already is in the requested state.
746  * 0 if device's power state has been successfully changed.
747  */
748 int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
749 {
750         int error;
751
752         /* bound the state we're entering */
753         if (state > PCI_D3cold)
754                 state = PCI_D3cold;
755         else if (state < PCI_D0)
756                 state = PCI_D0;
757         else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
758                 /*
759                  * If the device or the parent bridge do not support PCI PM,
760                  * ignore the request if we're doing anything other than putting
761                  * it into D0 (which would only happen on boot).
762                  */
763                 return 0;
764
765         /* Check if we're already there */
766         if (dev->current_state == state)
767                 return 0;
768
769         __pci_start_power_transition(dev, state);
770
771         /* This device is quirked not to be put into D3, so
772            don't put it in D3 */
773         if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
774                 return 0;
775
776         /*
777          * To put device in D3cold, we put device into D3hot in native
778          * way, then put device into D3cold with platform ops
779          */
780         error = pci_raw_set_power_state(dev, state > PCI_D3hot ?
781                                         PCI_D3hot : state);
782
783         if (!__pci_complete_power_transition(dev, state))
784                 error = 0;
785         /*
786          * When aspm_policy is "powersave" this call ensures
787          * that ASPM is configured.
788          */
789         if (!error && dev->bus->self)
790                 pcie_aspm_powersave_config_link(dev->bus->self);
791
792         return error;
793 }
794
795 /**
796  * pci_choose_state - Choose the power state of a PCI device
797  * @dev: PCI device to be suspended
798  * @state: target sleep state for the whole system. This is the value
799  *      that is passed to suspend() function.
800  *
801  * Returns PCI power state suitable for given device and given system
802  * message.
803  */
804
805 pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
806 {
807         pci_power_t ret;
808
809         if (!dev->pm_cap)
810                 return PCI_D0;
811
812         ret = platform_pci_choose_state(dev);
813         if (ret != PCI_POWER_ERROR)
814                 return ret;
815
816         switch (state.event) {
817         case PM_EVENT_ON:
818                 return PCI_D0;
819         case PM_EVENT_FREEZE:
820         case PM_EVENT_PRETHAW:
821                 /* REVISIT both freeze and pre-thaw "should" use D0 */
822         case PM_EVENT_SUSPEND:
823         case PM_EVENT_HIBERNATE:
824                 return PCI_D3hot;
825         default:
826                 dev_info(&dev->dev, "unrecognized suspend event %d\n",
827                          state.event);
828                 BUG();
829         }
830         return PCI_D0;
831 }
832
833 EXPORT_SYMBOL(pci_choose_state);
834
835 #define PCI_EXP_SAVE_REGS       7
836
837
838 static struct pci_cap_saved_state *pci_find_saved_cap(
839         struct pci_dev *pci_dev, char cap)
840 {
841         struct pci_cap_saved_state *tmp;
842
843         hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
844                 if (tmp->cap.cap_nr == cap)
845                         return tmp;
846         }
847         return NULL;
848 }
849
850 static int pci_save_pcie_state(struct pci_dev *dev)
851 {
852         int i = 0;
853         struct pci_cap_saved_state *save_state;
854         u16 *cap;
855
856         if (!pci_is_pcie(dev))
857                 return 0;
858
859         save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
860         if (!save_state) {
861                 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
862                 return -ENOMEM;
863         }
864
865         cap = (u16 *)&save_state->cap.data[0];
866         pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &cap[i++]);
867         pcie_capability_read_word(dev, PCI_EXP_LNKCTL, &cap[i++]);
868         pcie_capability_read_word(dev, PCI_EXP_SLTCTL, &cap[i++]);
869         pcie_capability_read_word(dev, PCI_EXP_RTCTL,  &cap[i++]);
870         pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &cap[i++]);
871         pcie_capability_read_word(dev, PCI_EXP_LNKCTL2, &cap[i++]);
872         pcie_capability_read_word(dev, PCI_EXP_SLTCTL2, &cap[i++]);
873
874         return 0;
875 }
876
877 static void pci_restore_pcie_state(struct pci_dev *dev)
878 {
879         int i = 0;
880         struct pci_cap_saved_state *save_state;
881         u16 *cap;
882
883         save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
884         if (!save_state)
885                 return;
886
887         cap = (u16 *)&save_state->cap.data[0];
888         pcie_capability_write_word(dev, PCI_EXP_DEVCTL, cap[i++]);
889         pcie_capability_write_word(dev, PCI_EXP_LNKCTL, cap[i++]);
890         pcie_capability_write_word(dev, PCI_EXP_SLTCTL, cap[i++]);
891         pcie_capability_write_word(dev, PCI_EXP_RTCTL, cap[i++]);
892         pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, cap[i++]);
893         pcie_capability_write_word(dev, PCI_EXP_LNKCTL2, cap[i++]);
894         pcie_capability_write_word(dev, PCI_EXP_SLTCTL2, cap[i++]);
895 }
896
897
898 static int pci_save_pcix_state(struct pci_dev *dev)
899 {
900         int pos;
901         struct pci_cap_saved_state *save_state;
902
903         pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
904         if (pos <= 0)
905                 return 0;
906
907         save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
908         if (!save_state) {
909                 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
910                 return -ENOMEM;
911         }
912
913         pci_read_config_word(dev, pos + PCI_X_CMD,
914                              (u16 *)save_state->cap.data);
915
916         return 0;
917 }
918
919 static void pci_restore_pcix_state(struct pci_dev *dev)
920 {
921         int i = 0, pos;
922         struct pci_cap_saved_state *save_state;
923         u16 *cap;
924
925         save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
926         pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
927         if (!save_state || pos <= 0)
928                 return;
929         cap = (u16 *)&save_state->cap.data[0];
930
931         pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
932 }
933
934
935 /**
936  * pci_save_state - save the PCI configuration space of a device before suspending
937  * @dev: - PCI device that we're dealing with
938  */
939 int
940 pci_save_state(struct pci_dev *dev)
941 {
942         int i;
943         /* XXX: 100% dword access ok here? */
944         for (i = 0; i < 16; i++)
945                 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
946         dev->state_saved = true;
947         if ((i = pci_save_pcie_state(dev)) != 0)
948                 return i;
949         if ((i = pci_save_pcix_state(dev)) != 0)
950                 return i;
951         return 0;
952 }
953
954 static void pci_restore_config_dword(struct pci_dev *pdev, int offset,
955                                      u32 saved_val, int retry)
956 {
957         u32 val;
958
959         pci_read_config_dword(pdev, offset, &val);
960         if (val == saved_val)
961                 return;
962
963         for (;;) {
964                 dev_dbg(&pdev->dev, "restoring config space at offset "
965                         "%#x (was %#x, writing %#x)\n", offset, val, saved_val);
966                 pci_write_config_dword(pdev, offset, saved_val);
967                 if (retry-- <= 0)
968                         return;
969
970                 pci_read_config_dword(pdev, offset, &val);
971                 if (val == saved_val)
972                         return;
973
974                 mdelay(1);
975         }
976 }
977
978 static void pci_restore_config_space_range(struct pci_dev *pdev,
979                                            int start, int end, int retry)
980 {
981         int index;
982
983         for (index = end; index >= start; index--)
984                 pci_restore_config_dword(pdev, 4 * index,
985                                          pdev->saved_config_space[index],
986                                          retry);
987 }
988
989 static void pci_restore_config_space(struct pci_dev *pdev)
990 {
991         if (pdev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
992                 pci_restore_config_space_range(pdev, 10, 15, 0);
993                 /* Restore BARs before the command register. */
994                 pci_restore_config_space_range(pdev, 4, 9, 10);
995                 pci_restore_config_space_range(pdev, 0, 3, 0);
996         } else {
997                 pci_restore_config_space_range(pdev, 0, 15, 0);
998         }
999 }
1000
1001 /**
1002  * pci_restore_state - Restore the saved state of a PCI device
1003  * @dev: - PCI device that we're dealing with
1004  */
1005 void pci_restore_state(struct pci_dev *dev)
1006 {
1007         if (!dev->state_saved)
1008                 return;
1009
1010         /* PCI Express register must be restored first */
1011         pci_restore_pcie_state(dev);
1012         pci_restore_ats_state(dev);
1013
1014         pci_restore_config_space(dev);
1015
1016         pci_restore_pcix_state(dev);
1017         pci_restore_msi_state(dev);
1018         pci_restore_iov_state(dev);
1019
1020         dev->state_saved = false;
1021 }
1022
1023 struct pci_saved_state {
1024         u32 config_space[16];
1025         struct pci_cap_saved_data cap[0];
1026 };
1027
1028 /**
1029  * pci_store_saved_state - Allocate and return an opaque struct containing
1030  *                         the device saved state.
1031  * @dev: PCI device that we're dealing with
1032  *
1033  * Return NULL if no state or error.
1034  */
1035 struct pci_saved_state *pci_store_saved_state(struct pci_dev *dev)
1036 {
1037         struct pci_saved_state *state;
1038         struct pci_cap_saved_state *tmp;
1039         struct pci_cap_saved_data *cap;
1040         size_t size;
1041
1042         if (!dev->state_saved)
1043                 return NULL;
1044
1045         size = sizeof(*state) + sizeof(struct pci_cap_saved_data);
1046
1047         hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
1048                 size += sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1049
1050         state = kzalloc(size, GFP_KERNEL);
1051         if (!state)
1052                 return NULL;
1053
1054         memcpy(state->config_space, dev->saved_config_space,
1055                sizeof(state->config_space));
1056
1057         cap = state->cap;
1058         hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
1059                 size_t len = sizeof(struct pci_cap_saved_data) + tmp->cap.size;
1060                 memcpy(cap, &tmp->cap, len);
1061                 cap = (struct pci_cap_saved_data *)((u8 *)cap + len);
1062         }
1063         /* Empty cap_save terminates list */
1064
1065         return state;
1066 }
1067 EXPORT_SYMBOL_GPL(pci_store_saved_state);
1068
1069 /**
1070  * pci_load_saved_state - Reload the provided save state into struct pci_dev.
1071  * @dev: PCI device that we're dealing with
1072  * @state: Saved state returned from pci_store_saved_state()
1073  */
1074 int pci_load_saved_state(struct pci_dev *dev, struct pci_saved_state *state)
1075 {
1076         struct pci_cap_saved_data *cap;
1077
1078         dev->state_saved = false;
1079
1080         if (!state)
1081                 return 0;
1082
1083         memcpy(dev->saved_config_space, state->config_space,
1084                sizeof(state->config_space));
1085
1086         cap = state->cap;
1087         while (cap->size) {
1088                 struct pci_cap_saved_state *tmp;
1089
1090                 tmp = pci_find_saved_cap(dev, cap->cap_nr);
1091                 if (!tmp || tmp->cap.size != cap->size)
1092                         return -EINVAL;
1093
1094                 memcpy(tmp->cap.data, cap->data, tmp->cap.size);
1095                 cap = (struct pci_cap_saved_data *)((u8 *)cap +
1096                        sizeof(struct pci_cap_saved_data) + cap->size);
1097         }
1098
1099         dev->state_saved = true;
1100         return 0;
1101 }
1102 EXPORT_SYMBOL_GPL(pci_load_saved_state);
1103
1104 /**
1105  * pci_load_and_free_saved_state - Reload the save state pointed to by state,
1106  *                                 and free the memory allocated for it.
1107  * @dev: PCI device that we're dealing with
1108  * @state: Pointer to saved state returned from pci_store_saved_state()
1109  */
1110 int pci_load_and_free_saved_state(struct pci_dev *dev,
1111                                   struct pci_saved_state **state)
1112 {
1113         int ret = pci_load_saved_state(dev, *state);
1114         kfree(*state);
1115         *state = NULL;
1116         return ret;
1117 }
1118 EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
1119
1120 static int do_pci_enable_device(struct pci_dev *dev, int bars)
1121 {
1122         int err;
1123
1124         err = pci_set_power_state(dev, PCI_D0);
1125         if (err < 0 && err != -EIO)
1126                 return err;
1127         err = pcibios_enable_device(dev, bars);
1128         if (err < 0)
1129                 return err;
1130         pci_fixup_device(pci_fixup_enable, dev);
1131
1132         return 0;
1133 }
1134
1135 /**
1136  * pci_reenable_device - Resume abandoned device
1137  * @dev: PCI device to be resumed
1138  *
1139  *  Note this function is a backend of pci_default_resume and is not supposed
1140  *  to be called by normal code, write proper resume handler and use it instead.
1141  */
1142 int pci_reenable_device(struct pci_dev *dev)
1143 {
1144         if (pci_is_enabled(dev))
1145                 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
1146         return 0;
1147 }
1148
1149 static void pci_enable_bridge(struct pci_dev *dev)
1150 {
1151         struct pci_dev *bridge;
1152         int retval;
1153
1154         bridge = pci_upstream_bridge(dev);
1155         if (bridge)
1156                 pci_enable_bridge(bridge);
1157
1158         if (pci_is_enabled(dev)) {
1159                 if (!dev->is_busmaster)
1160                         pci_set_master(dev);
1161                 return;
1162         }
1163
1164         retval = pci_enable_device(dev);
1165         if (retval)
1166                 dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n",
1167                         retval);
1168         pci_set_master(dev);
1169 }
1170
1171 static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
1172 {
1173         struct pci_dev *bridge;
1174         int err;
1175         int i, bars = 0;
1176
1177         /*
1178          * Power state could be unknown at this point, either due to a fresh
1179          * boot or a device removal call.  So get the current power state
1180          * so that things like MSI message writing will behave as expected
1181          * (e.g. if the device really is in D0 at enable time).
1182          */
1183         if (dev->pm_cap) {
1184                 u16 pmcsr;
1185                 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1186                 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
1187         }
1188
1189         if (atomic_inc_return(&dev->enable_cnt) > 1)
1190                 return 0;               /* already enabled */
1191
1192         bridge = pci_upstream_bridge(dev);
1193         if (bridge)
1194                 pci_enable_bridge(bridge);
1195
1196         /* only skip sriov related */
1197         for (i = 0; i <= PCI_ROM_RESOURCE; i++)
1198                 if (dev->resource[i].flags & flags)
1199                         bars |= (1 << i);
1200         for (i = PCI_BRIDGE_RESOURCES; i < DEVICE_COUNT_RESOURCE; i++)
1201                 if (dev->resource[i].flags & flags)
1202                         bars |= (1 << i);
1203
1204         err = do_pci_enable_device(dev, bars);
1205         if (err < 0)
1206                 atomic_dec(&dev->enable_cnt);
1207         return err;
1208 }
1209
1210 /**
1211  * pci_enable_device_io - Initialize a device for use with IO space
1212  * @dev: PCI device to be initialized
1213  *
1214  *  Initialize device before it's used by a driver. Ask low-level code
1215  *  to enable I/O resources. Wake up the device if it was suspended.
1216  *  Beware, this function can fail.
1217  */
1218 int pci_enable_device_io(struct pci_dev *dev)
1219 {
1220         return pci_enable_device_flags(dev, IORESOURCE_IO);
1221 }
1222
1223 /**
1224  * pci_enable_device_mem - Initialize a device for use with Memory space
1225  * @dev: PCI device to be initialized
1226  *
1227  *  Initialize device before it's used by a driver. Ask low-level code
1228  *  to enable Memory resources. Wake up the device if it was suspended.
1229  *  Beware, this function can fail.
1230  */
1231 int pci_enable_device_mem(struct pci_dev *dev)
1232 {
1233         return pci_enable_device_flags(dev, IORESOURCE_MEM);
1234 }
1235
1236 /**
1237  * pci_enable_device - Initialize device before it's used by a driver.
1238  * @dev: PCI device to be initialized
1239  *
1240  *  Initialize device before it's used by a driver. Ask low-level code
1241  *  to enable I/O and memory. Wake up the device if it was suspended.
1242  *  Beware, this function can fail.
1243  *
1244  *  Note we don't actually enable the device many times if we call
1245  *  this function repeatedly (we just increment the count).
1246  */
1247 int pci_enable_device(struct pci_dev *dev)
1248 {
1249         return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
1250 }
1251
1252 /*
1253  * Managed PCI resources.  This manages device on/off, intx/msi/msix
1254  * on/off and BAR regions.  pci_dev itself records msi/msix status, so
1255  * there's no need to track it separately.  pci_devres is initialized
1256  * when a device is enabled using managed PCI device enable interface.
1257  */
1258 struct pci_devres {
1259         unsigned int enabled:1;
1260         unsigned int pinned:1;
1261         unsigned int orig_intx:1;
1262         unsigned int restore_intx:1;
1263         u32 region_mask;
1264 };
1265
1266 static void pcim_release(struct device *gendev, void *res)
1267 {
1268         struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
1269         struct pci_devres *this = res;
1270         int i;
1271
1272         if (dev->msi_enabled)
1273                 pci_disable_msi(dev);
1274         if (dev->msix_enabled)
1275                 pci_disable_msix(dev);
1276
1277         for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
1278                 if (this->region_mask & (1 << i))
1279                         pci_release_region(dev, i);
1280
1281         if (this->restore_intx)
1282                 pci_intx(dev, this->orig_intx);
1283
1284         if (this->enabled && !this->pinned)
1285                 pci_disable_device(dev);
1286 }
1287
1288 static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
1289 {
1290         struct pci_devres *dr, *new_dr;
1291
1292         dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
1293         if (dr)
1294                 return dr;
1295
1296         new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
1297         if (!new_dr)
1298                 return NULL;
1299         return devres_get(&pdev->dev, new_dr, NULL, NULL);
1300 }
1301
1302 static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
1303 {
1304         if (pci_is_managed(pdev))
1305                 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
1306         return NULL;
1307 }
1308
1309 /**
1310  * pcim_enable_device - Managed pci_enable_device()
1311  * @pdev: PCI device to be initialized
1312  *
1313  * Managed pci_enable_device().
1314  */
1315 int pcim_enable_device(struct pci_dev *pdev)
1316 {
1317         struct pci_devres *dr;
1318         int rc;
1319
1320         dr = get_pci_dr(pdev);
1321         if (unlikely(!dr))
1322                 return -ENOMEM;
1323         if (dr->enabled)
1324                 return 0;
1325
1326         rc = pci_enable_device(pdev);
1327         if (!rc) {
1328                 pdev->is_managed = 1;
1329                 dr->enabled = 1;
1330         }
1331         return rc;
1332 }
1333
1334 /**
1335  * pcim_pin_device - Pin managed PCI device
1336  * @pdev: PCI device to pin
1337  *
1338  * Pin managed PCI device @pdev.  Pinned device won't be disabled on
1339  * driver detach.  @pdev must have been enabled with
1340  * pcim_enable_device().
1341  */
1342 void pcim_pin_device(struct pci_dev *pdev)
1343 {
1344         struct pci_devres *dr;
1345
1346         dr = find_pci_dr(pdev);
1347         WARN_ON(!dr || !dr->enabled);
1348         if (dr)
1349                 dr->pinned = 1;
1350 }
1351
1352 /*
1353  * pcibios_add_device - provide arch specific hooks when adding device dev
1354  * @dev: the PCI device being added
1355  *
1356  * Permits the platform to provide architecture specific functionality when
1357  * devices are added. This is the default implementation. Architecture
1358  * implementations can override this.
1359  */
1360 int __weak pcibios_add_device (struct pci_dev *dev)
1361 {
1362         return 0;
1363 }
1364
1365 /**
1366  * pcibios_release_device - provide arch specific hooks when releasing device dev
1367  * @dev: the PCI device being released
1368  *
1369  * Permits the platform to provide architecture specific functionality when
1370  * devices are released. This is the default implementation. Architecture
1371  * implementations can override this.
1372  */
1373 void __weak pcibios_release_device(struct pci_dev *dev) {}
1374
1375 /**
1376  * pcibios_disable_device - disable arch specific PCI resources for device dev
1377  * @dev: the PCI device to disable
1378  *
1379  * Disables architecture specific PCI resources for the device. This
1380  * is the default implementation. Architecture implementations can
1381  * override this.
1382  */
1383 void __weak pcibios_disable_device (struct pci_dev *dev) {}
1384
1385 static void do_pci_disable_device(struct pci_dev *dev)
1386 {
1387         u16 pci_command;
1388
1389         pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1390         if (pci_command & PCI_COMMAND_MASTER) {
1391                 pci_command &= ~PCI_COMMAND_MASTER;
1392                 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1393         }
1394
1395         pcibios_disable_device(dev);
1396 }
1397
1398 /**
1399  * pci_disable_enabled_device - Disable device without updating enable_cnt
1400  * @dev: PCI device to disable
1401  *
1402  * NOTE: This function is a backend of PCI power management routines and is
1403  * not supposed to be called drivers.
1404  */
1405 void pci_disable_enabled_device(struct pci_dev *dev)
1406 {
1407         if (pci_is_enabled(dev))
1408                 do_pci_disable_device(dev);
1409 }
1410
1411 /**
1412  * pci_disable_device - Disable PCI device after use
1413  * @dev: PCI device to be disabled
1414  *
1415  * Signal to the system that the PCI device is not in use by the system
1416  * anymore.  This only involves disabling PCI bus-mastering, if active.
1417  *
1418  * Note we don't actually disable the device until all callers of
1419  * pci_enable_device() have called pci_disable_device().
1420  */
1421 void
1422 pci_disable_device(struct pci_dev *dev)
1423 {
1424         struct pci_devres *dr;
1425
1426         dr = find_pci_dr(dev);
1427         if (dr)
1428                 dr->enabled = 0;
1429
1430         dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
1431                       "disabling already-disabled device");
1432
1433         if (atomic_dec_return(&dev->enable_cnt) != 0)
1434                 return;
1435
1436         do_pci_disable_device(dev);
1437
1438         dev->is_busmaster = 0;
1439 }
1440
1441 /**
1442  * pcibios_set_pcie_reset_state - set reset state for device dev
1443  * @dev: the PCIe device reset
1444  * @state: Reset state to enter into
1445  *
1446  *
1447  * Sets the PCIe reset state for the device. This is the default
1448  * implementation. Architecture implementations can override this.
1449  */
1450 int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
1451                                         enum pcie_reset_state state)
1452 {
1453         return -EINVAL;
1454 }
1455
1456 /**
1457  * pci_set_pcie_reset_state - set reset state for device dev
1458  * @dev: the PCIe device reset
1459  * @state: Reset state to enter into
1460  *
1461  *
1462  * Sets the PCI reset state for the device.
1463  */
1464 int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1465 {
1466         return pcibios_set_pcie_reset_state(dev, state);
1467 }
1468
1469 /**
1470  * pci_check_pme_status - Check if given device has generated PME.
1471  * @dev: Device to check.
1472  *
1473  * Check the PME status of the device and if set, clear it and clear PME enable
1474  * (if set).  Return 'true' if PME status and PME enable were both set or
1475  * 'false' otherwise.
1476  */
1477 bool pci_check_pme_status(struct pci_dev *dev)
1478 {
1479         int pmcsr_pos;
1480         u16 pmcsr;
1481         bool ret = false;
1482
1483         if (!dev->pm_cap)
1484                 return false;
1485
1486         pmcsr_pos = dev->pm_cap + PCI_PM_CTRL;
1487         pci_read_config_word(dev, pmcsr_pos, &pmcsr);
1488         if (!(pmcsr & PCI_PM_CTRL_PME_STATUS))
1489                 return false;
1490
1491         /* Clear PME status. */
1492         pmcsr |= PCI_PM_CTRL_PME_STATUS;
1493         if (pmcsr & PCI_PM_CTRL_PME_ENABLE) {
1494                 /* Disable PME to avoid interrupt flood. */
1495                 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1496                 ret = true;
1497         }
1498
1499         pci_write_config_word(dev, pmcsr_pos, pmcsr);
1500
1501         return ret;
1502 }
1503
1504 /**
1505  * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
1506  * @dev: Device to handle.
1507  * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
1508  *
1509  * Check if @dev has generated PME and queue a resume request for it in that
1510  * case.
1511  */
1512 static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
1513 {
1514         if (pme_poll_reset && dev->pme_poll)
1515                 dev->pme_poll = false;
1516
1517         if (pci_check_pme_status(dev)) {
1518                 pci_wakeup_event(dev);
1519                 pm_request_resume(&dev->dev);
1520         }
1521         return 0;
1522 }
1523
1524 /**
1525  * pci_pme_wakeup_bus - Walk given bus and wake up devices on it, if necessary.
1526  * @bus: Top bus of the subtree to walk.
1527  */
1528 void pci_pme_wakeup_bus(struct pci_bus *bus)
1529 {
1530         if (bus)
1531                 pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
1532 }
1533
1534 /**
1535  * pci_wakeup - Wake up a PCI device
1536  * @pci_dev: Device to handle.
1537  * @ign: ignored parameter
1538  */
1539 static int pci_wakeup(struct pci_dev *pci_dev, void *ign)
1540 {
1541         pci_wakeup_event(pci_dev);
1542         pm_request_resume(&pci_dev->dev);
1543         return 0;
1544 }
1545
1546 /**
1547  * pci_wakeup_bus - Walk given bus and wake up devices on it
1548  * @bus: Top bus of the subtree to walk.
1549  */
1550 void pci_wakeup_bus(struct pci_bus *bus)
1551 {
1552         if (bus)
1553                 pci_walk_bus(bus, pci_wakeup, NULL);
1554 }
1555
1556 /**
1557  * pci_pme_capable - check the capability of PCI device to generate PME#
1558  * @dev: PCI device to handle.
1559  * @state: PCI state from which device will issue PME#.
1560  */
1561 bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
1562 {
1563         if (!dev->pm_cap)
1564                 return false;
1565
1566         return !!(dev->pme_support & (1 << state));
1567 }
1568
1569 static void pci_pme_list_scan(struct work_struct *work)
1570 {
1571         struct pci_pme_device *pme_dev, *n;
1572
1573         mutex_lock(&pci_pme_list_mutex);
1574         if (!list_empty(&pci_pme_list)) {
1575                 list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
1576                         if (pme_dev->dev->pme_poll) {
1577                                 struct pci_dev *bridge;
1578
1579                                 bridge = pme_dev->dev->bus->self;
1580                                 /*
1581                                  * If bridge is in low power state, the
1582                                  * configuration space of subordinate devices
1583                                  * may be not accessible
1584                                  */
1585                                 if (bridge && bridge->current_state != PCI_D0)
1586                                         continue;
1587                                 pci_pme_wakeup(pme_dev->dev, NULL);
1588                         } else {
1589                                 list_del(&pme_dev->list);
1590                                 kfree(pme_dev);
1591                         }
1592                 }
1593                 if (!list_empty(&pci_pme_list))
1594                         schedule_delayed_work(&pci_pme_work,
1595                                               msecs_to_jiffies(PME_TIMEOUT));
1596         }
1597         mutex_unlock(&pci_pme_list_mutex);
1598 }
1599
1600 /**
1601  * pci_pme_active - enable or disable PCI device's PME# function
1602  * @dev: PCI device to handle.
1603  * @enable: 'true' to enable PME# generation; 'false' to disable it.
1604  *
1605  * The caller must verify that the device is capable of generating PME# before
1606  * calling this function with @enable equal to 'true'.
1607  */
1608 void pci_pme_active(struct pci_dev *dev, bool enable)
1609 {
1610         u16 pmcsr;
1611
1612         if (!dev->pme_support)
1613                 return;
1614
1615         pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1616         /* Clear PME_Status by writing 1 to it and enable PME# */
1617         pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1618         if (!enable)
1619                 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1620
1621         pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
1622
1623         /*
1624          * PCI (as opposed to PCIe) PME requires that the device have
1625          * its PME# line hooked up correctly. Not all hardware vendors
1626          * do this, so the PME never gets delivered and the device
1627          * remains asleep. The easiest way around this is to
1628          * periodically walk the list of suspended devices and check
1629          * whether any have their PME flag set. The assumption is that
1630          * we'll wake up often enough anyway that this won't be a huge
1631          * hit, and the power savings from the devices will still be a
1632          * win.
1633          *
1634          * Although PCIe uses in-band PME message instead of PME# line
1635          * to report PME, PME does not work for some PCIe devices in
1636          * reality.  For example, there are devices that set their PME
1637          * status bits, but don't really bother to send a PME message;
1638          * there are PCI Express Root Ports that don't bother to
1639          * trigger interrupts when they receive PME messages from the
1640          * devices below.  So PME poll is used for PCIe devices too.
1641          */
1642
1643         if (dev->pme_poll) {
1644                 struct pci_pme_device *pme_dev;
1645                 if (enable) {
1646                         pme_dev = kmalloc(sizeof(struct pci_pme_device),
1647                                           GFP_KERNEL);
1648                         if (!pme_dev) {
1649                                 dev_warn(&dev->dev, "can't enable PME#\n");
1650                                 return;
1651                         }
1652                         pme_dev->dev = dev;
1653                         mutex_lock(&pci_pme_list_mutex);
1654                         list_add(&pme_dev->list, &pci_pme_list);
1655                         if (list_is_singular(&pci_pme_list))
1656                                 schedule_delayed_work(&pci_pme_work,
1657                                                       msecs_to_jiffies(PME_TIMEOUT));
1658                         mutex_unlock(&pci_pme_list_mutex);
1659                 } else {
1660                         mutex_lock(&pci_pme_list_mutex);
1661                         list_for_each_entry(pme_dev, &pci_pme_list, list) {
1662                                 if (pme_dev->dev == dev) {
1663                                         list_del(&pme_dev->list);
1664                                         kfree(pme_dev);
1665                                         break;
1666                                 }
1667                         }
1668                         mutex_unlock(&pci_pme_list_mutex);
1669                 }
1670         }
1671
1672         dev_dbg(&dev->dev, "PME# %s\n", enable ? "enabled" : "disabled");
1673 }
1674
1675 /**
1676  * __pci_enable_wake - enable PCI device as wakeup event source
1677  * @dev: PCI device affected
1678  * @state: PCI state from which device will issue wakeup events
1679  * @runtime: True if the events are to be generated at run time
1680  * @enable: True to enable event generation; false to disable
1681  *
1682  * This enables the device as a wakeup event source, or disables it.
1683  * When such events involves platform-specific hooks, those hooks are
1684  * called automatically by this routine.
1685  *
1686  * Devices with legacy power management (no standard PCI PM capabilities)
1687  * always require such platform hooks.
1688  *
1689  * RETURN VALUE:
1690  * 0 is returned on success
1691  * -EINVAL is returned if device is not supposed to wake up the system
1692  * Error code depending on the platform is returned if both the platform and
1693  * the native mechanism fail to enable the generation of wake-up events
1694  */
1695 int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
1696                       bool runtime, bool enable)
1697 {
1698         int ret = 0;
1699
1700         if (enable && !runtime && !device_may_wakeup(&dev->dev))
1701                 return -EINVAL;
1702
1703         /* Don't do the same thing twice in a row for one device. */
1704         if (!!enable == !!dev->wakeup_prepared)
1705                 return 0;
1706
1707         /*
1708          * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1709          * Anderson we should be doing PME# wake enable followed by ACPI wake
1710          * enable.  To disable wake-up we call the platform first, for symmetry.
1711          */
1712
1713         if (enable) {
1714                 int error;
1715
1716                 if (pci_pme_capable(dev, state))
1717                         pci_pme_active(dev, true);
1718                 else
1719                         ret = 1;
1720                 error = runtime ? platform_pci_run_wake(dev, true) :
1721                                         platform_pci_sleep_wake(dev, true);
1722                 if (ret)
1723                         ret = error;
1724                 if (!ret)
1725                         dev->wakeup_prepared = true;
1726         } else {
1727                 if (runtime)
1728                         platform_pci_run_wake(dev, false);
1729                 else
1730                         platform_pci_sleep_wake(dev, false);
1731                 pci_pme_active(dev, false);
1732                 dev->wakeup_prepared = false;
1733         }
1734
1735         return ret;
1736 }
1737 EXPORT_SYMBOL(__pci_enable_wake);
1738
1739 /**
1740  * pci_wake_from_d3 - enable/disable device to wake up from D3_hot or D3_cold
1741  * @dev: PCI device to prepare
1742  * @enable: True to enable wake-up event generation; false to disable
1743  *
1744  * Many drivers want the device to wake up the system from D3_hot or D3_cold
1745  * and this function allows them to set that up cleanly - pci_enable_wake()
1746  * should not be called twice in a row to enable wake-up due to PCI PM vs ACPI
1747  * ordering constraints.
1748  *
1749  * This function only returns error code if the device is not capable of
1750  * generating PME# from both D3_hot and D3_cold, and the platform is unable to
1751  * enable wake-up power for it.
1752  */
1753 int pci_wake_from_d3(struct pci_dev *dev, bool enable)
1754 {
1755         return pci_pme_capable(dev, PCI_D3cold) ?
1756                         pci_enable_wake(dev, PCI_D3cold, enable) :
1757                         pci_enable_wake(dev, PCI_D3hot, enable);
1758 }
1759
1760 /**
1761  * pci_target_state - find an appropriate low power state for a given PCI dev
1762  * @dev: PCI device
1763  *
1764  * Use underlying platform code to find a supported low power state for @dev.
1765  * If the platform can't manage @dev, return the deepest state from which it
1766  * can generate wake events, based on any available PME info.
1767  */
1768 pci_power_t pci_target_state(struct pci_dev *dev)
1769 {
1770         pci_power_t target_state = PCI_D3hot;
1771
1772         if (platform_pci_power_manageable(dev)) {
1773                 /*
1774                  * Call the platform to choose the target state of the device
1775                  * and enable wake-up from this state if supported.
1776                  */
1777                 pci_power_t state = platform_pci_choose_state(dev);
1778
1779                 switch (state) {
1780                 case PCI_POWER_ERROR:
1781                 case PCI_UNKNOWN:
1782                         break;
1783                 case PCI_D1:
1784                 case PCI_D2:
1785                         if (pci_no_d1d2(dev))
1786                                 break;
1787                 default:
1788                         target_state = state;
1789                 }
1790         } else if (!dev->pm_cap) {
1791                 target_state = PCI_D0;
1792         } else if (device_may_wakeup(&dev->dev)) {
1793                 /*
1794                  * Find the deepest state from which the device can generate
1795                  * wake-up events, make it the target state and enable device
1796                  * to generate PME#.
1797                  */
1798                 if (dev->pme_support) {
1799                         while (target_state
1800                               && !(dev->pme_support & (1 << target_state)))
1801                                 target_state--;
1802                 }
1803         }
1804
1805         return target_state;
1806 }
1807
1808 /**
1809  * pci_prepare_to_sleep - prepare PCI device for system-wide transition into a sleep state
1810  * @dev: Device to handle.
1811  *
1812  * Choose the power state appropriate for the device depending on whether
1813  * it can wake up the system and/or is power manageable by the platform
1814  * (PCI_D3hot is the default) and put the device into that state.
1815  */
1816 int pci_prepare_to_sleep(struct pci_dev *dev)
1817 {
1818         pci_power_t target_state = pci_target_state(dev);
1819         int error;
1820
1821         if (target_state == PCI_POWER_ERROR)
1822                 return -EIO;
1823
1824         /* D3cold during system suspend/hibernate is not supported */
1825         if (target_state > PCI_D3hot)
1826                 target_state = PCI_D3hot;
1827
1828         pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
1829
1830         error = pci_set_power_state(dev, target_state);
1831
1832         if (error)
1833                 pci_enable_wake(dev, target_state, false);
1834
1835         return error;
1836 }
1837
1838 /**
1839  * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
1840  * @dev: Device to handle.
1841  *
1842  * Disable device's system wake-up capability and put it into D0.
1843  */
1844 int pci_back_from_sleep(struct pci_dev *dev)
1845 {
1846         pci_enable_wake(dev, PCI_D0, false);
1847         return pci_set_power_state(dev, PCI_D0);
1848 }
1849
1850 /**
1851  * pci_finish_runtime_suspend - Carry out PCI-specific part of runtime suspend.
1852  * @dev: PCI device being suspended.
1853  *
1854  * Prepare @dev to generate wake-up events at run time and put it into a low
1855  * power state.
1856  */
1857 int pci_finish_runtime_suspend(struct pci_dev *dev)
1858 {
1859         pci_power_t target_state = pci_target_state(dev);
1860         int error;
1861
1862         if (target_state == PCI_POWER_ERROR)
1863                 return -EIO;
1864
1865         dev->runtime_d3cold = target_state == PCI_D3cold;
1866
1867         __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
1868
1869         error = pci_set_power_state(dev, target_state);
1870
1871         if (error) {
1872                 __pci_enable_wake(dev, target_state, true, false);
1873                 dev->runtime_d3cold = false;
1874         }
1875
1876         return error;
1877 }
1878
1879 /**
1880  * pci_dev_run_wake - Check if device can generate run-time wake-up events.
1881  * @dev: Device to check.
1882  *
1883  * Return true if the device itself is capable of generating wake-up events
1884  * (through the platform or using the native PCIe PME) or if the device supports
1885  * PME and one of its upstream bridges can generate wake-up events.
1886  */
1887 bool pci_dev_run_wake(struct pci_dev *dev)
1888 {
1889         struct pci_bus *bus = dev->bus;
1890
1891         if (device_run_wake(&dev->dev))
1892                 return true;
1893
1894         if (!dev->pme_support)
1895                 return false;
1896
1897         while (bus->parent) {
1898                 struct pci_dev *bridge = bus->self;
1899
1900                 if (device_run_wake(&bridge->dev))
1901                         return true;
1902
1903                 bus = bus->parent;
1904         }
1905
1906         /* We have reached the root bus. */
1907         if (bus->bridge)
1908                 return device_run_wake(bus->bridge);
1909
1910         return false;
1911 }
1912 EXPORT_SYMBOL_GPL(pci_dev_run_wake);
1913
1914 void pci_config_pm_runtime_get(struct pci_dev *pdev)
1915 {
1916         struct device *dev = &pdev->dev;
1917         struct device *parent = dev->parent;
1918
1919         if (parent)
1920                 pm_runtime_get_sync(parent);
1921         pm_runtime_get_noresume(dev);
1922         /*
1923          * pdev->current_state is set to PCI_D3cold during suspending,
1924          * so wait until suspending completes
1925          */
1926         pm_runtime_barrier(dev);
1927         /*
1928          * Only need to resume devices in D3cold, because config
1929          * registers are still accessible for devices suspended but
1930          * not in D3cold.
1931          */
1932         if (pdev->current_state == PCI_D3cold)
1933                 pm_runtime_resume(dev);
1934 }
1935
1936 void pci_config_pm_runtime_put(struct pci_dev *pdev)
1937 {
1938         struct device *dev = &pdev->dev;
1939         struct device *parent = dev->parent;
1940
1941         pm_runtime_put(dev);
1942         if (parent)
1943                 pm_runtime_put_sync(parent);
1944 }
1945
1946 /**
1947  * pci_pm_init - Initialize PM functions of given PCI device
1948  * @dev: PCI device to handle.
1949  */
1950 void pci_pm_init(struct pci_dev *dev)
1951 {
1952         int pm;
1953         u16 pmc;
1954
1955         pm_runtime_forbid(&dev->dev);
1956         pm_runtime_set_active(&dev->dev);
1957         pm_runtime_enable(&dev->dev);
1958         device_enable_async_suspend(&dev->dev);
1959         dev->wakeup_prepared = false;
1960
1961         dev->pm_cap = 0;
1962         dev->pme_support = 0;
1963
1964         /* find PCI PM capability in list */
1965         pm = pci_find_capability(dev, PCI_CAP_ID_PM);
1966         if (!pm)
1967                 return;
1968         /* Check device's ability to generate PME# */
1969         pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
1970
1971         if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1972                 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1973                         pmc & PCI_PM_CAP_VER_MASK);
1974                 return;
1975         }
1976
1977         dev->pm_cap = pm;
1978         dev->d3_delay = PCI_PM_D3_WAIT;
1979         dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
1980         dev->d3cold_allowed = true;
1981
1982         dev->d1_support = false;
1983         dev->d2_support = false;
1984         if (!pci_no_d1d2(dev)) {
1985                 if (pmc & PCI_PM_CAP_D1)
1986                         dev->d1_support = true;
1987                 if (pmc & PCI_PM_CAP_D2)
1988                         dev->d2_support = true;
1989
1990                 if (dev->d1_support || dev->d2_support)
1991                         dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
1992                                    dev->d1_support ? " D1" : "",
1993                                    dev->d2_support ? " D2" : "");
1994         }
1995
1996         pmc &= PCI_PM_CAP_PME_MASK;
1997         if (pmc) {
1998                 dev_printk(KERN_DEBUG, &dev->dev,
1999                          "PME# supported from%s%s%s%s%s\n",
2000                          (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
2001                          (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
2002                          (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
2003                          (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
2004                          (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
2005                 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
2006                 dev->pme_poll = true;
2007                 /*
2008                  * Make device's PM flags reflect the wake-up capability, but
2009                  * let the user space enable it to wake up the system as needed.
2010                  */
2011                 device_set_wakeup_capable(&dev->dev, true);
2012                 /* Disable the PME# generation functionality */
2013                 pci_pme_active(dev, false);
2014         }
2015 }
2016
2017 static void pci_add_saved_cap(struct pci_dev *pci_dev,
2018         struct pci_cap_saved_state *new_cap)
2019 {
2020         hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space);
2021 }
2022
2023 /**
2024  * pci_add_cap_save_buffer - allocate buffer for saving given capability registers
2025  * @dev: the PCI device
2026  * @cap: the capability to allocate the buffer for
2027  * @size: requested size of the buffer
2028  */
2029 static int pci_add_cap_save_buffer(
2030         struct pci_dev *dev, char cap, unsigned int size)
2031 {
2032         int pos;
2033         struct pci_cap_saved_state *save_state;
2034
2035         pos = pci_find_capability(dev, cap);
2036         if (pos <= 0)
2037                 return 0;
2038
2039         save_state = kzalloc(sizeof(*save_state) + size, GFP_KERNEL);
2040         if (!save_state)
2041                 return -ENOMEM;
2042
2043         save_state->cap.cap_nr = cap;
2044         save_state->cap.size = size;
2045         pci_add_saved_cap(dev, save_state);
2046
2047         return 0;
2048 }
2049
2050 /**
2051  * pci_allocate_cap_save_buffers - allocate buffers for saving capabilities
2052  * @dev: the PCI device
2053  */
2054 void pci_allocate_cap_save_buffers(struct pci_dev *dev)
2055 {
2056         int error;
2057
2058         error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
2059                                         PCI_EXP_SAVE_REGS * sizeof(u16));
2060         if (error)
2061                 dev_err(&dev->dev,
2062                         "unable to preallocate PCI Express save buffer\n");
2063
2064         error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_PCIX, sizeof(u16));
2065         if (error)
2066                 dev_err(&dev->dev,
2067                         "unable to preallocate PCI-X save buffer\n");
2068 }
2069
2070 void pci_free_cap_save_buffers(struct pci_dev *dev)
2071 {
2072         struct pci_cap_saved_state *tmp;
2073         struct hlist_node *n;
2074
2075         hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
2076                 kfree(tmp);
2077 }
2078
2079 /**
2080  * pci_configure_ari - enable or disable ARI forwarding
2081  * @dev: the PCI device
2082  *
2083  * If @dev and its upstream bridge both support ARI, enable ARI in the
2084  * bridge.  Otherwise, disable ARI in the bridge.
2085  */
2086 void pci_configure_ari(struct pci_dev *dev)
2087 {
2088         u32 cap;
2089         struct pci_dev *bridge;
2090
2091         if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
2092                 return;
2093
2094         bridge = dev->bus->self;
2095         if (!bridge)
2096                 return;
2097
2098         pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
2099         if (!(cap & PCI_EXP_DEVCAP2_ARI))
2100                 return;
2101
2102         if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI)) {
2103                 pcie_capability_set_word(bridge, PCI_EXP_DEVCTL2,
2104                                          PCI_EXP_DEVCTL2_ARI);
2105                 bridge->ari_enabled = 1;
2106         } else {
2107                 pcie_capability_clear_word(bridge, PCI_EXP_DEVCTL2,
2108                                            PCI_EXP_DEVCTL2_ARI);
2109                 bridge->ari_enabled = 0;
2110         }
2111 }
2112
2113 /**
2114  * pci_enable_ido - enable ID-based Ordering on a device
2115  * @dev: the PCI device
2116  * @type: which types of IDO to enable
2117  *
2118  * Enable ID-based ordering on @dev.  @type can contain the bits
2119  * %PCI_EXP_IDO_REQUEST and/or %PCI_EXP_IDO_COMPLETION to indicate
2120  * which types of transactions are allowed to be re-ordered.
2121  */
2122 void pci_enable_ido(struct pci_dev *dev, unsigned long type)
2123 {
2124         u16 ctrl = 0;
2125
2126         if (type & PCI_EXP_IDO_REQUEST)
2127                 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
2128         if (type & PCI_EXP_IDO_COMPLETION)
2129                 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
2130         if (ctrl)
2131                 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2, ctrl);
2132 }
2133 EXPORT_SYMBOL(pci_enable_ido);
2134
2135 /**
2136  * pci_disable_ido - disable ID-based ordering on a device
2137  * @dev: the PCI device
2138  * @type: which types of IDO to disable
2139  */
2140 void pci_disable_ido(struct pci_dev *dev, unsigned long type)
2141 {
2142         u16 ctrl = 0;
2143
2144         if (type & PCI_EXP_IDO_REQUEST)
2145                 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
2146         if (type & PCI_EXP_IDO_COMPLETION)
2147                 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
2148         if (ctrl)
2149                 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2, ctrl);
2150 }
2151 EXPORT_SYMBOL(pci_disable_ido);
2152
2153 static int pci_acs_enable;
2154
2155 /**
2156  * pci_request_acs - ask for ACS to be enabled if supported
2157  */
2158 void pci_request_acs(void)
2159 {
2160         pci_acs_enable = 1;
2161 }
2162
2163 /**
2164  * pci_enable_acs - enable ACS if hardware support it
2165  * @dev: the PCI device
2166  */
2167 void pci_enable_acs(struct pci_dev *dev)
2168 {
2169         int pos;
2170         u16 cap;
2171         u16 ctrl;
2172
2173         if (!pci_acs_enable)
2174                 return;
2175
2176         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
2177         if (!pos)
2178                 return;
2179
2180         pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
2181         pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
2182
2183         /* Source Validation */
2184         ctrl |= (cap & PCI_ACS_SV);
2185
2186         /* P2P Request Redirect */
2187         ctrl |= (cap & PCI_ACS_RR);
2188
2189         /* P2P Completion Redirect */
2190         ctrl |= (cap & PCI_ACS_CR);
2191
2192         /* Upstream Forwarding */
2193         ctrl |= (cap & PCI_ACS_UF);
2194
2195         pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
2196 }
2197
2198 static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
2199 {
2200         int pos;
2201         u16 cap, ctrl;
2202
2203         pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
2204         if (!pos)
2205                 return false;
2206
2207         /*
2208          * Except for egress control, capabilities are either required
2209          * or only required if controllable.  Features missing from the
2210          * capability field can therefore be assumed as hard-wired enabled.
2211          */
2212         pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
2213         acs_flags &= (cap | PCI_ACS_EC);
2214
2215         pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
2216         return (ctrl & acs_flags) == acs_flags;
2217 }
2218
2219 /**
2220  * pci_acs_enabled - test ACS against required flags for a given device
2221  * @pdev: device to test
2222  * @acs_flags: required PCI ACS flags
2223  *
2224  * Return true if the device supports the provided flags.  Automatically
2225  * filters out flags that are not implemented on multifunction devices.
2226  *
2227  * Note that this interface checks the effective ACS capabilities of the
2228  * device rather than the actual capabilities.  For instance, most single
2229  * function endpoints are not required to support ACS because they have no
2230  * opportunity for peer-to-peer access.  We therefore return 'true'
2231  * regardless of whether the device exposes an ACS capability.  This makes
2232  * it much easier for callers of this function to ignore the actual type
2233  * or topology of the device when testing ACS support.
2234  */
2235 bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2236 {
2237         int ret;
2238
2239         ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
2240         if (ret >= 0)
2241                 return ret > 0;
2242
2243         /*
2244          * Conventional PCI and PCI-X devices never support ACS, either
2245          * effectively or actually.  The shared bus topology implies that
2246          * any device on the bus can receive or snoop DMA.
2247          */
2248         if (!pci_is_pcie(pdev))
2249                 return false;
2250
2251         switch (pci_pcie_type(pdev)) {
2252         /*
2253          * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
2254          * but since their primary interface is PCI/X, we conservatively
2255          * handle them as we would a non-PCIe device.
2256          */
2257         case PCI_EXP_TYPE_PCIE_BRIDGE:
2258         /*
2259          * PCIe 3.0, 6.12.1 excludes ACS on these devices.  "ACS is never
2260          * applicable... must never implement an ACS Extended Capability...".
2261          * This seems arbitrary, but we take a conservative interpretation
2262          * of this statement.
2263          */
2264         case PCI_EXP_TYPE_PCI_BRIDGE:
2265         case PCI_EXP_TYPE_RC_EC:
2266                 return false;
2267         /*
2268          * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
2269          * implement ACS in order to indicate their peer-to-peer capabilities,
2270          * regardless of whether they are single- or multi-function devices.
2271          */
2272         case PCI_EXP_TYPE_DOWNSTREAM:
2273         case PCI_EXP_TYPE_ROOT_PORT:
2274                 return pci_acs_flags_enabled(pdev, acs_flags);
2275         /*
2276          * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
2277          * implemented by the remaining PCIe types to indicate peer-to-peer
2278          * capabilities, but only when they are part of a multifunction
2279          * device.  The footnote for section 6.12 indicates the specific
2280          * PCIe types included here.
2281          */
2282         case PCI_EXP_TYPE_ENDPOINT:
2283         case PCI_EXP_TYPE_UPSTREAM:
2284         case PCI_EXP_TYPE_LEG_END:
2285         case PCI_EXP_TYPE_RC_END:
2286                 if (!pdev->multifunction)
2287                         break;
2288
2289                 return pci_acs_flags_enabled(pdev, acs_flags);
2290         }
2291
2292         /*
2293          * PCIe 3.0, 6.12.1.3 specifies no ACS capabilities are applicable
2294          * to single function devices with the exception of downstream ports.
2295          */
2296         return true;
2297 }
2298
2299 /**
2300  * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
2301  * @start: starting downstream device
2302  * @end: ending upstream device or NULL to search to the root bus
2303  * @acs_flags: required flags
2304  *
2305  * Walk up a device tree from start to end testing PCI ACS support.  If
2306  * any step along the way does not support the required flags, return false.
2307  */
2308 bool pci_acs_path_enabled(struct pci_dev *start,
2309                           struct pci_dev *end, u16 acs_flags)
2310 {
2311         struct pci_dev *pdev, *parent = start;
2312
2313         do {
2314                 pdev = parent;
2315
2316                 if (!pci_acs_enabled(pdev, acs_flags))
2317                         return false;
2318
2319                 if (pci_is_root_bus(pdev->bus))
2320                         return (end == NULL);
2321
2322                 parent = pdev->bus->self;
2323         } while (pdev != end);
2324
2325         return true;
2326 }
2327
2328 /**
2329  * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
2330  * @dev: the PCI device
2331  * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
2332  *
2333  * Perform INTx swizzling for a device behind one level of bridge.  This is
2334  * required by section 9.1 of the PCI-to-PCI bridge specification for devices
2335  * behind bridges on add-in cards.  For devices with ARI enabled, the slot
2336  * number is always 0 (see the Implementation Note in section 2.2.8.1 of
2337  * the PCI Express Base Specification, Revision 2.1)
2338  */
2339 u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
2340 {
2341         int slot;
2342
2343         if (pci_ari_enabled(dev->bus))
2344                 slot = 0;
2345         else
2346                 slot = PCI_SLOT(dev->devfn);
2347
2348         return (((pin - 1) + slot) % 4) + 1;
2349 }
2350
2351 int
2352 pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
2353 {
2354         u8 pin;
2355
2356         pin = dev->pin;
2357         if (!pin)
2358                 return -1;
2359
2360         while (!pci_is_root_bus(dev->bus)) {
2361                 pin = pci_swizzle_interrupt_pin(dev, pin);
2362                 dev = dev->bus->self;
2363         }
2364         *bridge = dev;
2365         return pin;
2366 }
2367
2368 /**
2369  * pci_common_swizzle - swizzle INTx all the way to root bridge
2370  * @dev: the PCI device
2371  * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
2372  *
2373  * Perform INTx swizzling for a device.  This traverses through all PCI-to-PCI
2374  * bridges all the way up to a PCI root bus.
2375  */
2376 u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
2377 {
2378         u8 pin = *pinp;
2379
2380         while (!pci_is_root_bus(dev->bus)) {
2381                 pin = pci_swizzle_interrupt_pin(dev, pin);
2382                 dev = dev->bus->self;
2383         }
2384         *pinp = pin;
2385         return PCI_SLOT(dev->devfn);
2386 }
2387
2388 /**
2389  *      pci_release_region - Release a PCI bar
2390  *      @pdev: PCI device whose resources were previously reserved by pci_request_region
2391  *      @bar: BAR to release
2392  *
2393  *      Releases the PCI I/O and memory resources previously reserved by a
2394  *      successful call to pci_request_region.  Call this function only
2395  *      after all use of the PCI regions has ceased.
2396  */
2397 void pci_release_region(struct pci_dev *pdev, int bar)
2398 {
2399         struct pci_devres *dr;
2400
2401         if (pci_resource_len(pdev, bar) == 0)
2402                 return;
2403         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
2404                 release_region(pci_resource_start(pdev, bar),
2405                                 pci_resource_len(pdev, bar));
2406         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
2407                 release_mem_region(pci_resource_start(pdev, bar),
2408                                 pci_resource_len(pdev, bar));
2409
2410         dr = find_pci_dr(pdev);
2411         if (dr)
2412                 dr->region_mask &= ~(1 << bar);
2413 }
2414
2415 /**
2416  *      __pci_request_region - Reserved PCI I/O and memory resource
2417  *      @pdev: PCI device whose resources are to be reserved
2418  *      @bar: BAR to be reserved
2419  *      @res_name: Name to be associated with resource.
2420  *      @exclusive: whether the region access is exclusive or not
2421  *
2422  *      Mark the PCI region associated with PCI device @pdev BR @bar as
2423  *      being reserved by owner @res_name.  Do not access any
2424  *      address inside the PCI regions unless this call returns
2425  *      successfully.
2426  *
2427  *      If @exclusive is set, then the region is marked so that userspace
2428  *      is explicitly not allowed to map the resource via /dev/mem or
2429  *      sysfs MMIO access.
2430  *
2431  *      Returns 0 on success, or %EBUSY on error.  A warning
2432  *      message is also printed on failure.
2433  */
2434 static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
2435                                                                         int exclusive)
2436 {
2437         struct pci_devres *dr;
2438
2439         if (pci_resource_len(pdev, bar) == 0)
2440                 return 0;
2441
2442         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
2443                 if (!request_region(pci_resource_start(pdev, bar),
2444                             pci_resource_len(pdev, bar), res_name))
2445                         goto err_out;
2446         }
2447         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
2448                 if (!__request_mem_region(pci_resource_start(pdev, bar),
2449                                         pci_resource_len(pdev, bar), res_name,
2450                                         exclusive))
2451                         goto err_out;
2452         }
2453
2454         dr = find_pci_dr(pdev);
2455         if (dr)
2456                 dr->region_mask |= 1 << bar;
2457
2458         return 0;
2459
2460 err_out:
2461         dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
2462                  &pdev->resource[bar]);
2463         return -EBUSY;
2464 }
2465
2466 /**
2467  *      pci_request_region - Reserve PCI I/O and memory resource
2468  *      @pdev: PCI device whose resources are to be reserved
2469  *      @bar: BAR to be reserved
2470  *      @res_name: Name to be associated with resource
2471  *
2472  *      Mark the PCI region associated with PCI device @pdev BAR @bar as
2473  *      being reserved by owner @res_name.  Do not access any
2474  *      address inside the PCI regions unless this call returns
2475  *      successfully.
2476  *
2477  *      Returns 0 on success, or %EBUSY on error.  A warning
2478  *      message is also printed on failure.
2479  */
2480 int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
2481 {
2482         return __pci_request_region(pdev, bar, res_name, 0);
2483 }
2484
2485 /**
2486  *      pci_request_region_exclusive - Reserved PCI I/O and memory resource
2487  *      @pdev: PCI device whose resources are to be reserved
2488  *      @bar: BAR to be reserved
2489  *      @res_name: Name to be associated with resource.
2490  *
2491  *      Mark the PCI region associated with PCI device @pdev BR @bar as
2492  *      being reserved by owner @res_name.  Do not access any
2493  *      address inside the PCI regions unless this call returns
2494  *      successfully.
2495  *
2496  *      Returns 0 on success, or %EBUSY on error.  A warning
2497  *      message is also printed on failure.
2498  *
2499  *      The key difference that _exclusive makes it that userspace is
2500  *      explicitly not allowed to map the resource via /dev/mem or
2501  *      sysfs.
2502  */
2503 int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
2504 {
2505         return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
2506 }
2507 /**
2508  * pci_release_selected_regions - Release selected PCI I/O and memory resources
2509  * @pdev: PCI device whose resources were previously reserved
2510  * @bars: Bitmask of BARs to be released
2511  *
2512  * Release selected PCI I/O and memory resources previously reserved.
2513  * Call this function only after all use of the PCI regions has ceased.
2514  */
2515 void pci_release_selected_regions(struct pci_dev *pdev, int bars)
2516 {
2517         int i;
2518
2519         for (i = 0; i < 6; i++)
2520                 if (bars & (1 << i))
2521                         pci_release_region(pdev, i);
2522 }
2523
2524 static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
2525                                  const char *res_name, int excl)
2526 {
2527         int i;
2528
2529         for (i = 0; i < 6; i++)
2530                 if (bars & (1 << i))
2531                         if (__pci_request_region(pdev, i, res_name, excl))
2532                                 goto err_out;
2533         return 0;
2534
2535 err_out:
2536         while(--i >= 0)
2537                 if (bars & (1 << i))
2538                         pci_release_region(pdev, i);
2539
2540         return -EBUSY;
2541 }
2542
2543
2544 /**
2545  * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
2546  * @pdev: PCI device whose resources are to be reserved
2547  * @bars: Bitmask of BARs to be requested
2548  * @res_name: Name to be associated with resource
2549  */
2550 int pci_request_selected_regions(struct pci_dev *pdev, int bars,
2551                                  const char *res_name)
2552 {
2553         return __pci_request_selected_regions(pdev, bars, res_name, 0);
2554 }
2555
2556 int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
2557                                  int bars, const char *res_name)
2558 {
2559         return __pci_request_selected_regions(pdev, bars, res_name,
2560                         IORESOURCE_EXCLUSIVE);
2561 }
2562
2563 /**
2564  *      pci_release_regions - Release reserved PCI I/O and memory resources
2565  *      @pdev: PCI device whose resources were previously reserved by pci_request_regions
2566  *
2567  *      Releases all PCI I/O and memory resources previously reserved by a
2568  *      successful call to pci_request_regions.  Call this function only
2569  *      after all use of the PCI regions has ceased.
2570  */
2571
2572 void pci_release_regions(struct pci_dev *pdev)
2573 {
2574         pci_release_selected_regions(pdev, (1 << 6) - 1);
2575 }
2576
2577 /**
2578  *      pci_request_regions - Reserved PCI I/O and memory resources
2579  *      @pdev: PCI device whose resources are to be reserved
2580  *      @res_name: Name to be associated with resource.
2581  *
2582  *      Mark all PCI regions associated with PCI device @pdev as
2583  *      being reserved by owner @res_name.  Do not access any
2584  *      address inside the PCI regions unless this call returns
2585  *      successfully.
2586  *
2587  *      Returns 0 on success, or %EBUSY on error.  A warning
2588  *      message is also printed on failure.
2589  */
2590 int pci_request_regions(struct pci_dev *pdev, const char *res_name)
2591 {
2592         return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
2593 }
2594
2595 /**
2596  *      pci_request_regions_exclusive - Reserved PCI I/O and memory resources
2597  *      @pdev: PCI device whose resources are to be reserved
2598  *      @res_name: Name to be associated with resource.
2599  *
2600  *      Mark all PCI regions associated with PCI device @pdev as
2601  *      being reserved by owner @res_name.  Do not access any
2602  *      address inside the PCI regions unless this call returns
2603  *      successfully.
2604  *
2605  *      pci_request_regions_exclusive() will mark the region so that
2606  *      /dev/mem and the sysfs MMIO access will not be allowed.
2607  *
2608  *      Returns 0 on success, or %EBUSY on error.  A warning
2609  *      message is also printed on failure.
2610  */
2611 int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
2612 {
2613         return pci_request_selected_regions_exclusive(pdev,
2614                                         ((1 << 6) - 1), res_name);
2615 }
2616
2617 static void __pci_set_master(struct pci_dev *dev, bool enable)
2618 {
2619         u16 old_cmd, cmd;
2620
2621         pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
2622         if (enable)
2623                 cmd = old_cmd | PCI_COMMAND_MASTER;
2624         else
2625                 cmd = old_cmd & ~PCI_COMMAND_MASTER;
2626         if (cmd != old_cmd) {
2627                 dev_dbg(&dev->dev, "%s bus mastering\n",
2628                         enable ? "enabling" : "disabling");
2629                 pci_write_config_word(dev, PCI_COMMAND, cmd);
2630         }
2631         dev->is_busmaster = enable;
2632 }
2633
2634 /**
2635  * pcibios_setup - process "pci=" kernel boot arguments
2636  * @str: string used to pass in "pci=" kernel boot arguments
2637  *
2638  * Process kernel boot arguments.  This is the default implementation.
2639  * Architecture specific implementations can override this as necessary.
2640  */
2641 char * __weak __init pcibios_setup(char *str)
2642 {
2643         return str;
2644 }
2645
2646 /**
2647  * pcibios_set_master - enable PCI bus-mastering for device dev
2648  * @dev: the PCI device to enable
2649  *
2650  * Enables PCI bus-mastering for the device.  This is the default
2651  * implementation.  Architecture specific implementations can override
2652  * this if necessary.
2653  */
2654 void __weak pcibios_set_master(struct pci_dev *dev)
2655 {
2656         u8 lat;
2657
2658         /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
2659         if (pci_is_pcie(dev))
2660                 return;
2661
2662         pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
2663         if (lat < 16)
2664                 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
2665         else if (lat > pcibios_max_latency)
2666                 lat = pcibios_max_latency;
2667         else
2668                 return;
2669
2670         pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
2671 }
2672
2673 /**
2674  * pci_set_master - enables bus-mastering for device dev
2675  * @dev: the PCI device to enable
2676  *
2677  * Enables bus-mastering on the device and calls pcibios_set_master()
2678  * to do the needed arch specific settings.
2679  */
2680 void pci_set_master(struct pci_dev *dev)
2681 {
2682         __pci_set_master(dev, true);
2683         pcibios_set_master(dev);
2684 }
2685
2686 /**
2687  * pci_clear_master - disables bus-mastering for device dev
2688  * @dev: the PCI device to disable
2689  */
2690 void pci_clear_master(struct pci_dev *dev)
2691 {
2692         __pci_set_master(dev, false);
2693 }
2694
2695 /**
2696  * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
2697  * @dev: the PCI device for which MWI is to be enabled
2698  *
2699  * Helper function for pci_set_mwi.
2700  * Originally copied from drivers/net/acenic.c.
2701  * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
2702  *
2703  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2704  */
2705 int pci_set_cacheline_size(struct pci_dev *dev)
2706 {
2707         u8 cacheline_size;
2708
2709         if (!pci_cache_line_size)
2710                 return -EINVAL;
2711
2712         /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
2713            equal to or multiple of the right value. */
2714         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2715         if (cacheline_size >= pci_cache_line_size &&
2716             (cacheline_size % pci_cache_line_size) == 0)
2717                 return 0;
2718
2719         /* Write the correct value. */
2720         pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
2721         /* Read it back. */
2722         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2723         if (cacheline_size == pci_cache_line_size)
2724                 return 0;
2725
2726         dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
2727                    "supported\n", pci_cache_line_size << 2);
2728
2729         return -EINVAL;
2730 }
2731 EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
2732
2733 #ifdef PCI_DISABLE_MWI
2734 int pci_set_mwi(struct pci_dev *dev)
2735 {
2736         return 0;
2737 }
2738
2739 int pci_try_set_mwi(struct pci_dev *dev)
2740 {
2741         return 0;
2742 }
2743
2744 void pci_clear_mwi(struct pci_dev *dev)
2745 {
2746 }
2747
2748 #else
2749
2750 /**
2751  * pci_set_mwi - enables memory-write-invalidate PCI transaction
2752  * @dev: the PCI device for which MWI is enabled
2753  *
2754  * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2755  *
2756  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2757  */
2758 int
2759 pci_set_mwi(struct pci_dev *dev)
2760 {
2761         int rc;
2762         u16 cmd;
2763
2764         rc = pci_set_cacheline_size(dev);
2765         if (rc)
2766                 return rc;
2767
2768         pci_read_config_word(dev, PCI_COMMAND, &cmd);
2769         if (! (cmd & PCI_COMMAND_INVALIDATE)) {
2770                 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
2771                 cmd |= PCI_COMMAND_INVALIDATE;
2772                 pci_write_config_word(dev, PCI_COMMAND, cmd);
2773         }
2774
2775         return 0;
2776 }
2777
2778 /**
2779  * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2780  * @dev: the PCI device for which MWI is enabled
2781  *
2782  * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2783  * Callers are not required to check the return value.
2784  *
2785  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2786  */
2787 int pci_try_set_mwi(struct pci_dev *dev)
2788 {
2789         int rc = pci_set_mwi(dev);
2790         return rc;
2791 }
2792
2793 /**
2794  * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2795  * @dev: the PCI device to disable
2796  *
2797  * Disables PCI Memory-Write-Invalidate transaction on the device
2798  */
2799 void
2800 pci_clear_mwi(struct pci_dev *dev)
2801 {
2802         u16 cmd;
2803
2804         pci_read_config_word(dev, PCI_COMMAND, &cmd);
2805         if (cmd & PCI_COMMAND_INVALIDATE) {
2806                 cmd &= ~PCI_COMMAND_INVALIDATE;
2807                 pci_write_config_word(dev, PCI_COMMAND, cmd);
2808         }
2809 }
2810 #endif /* ! PCI_DISABLE_MWI */
2811
2812 /**
2813  * pci_intx - enables/disables PCI INTx for device dev
2814  * @pdev: the PCI device to operate on
2815  * @enable: boolean: whether to enable or disable PCI INTx
2816  *
2817  * Enables/disables PCI INTx for device dev
2818  */
2819 void
2820 pci_intx(struct pci_dev *pdev, int enable)
2821 {
2822         u16 pci_command, new;
2823
2824         pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
2825
2826         if (enable) {
2827                 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
2828         } else {
2829                 new = pci_command | PCI_COMMAND_INTX_DISABLE;
2830         }
2831
2832         if (new != pci_command) {
2833                 struct pci_devres *dr;
2834
2835                 pci_write_config_word(pdev, PCI_COMMAND, new);
2836
2837                 dr = find_pci_dr(pdev);
2838                 if (dr && !dr->restore_intx) {
2839                         dr->restore_intx = 1;
2840                         dr->orig_intx = !enable;
2841                 }
2842         }
2843 }
2844
2845 /**
2846  * pci_intx_mask_supported - probe for INTx masking support
2847  * @dev: the PCI device to operate on
2848  *
2849  * Check if the device dev support INTx masking via the config space
2850  * command word.
2851  */
2852 bool pci_intx_mask_supported(struct pci_dev *dev)
2853 {
2854         bool mask_supported = false;
2855         u16 orig, new;
2856
2857         if (dev->broken_intx_masking)
2858                 return false;
2859
2860         pci_cfg_access_lock(dev);
2861
2862         pci_read_config_word(dev, PCI_COMMAND, &orig);
2863         pci_write_config_word(dev, PCI_COMMAND,
2864                               orig ^ PCI_COMMAND_INTX_DISABLE);
2865         pci_read_config_word(dev, PCI_COMMAND, &new);
2866
2867         /*
2868          * There's no way to protect against hardware bugs or detect them
2869          * reliably, but as long as we know what the value should be, let's
2870          * go ahead and check it.
2871          */
2872         if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
2873                 dev_err(&dev->dev, "Command register changed from "
2874                         "0x%x to 0x%x: driver or hardware bug?\n", orig, new);
2875         } else if ((new ^ orig) & PCI_COMMAND_INTX_DISABLE) {
2876                 mask_supported = true;
2877                 pci_write_config_word(dev, PCI_COMMAND, orig);
2878         }
2879
2880         pci_cfg_access_unlock(dev);
2881         return mask_supported;
2882 }
2883 EXPORT_SYMBOL_GPL(pci_intx_mask_supported);
2884
2885 static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
2886 {
2887         struct pci_bus *bus = dev->bus;
2888         bool mask_updated = true;
2889         u32 cmd_status_dword;
2890         u16 origcmd, newcmd;
2891         unsigned long flags;
2892         bool irq_pending;
2893
2894         /*
2895          * We do a single dword read to retrieve both command and status.
2896          * Document assumptions that make this possible.
2897          */
2898         BUILD_BUG_ON(PCI_COMMAND % 4);
2899         BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
2900
2901         raw_spin_lock_irqsave(&pci_lock, flags);
2902
2903         bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
2904
2905         irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
2906
2907         /*
2908          * Check interrupt status register to see whether our device
2909          * triggered the interrupt (when masking) or the next IRQ is
2910          * already pending (when unmasking).
2911          */
2912         if (mask != irq_pending) {
2913                 mask_updated = false;
2914                 goto done;
2915         }
2916
2917         origcmd = cmd_status_dword;
2918         newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
2919         if (mask)
2920                 newcmd |= PCI_COMMAND_INTX_DISABLE;
2921         if (newcmd != origcmd)
2922                 bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
2923
2924 done:
2925         raw_spin_unlock_irqrestore(&pci_lock, flags);
2926
2927         return mask_updated;
2928 }
2929
2930 /**
2931  * pci_check_and_mask_intx - mask INTx on pending interrupt
2932  * @dev: the PCI device to operate on
2933  *
2934  * Check if the device dev has its INTx line asserted, mask it and
2935  * return true in that case. False is returned if not interrupt was
2936  * pending.
2937  */
2938 bool pci_check_and_mask_intx(struct pci_dev *dev)
2939 {
2940         return pci_check_and_set_intx_mask(dev, true);
2941 }
2942 EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
2943
2944 /**
2945  * pci_check_and_mask_intx - unmask INTx of no interrupt is pending
2946  * @dev: the PCI device to operate on
2947  *
2948  * Check if the device dev has its INTx line asserted, unmask it if not
2949  * and return true. False is returned and the mask remains active if
2950  * there was still an interrupt pending.
2951  */
2952 bool pci_check_and_unmask_intx(struct pci_dev *dev)
2953 {
2954         return pci_check_and_set_intx_mask(dev, false);
2955 }
2956 EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
2957
2958 /**
2959  * pci_msi_off - disables any MSI or MSI-X capabilities
2960  * @dev: the PCI device to operate on
2961  *
2962  * If you want to use MSI, see pci_enable_msi() and friends.
2963  * This is a lower-level primitive that allows us to disable
2964  * MSI operation at the device level.
2965  */
2966 void pci_msi_off(struct pci_dev *dev)
2967 {
2968         int pos;
2969         u16 control;
2970
2971         /*
2972          * This looks like it could go in msi.c, but we need it even when
2973          * CONFIG_PCI_MSI=n.  For the same reason, we can't use
2974          * dev->msi_cap or dev->msix_cap here.
2975          */
2976         pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
2977         if (pos) {
2978                 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
2979                 control &= ~PCI_MSI_FLAGS_ENABLE;
2980                 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
2981         }
2982         pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
2983         if (pos) {
2984                 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
2985                 control &= ~PCI_MSIX_FLAGS_ENABLE;
2986                 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
2987         }
2988 }
2989 EXPORT_SYMBOL_GPL(pci_msi_off);
2990
2991 int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
2992 {
2993         return dma_set_max_seg_size(&dev->dev, size);
2994 }
2995 EXPORT_SYMBOL(pci_set_dma_max_seg_size);
2996
2997 int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
2998 {
2999         return dma_set_seg_boundary(&dev->dev, mask);
3000 }
3001 EXPORT_SYMBOL(pci_set_dma_seg_boundary);
3002
3003 /**
3004  * pci_wait_for_pending_transaction - waits for pending transaction
3005  * @dev: the PCI device to operate on
3006  *
3007  * Return 0 if transaction is pending 1 otherwise.
3008  */
3009 int pci_wait_for_pending_transaction(struct pci_dev *dev)
3010 {
3011         int i;
3012         u16 status;
3013
3014         /* Wait for Transaction Pending bit clean */
3015         for (i = 0; i < 4; i++) {
3016                 if (i)
3017                         msleep((1 << (i - 1)) * 100);
3018
3019                 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
3020                 if (!(status & PCI_EXP_DEVSTA_TRPND))
3021                         return 1;
3022         }
3023
3024         return 0;
3025 }
3026 EXPORT_SYMBOL(pci_wait_for_pending_transaction);
3027
3028 static int pcie_flr(struct pci_dev *dev, int probe)
3029 {
3030         u32 cap;
3031
3032         pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
3033         if (!(cap & PCI_EXP_DEVCAP_FLR))
3034                 return -ENOTTY;
3035
3036         if (probe)
3037                 return 0;
3038
3039         if (!pci_wait_for_pending_transaction(dev))
3040                 dev_err(&dev->dev, "transaction is not cleared; proceeding with reset anyway\n");
3041
3042         pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
3043
3044         msleep(100);
3045
3046         return 0;
3047 }
3048
3049 static int pci_af_flr(struct pci_dev *dev, int probe)
3050 {
3051         int i;
3052         int pos;
3053         u8 cap;
3054         u8 status;
3055
3056         pos = pci_find_capability(dev, PCI_CAP_ID_AF);
3057         if (!pos)
3058                 return -ENOTTY;
3059
3060         pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
3061         if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
3062                 return -ENOTTY;
3063
3064         if (probe)
3065                 return 0;
3066
3067         /* Wait for Transaction Pending bit clean */
3068         for (i = 0; i < 4; i++) {
3069                 if (i)
3070                         msleep((1 << (i - 1)) * 100);
3071
3072                 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
3073                 if (!(status & PCI_AF_STATUS_TP))
3074                         goto clear;
3075         }
3076
3077         dev_err(&dev->dev, "transaction is not cleared; "
3078                         "proceeding with reset anyway\n");
3079
3080 clear:
3081         pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
3082         msleep(100);
3083
3084         return 0;
3085 }
3086
3087 /**
3088  * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
3089  * @dev: Device to reset.
3090  * @probe: If set, only check if the device can be reset this way.
3091  *
3092  * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
3093  * unset, it will be reinitialized internally when going from PCI_D3hot to
3094  * PCI_D0.  If that's the case and the device is not in a low-power state
3095  * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
3096  *
3097  * NOTE: This causes the caller to sleep for twice the device power transition
3098  * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
3099  * by default (i.e. unless the @dev's d3_delay field has a different value).
3100  * Moreover, only devices in D0 can be reset by this function.
3101  */
3102 static int pci_pm_reset(struct pci_dev *dev, int probe)
3103 {
3104         u16 csr;
3105
3106         if (!dev->pm_cap)
3107                 return -ENOTTY;
3108
3109         pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
3110         if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
3111                 return -ENOTTY;
3112
3113         if (probe)
3114                 return 0;
3115
3116         if (dev->current_state != PCI_D0)
3117                 return -EINVAL;
3118
3119         csr &= ~PCI_PM_CTRL_STATE_MASK;
3120         csr |= PCI_D3hot;
3121         pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
3122         pci_dev_d3_sleep(dev);
3123
3124         csr &= ~PCI_PM_CTRL_STATE_MASK;
3125         csr |= PCI_D0;
3126         pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
3127         pci_dev_d3_sleep(dev);
3128
3129         return 0;
3130 }
3131
3132 /**
3133  * pci_reset_bridge_secondary_bus - Reset the secondary bus on a PCI bridge.
3134  * @dev: Bridge device
3135  *
3136  * Use the bridge control register to assert reset on the secondary bus.
3137  * Devices on the secondary bus are left in power-on state.
3138  */
3139 void pci_reset_bridge_secondary_bus(struct pci_dev *dev)
3140 {
3141         u16 ctrl;
3142
3143         pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
3144         ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
3145         pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
3146         /*
3147          * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms.  Double
3148          * this to 2ms to ensure that we meet the minimum requirement.
3149          */
3150         msleep(2);
3151
3152         ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
3153         pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
3154
3155         /*
3156          * Trhfa for conventional PCI is 2^25 clock cycles.
3157          * Assuming a minimum 33MHz clock this results in a 1s
3158          * delay before we can consider subordinate devices to
3159          * be re-initialized.  PCIe has some ways to shorten this,
3160          * but we don't make use of them yet.
3161          */
3162         ssleep(1);
3163 }
3164 EXPORT_SYMBOL_GPL(pci_reset_bridge_secondary_bus);
3165
3166 static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
3167 {
3168         struct pci_dev *pdev;
3169
3170         if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
3171                 return -ENOTTY;
3172
3173         list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3174                 if (pdev != dev)
3175                         return -ENOTTY;
3176
3177         if (probe)
3178                 return 0;
3179
3180         pci_reset_bridge_secondary_bus(dev->bus->self);
3181
3182         return 0;
3183 }
3184
3185 static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
3186 {
3187         int rc = -ENOTTY;
3188
3189         if (!hotplug || !try_module_get(hotplug->ops->owner))
3190                 return rc;
3191
3192         if (hotplug->ops->reset_slot)
3193                 rc = hotplug->ops->reset_slot(hotplug, probe);
3194
3195         module_put(hotplug->ops->owner);
3196
3197         return rc;
3198 }
3199
3200 static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
3201 {
3202         struct pci_dev *pdev;
3203
3204         if (dev->subordinate || !dev->slot)
3205                 return -ENOTTY;
3206
3207         list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3208                 if (pdev != dev && pdev->slot == dev->slot)
3209                         return -ENOTTY;
3210
3211         return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
3212 }
3213
3214 static int __pci_dev_reset(struct pci_dev *dev, int probe)
3215 {
3216         int rc;
3217
3218         might_sleep();
3219
3220         rc = pci_dev_specific_reset(dev, probe);
3221         if (rc != -ENOTTY)
3222                 goto done;
3223
3224         rc = pcie_flr(dev, probe);
3225         if (rc != -ENOTTY)
3226                 goto done;
3227
3228         rc = pci_af_flr(dev, probe);
3229         if (rc != -ENOTTY)
3230                 goto done;
3231
3232         rc = pci_pm_reset(dev, probe);
3233         if (rc != -ENOTTY)
3234                 goto done;
3235
3236         rc = pci_dev_reset_slot_function(dev, probe);
3237         if (rc != -ENOTTY)
3238                 goto done;
3239
3240         rc = pci_parent_bus_reset(dev, probe);
3241 done:
3242         return rc;
3243 }
3244
3245 static void pci_dev_lock(struct pci_dev *dev)
3246 {
3247         pci_cfg_access_lock(dev);
3248         /* block PM suspend, driver probe, etc. */
3249         device_lock(&dev->dev);
3250 }
3251
3252 static void pci_dev_unlock(struct pci_dev *dev)
3253 {
3254         device_unlock(&dev->dev);
3255         pci_cfg_access_unlock(dev);
3256 }
3257
3258 static void pci_dev_save_and_disable(struct pci_dev *dev)
3259 {
3260         /*
3261          * Wake-up device prior to save.  PM registers default to D0 after
3262          * reset and a simple register restore doesn't reliably return
3263          * to a non-D0 state anyway.
3264          */
3265         pci_set_power_state(dev, PCI_D0);
3266
3267         pci_save_state(dev);
3268         /*
3269          * Disable the device by clearing the Command register, except for
3270          * INTx-disable which is set.  This not only disables MMIO and I/O port
3271          * BARs, but also prevents the device from being Bus Master, preventing
3272          * DMA from the device including MSI/MSI-X interrupts.  For PCI 2.3
3273          * compliant devices, INTx-disable prevents legacy interrupts.
3274          */
3275         pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
3276 }
3277
3278 static void pci_dev_restore(struct pci_dev *dev)
3279 {
3280         pci_restore_state(dev);
3281 }
3282
3283 static int pci_dev_reset(struct pci_dev *dev, int probe)
3284 {
3285         int rc;
3286
3287         if (!probe)
3288                 pci_dev_lock(dev);
3289
3290         rc = __pci_dev_reset(dev, probe);
3291
3292         if (!probe)
3293                 pci_dev_unlock(dev);
3294
3295         return rc;
3296 }
3297 /**
3298  * __pci_reset_function - reset a PCI device function
3299  * @dev: PCI device to reset
3300  *
3301  * Some devices allow an individual function to be reset without affecting
3302  * other functions in the same device.  The PCI device must be responsive
3303  * to PCI config space in order to use this function.
3304  *
3305  * The device function is presumed to be unused when this function is called.
3306  * Resetting the device will make the contents of PCI configuration space
3307  * random, so any caller of this must be prepared to reinitialise the
3308  * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3309  * etc.
3310  *
3311  * Returns 0 if the device function was successfully reset or negative if the
3312  * device doesn't support resetting a single function.
3313  */
3314 int __pci_reset_function(struct pci_dev *dev)
3315 {
3316         return pci_dev_reset(dev, 0);
3317 }
3318 EXPORT_SYMBOL_GPL(__pci_reset_function);
3319
3320 /**
3321  * __pci_reset_function_locked - reset a PCI device function while holding
3322  * the @dev mutex lock.
3323  * @dev: PCI device to reset
3324  *
3325  * Some devices allow an individual function to be reset without affecting
3326  * other functions in the same device.  The PCI device must be responsive
3327  * to PCI config space in order to use this function.
3328  *
3329  * The device function is presumed to be unused and the caller is holding
3330  * the device mutex lock when this function is called.
3331  * Resetting the device will make the contents of PCI configuration space
3332  * random, so any caller of this must be prepared to reinitialise the
3333  * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3334  * etc.
3335  *
3336  * Returns 0 if the device function was successfully reset or negative if the
3337  * device doesn't support resetting a single function.
3338  */
3339 int __pci_reset_function_locked(struct pci_dev *dev)
3340 {
3341         return __pci_dev_reset(dev, 0);
3342 }
3343 EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
3344
3345 /**
3346  * pci_probe_reset_function - check whether the device can be safely reset
3347  * @dev: PCI device to reset
3348  *
3349  * Some devices allow an individual function to be reset without affecting
3350  * other functions in the same device.  The PCI device must be responsive
3351  * to PCI config space in order to use this function.
3352  *
3353  * Returns 0 if the device function can be reset or negative if the
3354  * device doesn't support resetting a single function.
3355  */
3356 int pci_probe_reset_function(struct pci_dev *dev)
3357 {
3358         return pci_dev_reset(dev, 1);
3359 }
3360
3361 /**
3362  * pci_reset_function - quiesce and reset a PCI device function
3363  * @dev: PCI device to reset
3364  *
3365  * Some devices allow an individual function to be reset without affecting
3366  * other functions in the same device.  The PCI device must be responsive
3367  * to PCI config space in order to use this function.
3368  *
3369  * This function does not just reset the PCI portion of a device, but
3370  * clears all the state associated with the device.  This function differs
3371  * from __pci_reset_function in that it saves and restores device state
3372  * over the reset.
3373  *
3374  * Returns 0 if the device function was successfully reset or negative if the
3375  * device doesn't support resetting a single function.
3376  */
3377 int pci_reset_function(struct pci_dev *dev)
3378 {
3379         int rc;
3380
3381         rc = pci_dev_reset(dev, 1);
3382         if (rc)
3383                 return rc;
3384
3385         pci_dev_save_and_disable(dev);
3386
3387         rc = pci_dev_reset(dev, 0);
3388
3389         pci_dev_restore(dev);
3390
3391         return rc;
3392 }
3393 EXPORT_SYMBOL_GPL(pci_reset_function);
3394
3395 /* Lock devices from the top of the tree down */
3396 static void pci_bus_lock(struct pci_bus *bus)
3397 {
3398         struct pci_dev *dev;
3399
3400         list_for_each_entry(dev, &bus->devices, bus_list) {
3401                 pci_dev_lock(dev);
3402                 if (dev->subordinate)
3403                         pci_bus_lock(dev->subordinate);
3404         }
3405 }
3406
3407 /* Unlock devices from the bottom of the tree up */
3408 static void pci_bus_unlock(struct pci_bus *bus)
3409 {
3410         struct pci_dev *dev;
3411
3412         list_for_each_entry(dev, &bus->devices, bus_list) {
3413                 if (dev->subordinate)
3414                         pci_bus_unlock(dev->subordinate);
3415                 pci_dev_unlock(dev);
3416         }
3417 }
3418
3419 /* Lock devices from the top of the tree down */
3420 static void pci_slot_lock(struct pci_slot *slot)
3421 {
3422         struct pci_dev *dev;
3423
3424         list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3425                 if (!dev->slot || dev->slot != slot)
3426                         continue;
3427                 pci_dev_lock(dev);
3428                 if (dev->subordinate)
3429                         pci_bus_lock(dev->subordinate);
3430         }
3431 }
3432
3433 /* Unlock devices from the bottom of the tree up */
3434 static void pci_slot_unlock(struct pci_slot *slot)
3435 {
3436         struct pci_dev *dev;
3437
3438         list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3439                 if (!dev->slot || dev->slot != slot)
3440                         continue;
3441                 if (dev->subordinate)
3442                         pci_bus_unlock(dev->subordinate);
3443                 pci_dev_unlock(dev);
3444         }
3445 }
3446
3447 /* Save and disable devices from the top of the tree down */
3448 static void pci_bus_save_and_disable(struct pci_bus *bus)
3449 {
3450         struct pci_dev *dev;
3451
3452         list_for_each_entry(dev, &bus->devices, bus_list) {
3453                 pci_dev_save_and_disable(dev);
3454                 if (dev->subordinate)
3455                         pci_bus_save_and_disable(dev->subordinate);
3456         }
3457 }
3458
3459 /*
3460  * Restore devices from top of the tree down - parent bridges need to be
3461  * restored before we can get to subordinate devices.
3462  */
3463 static void pci_bus_restore(struct pci_bus *bus)
3464 {
3465         struct pci_dev *dev;
3466
3467         list_for_each_entry(dev, &bus->devices, bus_list) {
3468                 pci_dev_restore(dev);
3469                 if (dev->subordinate)
3470                         pci_bus_restore(dev->subordinate);
3471         }
3472 }
3473
3474 /* Save and disable devices from the top of the tree down */
3475 static void pci_slot_save_and_disable(struct pci_slot *slot)
3476 {
3477         struct pci_dev *dev;
3478
3479         list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3480                 if (!dev->slot || dev->slot != slot)
3481                         continue;
3482                 pci_dev_save_and_disable(dev);
3483                 if (dev->subordinate)
3484                         pci_bus_save_and_disable(dev->subordinate);
3485         }
3486 }
3487
3488 /*
3489  * Restore devices from top of the tree down - parent bridges need to be
3490  * restored before we can get to subordinate devices.
3491  */
3492 static void pci_slot_restore(struct pci_slot *slot)
3493 {
3494         struct pci_dev *dev;
3495
3496         list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3497                 if (!dev->slot || dev->slot != slot)
3498                         continue;
3499                 pci_dev_restore(dev);
3500                 if (dev->subordinate)
3501                         pci_bus_restore(dev->subordinate);
3502         }
3503 }
3504
3505 static int pci_slot_reset(struct pci_slot *slot, int probe)
3506 {
3507         int rc;
3508
3509         if (!slot)
3510                 return -ENOTTY;
3511
3512         if (!probe)
3513                 pci_slot_lock(slot);
3514
3515         might_sleep();
3516
3517         rc = pci_reset_hotplug_slot(slot->hotplug, probe);
3518
3519         if (!probe)
3520                 pci_slot_unlock(slot);
3521
3522         return rc;
3523 }
3524
3525 /**
3526  * pci_probe_reset_slot - probe whether a PCI slot can be reset
3527  * @slot: PCI slot to probe
3528  *
3529  * Return 0 if slot can be reset, negative if a slot reset is not supported.
3530  */
3531 int pci_probe_reset_slot(struct pci_slot *slot)
3532 {
3533         return pci_slot_reset(slot, 1);
3534 }
3535 EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
3536
3537 /**
3538  * pci_reset_slot - reset a PCI slot
3539  * @slot: PCI slot to reset
3540  *
3541  * A PCI bus may host multiple slots, each slot may support a reset mechanism
3542  * independent of other slots.  For instance, some slots may support slot power
3543  * control.  In the case of a 1:1 bus to slot architecture, this function may
3544  * wrap the bus reset to avoid spurious slot related events such as hotplug.
3545  * Generally a slot reset should be attempted before a bus reset.  All of the
3546  * function of the slot and any subordinate buses behind the slot are reset
3547  * through this function.  PCI config space of all devices in the slot and
3548  * behind the slot is saved before and restored after reset.
3549  *
3550  * Return 0 on success, non-zero on error.
3551  */
3552 int pci_reset_slot(struct pci_slot *slot)
3553 {
3554         int rc;
3555
3556         rc = pci_slot_reset(slot, 1);
3557         if (rc)
3558                 return rc;
3559
3560         pci_slot_save_and_disable(slot);
3561
3562         rc = pci_slot_reset(slot, 0);
3563
3564         pci_slot_restore(slot);
3565
3566         return rc;
3567 }
3568 EXPORT_SYMBOL_GPL(pci_reset_slot);
3569
3570 static int pci_bus_reset(struct pci_bus *bus, int probe)
3571 {
3572         if (!bus->self)
3573                 return -ENOTTY;
3574
3575         if (probe)
3576                 return 0;
3577
3578         pci_bus_lock(bus);
3579
3580         might_sleep();
3581
3582         pci_reset_bridge_secondary_bus(bus->self);
3583
3584         pci_bus_unlock(bus);
3585
3586         return 0;
3587 }
3588
3589 /**
3590  * pci_probe_reset_bus - probe whether a PCI bus can be reset
3591  * @bus: PCI bus to probe
3592  *
3593  * Return 0 if bus can be reset, negative if a bus reset is not supported.
3594  */
3595 int pci_probe_reset_bus(struct pci_bus *bus)
3596 {
3597         return pci_bus_reset(bus, 1);
3598 }
3599 EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
3600
3601 /**
3602  * pci_reset_bus - reset a PCI bus
3603  * @bus: top level PCI bus to reset
3604  *
3605  * Do a bus reset on the given bus and any subordinate buses, saving
3606  * and restoring state of all devices.
3607  *
3608  * Return 0 on success, non-zero on error.
3609  */
3610 int pci_reset_bus(struct pci_bus *bus)
3611 {
3612         int rc;
3613
3614         rc = pci_bus_reset(bus, 1);
3615         if (rc)
3616                 return rc;
3617
3618         pci_bus_save_and_disable(bus);
3619
3620         rc = pci_bus_reset(bus, 0);
3621
3622         pci_bus_restore(bus);
3623
3624         return rc;
3625 }
3626 EXPORT_SYMBOL_GPL(pci_reset_bus);
3627
3628 /**
3629  * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
3630  * @dev: PCI device to query
3631  *
3632  * Returns mmrbc: maximum designed memory read count in bytes
3633  *    or appropriate error value.
3634  */
3635 int pcix_get_max_mmrbc(struct pci_dev *dev)
3636 {
3637         int cap;
3638         u32 stat;
3639
3640         cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3641         if (!cap)
3642                 return -EINVAL;
3643
3644         if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
3645                 return -EINVAL;
3646
3647         return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
3648 }
3649 EXPORT_SYMBOL(pcix_get_max_mmrbc);
3650
3651 /**
3652  * pcix_get_mmrbc - get PCI-X maximum memory read byte count
3653  * @dev: PCI device to query
3654  *
3655  * Returns mmrbc: maximum memory read count in bytes
3656  *    or appropriate error value.
3657  */
3658 int pcix_get_mmrbc(struct pci_dev *dev)
3659 {
3660         int cap;
3661         u16 cmd;
3662
3663         cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3664         if (!cap)
3665                 return -EINVAL;
3666
3667         if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3668                 return -EINVAL;
3669
3670         return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
3671 }
3672 EXPORT_SYMBOL(pcix_get_mmrbc);
3673
3674 /**
3675  * pcix_set_mmrbc - set PCI-X maximum memory read byte count
3676  * @dev: PCI device to query
3677  * @mmrbc: maximum memory read count in bytes
3678  *    valid values are 512, 1024, 2048, 4096
3679  *
3680  * If possible sets maximum memory read byte count, some bridges have erratas
3681  * that prevent this.
3682  */
3683 int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
3684 {
3685         int cap;
3686         u32 stat, v, o;
3687         u16 cmd;
3688
3689         if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
3690                 return -EINVAL;
3691
3692         v = ffs(mmrbc) - 10;
3693
3694         cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3695         if (!cap)
3696                 return -EINVAL;
3697
3698         if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
3699                 return -EINVAL;
3700
3701         if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
3702                 return -E2BIG;
3703
3704         if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3705                 return -EINVAL;
3706
3707         o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
3708         if (o != v) {
3709                 if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
3710                         return -EIO;
3711
3712                 cmd &= ~PCI_X_CMD_MAX_READ;
3713                 cmd |= v << 2;
3714                 if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
3715                         return -EIO;
3716         }
3717         return 0;
3718 }
3719 EXPORT_SYMBOL(pcix_set_mmrbc);
3720
3721 /**
3722  * pcie_get_readrq - get PCI Express read request size
3723  * @dev: PCI device to query
3724  *
3725  * Returns maximum memory read request in bytes
3726  *    or appropriate error value.
3727  */
3728 int pcie_get_readrq(struct pci_dev *dev)
3729 {
3730         u16 ctl;
3731
3732         pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
3733
3734         return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
3735 }
3736 EXPORT_SYMBOL(pcie_get_readrq);
3737
3738 /**
3739  * pcie_set_readrq - set PCI Express maximum memory read request
3740  * @dev: PCI device to query
3741  * @rq: maximum memory read count in bytes
3742  *    valid values are 128, 256, 512, 1024, 2048, 4096
3743  *
3744  * If possible sets maximum memory read request in bytes
3745  */
3746 int pcie_set_readrq(struct pci_dev *dev, int rq)
3747 {
3748         u16 v;
3749
3750         if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
3751                 return -EINVAL;
3752
3753         /*
3754          * If using the "performance" PCIe config, we clamp the
3755          * read rq size to the max packet size to prevent the
3756          * host bridge generating requests larger than we can
3757          * cope with
3758          */
3759         if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
3760                 int mps = pcie_get_mps(dev);
3761
3762                 if (mps < rq)
3763                         rq = mps;
3764         }
3765
3766         v = (ffs(rq) - 8) << 12;
3767
3768         return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
3769                                                   PCI_EXP_DEVCTL_READRQ, v);
3770 }
3771 EXPORT_SYMBOL(pcie_set_readrq);
3772
3773 /**
3774  * pcie_get_mps - get PCI Express maximum payload size
3775  * @dev: PCI device to query
3776  *
3777  * Returns maximum payload size in bytes
3778  */
3779 int pcie_get_mps(struct pci_dev *dev)
3780 {
3781         u16 ctl;
3782
3783         pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
3784
3785         return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
3786 }
3787 EXPORT_SYMBOL(pcie_get_mps);
3788
3789 /**
3790  * pcie_set_mps - set PCI Express maximum payload size
3791  * @dev: PCI device to query
3792  * @mps: maximum payload size in bytes
3793  *    valid values are 128, 256, 512, 1024, 2048, 4096
3794  *
3795  * If possible sets maximum payload size
3796  */
3797 int pcie_set_mps(struct pci_dev *dev, int mps)
3798 {
3799         u16 v;
3800
3801         if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
3802                 return -EINVAL;
3803
3804         v = ffs(mps) - 8;
3805         if (v > dev->pcie_mpss)
3806                 return -EINVAL;
3807         v <<= 5;
3808
3809         return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
3810                                                   PCI_EXP_DEVCTL_PAYLOAD, v);
3811 }
3812 EXPORT_SYMBOL(pcie_set_mps);
3813
3814 /**
3815  * pcie_get_minimum_link - determine minimum link settings of a PCI device
3816  * @dev: PCI device to query
3817  * @speed: storage for minimum speed
3818  * @width: storage for minimum width
3819  *
3820  * This function will walk up the PCI device chain and determine the minimum
3821  * link width and speed of the device.
3822  */
3823 int pcie_get_minimum_link(struct pci_dev *dev, enum pci_bus_speed *speed,
3824                           enum pcie_link_width *width)
3825 {
3826         int ret;
3827
3828         *speed = PCI_SPEED_UNKNOWN;
3829         *width = PCIE_LNK_WIDTH_UNKNOWN;
3830
3831         while (dev) {
3832                 u16 lnksta;
3833                 enum pci_bus_speed next_speed;
3834                 enum pcie_link_width next_width;
3835
3836                 ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
3837                 if (ret)
3838                         return ret;
3839
3840                 next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
3841                 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
3842                         PCI_EXP_LNKSTA_NLW_SHIFT;
3843
3844                 if (next_speed < *speed)
3845                         *speed = next_speed;
3846
3847                 if (next_width < *width)
3848                         *width = next_width;
3849
3850                 dev = dev->bus->self;
3851         }
3852
3853         return 0;
3854 }
3855 EXPORT_SYMBOL(pcie_get_minimum_link);
3856
3857 /**
3858  * pci_select_bars - Make BAR mask from the type of resource
3859  * @dev: the PCI device for which BAR mask is made
3860  * @flags: resource type mask to be selected
3861  *
3862  * This helper routine makes bar mask from the type of resource.
3863  */
3864 int pci_select_bars(struct pci_dev *dev, unsigned long flags)
3865 {
3866         int i, bars = 0;
3867         for (i = 0; i < PCI_NUM_RESOURCES; i++)
3868                 if (pci_resource_flags(dev, i) & flags)
3869                         bars |= (1 << i);
3870         return bars;
3871 }
3872
3873 /**
3874  * pci_resource_bar - get position of the BAR associated with a resource
3875  * @dev: the PCI device
3876  * @resno: the resource number
3877  * @type: the BAR type to be filled in
3878  *
3879  * Returns BAR position in config space, or 0 if the BAR is invalid.
3880  */
3881 int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
3882 {
3883         int reg;
3884
3885         if (resno < PCI_ROM_RESOURCE) {
3886                 *type = pci_bar_unknown;
3887                 return PCI_BASE_ADDRESS_0 + 4 * resno;
3888         } else if (resno == PCI_ROM_RESOURCE) {
3889                 *type = pci_bar_mem32;
3890                 return dev->rom_base_reg;
3891         } else if (resno < PCI_BRIDGE_RESOURCES) {
3892                 /* device specific resource */
3893                 reg = pci_iov_resource_bar(dev, resno, type);
3894                 if (reg)
3895                         return reg;
3896         }
3897
3898         dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
3899         return 0;
3900 }
3901
3902 /* Some architectures require additional programming to enable VGA */
3903 static arch_set_vga_state_t arch_set_vga_state;
3904
3905 void __init pci_register_set_vga_state(arch_set_vga_state_t func)
3906 {
3907         arch_set_vga_state = func;      /* NULL disables */
3908 }
3909
3910 static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
3911                       unsigned int command_bits, u32 flags)
3912 {
3913         if (arch_set_vga_state)
3914                 return arch_set_vga_state(dev, decode, command_bits,
3915                                                 flags);
3916         return 0;
3917 }
3918
3919 /**
3920  * pci_set_vga_state - set VGA decode state on device and parents if requested
3921  * @dev: the PCI device
3922  * @decode: true = enable decoding, false = disable decoding
3923  * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
3924  * @flags: traverse ancestors and change bridges
3925  * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
3926  */
3927 int pci_set_vga_state(struct pci_dev *dev, bool decode,
3928                       unsigned int command_bits, u32 flags)
3929 {
3930         struct pci_bus *bus;
3931         struct pci_dev *bridge;
3932         u16 cmd;
3933         int rc;
3934
3935         WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) & (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
3936
3937         /* ARCH specific VGA enables */
3938         rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
3939         if (rc)
3940                 return rc;
3941
3942         if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
3943                 pci_read_config_word(dev, PCI_COMMAND, &cmd);
3944                 if (decode == true)
3945                         cmd |= command_bits;
3946                 else
3947                         cmd &= ~command_bits;
3948                 pci_write_config_word(dev, PCI_COMMAND, cmd);
3949         }
3950
3951         if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
3952                 return 0;
3953
3954         bus = dev->bus;
3955         while (bus) {
3956                 bridge = bus->self;
3957                 if (bridge) {
3958                         pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
3959                                              &cmd);
3960                         if (decode == true)
3961                                 cmd |= PCI_BRIDGE_CTL_VGA;
3962                         else
3963                                 cmd &= ~PCI_BRIDGE_CTL_VGA;
3964                         pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
3965                                               cmd);
3966                 }
3967                 bus = bus->parent;
3968         }
3969         return 0;
3970 }
3971
3972 #define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
3973 static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
3974 static DEFINE_SPINLOCK(resource_alignment_lock);
3975
3976 /**
3977  * pci_specified_resource_alignment - get resource alignment specified by user.
3978  * @dev: the PCI device to get
3979  *
3980  * RETURNS: Resource alignment if it is specified.
3981  *          Zero if it is not specified.
3982  */
3983 static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
3984 {
3985         int seg, bus, slot, func, align_order, count;
3986         resource_size_t align = 0;
3987         char *p;
3988
3989         spin_lock(&resource_alignment_lock);
3990         p = resource_alignment_param;
3991         while (*p) {
3992                 count = 0;
3993                 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
3994                                                         p[count] == '@') {
3995                         p += count + 1;
3996                 } else {
3997                         align_order = -1;
3998                 }
3999                 if (sscanf(p, "%x:%x:%x.%x%n",
4000                         &seg, &bus, &slot, &func, &count) != 4) {
4001                         seg = 0;
4002                         if (sscanf(p, "%x:%x.%x%n",
4003                                         &bus, &slot, &func, &count) != 3) {
4004                                 /* Invalid format */
4005                                 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
4006                                         p);
4007                                 break;
4008                         }
4009                 }
4010                 p += count;
4011                 if (seg == pci_domain_nr(dev->bus) &&
4012                         bus == dev->bus->number &&
4013                         slot == PCI_SLOT(dev->devfn) &&
4014                         func == PCI_FUNC(dev->devfn)) {
4015                         if (align_order == -1) {
4016                                 align = PAGE_SIZE;
4017                         } else {
4018                                 align = 1 << align_order;
4019                         }
4020                         /* Found */
4021                         break;
4022                 }
4023                 if (*p != ';' && *p != ',') {
4024                         /* End of param or invalid format */
4025                         break;
4026                 }
4027                 p++;
4028         }
4029         spin_unlock(&resource_alignment_lock);
4030         return align;
4031 }
4032
4033 /*
4034  * This function disables memory decoding and releases memory resources
4035  * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
4036  * It also rounds up size to specified alignment.
4037  * Later on, the kernel will assign page-aligned memory resource back
4038  * to the device.
4039  */
4040 void pci_reassigndev_resource_alignment(struct pci_dev *dev)
4041 {
4042         int i;
4043         struct resource *r;
4044         resource_size_t align, size;
4045         u16 command;
4046
4047         /* check if specified PCI is target device to reassign */
4048         align = pci_specified_resource_alignment(dev);
4049         if (!align)
4050                 return;
4051
4052         if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
4053             (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
4054                 dev_warn(&dev->dev,
4055                         "Can't reassign resources to host bridge.\n");
4056                 return;
4057         }
4058
4059         dev_info(&dev->dev,
4060                 "Disabling memory decoding and releasing memory resources.\n");
4061         pci_read_config_word(dev, PCI_COMMAND, &command);
4062         command &= ~PCI_COMMAND_MEMORY;
4063         pci_write_config_word(dev, PCI_COMMAND, command);
4064
4065         for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
4066                 r = &dev->resource[i];
4067                 if (!(r->flags & IORESOURCE_MEM))
4068                         continue;
4069                 size = resource_size(r);
4070                 if (size < align) {
4071                         size = align;
4072                         dev_info(&dev->dev,
4073                                 "Rounding up size of resource #%d to %#llx.\n",
4074                                 i, (unsigned long long)size);
4075                 }
4076                 r->end = size - 1;
4077                 r->start = 0;
4078         }
4079         /* Need to disable bridge's resource window,
4080          * to enable the kernel to reassign new resource
4081          * window later on.
4082          */
4083         if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
4084             (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
4085                 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
4086                         r = &dev->resource[i];
4087                         if (!(r->flags & IORESOURCE_MEM))
4088                                 continue;
4089                         r->end = resource_size(r) - 1;
4090                         r->start = 0;
4091                 }
4092                 pci_disable_bridge_window(dev);
4093         }
4094 }
4095
4096 static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
4097 {
4098         if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
4099                 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
4100         spin_lock(&resource_alignment_lock);
4101         strncpy(resource_alignment_param, buf, count);
4102         resource_alignment_param[count] = '\0';
4103         spin_unlock(&resource_alignment_lock);
4104         return count;
4105 }
4106
4107 static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
4108 {
4109         size_t count;
4110         spin_lock(&resource_alignment_lock);
4111         count = snprintf(buf, size, "%s", resource_alignment_param);
4112         spin_unlock(&resource_alignment_lock);
4113         return count;
4114 }
4115
4116 static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
4117 {
4118         return pci_get_resource_alignment_param(buf, PAGE_SIZE);
4119 }
4120
4121 static ssize_t pci_resource_alignment_store(struct bus_type *bus,
4122                                         const char *buf, size_t count)
4123 {
4124         return pci_set_resource_alignment_param(buf, count);
4125 }
4126
4127 BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
4128                                         pci_resource_alignment_store);
4129
4130 static int __init pci_resource_alignment_sysfs_init(void)
4131 {
4132         return bus_create_file(&pci_bus_type,
4133                                         &bus_attr_resource_alignment);
4134 }
4135
4136 late_initcall(pci_resource_alignment_sysfs_init);
4137
4138 static void pci_no_domains(void)
4139 {
4140 #ifdef CONFIG_PCI_DOMAINS
4141         pci_domains_supported = 0;
4142 #endif
4143 }
4144
4145 /**
4146  * pci_ext_cfg_avail - can we access extended PCI config space?
4147  *
4148  * Returns 1 if we can access PCI extended config space (offsets
4149  * greater than 0xff). This is the default implementation. Architecture
4150  * implementations can override this.
4151  */
4152 int __weak pci_ext_cfg_avail(void)
4153 {
4154         return 1;
4155 }
4156
4157 void __weak pci_fixup_cardbus(struct pci_bus *bus)
4158 {
4159 }
4160 EXPORT_SYMBOL(pci_fixup_cardbus);
4161
4162 static int __init pci_setup(char *str)
4163 {
4164         while (str) {
4165                 char *k = strchr(str, ',');
4166                 if (k)
4167                         *k++ = 0;
4168                 if (*str && (str = pcibios_setup(str)) && *str) {
4169                         if (!strcmp(str, "nomsi")) {
4170                                 pci_no_msi();
4171                         } else if (!strcmp(str, "noaer")) {
4172                                 pci_no_aer();
4173                         } else if (!strncmp(str, "realloc=", 8)) {
4174                                 pci_realloc_get_opt(str + 8);
4175                         } else if (!strncmp(str, "realloc", 7)) {
4176                                 pci_realloc_get_opt("on");
4177                         } else if (!strcmp(str, "nodomains")) {
4178                                 pci_no_domains();
4179                         } else if (!strncmp(str, "noari", 5)) {
4180                                 pcie_ari_disabled = true;
4181                         } else if (!strncmp(str, "cbiosize=", 9)) {
4182                                 pci_cardbus_io_size = memparse(str + 9, &str);
4183                         } else if (!strncmp(str, "cbmemsize=", 10)) {
4184                                 pci_cardbus_mem_size = memparse(str + 10, &str);
4185                         } else if (!strncmp(str, "resource_alignment=", 19)) {
4186                                 pci_set_resource_alignment_param(str + 19,
4187                                                         strlen(str + 19));
4188                         } else if (!strncmp(str, "ecrc=", 5)) {
4189                                 pcie_ecrc_get_policy(str + 5);
4190                         } else if (!strncmp(str, "hpiosize=", 9)) {
4191                                 pci_hotplug_io_size = memparse(str + 9, &str);
4192                         } else if (!strncmp(str, "hpmemsize=", 10)) {
4193                                 pci_hotplug_mem_size = memparse(str + 10, &str);
4194                         } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
4195                                 pcie_bus_config = PCIE_BUS_TUNE_OFF;
4196                         } else if (!strncmp(str, "pcie_bus_safe", 13)) {
4197                                 pcie_bus_config = PCIE_BUS_SAFE;
4198                         } else if (!strncmp(str, "pcie_bus_perf", 13)) {
4199                                 pcie_bus_config = PCIE_BUS_PERFORMANCE;
4200                         } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
4201                                 pcie_bus_config = PCIE_BUS_PEER2PEER;
4202                         } else if (!strncmp(str, "pcie_scan_all", 13)) {
4203                                 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
4204                         } else {
4205                                 printk(KERN_ERR "PCI: Unknown option `%s'\n",
4206                                                 str);
4207                         }
4208                 }
4209                 str = k;
4210         }
4211         return 0;
4212 }
4213 early_param("pci", pci_setup);
4214
4215 EXPORT_SYMBOL(pci_reenable_device);
4216 EXPORT_SYMBOL(pci_enable_device_io);
4217 EXPORT_SYMBOL(pci_enable_device_mem);
4218 EXPORT_SYMBOL(pci_enable_device);
4219 EXPORT_SYMBOL(pcim_enable_device);
4220 EXPORT_SYMBOL(pcim_pin_device);
4221 EXPORT_SYMBOL(pci_disable_device);
4222 EXPORT_SYMBOL(pci_find_capability);
4223 EXPORT_SYMBOL(pci_bus_find_capability);
4224 EXPORT_SYMBOL(pci_release_regions);
4225 EXPORT_SYMBOL(pci_request_regions);
4226 EXPORT_SYMBOL(pci_request_regions_exclusive);
4227 EXPORT_SYMBOL(pci_release_region);
4228 EXPORT_SYMBOL(pci_request_region);
4229 EXPORT_SYMBOL(pci_request_region_exclusive);
4230 EXPORT_SYMBOL(pci_release_selected_regions);
4231 EXPORT_SYMBOL(pci_request_selected_regions);
4232 EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
4233 EXPORT_SYMBOL(pci_set_master);
4234 EXPORT_SYMBOL(pci_clear_master);
4235 EXPORT_SYMBOL(pci_set_mwi);
4236 EXPORT_SYMBOL(pci_try_set_mwi);
4237 EXPORT_SYMBOL(pci_clear_mwi);
4238 EXPORT_SYMBOL_GPL(pci_intx);
4239 EXPORT_SYMBOL(pci_assign_resource);
4240 EXPORT_SYMBOL(pci_find_parent_resource);
4241 EXPORT_SYMBOL(pci_select_bars);
4242
4243 EXPORT_SYMBOL(pci_set_power_state);
4244 EXPORT_SYMBOL(pci_save_state);
4245 EXPORT_SYMBOL(pci_restore_state);
4246 EXPORT_SYMBOL(pci_pme_capable);
4247 EXPORT_SYMBOL(pci_pme_active);
4248 EXPORT_SYMBOL(pci_wake_from_d3);
4249 EXPORT_SYMBOL(pci_target_state);
4250 EXPORT_SYMBOL(pci_prepare_to_sleep);
4251 EXPORT_SYMBOL(pci_back_from_sleep);
4252 EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);