ipv6: judge the accept_ra_defrtr before calling rt6_route_rcv
[deliverable/linux.git] / drivers / pci / pci.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * PCI Bus Services, see include/linux/pci.h for further explanation.
3 *
4 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
5 * David Mosberger-Tang
6 *
7 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
8 */
9
10#include <linux/kernel.h>
11#include <linux/delay.h>
12#include <linux/init.h>
13#include <linux/pci.h>
075c1771 14#include <linux/pm.h>
5a0e3ad6 15#include <linux/slab.h>
1da177e4
LT
16#include <linux/module.h>
17#include <linux/spinlock.h>
4e57b681 18#include <linux/string.h>
229f5afd 19#include <linux/log2.h>
7d715a6c 20#include <linux/pci-aspm.h>
c300bd2f 21#include <linux/pm_wakeup.h>
8dd7f803 22#include <linux/interrupt.h>
32a9a682 23#include <linux/device.h>
b67ea761 24#include <linux/pm_runtime.h>
608c3881 25#include <linux/pci_hotplug.h>
284f5f9d 26#include <asm-generic/pci-bridge.h>
32a9a682 27#include <asm/setup.h>
bc56b9e0 28#include "pci.h"
1da177e4 29
00240c38
AS
30const char *pci_power_names[] = {
31 "error", "D0", "D1", "D2", "D3hot", "D3cold", "unknown",
32};
33EXPORT_SYMBOL_GPL(pci_power_names);
34
93177a74
RW
35int isa_dma_bridge_buggy;
36EXPORT_SYMBOL(isa_dma_bridge_buggy);
37
38int pci_pci_problems;
39EXPORT_SYMBOL(pci_pci_problems);
40
1ae861e6
RW
41unsigned int pci_pm_d3_delay;
42
df17e62e
MG
43static void pci_pme_list_scan(struct work_struct *work);
44
45static LIST_HEAD(pci_pme_list);
46static DEFINE_MUTEX(pci_pme_list_mutex);
47static DECLARE_DELAYED_WORK(pci_pme_work, pci_pme_list_scan);
48
49struct 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
1ae861e6
RW
56static 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}
1da177e4 65
32a2eea7
JG
66#ifdef CONFIG_PCI_DOMAINS
67int pci_domains_supported = 1;
68#endif
69
4516a618
AN
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 */
73unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
74unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
75
28760489
EB
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 */
79unsigned long pci_hotplug_io_size = DEFAULT_HOTPLUG_IO_SIZE;
80unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
81
5f39e670 82enum pcie_bus_config_types pcie_bus_config = PCIE_BUS_TUNE_OFF;
b03e7495 83
ac1aa47b
JB
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 */
15856ad5 90u8 pci_dfl_cache_line_size = L1_CACHE_BYTES >> 2;
ac1aa47b
JB
91u8 pci_cache_line_size;
92
96c55900
MS
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 */
97unsigned int pcibios_max_latency = 255;
98
6748dcc2
RW
99/* If set, the PCIe ARI capability will not be used. */
100static bool pcie_ari_disabled;
101
1da177e4
LT
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 */
96bde06a 109unsigned char pci_bus_max_busnr(struct pci_bus* bus)
1da177e4
LT
110{
111 struct list_head *tmp;
112 unsigned char max, n;
113
b918c62e 114 max = bus->busn_res.end;
1da177e4
LT
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}
b82db5ce 122EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
1da177e4 123
1684f5dd
AM
124#ifdef CONFIG_HAS_IOMEM
125void __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}
137EXPORT_SYMBOL_GPL(pci_ioremap_bar);
138#endif
139
687d5fe3
ME
140#define PCI_FIND_CAP_TTL 48
141
142static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
143 u8 pos, int cap, int *ttl)
24a4e377
RD
144{
145 u8 id;
24a4e377 146
687d5fe3 147 while ((*ttl)--) {
24a4e377
RD
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
687d5fe3
ME
163static 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
24a4e377
RD
171int 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}
176EXPORT_SYMBOL_GPL(pci_find_next_capability);
177
d3bac118
ME
178static int __pci_bus_find_cap_start(struct pci_bus *bus,
179 unsigned int devfn, u8 hdr_type)
1da177e4
LT
180{
181 u16 status;
1da177e4
LT
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:
d3bac118 190 return PCI_CAPABILITY_LIST;
1da177e4 191 case PCI_HEADER_TYPE_CARDBUS:
d3bac118 192 return PCI_CB_CAPABILITY_LIST;
1da177e4
LT
193 default:
194 return 0;
195 }
d3bac118
ME
196
197 return 0;
1da177e4
LT
198}
199
200/**
f7625980 201 * pci_find_capability - query for devices' capabilities
1da177e4
LT
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 *
f7625980
BH
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
1da177e4 214 * %PCI_CAP_ID_MSI Message Signalled Interrupts
f7625980 215 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
1da177e4
LT
216 * %PCI_CAP_ID_PCIX PCI-X
217 * %PCI_CAP_ID_EXP PCI Express
218 */
219int pci_find_capability(struct pci_dev *dev, int cap)
220{
d3bac118
ME
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;
1da177e4
LT
228}
229
230/**
f7625980 231 * pci_bus_find_capability - query for devices' capabilities
1da177e4
LT
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
f7625980 237 * pci_dev structure set up yet.
1da177e4
LT
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 */
243int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
244{
d3bac118 245 int pos;
1da177e4
LT
246 u8 hdr_type;
247
248 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
249
d3bac118
ME
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;
1da177e4
LT
255}
256
257/**
44a9a36f 258 * pci_find_next_ext_capability - Find an extended capability
1da177e4 259 * @dev: PCI device to query
44a9a36f 260 * @start: address at which to start looking (0 to start at beginning of list)
1da177e4
LT
261 * @cap: capability code
262 *
44a9a36f 263 * Returns the address of the next matching extended capability structure
1da177e4 264 * within the device's PCI configuration space or 0 if the device does
44a9a36f
BH
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.
1da177e4 267 */
44a9a36f 268int pci_find_next_ext_capability(struct pci_dev *dev, int start, int cap)
1da177e4
LT
269{
270 u32 header;
557848c3
ZY
271 int ttl;
272 int pos = PCI_CFG_SPACE_SIZE;
1da177e4 273
557848c3
ZY
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)
1da177e4
LT
278 return 0;
279
44a9a36f
BH
280 if (start)
281 pos = start;
282
1da177e4
LT
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) {
44a9a36f 294 if (PCI_EXT_CAP_ID(header) == cap && pos != start)
1da177e4
LT
295 return pos;
296
297 pos = PCI_EXT_CAP_NEXT(header);
557848c3 298 if (pos < PCI_CFG_SPACE_SIZE)
1da177e4
LT
299 break;
300
301 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
302 break;
303 }
304
305 return 0;
306}
44a9a36f
BH
307EXPORT_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 */
323int pci_find_ext_capability(struct pci_dev *dev, int cap)
324{
325 return pci_find_next_ext_capability(dev, 0, cap);
326}
3a720d72 327EXPORT_SYMBOL_GPL(pci_find_ext_capability);
1da177e4 328
687d5fe3
ME
329static 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
47a4d5be
BG
349 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
350 pos + PCI_CAP_LIST_NEXT,
687d5fe3
ME
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 */
369int 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}
373EXPORT_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 */
386int 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}
396EXPORT_SYMBOL_GPL(pci_find_ht_capability);
397
1da177e4
LT
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 */
407struct resource *
408pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
409{
410 const struct pci_bus *bus = dev->bus;
411 int i;
89a74ecc 412 struct resource *best = NULL, *r;
1da177e4 413
89a74ecc 414 pci_bus_for_each_resource(bus, r, i) {
1da177e4
LT
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 */
8c8def26
LT
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;
1da177e4
LT
429 }
430 return best;
431}
432
064b53db
JL
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 */
ad668599 440static void
064b53db
JL
441pci_restore_bars(struct pci_dev *dev)
442{
bc5f5a82 443 int i;
064b53db 444
bc5f5a82 445 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
14add80b 446 pci_update_resource(dev, i);
064b53db
JL
447}
448
961d9120
RW
449static struct pci_platform_pm_ops *pci_platform_pm;
450
451int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
452{
eb9d0fe4 453 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
d2e5f0c1 454 || !ops->sleep_wake)
961d9120
RW
455 return -EINVAL;
456 pci_platform_pm = ops;
457 return 0;
458}
459
460static 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
465static 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
471static 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}
8f7020d3 476
eb9d0fe4
RW
477static 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
b67ea761
RW
483static 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
1da177e4 489/**
44e4e66e
RW
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.
44e4e66e 493 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
1da177e4 494 *
44e4e66e
RW
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.
1da177e4 501 */
f00a20ef 502static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
1da177e4 503{
337001b6 504 u16 pmcsr;
44e4e66e 505 bool need_restore = false;
1da177e4 506
4a865905
RW
507 /* Check if we're already there */
508 if (dev->current_state == state)
509 return 0;
510
337001b6 511 if (!dev->pm_cap)
cca03dec
AL
512 return -EIO;
513
44e4e66e
RW
514 if (state < PCI_D0 || state > PCI_D3hot)
515 return -EINVAL;
516
1da177e4 517 /* Validate current state:
f7625980 518 * Can enter D0 from any state, but if we can only go deeper
1da177e4
LT
519 * to sleep if we're already in a low power state
520 */
4a865905 521 if (state != PCI_D0 && dev->current_state <= PCI_D3cold
44e4e66e 522 && dev->current_state > state) {
80ccba11
BH
523 dev_err(&dev->dev, "invalid power transition "
524 "(from state %d to %d)\n", dev->current_state, state);
1da177e4 525 return -EINVAL;
44e4e66e 526 }
1da177e4 527
1da177e4 528 /* check if this device supports the desired state */
337001b6
RW
529 if ((state == PCI_D1 && !dev->d1_support)
530 || (state == PCI_D2 && !dev->d2_support))
3fe9d19f 531 return -EIO;
1da177e4 532
337001b6 533 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
064b53db 534
32a36585 535 /* If we're (effectively) in D3, force entire word to 0.
1da177e4
LT
536 * This doesn't affect PME_Status, disables PME_En, and
537 * sets PowerState to 0.
538 */
32a36585 539 switch (dev->current_state) {
d3535fbb
JL
540 case PCI_D0:
541 case PCI_D1:
542 case PCI_D2:
543 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
544 pmcsr |= state;
545 break;
f62795f1
RW
546 case PCI_D3hot:
547 case PCI_D3cold:
32a36585
JL
548 case PCI_UNKNOWN: /* Boot-up */
549 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
f00a20ef 550 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
44e4e66e 551 need_restore = true;
32a36585 552 /* Fall-through: force to D0 */
32a36585 553 default:
d3535fbb 554 pmcsr = 0;
32a36585 555 break;
1da177e4
LT
556 }
557
558 /* enter specified state */
337001b6 559 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
1da177e4
LT
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)
1ae861e6 564 pci_dev_d3_sleep(dev);
1da177e4 565 else if (state == PCI_D2 || dev->current_state == PCI_D2)
aa8c6c93 566 udelay(PCI_PM_D2_DELAY);
1da177e4 567
e13cdbd7
RW
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);
064b53db 573
448bd857
HY
574 /*
575 * According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
064b53db
JL
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
f00a20ef 590 if (dev->bus->self)
7d715a6c
SL
591 pcie_aspm_pm_state_change(dev->bus->self);
592
1da177e4
LT
593 return 0;
594}
595
44e4e66e
RW
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.
f06fc0b6 600 * @state: State to cache in case the device doesn't have the PM capability
44e4e66e 601 */
73410429 602void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
44e4e66e 603{
337001b6 604 if (dev->pm_cap) {
44e4e66e
RW
605 u16 pmcsr;
606
448bd857
HY
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 }
337001b6 617 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
44e4e66e 618 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
f06fc0b6
RW
619 } else {
620 dev->current_state = state;
44e4e66e
RW
621 }
622}
623
db288c9c
RW
624/**
625 * pci_power_up - Put the given device into D0 forcibly
626 * @dev: PCI device to power up
627 */
628void 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
0e5dd46b
RW
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 */
642static 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);
769ba721 650 } else
0e5dd46b 651 error = -ENODEV;
769ba721
RW
652
653 if (error && !dev->pm_cap) /* Fall back to PCI_D0 */
654 dev->current_state = PCI_D0;
0e5dd46b
RW
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 */
664static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
665{
448bd857 666 if (state == PCI_D0) {
0e5dd46b 667 pci_platform_power_transition(dev, PCI_D0);
448bd857
HY
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 */
693static 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 */
706static 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);
0e5dd46b
RW
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 */
719int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
720{
448bd857
HY
721 int ret;
722
db288c9c 723 if (state <= PCI_D0)
448bd857
HY
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;
0e5dd46b
RW
730}
731EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
732
44e4e66e
RW
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 *
877d0310 738 * Transition a device to a new power state, using the platform firmware and/or
44e4e66e
RW
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 */
748int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
749{
337001b6 750 int error;
44e4e66e
RW
751
752 /* bound the state we're entering */
448bd857
HY
753 if (state > PCI_D3cold)
754 state = PCI_D3cold;
44e4e66e
RW
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
db288c9c
RW
765 /* Check if we're already there */
766 if (dev->current_state == state)
767 return 0;
768
0e5dd46b
RW
769 __pci_start_power_transition(dev, state);
770
979b1791
AC
771 /* This device is quirked not to be put into D3, so
772 don't put it in D3 */
448bd857 773 if (state >= PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
979b1791 774 return 0;
44e4e66e 775
448bd857
HY
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);
44e4e66e 782
0e5dd46b
RW
783 if (!__pci_complete_power_transition(dev, state))
784 error = 0;
1a680b7c
NC
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);
44e4e66e
RW
791
792 return error;
793}
794
1da177e4
LT
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
805pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
806{
ab826ca4 807 pci_power_t ret;
0f64474b 808
728cdb75 809 if (!dev->pm_cap)
1da177e4
LT
810 return PCI_D0;
811
961d9120
RW
812 ret = platform_pci_choose_state(dev);
813 if (ret != PCI_POWER_ERROR)
814 return ret;
ca078bae
PM
815
816 switch (state.event) {
817 case PM_EVENT_ON:
818 return PCI_D0;
819 case PM_EVENT_FREEZE:
b887d2e6
DB
820 case PM_EVENT_PRETHAW:
821 /* REVISIT both freeze and pre-thaw "should" use D0 */
ca078bae 822 case PM_EVENT_SUSPEND:
3a2d5b70 823 case PM_EVENT_HIBERNATE:
ca078bae 824 return PCI_D3hot;
1da177e4 825 default:
80ccba11
BH
826 dev_info(&dev->dev, "unrecognized suspend event %d\n",
827 state.event);
1da177e4
LT
828 BUG();
829 }
830 return PCI_D0;
831}
832
833EXPORT_SYMBOL(pci_choose_state);
834
89858517
YZ
835#define PCI_EXP_SAVE_REGS 7
836
1b6b8ce2 837
34a4876e
YL
838static 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;
34a4876e 842
b67bfe0d 843 hlist_for_each_entry(tmp, &pci_dev->saved_cap_space, next) {
34a4876e
YL
844 if (tmp->cap.cap_nr == cap)
845 return tmp;
846 }
847 return NULL;
848}
849
b56a5a23
MT
850static int pci_save_pcie_state(struct pci_dev *dev)
851{
59875ae4 852 int i = 0;
b56a5a23
MT
853 struct pci_cap_saved_state *save_state;
854 u16 *cap;
855
59875ae4 856 if (!pci_is_pcie(dev))
b56a5a23
MT
857 return 0;
858
9f35575d 859 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
b56a5a23 860 if (!save_state) {
e496b617 861 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
b56a5a23
MT
862 return -ENOMEM;
863 }
63f4898a 864
59875ae4
JL
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++]);
9cb604ed 873
b56a5a23
MT
874 return 0;
875}
876
877static void pci_restore_pcie_state(struct pci_dev *dev)
878{
59875ae4 879 int i = 0;
b56a5a23
MT
880 struct pci_cap_saved_state *save_state;
881 u16 *cap;
882
883 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
59875ae4 884 if (!save_state)
9cb604ed
MS
885 return;
886
59875ae4
JL
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++]);
b56a5a23
MT
895}
896
cc692a5f
SH
897
898static int pci_save_pcix_state(struct pci_dev *dev)
899{
63f4898a 900 int pos;
cc692a5f 901 struct pci_cap_saved_state *save_state;
cc692a5f
SH
902
903 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
904 if (pos <= 0)
905 return 0;
906
f34303de 907 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
cc692a5f 908 if (!save_state) {
e496b617 909 dev_err(&dev->dev, "buffer not found in %s\n", __func__);
cc692a5f
SH
910 return -ENOMEM;
911 }
cc692a5f 912
24a4742f
AW
913 pci_read_config_word(dev, pos + PCI_X_CMD,
914 (u16 *)save_state->cap.data);
63f4898a 915
cc692a5f
SH
916 return 0;
917}
918
919static 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;
24a4742f 929 cap = (u16 *)&save_state->cap.data[0];
cc692a5f
SH
930
931 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
cc692a5f
SH
932}
933
934
1da177e4
LT
935/**
936 * pci_save_state - save the PCI configuration space of a device before suspending
937 * @dev: - PCI device that we're dealing with
1da177e4
LT
938 */
939int
940pci_save_state(struct pci_dev *dev)
941{
942 int i;
943 /* XXX: 100% dword access ok here? */
944 for (i = 0; i < 16; i++)
9e0b5b2c 945 pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
aa8c6c93 946 dev->state_saved = true;
b56a5a23
MT
947 if ((i = pci_save_pcie_state(dev)) != 0)
948 return i;
cc692a5f
SH
949 if ((i = pci_save_pcix_state(dev)) != 0)
950 return i;
1da177e4
LT
951 return 0;
952}
953
ebfc5b80
RW
954static 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
a6cb9ee7
RW
978static void pci_restore_config_space_range(struct pci_dev *pdev,
979 int start, int end, int retry)
ebfc5b80
RW
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
a6cb9ee7
RW
989static 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
f7625980 1001/**
1da177e4
LT
1002 * pci_restore_state - Restore the saved state of a PCI device
1003 * @dev: - PCI device that we're dealing with
1da177e4 1004 */
1d3c16a8 1005void pci_restore_state(struct pci_dev *dev)
1da177e4 1006{
c82f63e4 1007 if (!dev->state_saved)
1d3c16a8 1008 return;
4b77b0a2 1009
b56a5a23
MT
1010 /* PCI Express register must be restored first */
1011 pci_restore_pcie_state(dev);
1900ca13 1012 pci_restore_ats_state(dev);
b56a5a23 1013
a6cb9ee7 1014 pci_restore_config_space(dev);
ebfc5b80 1015
cc692a5f 1016 pci_restore_pcix_state(dev);
41017f0c 1017 pci_restore_msi_state(dev);
8c5cdb6a 1018 pci_restore_iov_state(dev);
8fed4b65 1019
4b77b0a2 1020 dev->state_saved = false;
1da177e4
LT
1021}
1022
ffbdd3f7
AW
1023struct 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 *
f7625980 1033 * Return NULL if no state or error.
ffbdd3f7
AW
1034 */
1035struct 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;
ffbdd3f7
AW
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
b67bfe0d 1047 hlist_for_each_entry(tmp, &dev->saved_cap_space, next)
ffbdd3f7
AW
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;
b67bfe0d 1058 hlist_for_each_entry(tmp, &dev->saved_cap_space, next) {
ffbdd3f7
AW
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}
1067EXPORT_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 */
1074int 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}
1102EXPORT_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 */
1110int 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}
1118EXPORT_SYMBOL_GPL(pci_load_and_free_saved_state);
1119
38cc1302
HS
1120static 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/**
0b62e13b 1136 * pci_reenable_device - Resume abandoned device
38cc1302
HS
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 */
0b62e13b 1142int pci_reenable_device(struct pci_dev *dev)
38cc1302 1143{
296ccb08 1144 if (pci_is_enabled(dev))
38cc1302
HS
1145 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
1146 return 0;
1147}
1148
928bea96
YL
1149static void pci_enable_bridge(struct pci_dev *dev)
1150{
79272138 1151 struct pci_dev *bridge;
928bea96
YL
1152 int retval;
1153
79272138
BH
1154 bridge = pci_upstream_bridge(dev);
1155 if (bridge)
1156 pci_enable_bridge(bridge);
928bea96 1157
cf3e1feb 1158 if (pci_is_enabled(dev)) {
fbeeb822 1159 if (!dev->is_busmaster)
cf3e1feb 1160 pci_set_master(dev);
928bea96 1161 return;
cf3e1feb
YL
1162 }
1163
928bea96
YL
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
b4b4fbba 1171static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
1da177e4 1172{
79272138 1173 struct pci_dev *bridge;
1da177e4 1174 int err;
b718989d 1175 int i, bars = 0;
1da177e4 1176
97c145f7
JB
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
cc7ba39b 1189 if (atomic_inc_return(&dev->enable_cnt) > 1)
9fb625c3
HS
1190 return 0; /* already enabled */
1191
79272138
BH
1192 bridge = pci_upstream_bridge(dev);
1193 if (bridge)
1194 pci_enable_bridge(bridge);
928bea96 1195
497f16f2
YL
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++)
b718989d
BH
1201 if (dev->resource[i].flags & flags)
1202 bars |= (1 << i);
1203
38cc1302 1204 err = do_pci_enable_device(dev, bars);
95a62965 1205 if (err < 0)
38cc1302 1206 atomic_dec(&dev->enable_cnt);
9fb625c3 1207 return err;
1da177e4
LT
1208}
1209
b718989d
BH
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 */
1218int pci_enable_device_io(struct pci_dev *dev)
1219{
b4b4fbba 1220 return pci_enable_device_flags(dev, IORESOURCE_IO);
b718989d
BH
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 */
1231int pci_enable_device_mem(struct pci_dev *dev)
1232{
b4b4fbba 1233 return pci_enable_device_flags(dev, IORESOURCE_MEM);
b718989d
BH
1234}
1235
bae94d02
IPG
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 */
1247int pci_enable_device(struct pci_dev *dev)
1248{
b4b4fbba 1249 return pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
bae94d02
IPG
1250}
1251
9ac7849e
TH
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 */
1258struct pci_devres {
7f375f32
TH
1259 unsigned int enabled:1;
1260 unsigned int pinned:1;
9ac7849e
TH
1261 unsigned int orig_intx:1;
1262 unsigned int restore_intx:1;
1263 u32 region_mask;
1264};
1265
1266static 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
7f375f32 1284 if (this->enabled && !this->pinned)
9ac7849e
TH
1285 pci_disable_device(dev);
1286}
1287
1288static 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
1302static 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 */
1315int 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;
b95d58ea
TH
1323 if (dr->enabled)
1324 return 0;
9ac7849e
TH
1325
1326 rc = pci_enable_device(pdev);
1327 if (!rc) {
1328 pdev->is_managed = 1;
7f375f32 1329 dr->enabled = 1;
9ac7849e
TH
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 */
1342void pcim_pin_device(struct pci_dev *pdev)
1343{
1344 struct pci_devres *dr;
1345
1346 dr = find_pci_dr(pdev);
7f375f32 1347 WARN_ON(!dr || !dr->enabled);
9ac7849e 1348 if (dr)
7f375f32 1349 dr->pinned = 1;
9ac7849e
TH
1350}
1351
eca0d467
MG
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 */
1360int __weak pcibios_add_device (struct pci_dev *dev)
1361{
1362 return 0;
1363}
1364
6ae32c53
SO
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 */
1373void __weak pcibios_release_device(struct pci_dev *dev) {}
1374
1da177e4
LT
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 */
d6d88c83 1383void __weak pcibios_disable_device (struct pci_dev *dev) {}
1da177e4 1384
fa58d305
RW
1385static 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 */
1405void pci_disable_enabled_device(struct pci_dev *dev)
1406{
296ccb08 1407 if (pci_is_enabled(dev))
fa58d305
RW
1408 do_pci_disable_device(dev);
1409}
1410
1da177e4
LT
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.
bae94d02
IPG
1417 *
1418 * Note we don't actually disable the device until all callers of
ee6583f6 1419 * pci_enable_device() have called pci_disable_device().
1da177e4
LT
1420 */
1421void
1422pci_disable_device(struct pci_dev *dev)
1423{
9ac7849e 1424 struct pci_devres *dr;
99dc804d 1425
9ac7849e
TH
1426 dr = find_pci_dr(dev);
1427 if (dr)
7f375f32 1428 dr->enabled = 0;
9ac7849e 1429
fd6dceab
KK
1430 dev_WARN_ONCE(&dev->dev, atomic_read(&dev->enable_cnt) <= 0,
1431 "disabling already-disabled device");
1432
cc7ba39b 1433 if (atomic_dec_return(&dev->enable_cnt) != 0)
bae94d02
IPG
1434 return;
1435
fa58d305 1436 do_pci_disable_device(dev);
1da177e4 1437
fa58d305 1438 dev->is_busmaster = 0;
1da177e4
LT
1439}
1440
f7bdd12d
BK
1441/**
1442 * pcibios_set_pcie_reset_state - set reset state for device dev
45e829ea 1443 * @dev: the PCIe device reset
f7bdd12d
BK
1444 * @state: Reset state to enter into
1445 *
1446 *
45e829ea 1447 * Sets the PCIe reset state for the device. This is the default
f7bdd12d
BK
1448 * implementation. Architecture implementations can override this.
1449 */
d6d88c83
BH
1450int __weak pcibios_set_pcie_reset_state(struct pci_dev *dev,
1451 enum pcie_reset_state state)
f7bdd12d
BK
1452{
1453 return -EINVAL;
1454}
1455
1456/**
1457 * pci_set_pcie_reset_state - set reset state for device dev
45e829ea 1458 * @dev: the PCIe device reset
f7bdd12d
BK
1459 * @state: Reset state to enter into
1460 *
1461 *
1462 * Sets the PCI reset state for the device.
1463 */
1464int 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
58ff4633
RW
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 */
1477bool 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
b67ea761
RW
1504/**
1505 * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
1506 * @dev: Device to handle.
379021d5 1507 * @pme_poll_reset: Whether or not to reset the device's pme_poll flag.
b67ea761
RW
1508 *
1509 * Check if @dev has generated PME and queue a resume request for it in that
1510 * case.
1511 */
379021d5 1512static int pci_pme_wakeup(struct pci_dev *dev, void *pme_poll_reset)
b67ea761 1513{
379021d5
RW
1514 if (pme_poll_reset && dev->pme_poll)
1515 dev->pme_poll = false;
1516
c125e96f 1517 if (pci_check_pme_status(dev)) {
c125e96f 1518 pci_wakeup_event(dev);
0f953bf6 1519 pm_request_resume(&dev->dev);
c125e96f 1520 }
b67ea761
RW
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 */
1528void pci_pme_wakeup_bus(struct pci_bus *bus)
1529{
1530 if (bus)
379021d5 1531 pci_walk_bus(bus, pci_pme_wakeup, (void *)true);
b67ea761
RW
1532}
1533
448bd857
HY
1534/**
1535 * pci_wakeup - Wake up a PCI device
ceaf5b5f 1536 * @pci_dev: Device to handle.
448bd857
HY
1537 * @ign: ignored parameter
1538 */
1539static 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 */
1550void pci_wakeup_bus(struct pci_bus *bus)
1551{
1552 if (bus)
1553 pci_walk_bus(bus, pci_wakeup, NULL);
1554}
1555
eb9d0fe4
RW
1556/**
1557 * pci_pme_capable - check the capability of PCI device to generate PME#
1558 * @dev: PCI device to handle.
eb9d0fe4
RW
1559 * @state: PCI state from which device will issue PME#.
1560 */
e5899e1b 1561bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
eb9d0fe4 1562{
337001b6 1563 if (!dev->pm_cap)
eb9d0fe4
RW
1564 return false;
1565
337001b6 1566 return !!(dev->pme_support & (1 << state));
eb9d0fe4
RW
1567}
1568
df17e62e
MG
1569static void pci_pme_list_scan(struct work_struct *work)
1570{
379021d5 1571 struct pci_pme_device *pme_dev, *n;
df17e62e
MG
1572
1573 mutex_lock(&pci_pme_list_mutex);
1574 if (!list_empty(&pci_pme_list)) {
379021d5
RW
1575 list_for_each_entry_safe(pme_dev, n, &pci_pme_list, list) {
1576 if (pme_dev->dev->pme_poll) {
71a83bd7
ZY
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;
379021d5
RW
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));
df17e62e
MG
1596 }
1597 mutex_unlock(&pci_pme_list_mutex);
1598}
1599
eb9d0fe4
RW
1600/**
1601 * pci_pme_active - enable or disable PCI device's PME# function
1602 * @dev: PCI device to handle.
eb9d0fe4
RW
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 */
5a6c9b60 1608void pci_pme_active(struct pci_dev *dev, bool enable)
eb9d0fe4
RW
1609{
1610 u16 pmcsr;
1611
ffaddbe8 1612 if (!dev->pme_support)
eb9d0fe4
RW
1613 return;
1614
337001b6 1615 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
eb9d0fe4
RW
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
337001b6 1621 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
eb9d0fe4 1622
6e965e0d
HY
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 */
df17e62e 1642
379021d5 1643 if (dev->pme_poll) {
df17e62e
MG
1644 struct pci_pme_device *pme_dev;
1645 if (enable) {
1646 pme_dev = kmalloc(sizeof(struct pci_pme_device),
1647 GFP_KERNEL);
0394cb19
BH
1648 if (!pme_dev) {
1649 dev_warn(&dev->dev, "can't enable PME#\n");
1650 return;
1651 }
df17e62e
MG
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
85b8582d 1672 dev_dbg(&dev->dev, "PME# %s\n", enable ? "enabled" : "disabled");
eb9d0fe4
RW
1673}
1674
1da177e4 1675/**
6cbf8214 1676 * __pci_enable_wake - enable PCI device as wakeup event source
075c1771
DB
1677 * @dev: PCI device affected
1678 * @state: PCI state from which device will issue wakeup events
6cbf8214 1679 * @runtime: True if the events are to be generated at run time
075c1771
DB
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)
eb9d0fe4 1687 * always require such platform hooks.
075c1771 1688 *
eb9d0fe4
RW
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
1da177e4 1694 */
6cbf8214
RW
1695int __pci_enable_wake(struct pci_dev *dev, pci_power_t state,
1696 bool runtime, bool enable)
1da177e4 1697{
5bcc2fb4 1698 int ret = 0;
075c1771 1699
6cbf8214 1700 if (enable && !runtime && !device_may_wakeup(&dev->dev))
eb9d0fe4 1701 return -EINVAL;
1da177e4 1702
e80bb09d
RW
1703 /* Don't do the same thing twice in a row for one device. */
1704 if (!!enable == !!dev->wakeup_prepared)
1705 return 0;
1706
eb9d0fe4
RW
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.
075c1771 1711 */
1da177e4 1712
5bcc2fb4
RW
1713 if (enable) {
1714 int error;
1da177e4 1715
5bcc2fb4
RW
1716 if (pci_pme_capable(dev, state))
1717 pci_pme_active(dev, true);
1718 else
1719 ret = 1;
6cbf8214
RW
1720 error = runtime ? platform_pci_run_wake(dev, true) :
1721 platform_pci_sleep_wake(dev, true);
5bcc2fb4
RW
1722 if (ret)
1723 ret = error;
e80bb09d
RW
1724 if (!ret)
1725 dev->wakeup_prepared = true;
5bcc2fb4 1726 } else {
6cbf8214
RW
1727 if (runtime)
1728 platform_pci_run_wake(dev, false);
1729 else
1730 platform_pci_sleep_wake(dev, false);
5bcc2fb4 1731 pci_pme_active(dev, false);
e80bb09d 1732 dev->wakeup_prepared = false;
5bcc2fb4 1733 }
1da177e4 1734
5bcc2fb4 1735 return ret;
eb9d0fe4 1736}
6cbf8214 1737EXPORT_SYMBOL(__pci_enable_wake);
1da177e4 1738
0235c4fc
RW
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 */
1753int 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
404cc2d8 1760/**
37139074
JB
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.
404cc2d8 1767 */
e5899e1b 1768pci_power_t pci_target_state(struct pci_dev *dev)
404cc2d8
RW
1769{
1770 pci_power_t target_state = PCI_D3hot;
404cc2d8
RW
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;
404cc2d8 1789 }
d2abdf62
RW
1790 } else if (!dev->pm_cap) {
1791 target_state = PCI_D0;
404cc2d8
RW
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 */
337001b6
RW
1798 if (dev->pme_support) {
1799 while (target_state
1800 && !(dev->pme_support & (1 << target_state)))
1801 target_state--;
404cc2d8
RW
1802 }
1803 }
1804
e5899e1b
RW
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 */
1816int 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
448bd857
HY
1824 /* D3cold during system suspend/hibernate is not supported */
1825 if (target_state > PCI_D3hot)
1826 target_state = PCI_D3hot;
1827
8efb8c76 1828 pci_enable_wake(dev, target_state, device_may_wakeup(&dev->dev));
c157dfa3 1829
404cc2d8
RW
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/**
443bd1c4 1839 * pci_back_from_sleep - turn PCI device on during system-wide transition into working state
404cc2d8
RW
1840 * @dev: Device to handle.
1841 *
88393161 1842 * Disable device's system wake-up capability and put it into D0.
404cc2d8
RW
1843 */
1844int 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
6cbf8214
RW
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 */
1857int 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
448bd857
HY
1865 dev->runtime_d3cold = target_state == PCI_D3cold;
1866
6cbf8214
RW
1867 __pci_enable_wake(dev, target_state, true, pci_dev_run_wake(dev));
1868
1869 error = pci_set_power_state(dev, target_state);
1870
448bd857 1871 if (error) {
6cbf8214 1872 __pci_enable_wake(dev, target_state, true, false);
448bd857
HY
1873 dev->runtime_d3cold = false;
1874 }
6cbf8214
RW
1875
1876 return error;
1877}
1878
b67ea761
RW
1879/**
1880 * pci_dev_run_wake - Check if device can generate run-time wake-up events.
1881 * @dev: Device to check.
1882 *
f7625980 1883 * Return true if the device itself is capable of generating wake-up events
b67ea761
RW
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 */
1887bool 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}
1912EXPORT_SYMBOL_GPL(pci_dev_run_wake);
1913
b3c32c4f
HY
1914void 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
1936void 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
eb9d0fe4
RW
1946/**
1947 * pci_pm_init - Initialize PM functions of given PCI device
1948 * @dev: PCI device to handle.
1949 */
1950void pci_pm_init(struct pci_dev *dev)
1951{
1952 int pm;
1953 u16 pmc;
1da177e4 1954
bb910a70 1955 pm_runtime_forbid(&dev->dev);
967577b0
HY
1956 pm_runtime_set_active(&dev->dev);
1957 pm_runtime_enable(&dev->dev);
a1e4d72c 1958 device_enable_async_suspend(&dev->dev);
e80bb09d 1959 dev->wakeup_prepared = false;
bb910a70 1960
337001b6 1961 dev->pm_cap = 0;
ffaddbe8 1962 dev->pme_support = 0;
337001b6 1963
eb9d0fe4
RW
1964 /* find PCI PM capability in list */
1965 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
1966 if (!pm)
50246dd4 1967 return;
eb9d0fe4
RW
1968 /* Check device's ability to generate PME# */
1969 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
075c1771 1970
eb9d0fe4
RW
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);
50246dd4 1974 return;
eb9d0fe4
RW
1975 }
1976
337001b6 1977 dev->pm_cap = pm;
1ae861e6 1978 dev->d3_delay = PCI_PM_D3_WAIT;
448bd857 1979 dev->d3cold_delay = PCI_PM_D3COLD_WAIT;
4f9c1397 1980 dev->d3cold_allowed = true;
337001b6
RW
1981
1982 dev->d1_support = false;
1983 dev->d2_support = false;
1984 if (!pci_no_d1d2(dev)) {
c9ed77ee 1985 if (pmc & PCI_PM_CAP_D1)
337001b6 1986 dev->d1_support = true;
c9ed77ee 1987 if (pmc & PCI_PM_CAP_D2)
337001b6 1988 dev->d2_support = true;
c9ed77ee
BH
1989
1990 if (dev->d1_support || dev->d2_support)
1991 dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
ec84f126
JB
1992 dev->d1_support ? " D1" : "",
1993 dev->d2_support ? " D2" : "");
337001b6
RW
1994 }
1995
1996 pmc &= PCI_PM_CAP_PME_MASK;
1997 if (pmc) {
10c3d71d
BH
1998 dev_printk(KERN_DEBUG, &dev->dev,
1999 "PME# supported from%s%s%s%s%s\n",
c9ed77ee
BH
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" : "");
337001b6 2005 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
379021d5 2006 dev->pme_poll = true;
eb9d0fe4
RW
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);
eb9d0fe4 2012 /* Disable the PME# generation functionality */
337001b6 2013 pci_pme_active(dev, false);
eb9d0fe4 2014 }
1da177e4
LT
2015}
2016
34a4876e
YL
2017static 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
63f4898a 2023/**
ce1be10b 2024 * pci_add_cap_save_buffer - allocate buffer for saving given capability registers
63f4898a
RW
2025 * @dev: the PCI device
2026 * @cap: the capability to allocate the buffer for
2027 * @size: requested size of the buffer
2028 */
2029static 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
24a4742f
AW
2043 save_state->cap.cap_nr = cap;
2044 save_state->cap.size = size;
63f4898a
RW
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 */
2054void pci_allocate_cap_save_buffers(struct pci_dev *dev)
2055{
2056 int error;
2057
89858517
YZ
2058 error = pci_add_cap_save_buffer(dev, PCI_CAP_ID_EXP,
2059 PCI_EXP_SAVE_REGS * sizeof(u16));
63f4898a
RW
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
f796841e
YL
2070void pci_free_cap_save_buffers(struct pci_dev *dev)
2071{
2072 struct pci_cap_saved_state *tmp;
b67bfe0d 2073 struct hlist_node *n;
f796841e 2074
b67bfe0d 2075 hlist_for_each_entry_safe(tmp, n, &dev->saved_cap_space, next)
f796841e
YL
2076 kfree(tmp);
2077}
2078
58c3a727 2079/**
31ab2476 2080 * pci_configure_ari - enable or disable ARI forwarding
58c3a727 2081 * @dev: the PCI device
b0cc6020
YW
2082 *
2083 * If @dev and its upstream bridge both support ARI, enable ARI in the
2084 * bridge. Otherwise, disable ARI in the bridge.
58c3a727 2085 */
31ab2476 2086void pci_configure_ari(struct pci_dev *dev)
58c3a727 2087{
58c3a727 2088 u32 cap;
8113587c 2089 struct pci_dev *bridge;
58c3a727 2090
6748dcc2 2091 if (pcie_ari_disabled || !pci_is_pcie(dev) || dev->devfn)
58c3a727
YZ
2092 return;
2093
8113587c 2094 bridge = dev->bus->self;
cb97ae34 2095 if (!bridge)
8113587c
ZY
2096 return;
2097
59875ae4 2098 pcie_capability_read_dword(bridge, PCI_EXP_DEVCAP2, &cap);
58c3a727
YZ
2099 if (!(cap & PCI_EXP_DEVCAP2_ARI))
2100 return;
2101
b0cc6020
YW
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 }
58c3a727
YZ
2111}
2112
b48d4425 2113/**
c463b8cb 2114 * pci_enable_ido - enable ID-based Ordering on a device
b48d4425
JB
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 */
2122void pci_enable_ido(struct pci_dev *dev, unsigned long type)
2123{
59875ae4 2124 u16 ctrl = 0;
b48d4425 2125
b48d4425 2126 if (type & PCI_EXP_IDO_REQUEST)
d2ab1fa6 2127 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
b48d4425 2128 if (type & PCI_EXP_IDO_COMPLETION)
d2ab1fa6 2129 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
59875ae4
JL
2130 if (ctrl)
2131 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2, ctrl);
b48d4425
JB
2132}
2133EXPORT_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 */
2140void pci_disable_ido(struct pci_dev *dev, unsigned long type)
2141{
59875ae4 2142 u16 ctrl = 0;
b48d4425 2143
b48d4425 2144 if (type & PCI_EXP_IDO_REQUEST)
d2ab1fa6 2145 ctrl |= PCI_EXP_DEVCTL2_IDO_REQ_EN;
b48d4425 2146 if (type & PCI_EXP_IDO_COMPLETION)
d2ab1fa6 2147 ctrl |= PCI_EXP_DEVCTL2_IDO_CMP_EN;
59875ae4
JL
2148 if (ctrl)
2149 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2, ctrl);
b48d4425
JB
2150}
2151EXPORT_SYMBOL(pci_disable_ido);
2152
48a92a81
JB
2153/**
2154 * pci_enable_obff - enable optimized buffer flush/fill
2155 * @dev: PCI device
2156 * @type: type of signaling to use
2157 *
2158 * Try to enable @type OBFF signaling on @dev. It will try using WAKE#
2159 * signaling if possible, falling back to message signaling only if
2160 * WAKE# isn't supported. @type should indicate whether the PCIe link
2161 * be brought out of L0s or L1 to send the message. It should be either
2162 * %PCI_EXP_OBFF_SIGNAL_ALWAYS or %PCI_OBFF_SIGNAL_L0.
2163 *
2164 * If your device can benefit from receiving all messages, even at the
2165 * power cost of bringing the link back up from a low power state, use
2166 * %PCI_EXP_OBFF_SIGNAL_ALWAYS. Otherwise, use %PCI_OBFF_SIGNAL_L0 (the
2167 * preferred type).
2168 *
2169 * RETURNS:
2170 * Zero on success, appropriate error number on failure.
2171 */
2172int pci_enable_obff(struct pci_dev *dev, enum pci_obff_signal_type type)
2173{
48a92a81
JB
2174 u32 cap;
2175 u16 ctrl;
2176 int ret;
2177
59875ae4 2178 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
d2ab1fa6 2179 if (!(cap & PCI_EXP_DEVCAP2_OBFF_MASK))
48a92a81
JB
2180 return -ENOTSUPP; /* no OBFF support at all */
2181
2182 /* Make sure the topology supports OBFF as well */
8291550f 2183 if (dev->bus->self) {
48a92a81
JB
2184 ret = pci_enable_obff(dev->bus->self, type);
2185 if (ret)
2186 return ret;
2187 }
2188
59875ae4 2189 pcie_capability_read_word(dev, PCI_EXP_DEVCTL2, &ctrl);
d2ab1fa6
BH
2190 if (cap & PCI_EXP_DEVCAP2_OBFF_WAKE)
2191 ctrl |= PCI_EXP_DEVCTL2_OBFF_WAKE_EN;
48a92a81
JB
2192 else {
2193 switch (type) {
2194 case PCI_EXP_OBFF_SIGNAL_L0:
d2ab1fa6
BH
2195 if (!(ctrl & PCI_EXP_DEVCTL2_OBFF_WAKE_EN))
2196 ctrl |= PCI_EXP_DEVCTL2_OBFF_MSGA_EN;
48a92a81
JB
2197 break;
2198 case PCI_EXP_OBFF_SIGNAL_ALWAYS:
d2ab1fa6
BH
2199 ctrl &= ~PCI_EXP_DEVCTL2_OBFF_WAKE_EN;
2200 ctrl |= PCI_EXP_DEVCTL2_OBFF_MSGB_EN;
48a92a81
JB
2201 break;
2202 default:
2203 WARN(1, "bad OBFF signal type\n");
2204 return -ENOTSUPP;
2205 }
2206 }
59875ae4 2207 pcie_capability_write_word(dev, PCI_EXP_DEVCTL2, ctrl);
48a92a81
JB
2208
2209 return 0;
2210}
2211EXPORT_SYMBOL(pci_enable_obff);
2212
2213/**
2214 * pci_disable_obff - disable optimized buffer flush/fill
2215 * @dev: PCI device
2216 *
2217 * Disable OBFF on @dev.
2218 */
2219void pci_disable_obff(struct pci_dev *dev)
2220{
d2ab1fa6
BH
2221 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2,
2222 PCI_EXP_DEVCTL2_OBFF_WAKE_EN);
48a92a81
JB
2223}
2224EXPORT_SYMBOL(pci_disable_obff);
2225
51c2e0a7
JB
2226/**
2227 * pci_ltr_supported - check whether a device supports LTR
2228 * @dev: PCI device
2229 *
2230 * RETURNS:
2231 * True if @dev supports latency tolerance reporting, false otherwise.
2232 */
c32823f8 2233static bool pci_ltr_supported(struct pci_dev *dev)
51c2e0a7 2234{
51c2e0a7
JB
2235 u32 cap;
2236
59875ae4 2237 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
51c2e0a7
JB
2238
2239 return cap & PCI_EXP_DEVCAP2_LTR;
2240}
51c2e0a7
JB
2241
2242/**
2243 * pci_enable_ltr - enable latency tolerance reporting
2244 * @dev: PCI device
2245 *
2246 * Enable LTR on @dev if possible, which means enabling it first on
2247 * upstream ports.
2248 *
2249 * RETURNS:
2250 * Zero on success, errno on failure.
2251 */
2252int pci_enable_ltr(struct pci_dev *dev)
2253{
51c2e0a7
JB
2254 int ret;
2255
51c2e0a7
JB
2256 /* Only primary function can enable/disable LTR */
2257 if (PCI_FUNC(dev->devfn) != 0)
2258 return -EINVAL;
2259
59875ae4
JL
2260 if (!pci_ltr_supported(dev))
2261 return -ENOTSUPP;
2262
51c2e0a7 2263 /* Enable upstream ports first */
8291550f 2264 if (dev->bus->self) {
51c2e0a7
JB
2265 ret = pci_enable_ltr(dev->bus->self);
2266 if (ret)
2267 return ret;
2268 }
2269
d2ab1fa6
BH
2270 return pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
2271 PCI_EXP_DEVCTL2_LTR_EN);
51c2e0a7
JB
2272}
2273EXPORT_SYMBOL(pci_enable_ltr);
2274
2275/**
2276 * pci_disable_ltr - disable latency tolerance reporting
2277 * @dev: PCI device
2278 */
2279void pci_disable_ltr(struct pci_dev *dev)
2280{
51c2e0a7
JB
2281 /* Only primary function can enable/disable LTR */
2282 if (PCI_FUNC(dev->devfn) != 0)
2283 return;
2284
59875ae4
JL
2285 if (!pci_ltr_supported(dev))
2286 return;
2287
d2ab1fa6
BH
2288 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL2,
2289 PCI_EXP_DEVCTL2_LTR_EN);
51c2e0a7
JB
2290}
2291EXPORT_SYMBOL(pci_disable_ltr);
2292
2293static int __pci_ltr_scale(int *val)
2294{
2295 int scale = 0;
2296
2297 while (*val > 1023) {
2298 *val = (*val + 31) / 32;
2299 scale++;
2300 }
2301 return scale;
2302}
2303
2304/**
2305 * pci_set_ltr - set LTR latency values
2306 * @dev: PCI device
2307 * @snoop_lat_ns: snoop latency in nanoseconds
2308 * @nosnoop_lat_ns: nosnoop latency in nanoseconds
2309 *
2310 * Figure out the scale and set the LTR values accordingly.
2311 */
2312int pci_set_ltr(struct pci_dev *dev, int snoop_lat_ns, int nosnoop_lat_ns)
2313{
2314 int pos, ret, snoop_scale, nosnoop_scale;
2315 u16 val;
2316
2317 if (!pci_ltr_supported(dev))
2318 return -ENOTSUPP;
2319
2320 snoop_scale = __pci_ltr_scale(&snoop_lat_ns);
2321 nosnoop_scale = __pci_ltr_scale(&nosnoop_lat_ns);
2322
2323 if (snoop_lat_ns > PCI_LTR_VALUE_MASK ||
2324 nosnoop_lat_ns > PCI_LTR_VALUE_MASK)
2325 return -EINVAL;
2326
2327 if ((snoop_scale > (PCI_LTR_SCALE_MASK >> PCI_LTR_SCALE_SHIFT)) ||
2328 (nosnoop_scale > (PCI_LTR_SCALE_MASK >> PCI_LTR_SCALE_SHIFT)))
2329 return -EINVAL;
2330
2331 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_LTR);
2332 if (!pos)
2333 return -ENOTSUPP;
2334
2335 val = (snoop_scale << PCI_LTR_SCALE_SHIFT) | snoop_lat_ns;
2336 ret = pci_write_config_word(dev, pos + PCI_LTR_MAX_SNOOP_LAT, val);
2337 if (ret != 4)
2338 return -EIO;
2339
2340 val = (nosnoop_scale << PCI_LTR_SCALE_SHIFT) | nosnoop_lat_ns;
2341 ret = pci_write_config_word(dev, pos + PCI_LTR_MAX_NOSNOOP_LAT, val);
2342 if (ret != 4)
2343 return -EIO;
2344
2345 return 0;
2346}
2347EXPORT_SYMBOL(pci_set_ltr);
2348
5d990b62
CW
2349static int pci_acs_enable;
2350
2351/**
2352 * pci_request_acs - ask for ACS to be enabled if supported
2353 */
2354void pci_request_acs(void)
2355{
2356 pci_acs_enable = 1;
2357}
2358
ae21ee65
AK
2359/**
2360 * pci_enable_acs - enable ACS if hardware support it
2361 * @dev: the PCI device
2362 */
2363void pci_enable_acs(struct pci_dev *dev)
2364{
2365 int pos;
2366 u16 cap;
2367 u16 ctrl;
2368
5d990b62
CW
2369 if (!pci_acs_enable)
2370 return;
2371
ae21ee65
AK
2372 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
2373 if (!pos)
2374 return;
2375
2376 pci_read_config_word(dev, pos + PCI_ACS_CAP, &cap);
2377 pci_read_config_word(dev, pos + PCI_ACS_CTRL, &ctrl);
2378
2379 /* Source Validation */
2380 ctrl |= (cap & PCI_ACS_SV);
2381
2382 /* P2P Request Redirect */
2383 ctrl |= (cap & PCI_ACS_RR);
2384
2385 /* P2P Completion Redirect */
2386 ctrl |= (cap & PCI_ACS_CR);
2387
2388 /* Upstream Forwarding */
2389 ctrl |= (cap & PCI_ACS_UF);
2390
2391 pci_write_config_word(dev, pos + PCI_ACS_CTRL, ctrl);
2392}
2393
0a67119f
AW
2394static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
2395{
2396 int pos;
83db7e0b 2397 u16 cap, ctrl;
0a67119f
AW
2398
2399 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ACS);
2400 if (!pos)
2401 return false;
2402
83db7e0b
AW
2403 /*
2404 * Except for egress control, capabilities are either required
2405 * or only required if controllable. Features missing from the
2406 * capability field can therefore be assumed as hard-wired enabled.
2407 */
2408 pci_read_config_word(pdev, pos + PCI_ACS_CAP, &cap);
2409 acs_flags &= (cap | PCI_ACS_EC);
2410
0a67119f
AW
2411 pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
2412 return (ctrl & acs_flags) == acs_flags;
2413}
2414
ad805758
AW
2415/**
2416 * pci_acs_enabled - test ACS against required flags for a given device
2417 * @pdev: device to test
2418 * @acs_flags: required PCI ACS flags
2419 *
2420 * Return true if the device supports the provided flags. Automatically
2421 * filters out flags that are not implemented on multifunction devices.
0a67119f
AW
2422 *
2423 * Note that this interface checks the effective ACS capabilities of the
2424 * device rather than the actual capabilities. For instance, most single
2425 * function endpoints are not required to support ACS because they have no
2426 * opportunity for peer-to-peer access. We therefore return 'true'
2427 * regardless of whether the device exposes an ACS capability. This makes
2428 * it much easier for callers of this function to ignore the actual type
2429 * or topology of the device when testing ACS support.
ad805758
AW
2430 */
2431bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags)
2432{
0a67119f 2433 int ret;
ad805758
AW
2434
2435 ret = pci_dev_specific_acs_enabled(pdev, acs_flags);
2436 if (ret >= 0)
2437 return ret > 0;
2438
0a67119f
AW
2439 /*
2440 * Conventional PCI and PCI-X devices never support ACS, either
2441 * effectively or actually. The shared bus topology implies that
2442 * any device on the bus can receive or snoop DMA.
2443 */
ad805758
AW
2444 if (!pci_is_pcie(pdev))
2445 return false;
2446
0a67119f
AW
2447 switch (pci_pcie_type(pdev)) {
2448 /*
2449 * PCI/X-to-PCIe bridges are not specifically mentioned by the spec,
f7625980 2450 * but since their primary interface is PCI/X, we conservatively
0a67119f
AW
2451 * handle them as we would a non-PCIe device.
2452 */
2453 case PCI_EXP_TYPE_PCIE_BRIDGE:
2454 /*
2455 * PCIe 3.0, 6.12.1 excludes ACS on these devices. "ACS is never
2456 * applicable... must never implement an ACS Extended Capability...".
2457 * This seems arbitrary, but we take a conservative interpretation
2458 * of this statement.
2459 */
2460 case PCI_EXP_TYPE_PCI_BRIDGE:
2461 case PCI_EXP_TYPE_RC_EC:
2462 return false;
2463 /*
2464 * PCIe 3.0, 6.12.1.1 specifies that downstream and root ports should
2465 * implement ACS in order to indicate their peer-to-peer capabilities,
2466 * regardless of whether they are single- or multi-function devices.
2467 */
2468 case PCI_EXP_TYPE_DOWNSTREAM:
2469 case PCI_EXP_TYPE_ROOT_PORT:
2470 return pci_acs_flags_enabled(pdev, acs_flags);
2471 /*
2472 * PCIe 3.0, 6.12.1.2 specifies ACS capabilities that should be
2473 * implemented by the remaining PCIe types to indicate peer-to-peer
f7625980 2474 * capabilities, but only when they are part of a multifunction
0a67119f
AW
2475 * device. The footnote for section 6.12 indicates the specific
2476 * PCIe types included here.
2477 */
2478 case PCI_EXP_TYPE_ENDPOINT:
2479 case PCI_EXP_TYPE_UPSTREAM:
2480 case PCI_EXP_TYPE_LEG_END:
2481 case PCI_EXP_TYPE_RC_END:
2482 if (!pdev->multifunction)
2483 break;
2484
0a67119f 2485 return pci_acs_flags_enabled(pdev, acs_flags);
ad805758
AW
2486 }
2487
0a67119f 2488 /*
f7625980 2489 * PCIe 3.0, 6.12.1.3 specifies no ACS capabilities are applicable
0a67119f
AW
2490 * to single function devices with the exception of downstream ports.
2491 */
ad805758
AW
2492 return true;
2493}
2494
2495/**
2496 * pci_acs_path_enable - test ACS flags from start to end in a hierarchy
2497 * @start: starting downstream device
2498 * @end: ending upstream device or NULL to search to the root bus
2499 * @acs_flags: required flags
2500 *
2501 * Walk up a device tree from start to end testing PCI ACS support. If
2502 * any step along the way does not support the required flags, return false.
2503 */
2504bool pci_acs_path_enabled(struct pci_dev *start,
2505 struct pci_dev *end, u16 acs_flags)
2506{
2507 struct pci_dev *pdev, *parent = start;
2508
2509 do {
2510 pdev = parent;
2511
2512 if (!pci_acs_enabled(pdev, acs_flags))
2513 return false;
2514
2515 if (pci_is_root_bus(pdev->bus))
2516 return (end == NULL);
2517
2518 parent = pdev->bus->self;
2519 } while (pdev != end);
2520
2521 return true;
2522}
2523
57c2cf71
BH
2524/**
2525 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
2526 * @dev: the PCI device
bb5c2de2 2527 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD)
57c2cf71
BH
2528 *
2529 * Perform INTx swizzling for a device behind one level of bridge. This is
2530 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
46b952a3
MW
2531 * behind bridges on add-in cards. For devices with ARI enabled, the slot
2532 * number is always 0 (see the Implementation Note in section 2.2.8.1 of
2533 * the PCI Express Base Specification, Revision 2.1)
57c2cf71 2534 */
3df425f3 2535u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin)
57c2cf71 2536{
46b952a3
MW
2537 int slot;
2538
2539 if (pci_ari_enabled(dev->bus))
2540 slot = 0;
2541 else
2542 slot = PCI_SLOT(dev->devfn);
2543
2544 return (((pin - 1) + slot) % 4) + 1;
57c2cf71
BH
2545}
2546
1da177e4
LT
2547int
2548pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
2549{
2550 u8 pin;
2551
514d207d 2552 pin = dev->pin;
1da177e4
LT
2553 if (!pin)
2554 return -1;
878f2e50 2555
8784fd4d 2556 while (!pci_is_root_bus(dev->bus)) {
57c2cf71 2557 pin = pci_swizzle_interrupt_pin(dev, pin);
1da177e4
LT
2558 dev = dev->bus->self;
2559 }
2560 *bridge = dev;
2561 return pin;
2562}
2563
68feac87
BH
2564/**
2565 * pci_common_swizzle - swizzle INTx all the way to root bridge
2566 * @dev: the PCI device
2567 * @pinp: pointer to the INTx pin value (1=INTA, 2=INTB, 3=INTD, 4=INTD)
2568 *
2569 * Perform INTx swizzling for a device. This traverses through all PCI-to-PCI
2570 * bridges all the way up to a PCI root bus.
2571 */
2572u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp)
2573{
2574 u8 pin = *pinp;
2575
1eb39487 2576 while (!pci_is_root_bus(dev->bus)) {
68feac87
BH
2577 pin = pci_swizzle_interrupt_pin(dev, pin);
2578 dev = dev->bus->self;
2579 }
2580 *pinp = pin;
2581 return PCI_SLOT(dev->devfn);
2582}
2583
1da177e4
LT
2584/**
2585 * pci_release_region - Release a PCI bar
2586 * @pdev: PCI device whose resources were previously reserved by pci_request_region
2587 * @bar: BAR to release
2588 *
2589 * Releases the PCI I/O and memory resources previously reserved by a
2590 * successful call to pci_request_region. Call this function only
2591 * after all use of the PCI regions has ceased.
2592 */
2593void pci_release_region(struct pci_dev *pdev, int bar)
2594{
9ac7849e
TH
2595 struct pci_devres *dr;
2596
1da177e4
LT
2597 if (pci_resource_len(pdev, bar) == 0)
2598 return;
2599 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
2600 release_region(pci_resource_start(pdev, bar),
2601 pci_resource_len(pdev, bar));
2602 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
2603 release_mem_region(pci_resource_start(pdev, bar),
2604 pci_resource_len(pdev, bar));
9ac7849e
TH
2605
2606 dr = find_pci_dr(pdev);
2607 if (dr)
2608 dr->region_mask &= ~(1 << bar);
1da177e4
LT
2609}
2610
2611/**
f5ddcac4 2612 * __pci_request_region - Reserved PCI I/O and memory resource
1da177e4
LT
2613 * @pdev: PCI device whose resources are to be reserved
2614 * @bar: BAR to be reserved
2615 * @res_name: Name to be associated with resource.
f5ddcac4 2616 * @exclusive: whether the region access is exclusive or not
1da177e4
LT
2617 *
2618 * Mark the PCI region associated with PCI device @pdev BR @bar as
2619 * being reserved by owner @res_name. Do not access any
2620 * address inside the PCI regions unless this call returns
2621 * successfully.
2622 *
f5ddcac4
RD
2623 * If @exclusive is set, then the region is marked so that userspace
2624 * is explicitly not allowed to map the resource via /dev/mem or
f7625980 2625 * sysfs MMIO access.
f5ddcac4 2626 *
1da177e4
LT
2627 * Returns 0 on success, or %EBUSY on error. A warning
2628 * message is also printed on failure.
2629 */
e8de1481
AV
2630static int __pci_request_region(struct pci_dev *pdev, int bar, const char *res_name,
2631 int exclusive)
1da177e4 2632{
9ac7849e
TH
2633 struct pci_devres *dr;
2634
1da177e4
LT
2635 if (pci_resource_len(pdev, bar) == 0)
2636 return 0;
f7625980 2637
1da177e4
LT
2638 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
2639 if (!request_region(pci_resource_start(pdev, bar),
2640 pci_resource_len(pdev, bar), res_name))
2641 goto err_out;
2642 }
2643 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
e8de1481
AV
2644 if (!__request_mem_region(pci_resource_start(pdev, bar),
2645 pci_resource_len(pdev, bar), res_name,
2646 exclusive))
1da177e4
LT
2647 goto err_out;
2648 }
9ac7849e
TH
2649
2650 dr = find_pci_dr(pdev);
2651 if (dr)
2652 dr->region_mask |= 1 << bar;
2653
1da177e4
LT
2654 return 0;
2655
2656err_out:
c7dabef8 2657 dev_warn(&pdev->dev, "BAR %d: can't reserve %pR\n", bar,
096e6f67 2658 &pdev->resource[bar]);
1da177e4
LT
2659 return -EBUSY;
2660}
2661
e8de1481 2662/**
f5ddcac4 2663 * pci_request_region - Reserve PCI I/O and memory resource
e8de1481
AV
2664 * @pdev: PCI device whose resources are to be reserved
2665 * @bar: BAR to be reserved
f5ddcac4 2666 * @res_name: Name to be associated with resource
e8de1481 2667 *
f5ddcac4 2668 * Mark the PCI region associated with PCI device @pdev BAR @bar as
e8de1481
AV
2669 * being reserved by owner @res_name. Do not access any
2670 * address inside the PCI regions unless this call returns
2671 * successfully.
2672 *
2673 * Returns 0 on success, or %EBUSY on error. A warning
2674 * message is also printed on failure.
2675 */
2676int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
2677{
2678 return __pci_request_region(pdev, bar, res_name, 0);
2679}
2680
2681/**
2682 * pci_request_region_exclusive - Reserved PCI I/O and memory resource
2683 * @pdev: PCI device whose resources are to be reserved
2684 * @bar: BAR to be reserved
2685 * @res_name: Name to be associated with resource.
2686 *
2687 * Mark the PCI region associated with PCI device @pdev BR @bar as
2688 * being reserved by owner @res_name. Do not access any
2689 * address inside the PCI regions unless this call returns
2690 * successfully.
2691 *
2692 * Returns 0 on success, or %EBUSY on error. A warning
2693 * message is also printed on failure.
2694 *
2695 * The key difference that _exclusive makes it that userspace is
2696 * explicitly not allowed to map the resource via /dev/mem or
f7625980 2697 * sysfs.
e8de1481
AV
2698 */
2699int pci_request_region_exclusive(struct pci_dev *pdev, int bar, const char *res_name)
2700{
2701 return __pci_request_region(pdev, bar, res_name, IORESOURCE_EXCLUSIVE);
2702}
c87deff7
HS
2703/**
2704 * pci_release_selected_regions - Release selected PCI I/O and memory resources
2705 * @pdev: PCI device whose resources were previously reserved
2706 * @bars: Bitmask of BARs to be released
2707 *
2708 * Release selected PCI I/O and memory resources previously reserved.
2709 * Call this function only after all use of the PCI regions has ceased.
2710 */
2711void pci_release_selected_regions(struct pci_dev *pdev, int bars)
2712{
2713 int i;
2714
2715 for (i = 0; i < 6; i++)
2716 if (bars & (1 << i))
2717 pci_release_region(pdev, i);
2718}
2719
9738abed 2720static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
e8de1481 2721 const char *res_name, int excl)
c87deff7
HS
2722{
2723 int i;
2724
2725 for (i = 0; i < 6; i++)
2726 if (bars & (1 << i))
e8de1481 2727 if (__pci_request_region(pdev, i, res_name, excl))
c87deff7
HS
2728 goto err_out;
2729 return 0;
2730
2731err_out:
2732 while(--i >= 0)
2733 if (bars & (1 << i))
2734 pci_release_region(pdev, i);
2735
2736 return -EBUSY;
2737}
1da177e4 2738
e8de1481
AV
2739
2740/**
2741 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
2742 * @pdev: PCI device whose resources are to be reserved
2743 * @bars: Bitmask of BARs to be requested
2744 * @res_name: Name to be associated with resource
2745 */
2746int pci_request_selected_regions(struct pci_dev *pdev, int bars,
2747 const char *res_name)
2748{
2749 return __pci_request_selected_regions(pdev, bars, res_name, 0);
2750}
2751
2752int pci_request_selected_regions_exclusive(struct pci_dev *pdev,
2753 int bars, const char *res_name)
2754{
2755 return __pci_request_selected_regions(pdev, bars, res_name,
2756 IORESOURCE_EXCLUSIVE);
2757}
2758
1da177e4
LT
2759/**
2760 * pci_release_regions - Release reserved PCI I/O and memory resources
2761 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
2762 *
2763 * Releases all PCI I/O and memory resources previously reserved by a
2764 * successful call to pci_request_regions. Call this function only
2765 * after all use of the PCI regions has ceased.
2766 */
2767
2768void pci_release_regions(struct pci_dev *pdev)
2769{
c87deff7 2770 pci_release_selected_regions(pdev, (1 << 6) - 1);
1da177e4
LT
2771}
2772
2773/**
2774 * pci_request_regions - Reserved PCI I/O and memory resources
2775 * @pdev: PCI device whose resources are to be reserved
2776 * @res_name: Name to be associated with resource.
2777 *
2778 * Mark all PCI regions associated with PCI device @pdev as
2779 * being reserved by owner @res_name. Do not access any
2780 * address inside the PCI regions unless this call returns
2781 * successfully.
2782 *
2783 * Returns 0 on success, or %EBUSY on error. A warning
2784 * message is also printed on failure.
2785 */
3c990e92 2786int pci_request_regions(struct pci_dev *pdev, const char *res_name)
1da177e4 2787{
c87deff7 2788 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
1da177e4
LT
2789}
2790
e8de1481
AV
2791/**
2792 * pci_request_regions_exclusive - Reserved PCI I/O and memory resources
2793 * @pdev: PCI device whose resources are to be reserved
2794 * @res_name: Name to be associated with resource.
2795 *
2796 * Mark all PCI regions associated with PCI device @pdev as
2797 * being reserved by owner @res_name. Do not access any
2798 * address inside the PCI regions unless this call returns
2799 * successfully.
2800 *
2801 * pci_request_regions_exclusive() will mark the region so that
f7625980 2802 * /dev/mem and the sysfs MMIO access will not be allowed.
e8de1481
AV
2803 *
2804 * Returns 0 on success, or %EBUSY on error. A warning
2805 * message is also printed on failure.
2806 */
2807int pci_request_regions_exclusive(struct pci_dev *pdev, const char *res_name)
2808{
2809 return pci_request_selected_regions_exclusive(pdev,
2810 ((1 << 6) - 1), res_name);
2811}
2812
6a479079
BH
2813static void __pci_set_master(struct pci_dev *dev, bool enable)
2814{
2815 u16 old_cmd, cmd;
2816
2817 pci_read_config_word(dev, PCI_COMMAND, &old_cmd);
2818 if (enable)
2819 cmd = old_cmd | PCI_COMMAND_MASTER;
2820 else
2821 cmd = old_cmd & ~PCI_COMMAND_MASTER;
2822 if (cmd != old_cmd) {
2823 dev_dbg(&dev->dev, "%s bus mastering\n",
2824 enable ? "enabling" : "disabling");
2825 pci_write_config_word(dev, PCI_COMMAND, cmd);
2826 }
2827 dev->is_busmaster = enable;
2828}
e8de1481 2829
2b6f2c35
MS
2830/**
2831 * pcibios_setup - process "pci=" kernel boot arguments
2832 * @str: string used to pass in "pci=" kernel boot arguments
2833 *
2834 * Process kernel boot arguments. This is the default implementation.
2835 * Architecture specific implementations can override this as necessary.
2836 */
2837char * __weak __init pcibios_setup(char *str)
2838{
2839 return str;
2840}
2841
96c55900
MS
2842/**
2843 * pcibios_set_master - enable PCI bus-mastering for device dev
2844 * @dev: the PCI device to enable
2845 *
2846 * Enables PCI bus-mastering for the device. This is the default
2847 * implementation. Architecture specific implementations can override
2848 * this if necessary.
2849 */
2850void __weak pcibios_set_master(struct pci_dev *dev)
2851{
2852 u8 lat;
2853
f676678f
MS
2854 /* The latency timer doesn't apply to PCIe (either Type 0 or Type 1) */
2855 if (pci_is_pcie(dev))
2856 return;
2857
96c55900
MS
2858 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
2859 if (lat < 16)
2860 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
2861 else if (lat > pcibios_max_latency)
2862 lat = pcibios_max_latency;
2863 else
2864 return;
a006482b 2865
96c55900
MS
2866 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
2867}
2868
1da177e4
LT
2869/**
2870 * pci_set_master - enables bus-mastering for device dev
2871 * @dev: the PCI device to enable
2872 *
2873 * Enables bus-mastering on the device and calls pcibios_set_master()
2874 * to do the needed arch specific settings.
2875 */
6a479079 2876void pci_set_master(struct pci_dev *dev)
1da177e4 2877{
6a479079 2878 __pci_set_master(dev, true);
1da177e4
LT
2879 pcibios_set_master(dev);
2880}
2881
6a479079
BH
2882/**
2883 * pci_clear_master - disables bus-mastering for device dev
2884 * @dev: the PCI device to disable
2885 */
2886void pci_clear_master(struct pci_dev *dev)
2887{
2888 __pci_set_master(dev, false);
2889}
2890
1da177e4 2891/**
edb2d97e
MW
2892 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
2893 * @dev: the PCI device for which MWI is to be enabled
1da177e4 2894 *
edb2d97e
MW
2895 * Helper function for pci_set_mwi.
2896 * Originally copied from drivers/net/acenic.c.
1da177e4
LT
2897 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
2898 *
2899 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2900 */
15ea76d4 2901int pci_set_cacheline_size(struct pci_dev *dev)
1da177e4
LT
2902{
2903 u8 cacheline_size;
2904
2905 if (!pci_cache_line_size)
15ea76d4 2906 return -EINVAL;
1da177e4
LT
2907
2908 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
2909 equal to or multiple of the right value. */
2910 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2911 if (cacheline_size >= pci_cache_line_size &&
2912 (cacheline_size % pci_cache_line_size) == 0)
2913 return 0;
2914
2915 /* Write the correct value. */
2916 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
2917 /* Read it back. */
2918 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
2919 if (cacheline_size == pci_cache_line_size)
2920 return 0;
2921
80ccba11
BH
2922 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
2923 "supported\n", pci_cache_line_size << 2);
1da177e4
LT
2924
2925 return -EINVAL;
2926}
15ea76d4
TH
2927EXPORT_SYMBOL_GPL(pci_set_cacheline_size);
2928
2929#ifdef PCI_DISABLE_MWI
2930int pci_set_mwi(struct pci_dev *dev)
2931{
2932 return 0;
2933}
2934
2935int pci_try_set_mwi(struct pci_dev *dev)
2936{
2937 return 0;
2938}
2939
2940void pci_clear_mwi(struct pci_dev *dev)
2941{
2942}
2943
2944#else
1da177e4
LT
2945
2946/**
2947 * pci_set_mwi - enables memory-write-invalidate PCI transaction
2948 * @dev: the PCI device for which MWI is enabled
2949 *
694625c0 2950 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
1da177e4
LT
2951 *
2952 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2953 */
2954int
2955pci_set_mwi(struct pci_dev *dev)
2956{
2957 int rc;
2958 u16 cmd;
2959
edb2d97e 2960 rc = pci_set_cacheline_size(dev);
1da177e4
LT
2961 if (rc)
2962 return rc;
2963
2964 pci_read_config_word(dev, PCI_COMMAND, &cmd);
2965 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
80ccba11 2966 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
1da177e4
LT
2967 cmd |= PCI_COMMAND_INVALIDATE;
2968 pci_write_config_word(dev, PCI_COMMAND, cmd);
2969 }
f7625980 2970
1da177e4
LT
2971 return 0;
2972}
2973
694625c0
RD
2974/**
2975 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
2976 * @dev: the PCI device for which MWI is enabled
2977 *
2978 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
2979 * Callers are not required to check the return value.
2980 *
2981 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
2982 */
2983int pci_try_set_mwi(struct pci_dev *dev)
2984{
2985 int rc = pci_set_mwi(dev);
2986 return rc;
2987}
2988
1da177e4
LT
2989/**
2990 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
2991 * @dev: the PCI device to disable
2992 *
2993 * Disables PCI Memory-Write-Invalidate transaction on the device
2994 */
2995void
2996pci_clear_mwi(struct pci_dev *dev)
2997{
2998 u16 cmd;
2999
3000 pci_read_config_word(dev, PCI_COMMAND, &cmd);
3001 if (cmd & PCI_COMMAND_INVALIDATE) {
3002 cmd &= ~PCI_COMMAND_INVALIDATE;
3003 pci_write_config_word(dev, PCI_COMMAND, cmd);
3004 }
3005}
edb2d97e 3006#endif /* ! PCI_DISABLE_MWI */
1da177e4 3007
a04ce0ff
BR
3008/**
3009 * pci_intx - enables/disables PCI INTx for device dev
8f7020d3
RD
3010 * @pdev: the PCI device to operate on
3011 * @enable: boolean: whether to enable or disable PCI INTx
a04ce0ff
BR
3012 *
3013 * Enables/disables PCI INTx for device dev
3014 */
3015void
3016pci_intx(struct pci_dev *pdev, int enable)
3017{
3018 u16 pci_command, new;
3019
3020 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
3021
3022 if (enable) {
3023 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
3024 } else {
3025 new = pci_command | PCI_COMMAND_INTX_DISABLE;
3026 }
3027
3028 if (new != pci_command) {
9ac7849e
TH
3029 struct pci_devres *dr;
3030
2fd9d74b 3031 pci_write_config_word(pdev, PCI_COMMAND, new);
9ac7849e
TH
3032
3033 dr = find_pci_dr(pdev);
3034 if (dr && !dr->restore_intx) {
3035 dr->restore_intx = 1;
3036 dr->orig_intx = !enable;
3037 }
a04ce0ff
BR
3038 }
3039}
3040
a2e27787
JK
3041/**
3042 * pci_intx_mask_supported - probe for INTx masking support
6e9292c5 3043 * @dev: the PCI device to operate on
a2e27787
JK
3044 *
3045 * Check if the device dev support INTx masking via the config space
3046 * command word.
3047 */
3048bool pci_intx_mask_supported(struct pci_dev *dev)
3049{
3050 bool mask_supported = false;
3051 u16 orig, new;
3052
fbebb9fd
BH
3053 if (dev->broken_intx_masking)
3054 return false;
3055
a2e27787
JK
3056 pci_cfg_access_lock(dev);
3057
3058 pci_read_config_word(dev, PCI_COMMAND, &orig);
3059 pci_write_config_word(dev, PCI_COMMAND,
3060 orig ^ PCI_COMMAND_INTX_DISABLE);
3061 pci_read_config_word(dev, PCI_COMMAND, &new);
3062
3063 /*
3064 * There's no way to protect against hardware bugs or detect them
3065 * reliably, but as long as we know what the value should be, let's
3066 * go ahead and check it.
3067 */
3068 if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
3069 dev_err(&dev->dev, "Command register changed from "
3070 "0x%x to 0x%x: driver or hardware bug?\n", orig, new);
3071 } else if ((new ^ orig) & PCI_COMMAND_INTX_DISABLE) {
3072 mask_supported = true;
3073 pci_write_config_word(dev, PCI_COMMAND, orig);
3074 }
3075
3076 pci_cfg_access_unlock(dev);
3077 return mask_supported;
3078}
3079EXPORT_SYMBOL_GPL(pci_intx_mask_supported);
3080
3081static bool pci_check_and_set_intx_mask(struct pci_dev *dev, bool mask)
3082{
3083 struct pci_bus *bus = dev->bus;
3084 bool mask_updated = true;
3085 u32 cmd_status_dword;
3086 u16 origcmd, newcmd;
3087 unsigned long flags;
3088 bool irq_pending;
3089
3090 /*
3091 * We do a single dword read to retrieve both command and status.
3092 * Document assumptions that make this possible.
3093 */
3094 BUILD_BUG_ON(PCI_COMMAND % 4);
3095 BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
3096
3097 raw_spin_lock_irqsave(&pci_lock, flags);
3098
3099 bus->ops->read(bus, dev->devfn, PCI_COMMAND, 4, &cmd_status_dword);
3100
3101 irq_pending = (cmd_status_dword >> 16) & PCI_STATUS_INTERRUPT;
3102
3103 /*
3104 * Check interrupt status register to see whether our device
3105 * triggered the interrupt (when masking) or the next IRQ is
3106 * already pending (when unmasking).
3107 */
3108 if (mask != irq_pending) {
3109 mask_updated = false;
3110 goto done;
3111 }
3112
3113 origcmd = cmd_status_dword;
3114 newcmd = origcmd & ~PCI_COMMAND_INTX_DISABLE;
3115 if (mask)
3116 newcmd |= PCI_COMMAND_INTX_DISABLE;
3117 if (newcmd != origcmd)
3118 bus->ops->write(bus, dev->devfn, PCI_COMMAND, 2, newcmd);
3119
3120done:
3121 raw_spin_unlock_irqrestore(&pci_lock, flags);
3122
3123 return mask_updated;
3124}
3125
3126/**
3127 * pci_check_and_mask_intx - mask INTx on pending interrupt
6e9292c5 3128 * @dev: the PCI device to operate on
a2e27787
JK
3129 *
3130 * Check if the device dev has its INTx line asserted, mask it and
3131 * return true in that case. False is returned if not interrupt was
3132 * pending.
3133 */
3134bool pci_check_and_mask_intx(struct pci_dev *dev)
3135{
3136 return pci_check_and_set_intx_mask(dev, true);
3137}
3138EXPORT_SYMBOL_GPL(pci_check_and_mask_intx);
3139
3140/**
3141 * pci_check_and_mask_intx - unmask INTx of no interrupt is pending
6e9292c5 3142 * @dev: the PCI device to operate on
a2e27787
JK
3143 *
3144 * Check if the device dev has its INTx line asserted, unmask it if not
3145 * and return true. False is returned and the mask remains active if
3146 * there was still an interrupt pending.
3147 */
3148bool pci_check_and_unmask_intx(struct pci_dev *dev)
3149{
3150 return pci_check_and_set_intx_mask(dev, false);
3151}
3152EXPORT_SYMBOL_GPL(pci_check_and_unmask_intx);
3153
f5f2b131 3154/**
da27f4b3 3155 * pci_msi_off - disables any MSI or MSI-X capabilities
8d7d86e9 3156 * @dev: the PCI device to operate on
f5f2b131 3157 *
da27f4b3
BH
3158 * If you want to use MSI, see pci_enable_msi() and friends.
3159 * This is a lower-level primitive that allows us to disable
3160 * MSI operation at the device level.
f5f2b131
EB
3161 */
3162void pci_msi_off(struct pci_dev *dev)
3163{
3164 int pos;
3165 u16 control;
3166
da27f4b3
BH
3167 /*
3168 * This looks like it could go in msi.c, but we need it even when
3169 * CONFIG_PCI_MSI=n. For the same reason, we can't use
3170 * dev->msi_cap or dev->msix_cap here.
3171 */
f5f2b131
EB
3172 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
3173 if (pos) {
3174 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
3175 control &= ~PCI_MSI_FLAGS_ENABLE;
3176 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
3177 }
3178 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
3179 if (pos) {
3180 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
3181 control &= ~PCI_MSIX_FLAGS_ENABLE;
3182 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
3183 }
3184}
b03214d5 3185EXPORT_SYMBOL_GPL(pci_msi_off);
f5f2b131 3186
4d57cdfa
FT
3187int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
3188{
3189 return dma_set_max_seg_size(&dev->dev, size);
3190}
3191EXPORT_SYMBOL(pci_set_dma_max_seg_size);
4d57cdfa 3192
59fc67de
FT
3193int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
3194{
3195 return dma_set_seg_boundary(&dev->dev, mask);
3196}
3197EXPORT_SYMBOL(pci_set_dma_seg_boundary);
59fc67de 3198
3775a209
CL
3199/**
3200 * pci_wait_for_pending_transaction - waits for pending transaction
3201 * @dev: the PCI device to operate on
3202 *
3203 * Return 0 if transaction is pending 1 otherwise.
3204 */
3205int pci_wait_for_pending_transaction(struct pci_dev *dev)
8dd7f803 3206{
8c1c699f 3207 int i;
59875ae4 3208 u16 status;
8c1c699f 3209
8dd7f803 3210 /* Wait for Transaction Pending bit clean */
8c1c699f
YZ
3211 for (i = 0; i < 4; i++) {
3212 if (i)
3213 msleep((1 << (i - 1)) * 100);
5fe5db05 3214
59875ae4 3215 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &status);
8c1c699f 3216 if (!(status & PCI_EXP_DEVSTA_TRPND))
3775a209 3217 return 1;
8c1c699f
YZ
3218 }
3219
3775a209
CL
3220 return 0;
3221}
3222EXPORT_SYMBOL(pci_wait_for_pending_transaction);
3223
3224static int pcie_flr(struct pci_dev *dev, int probe)
3225{
3226 u32 cap;
3227
3228 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
3229 if (!(cap & PCI_EXP_DEVCAP_FLR))
3230 return -ENOTTY;
3231
3232 if (probe)
3233 return 0;
3234
3235 if (!pci_wait_for_pending_transaction(dev))
3236 dev_err(&dev->dev, "transaction is not cleared; proceeding with reset anyway\n");
8c1c699f 3237
59875ae4 3238 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
04b55c47 3239
8c1c699f 3240 msleep(100);
8dd7f803 3241
8dd7f803
SY
3242 return 0;
3243}
d91cdc74 3244
8c1c699f 3245static int pci_af_flr(struct pci_dev *dev, int probe)
1ca88797 3246{
8c1c699f
YZ
3247 int i;
3248 int pos;
1ca88797 3249 u8 cap;
8c1c699f 3250 u8 status;
1ca88797 3251
8c1c699f
YZ
3252 pos = pci_find_capability(dev, PCI_CAP_ID_AF);
3253 if (!pos)
1ca88797 3254 return -ENOTTY;
8c1c699f
YZ
3255
3256 pci_read_config_byte(dev, pos + PCI_AF_CAP, &cap);
1ca88797
SY
3257 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
3258 return -ENOTTY;
3259
3260 if (probe)
3261 return 0;
3262
1ca88797 3263 /* Wait for Transaction Pending bit clean */
8c1c699f
YZ
3264 for (i = 0; i < 4; i++) {
3265 if (i)
3266 msleep((1 << (i - 1)) * 100);
3267
3268 pci_read_config_byte(dev, pos + PCI_AF_STATUS, &status);
3269 if (!(status & PCI_AF_STATUS_TP))
3270 goto clear;
3271 }
5fe5db05 3272
8c1c699f
YZ
3273 dev_err(&dev->dev, "transaction is not cleared; "
3274 "proceeding with reset anyway\n");
5fe5db05 3275
8c1c699f
YZ
3276clear:
3277 pci_write_config_byte(dev, pos + PCI_AF_CTRL, PCI_AF_CTRL_FLR);
1ca88797 3278 msleep(100);
8c1c699f 3279
1ca88797
SY
3280 return 0;
3281}
3282
83d74e03
RW
3283/**
3284 * pci_pm_reset - Put device into PCI_D3 and back into PCI_D0.
3285 * @dev: Device to reset.
3286 * @probe: If set, only check if the device can be reset this way.
3287 *
3288 * If @dev supports native PCI PM and its PCI_PM_CTRL_NO_SOFT_RESET flag is
3289 * unset, it will be reinitialized internally when going from PCI_D3hot to
3290 * PCI_D0. If that's the case and the device is not in a low-power state
3291 * already, force it into PCI_D3hot and back to PCI_D0, causing it to be reset.
3292 *
3293 * NOTE: This causes the caller to sleep for twice the device power transition
3294 * cooldown period, which for the D0->D3hot and D3hot->D0 transitions is 10 ms
f7625980 3295 * by default (i.e. unless the @dev's d3_delay field has a different value).
83d74e03
RW
3296 * Moreover, only devices in D0 can be reset by this function.
3297 */
f85876ba 3298static int pci_pm_reset(struct pci_dev *dev, int probe)
d91cdc74 3299{
f85876ba
YZ
3300 u16 csr;
3301
3302 if (!dev->pm_cap)
3303 return -ENOTTY;
d91cdc74 3304
f85876ba
YZ
3305 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &csr);
3306 if (csr & PCI_PM_CTRL_NO_SOFT_RESET)
3307 return -ENOTTY;
d91cdc74 3308
f85876ba
YZ
3309 if (probe)
3310 return 0;
1ca88797 3311
f85876ba
YZ
3312 if (dev->current_state != PCI_D0)
3313 return -EINVAL;
3314
3315 csr &= ~PCI_PM_CTRL_STATE_MASK;
3316 csr |= PCI_D3hot;
3317 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
1ae861e6 3318 pci_dev_d3_sleep(dev);
f85876ba
YZ
3319
3320 csr &= ~PCI_PM_CTRL_STATE_MASK;
3321 csr |= PCI_D0;
3322 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, csr);
1ae861e6 3323 pci_dev_d3_sleep(dev);
f85876ba
YZ
3324
3325 return 0;
3326}
3327
64e8674f
AW
3328/**
3329 * pci_reset_bridge_secondary_bus - Reset the secondary bus on a PCI bridge.
3330 * @dev: Bridge device
3331 *
3332 * Use the bridge control register to assert reset on the secondary bus.
3333 * Devices on the secondary bus are left in power-on state.
3334 */
3335void pci_reset_bridge_secondary_bus(struct pci_dev *dev)
c12ff1df
YZ
3336{
3337 u16 ctrl;
64e8674f
AW
3338
3339 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
3340 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
3341 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
de0c548c
AW
3342 /*
3343 * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double
f7625980 3344 * this to 2ms to ensure that we meet the minimum requirement.
de0c548c
AW
3345 */
3346 msleep(2);
64e8674f
AW
3347
3348 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
3349 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
de0c548c
AW
3350
3351 /*
3352 * Trhfa for conventional PCI is 2^25 clock cycles.
3353 * Assuming a minimum 33MHz clock this results in a 1s
3354 * delay before we can consider subordinate devices to
3355 * be re-initialized. PCIe has some ways to shorten this,
3356 * but we don't make use of them yet.
3357 */
3358 ssleep(1);
64e8674f
AW
3359}
3360EXPORT_SYMBOL_GPL(pci_reset_bridge_secondary_bus);
3361
3362static int pci_parent_bus_reset(struct pci_dev *dev, int probe)
3363{
c12ff1df
YZ
3364 struct pci_dev *pdev;
3365
654b75e0 3366 if (pci_is_root_bus(dev->bus) || dev->subordinate || !dev->bus->self)
c12ff1df
YZ
3367 return -ENOTTY;
3368
3369 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3370 if (pdev != dev)
3371 return -ENOTTY;
3372
3373 if (probe)
3374 return 0;
3375
64e8674f 3376 pci_reset_bridge_secondary_bus(dev->bus->self);
c12ff1df
YZ
3377
3378 return 0;
3379}
3380
608c3881
AW
3381static int pci_reset_hotplug_slot(struct hotplug_slot *hotplug, int probe)
3382{
3383 int rc = -ENOTTY;
3384
3385 if (!hotplug || !try_module_get(hotplug->ops->owner))
3386 return rc;
3387
3388 if (hotplug->ops->reset_slot)
3389 rc = hotplug->ops->reset_slot(hotplug, probe);
3390
3391 module_put(hotplug->ops->owner);
3392
3393 return rc;
3394}
3395
3396static int pci_dev_reset_slot_function(struct pci_dev *dev, int probe)
3397{
3398 struct pci_dev *pdev;
3399
3400 if (dev->subordinate || !dev->slot)
3401 return -ENOTTY;
3402
3403 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
3404 if (pdev != dev && pdev->slot == dev->slot)
3405 return -ENOTTY;
3406
3407 return pci_reset_hotplug_slot(dev->slot->hotplug, probe);
3408}
3409
977f857c 3410static int __pci_dev_reset(struct pci_dev *dev, int probe)
d91cdc74 3411{
8c1c699f
YZ
3412 int rc;
3413
3414 might_sleep();
3415
b9c3b266
DC
3416 rc = pci_dev_specific_reset(dev, probe);
3417 if (rc != -ENOTTY)
3418 goto done;
3419
8c1c699f
YZ
3420 rc = pcie_flr(dev, probe);
3421 if (rc != -ENOTTY)
3422 goto done;
d91cdc74 3423
8c1c699f 3424 rc = pci_af_flr(dev, probe);
f85876ba
YZ
3425 if (rc != -ENOTTY)
3426 goto done;
3427
3428 rc = pci_pm_reset(dev, probe);
c12ff1df
YZ
3429 if (rc != -ENOTTY)
3430 goto done;
3431
608c3881
AW
3432 rc = pci_dev_reset_slot_function(dev, probe);
3433 if (rc != -ENOTTY)
3434 goto done;
3435
c12ff1df 3436 rc = pci_parent_bus_reset(dev, probe);
8c1c699f 3437done:
977f857c
KRW
3438 return rc;
3439}
3440
77cb985a
AW
3441static void pci_dev_lock(struct pci_dev *dev)
3442{
3443 pci_cfg_access_lock(dev);
3444 /* block PM suspend, driver probe, etc. */
3445 device_lock(&dev->dev);
3446}
3447
3448static void pci_dev_unlock(struct pci_dev *dev)
3449{
3450 device_unlock(&dev->dev);
3451 pci_cfg_access_unlock(dev);
3452}
3453
3454static void pci_dev_save_and_disable(struct pci_dev *dev)
3455{
a6cbaade
AW
3456 /*
3457 * Wake-up device prior to save. PM registers default to D0 after
3458 * reset and a simple register restore doesn't reliably return
3459 * to a non-D0 state anyway.
3460 */
3461 pci_set_power_state(dev, PCI_D0);
3462
77cb985a
AW
3463 pci_save_state(dev);
3464 /*
3465 * Disable the device by clearing the Command register, except for
3466 * INTx-disable which is set. This not only disables MMIO and I/O port
3467 * BARs, but also prevents the device from being Bus Master, preventing
3468 * DMA from the device including MSI/MSI-X interrupts. For PCI 2.3
3469 * compliant devices, INTx-disable prevents legacy interrupts.
3470 */
3471 pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
3472}
3473
3474static void pci_dev_restore(struct pci_dev *dev)
3475{
3476 pci_restore_state(dev);
3477}
3478
977f857c
KRW
3479static int pci_dev_reset(struct pci_dev *dev, int probe)
3480{
3481 int rc;
3482
77cb985a
AW
3483 if (!probe)
3484 pci_dev_lock(dev);
977f857c
KRW
3485
3486 rc = __pci_dev_reset(dev, probe);
3487
77cb985a
AW
3488 if (!probe)
3489 pci_dev_unlock(dev);
3490
8c1c699f 3491 return rc;
d91cdc74 3492}
d91cdc74 3493/**
8c1c699f
YZ
3494 * __pci_reset_function - reset a PCI device function
3495 * @dev: PCI device to reset
d91cdc74
SY
3496 *
3497 * Some devices allow an individual function to be reset without affecting
3498 * other functions in the same device. The PCI device must be responsive
3499 * to PCI config space in order to use this function.
3500 *
3501 * The device function is presumed to be unused when this function is called.
3502 * Resetting the device will make the contents of PCI configuration space
3503 * random, so any caller of this must be prepared to reinitialise the
3504 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3505 * etc.
3506 *
8c1c699f 3507 * Returns 0 if the device function was successfully reset or negative if the
d91cdc74
SY
3508 * device doesn't support resetting a single function.
3509 */
8c1c699f 3510int __pci_reset_function(struct pci_dev *dev)
d91cdc74 3511{
8c1c699f 3512 return pci_dev_reset(dev, 0);
d91cdc74 3513}
8c1c699f 3514EXPORT_SYMBOL_GPL(__pci_reset_function);
8dd7f803 3515
6fbf9e7a
KRW
3516/**
3517 * __pci_reset_function_locked - reset a PCI device function while holding
3518 * the @dev mutex lock.
3519 * @dev: PCI device to reset
3520 *
3521 * Some devices allow an individual function to be reset without affecting
3522 * other functions in the same device. The PCI device must be responsive
3523 * to PCI config space in order to use this function.
3524 *
3525 * The device function is presumed to be unused and the caller is holding
3526 * the device mutex lock when this function is called.
3527 * Resetting the device will make the contents of PCI configuration space
3528 * random, so any caller of this must be prepared to reinitialise the
3529 * device including MSI, bus mastering, BARs, decoding IO and memory spaces,
3530 * etc.
3531 *
3532 * Returns 0 if the device function was successfully reset or negative if the
3533 * device doesn't support resetting a single function.
3534 */
3535int __pci_reset_function_locked(struct pci_dev *dev)
3536{
977f857c 3537 return __pci_dev_reset(dev, 0);
6fbf9e7a
KRW
3538}
3539EXPORT_SYMBOL_GPL(__pci_reset_function_locked);
3540
711d5779
MT
3541/**
3542 * pci_probe_reset_function - check whether the device can be safely reset
3543 * @dev: PCI device to reset
3544 *
3545 * Some devices allow an individual function to be reset without affecting
3546 * other functions in the same device. The PCI device must be responsive
3547 * to PCI config space in order to use this function.
3548 *
3549 * Returns 0 if the device function can be reset or negative if the
3550 * device doesn't support resetting a single function.
3551 */
3552int pci_probe_reset_function(struct pci_dev *dev)
3553{
3554 return pci_dev_reset(dev, 1);
3555}
3556
8dd7f803 3557/**
8c1c699f
YZ
3558 * pci_reset_function - quiesce and reset a PCI device function
3559 * @dev: PCI device to reset
8dd7f803
SY
3560 *
3561 * Some devices allow an individual function to be reset without affecting
3562 * other functions in the same device. The PCI device must be responsive
3563 * to PCI config space in order to use this function.
3564 *
3565 * This function does not just reset the PCI portion of a device, but
3566 * clears all the state associated with the device. This function differs
8c1c699f 3567 * from __pci_reset_function in that it saves and restores device state
8dd7f803
SY
3568 * over the reset.
3569 *
8c1c699f 3570 * Returns 0 if the device function was successfully reset or negative if the
8dd7f803
SY
3571 * device doesn't support resetting a single function.
3572 */
3573int pci_reset_function(struct pci_dev *dev)
3574{
8c1c699f 3575 int rc;
8dd7f803 3576
8c1c699f
YZ
3577 rc = pci_dev_reset(dev, 1);
3578 if (rc)
3579 return rc;
8dd7f803 3580
77cb985a 3581 pci_dev_save_and_disable(dev);
8dd7f803 3582
8c1c699f 3583 rc = pci_dev_reset(dev, 0);
8dd7f803 3584
77cb985a 3585 pci_dev_restore(dev);
8dd7f803 3586
8c1c699f 3587 return rc;
8dd7f803
SY
3588}
3589EXPORT_SYMBOL_GPL(pci_reset_function);
3590
090a3c53
AW
3591/* Lock devices from the top of the tree down */
3592static void pci_bus_lock(struct pci_bus *bus)
3593{
3594 struct pci_dev *dev;
3595
3596 list_for_each_entry(dev, &bus->devices, bus_list) {
3597 pci_dev_lock(dev);
3598 if (dev->subordinate)
3599 pci_bus_lock(dev->subordinate);
3600 }
3601}
3602
3603/* Unlock devices from the bottom of the tree up */
3604static void pci_bus_unlock(struct pci_bus *bus)
3605{
3606 struct pci_dev *dev;
3607
3608 list_for_each_entry(dev, &bus->devices, bus_list) {
3609 if (dev->subordinate)
3610 pci_bus_unlock(dev->subordinate);
3611 pci_dev_unlock(dev);
3612 }
3613}
3614
3615/* Lock devices from the top of the tree down */
3616static void pci_slot_lock(struct pci_slot *slot)
3617{
3618 struct pci_dev *dev;
3619
3620 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3621 if (!dev->slot || dev->slot != slot)
3622 continue;
3623 pci_dev_lock(dev);
3624 if (dev->subordinate)
3625 pci_bus_lock(dev->subordinate);
3626 }
3627}
3628
3629/* Unlock devices from the bottom of the tree up */
3630static void pci_slot_unlock(struct pci_slot *slot)
3631{
3632 struct pci_dev *dev;
3633
3634 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3635 if (!dev->slot || dev->slot != slot)
3636 continue;
3637 if (dev->subordinate)
3638 pci_bus_unlock(dev->subordinate);
3639 pci_dev_unlock(dev);
3640 }
3641}
3642
3643/* Save and disable devices from the top of the tree down */
3644static void pci_bus_save_and_disable(struct pci_bus *bus)
3645{
3646 struct pci_dev *dev;
3647
3648 list_for_each_entry(dev, &bus->devices, bus_list) {
3649 pci_dev_save_and_disable(dev);
3650 if (dev->subordinate)
3651 pci_bus_save_and_disable(dev->subordinate);
3652 }
3653}
3654
3655/*
3656 * Restore devices from top of the tree down - parent bridges need to be
3657 * restored before we can get to subordinate devices.
3658 */
3659static void pci_bus_restore(struct pci_bus *bus)
3660{
3661 struct pci_dev *dev;
3662
3663 list_for_each_entry(dev, &bus->devices, bus_list) {
3664 pci_dev_restore(dev);
3665 if (dev->subordinate)
3666 pci_bus_restore(dev->subordinate);
3667 }
3668}
3669
3670/* Save and disable devices from the top of the tree down */
3671static void pci_slot_save_and_disable(struct pci_slot *slot)
3672{
3673 struct pci_dev *dev;
3674
3675 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3676 if (!dev->slot || dev->slot != slot)
3677 continue;
3678 pci_dev_save_and_disable(dev);
3679 if (dev->subordinate)
3680 pci_bus_save_and_disable(dev->subordinate);
3681 }
3682}
3683
3684/*
3685 * Restore devices from top of the tree down - parent bridges need to be
3686 * restored before we can get to subordinate devices.
3687 */
3688static void pci_slot_restore(struct pci_slot *slot)
3689{
3690 struct pci_dev *dev;
3691
3692 list_for_each_entry(dev, &slot->bus->devices, bus_list) {
3693 if (!dev->slot || dev->slot != slot)
3694 continue;
3695 pci_dev_restore(dev);
3696 if (dev->subordinate)
3697 pci_bus_restore(dev->subordinate);
3698 }
3699}
3700
3701static int pci_slot_reset(struct pci_slot *slot, int probe)
3702{
3703 int rc;
3704
3705 if (!slot)
3706 return -ENOTTY;
3707
3708 if (!probe)
3709 pci_slot_lock(slot);
3710
3711 might_sleep();
3712
3713 rc = pci_reset_hotplug_slot(slot->hotplug, probe);
3714
3715 if (!probe)
3716 pci_slot_unlock(slot);
3717
3718 return rc;
3719}
3720
9a3d2b9b
AW
3721/**
3722 * pci_probe_reset_slot - probe whether a PCI slot can be reset
3723 * @slot: PCI slot to probe
3724 *
3725 * Return 0 if slot can be reset, negative if a slot reset is not supported.
3726 */
3727int pci_probe_reset_slot(struct pci_slot *slot)
3728{
3729 return pci_slot_reset(slot, 1);
3730}
3731EXPORT_SYMBOL_GPL(pci_probe_reset_slot);
3732
090a3c53
AW
3733/**
3734 * pci_reset_slot - reset a PCI slot
3735 * @slot: PCI slot to reset
3736 *
3737 * A PCI bus may host multiple slots, each slot may support a reset mechanism
3738 * independent of other slots. For instance, some slots may support slot power
3739 * control. In the case of a 1:1 bus to slot architecture, this function may
3740 * wrap the bus reset to avoid spurious slot related events such as hotplug.
3741 * Generally a slot reset should be attempted before a bus reset. All of the
3742 * function of the slot and any subordinate buses behind the slot are reset
3743 * through this function. PCI config space of all devices in the slot and
3744 * behind the slot is saved before and restored after reset.
3745 *
3746 * Return 0 on success, non-zero on error.
3747 */
3748int pci_reset_slot(struct pci_slot *slot)
3749{
3750 int rc;
3751
3752 rc = pci_slot_reset(slot, 1);
3753 if (rc)
3754 return rc;
3755
3756 pci_slot_save_and_disable(slot);
3757
3758 rc = pci_slot_reset(slot, 0);
3759
3760 pci_slot_restore(slot);
3761
3762 return rc;
3763}
3764EXPORT_SYMBOL_GPL(pci_reset_slot);
3765
3766static int pci_bus_reset(struct pci_bus *bus, int probe)
3767{
3768 if (!bus->self)
3769 return -ENOTTY;
3770
3771 if (probe)
3772 return 0;
3773
3774 pci_bus_lock(bus);
3775
3776 might_sleep();
3777
3778 pci_reset_bridge_secondary_bus(bus->self);
3779
3780 pci_bus_unlock(bus);
3781
3782 return 0;
3783}
3784
9a3d2b9b
AW
3785/**
3786 * pci_probe_reset_bus - probe whether a PCI bus can be reset
3787 * @bus: PCI bus to probe
3788 *
3789 * Return 0 if bus can be reset, negative if a bus reset is not supported.
3790 */
3791int pci_probe_reset_bus(struct pci_bus *bus)
3792{
3793 return pci_bus_reset(bus, 1);
3794}
3795EXPORT_SYMBOL_GPL(pci_probe_reset_bus);
3796
090a3c53
AW
3797/**
3798 * pci_reset_bus - reset a PCI bus
3799 * @bus: top level PCI bus to reset
3800 *
3801 * Do a bus reset on the given bus and any subordinate buses, saving
3802 * and restoring state of all devices.
3803 *
3804 * Return 0 on success, non-zero on error.
3805 */
3806int pci_reset_bus(struct pci_bus *bus)
3807{
3808 int rc;
3809
3810 rc = pci_bus_reset(bus, 1);
3811 if (rc)
3812 return rc;
3813
3814 pci_bus_save_and_disable(bus);
3815
3816 rc = pci_bus_reset(bus, 0);
3817
3818 pci_bus_restore(bus);
3819
3820 return rc;
3821}
3822EXPORT_SYMBOL_GPL(pci_reset_bus);
3823
d556ad4b
PO
3824/**
3825 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
3826 * @dev: PCI device to query
3827 *
3828 * Returns mmrbc: maximum designed memory read count in bytes
3829 * or appropriate error value.
3830 */
3831int pcix_get_max_mmrbc(struct pci_dev *dev)
3832{
7c9e2b1c 3833 int cap;
d556ad4b
PO
3834 u32 stat;
3835
3836 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3837 if (!cap)
3838 return -EINVAL;
3839
7c9e2b1c 3840 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
d556ad4b
PO
3841 return -EINVAL;
3842
25daeb55 3843 return 512 << ((stat & PCI_X_STATUS_MAX_READ) >> 21);
d556ad4b
PO
3844}
3845EXPORT_SYMBOL(pcix_get_max_mmrbc);
3846
3847/**
3848 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
3849 * @dev: PCI device to query
3850 *
3851 * Returns mmrbc: maximum memory read count in bytes
3852 * or appropriate error value.
3853 */
3854int pcix_get_mmrbc(struct pci_dev *dev)
3855{
7c9e2b1c 3856 int cap;
bdc2bda7 3857 u16 cmd;
d556ad4b
PO
3858
3859 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3860 if (!cap)
3861 return -EINVAL;
3862
7c9e2b1c
DN
3863 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3864 return -EINVAL;
d556ad4b 3865
7c9e2b1c 3866 return 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
d556ad4b
PO
3867}
3868EXPORT_SYMBOL(pcix_get_mmrbc);
3869
3870/**
3871 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
3872 * @dev: PCI device to query
3873 * @mmrbc: maximum memory read count in bytes
3874 * valid values are 512, 1024, 2048, 4096
3875 *
3876 * If possible sets maximum memory read byte count, some bridges have erratas
3877 * that prevent this.
3878 */
3879int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
3880{
7c9e2b1c 3881 int cap;
bdc2bda7
DN
3882 u32 stat, v, o;
3883 u16 cmd;
d556ad4b 3884
229f5afd 3885 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
7c9e2b1c 3886 return -EINVAL;
d556ad4b
PO
3887
3888 v = ffs(mmrbc) - 10;
3889
3890 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
3891 if (!cap)
7c9e2b1c 3892 return -EINVAL;
d556ad4b 3893
7c9e2b1c
DN
3894 if (pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat))
3895 return -EINVAL;
d556ad4b
PO
3896
3897 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
3898 return -E2BIG;
3899
7c9e2b1c
DN
3900 if (pci_read_config_word(dev, cap + PCI_X_CMD, &cmd))
3901 return -EINVAL;
d556ad4b
PO
3902
3903 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
3904 if (o != v) {
809a3bf9 3905 if (v > o && (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
d556ad4b
PO
3906 return -EIO;
3907
3908 cmd &= ~PCI_X_CMD_MAX_READ;
3909 cmd |= v << 2;
7c9e2b1c
DN
3910 if (pci_write_config_word(dev, cap + PCI_X_CMD, cmd))
3911 return -EIO;
d556ad4b 3912 }
7c9e2b1c 3913 return 0;
d556ad4b
PO
3914}
3915EXPORT_SYMBOL(pcix_set_mmrbc);
3916
3917/**
3918 * pcie_get_readrq - get PCI Express read request size
3919 * @dev: PCI device to query
3920 *
3921 * Returns maximum memory read request in bytes
3922 * or appropriate error value.
3923 */
3924int pcie_get_readrq(struct pci_dev *dev)
3925{
d556ad4b
PO
3926 u16 ctl;
3927
59875ae4 3928 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
d556ad4b 3929
59875ae4 3930 return 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
d556ad4b
PO
3931}
3932EXPORT_SYMBOL(pcie_get_readrq);
3933
3934/**
3935 * pcie_set_readrq - set PCI Express maximum memory read request
3936 * @dev: PCI device to query
42e61f4a 3937 * @rq: maximum memory read count in bytes
d556ad4b
PO
3938 * valid values are 128, 256, 512, 1024, 2048, 4096
3939 *
c9b378c7 3940 * If possible sets maximum memory read request in bytes
d556ad4b
PO
3941 */
3942int pcie_set_readrq(struct pci_dev *dev, int rq)
3943{
59875ae4 3944 u16 v;
d556ad4b 3945
229f5afd 3946 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
59875ae4 3947 return -EINVAL;
d556ad4b 3948
a1c473aa
BH
3949 /*
3950 * If using the "performance" PCIe config, we clamp the
3951 * read rq size to the max packet size to prevent the
3952 * host bridge generating requests larger than we can
3953 * cope with
3954 */
3955 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
3956 int mps = pcie_get_mps(dev);
3957
a1c473aa
BH
3958 if (mps < rq)
3959 rq = mps;
3960 }
3961
3962 v = (ffs(rq) - 8) << 12;
d556ad4b 3963
59875ae4
JL
3964 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
3965 PCI_EXP_DEVCTL_READRQ, v);
d556ad4b
PO
3966}
3967EXPORT_SYMBOL(pcie_set_readrq);
3968
b03e7495
JM
3969/**
3970 * pcie_get_mps - get PCI Express maximum payload size
3971 * @dev: PCI device to query
3972 *
3973 * Returns maximum payload size in bytes
b03e7495
JM
3974 */
3975int pcie_get_mps(struct pci_dev *dev)
3976{
b03e7495
JM
3977 u16 ctl;
3978
59875ae4 3979 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
b03e7495 3980
59875ae4 3981 return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
b03e7495 3982}
f1c66c46 3983EXPORT_SYMBOL(pcie_get_mps);
b03e7495
JM
3984
3985/**
3986 * pcie_set_mps - set PCI Express maximum payload size
3987 * @dev: PCI device to query
47c08f31 3988 * @mps: maximum payload size in bytes
b03e7495
JM
3989 * valid values are 128, 256, 512, 1024, 2048, 4096
3990 *
3991 * If possible sets maximum payload size
3992 */
3993int pcie_set_mps(struct pci_dev *dev, int mps)
3994{
59875ae4 3995 u16 v;
b03e7495
JM
3996
3997 if (mps < 128 || mps > 4096 || !is_power_of_2(mps))
59875ae4 3998 return -EINVAL;
b03e7495
JM
3999
4000 v = ffs(mps) - 8;
f7625980 4001 if (v > dev->pcie_mpss)
59875ae4 4002 return -EINVAL;
b03e7495
JM
4003 v <<= 5;
4004
59875ae4
JL
4005 return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
4006 PCI_EXP_DEVCTL_PAYLOAD, v);
b03e7495 4007}
f1c66c46 4008EXPORT_SYMBOL(pcie_set_mps);
b03e7495 4009
81377c8d
JK
4010/**
4011 * pcie_get_minimum_link - determine minimum link settings of a PCI device
4012 * @dev: PCI device to query
4013 * @speed: storage for minimum speed
4014 * @width: storage for minimum width
4015 *
4016 * This function will walk up the PCI device chain and determine the minimum
4017 * link width and speed of the device.
4018 */
4019int pcie_get_minimum_link(struct pci_dev *dev, enum pci_bus_speed *speed,
4020 enum pcie_link_width *width)
4021{
4022 int ret;
4023
4024 *speed = PCI_SPEED_UNKNOWN;
4025 *width = PCIE_LNK_WIDTH_UNKNOWN;
4026
4027 while (dev) {
4028 u16 lnksta;
4029 enum pci_bus_speed next_speed;
4030 enum pcie_link_width next_width;
4031
4032 ret = pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta);
4033 if (ret)
4034 return ret;
4035
4036 next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS];
4037 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >>
4038 PCI_EXP_LNKSTA_NLW_SHIFT;
4039
4040 if (next_speed < *speed)
4041 *speed = next_speed;
4042
4043 if (next_width < *width)
4044 *width = next_width;
4045
4046 dev = dev->bus->self;
4047 }
4048
4049 return 0;
4050}
4051EXPORT_SYMBOL(pcie_get_minimum_link);
4052
c87deff7
HS
4053/**
4054 * pci_select_bars - Make BAR mask from the type of resource
f95d882d 4055 * @dev: the PCI device for which BAR mask is made
c87deff7
HS
4056 * @flags: resource type mask to be selected
4057 *
4058 * This helper routine makes bar mask from the type of resource.
4059 */
4060int pci_select_bars(struct pci_dev *dev, unsigned long flags)
4061{
4062 int i, bars = 0;
4063 for (i = 0; i < PCI_NUM_RESOURCES; i++)
4064 if (pci_resource_flags(dev, i) & flags)
4065 bars |= (1 << i);
4066 return bars;
4067}
4068
613e7ed6
YZ
4069/**
4070 * pci_resource_bar - get position of the BAR associated with a resource
4071 * @dev: the PCI device
4072 * @resno: the resource number
4073 * @type: the BAR type to be filled in
4074 *
4075 * Returns BAR position in config space, or 0 if the BAR is invalid.
4076 */
4077int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type)
4078{
d1b054da
YZ
4079 int reg;
4080
613e7ed6
YZ
4081 if (resno < PCI_ROM_RESOURCE) {
4082 *type = pci_bar_unknown;
4083 return PCI_BASE_ADDRESS_0 + 4 * resno;
4084 } else if (resno == PCI_ROM_RESOURCE) {
4085 *type = pci_bar_mem32;
4086 return dev->rom_base_reg;
d1b054da
YZ
4087 } else if (resno < PCI_BRIDGE_RESOURCES) {
4088 /* device specific resource */
4089 reg = pci_iov_resource_bar(dev, resno, type);
4090 if (reg)
4091 return reg;
613e7ed6
YZ
4092 }
4093
865df576 4094 dev_err(&dev->dev, "BAR %d: invalid resource\n", resno);
613e7ed6
YZ
4095 return 0;
4096}
4097
95a8b6ef
MT
4098/* Some architectures require additional programming to enable VGA */
4099static arch_set_vga_state_t arch_set_vga_state;
4100
4101void __init pci_register_set_vga_state(arch_set_vga_state_t func)
4102{
4103 arch_set_vga_state = func; /* NULL disables */
4104}
4105
4106static int pci_set_vga_state_arch(struct pci_dev *dev, bool decode,
7ad35cf2 4107 unsigned int command_bits, u32 flags)
95a8b6ef
MT
4108{
4109 if (arch_set_vga_state)
4110 return arch_set_vga_state(dev, decode, command_bits,
7ad35cf2 4111 flags);
95a8b6ef
MT
4112 return 0;
4113}
4114
deb2d2ec
BH
4115/**
4116 * pci_set_vga_state - set VGA decode state on device and parents if requested
19eea630
RD
4117 * @dev: the PCI device
4118 * @decode: true = enable decoding, false = disable decoding
4119 * @command_bits: PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY
3f37d622 4120 * @flags: traverse ancestors and change bridges
3448a19d 4121 * CHANGE_BRIDGE_ONLY / CHANGE_BRIDGE
deb2d2ec
BH
4122 */
4123int pci_set_vga_state(struct pci_dev *dev, bool decode,
3448a19d 4124 unsigned int command_bits, u32 flags)
deb2d2ec
BH
4125{
4126 struct pci_bus *bus;
4127 struct pci_dev *bridge;
4128 u16 cmd;
95a8b6ef 4129 int rc;
deb2d2ec 4130
3448a19d 4131 WARN_ON((flags & PCI_VGA_STATE_CHANGE_DECODES) & (command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)));
deb2d2ec 4132
95a8b6ef 4133 /* ARCH specific VGA enables */
3448a19d 4134 rc = pci_set_vga_state_arch(dev, decode, command_bits, flags);
95a8b6ef
MT
4135 if (rc)
4136 return rc;
4137
3448a19d
DA
4138 if (flags & PCI_VGA_STATE_CHANGE_DECODES) {
4139 pci_read_config_word(dev, PCI_COMMAND, &cmd);
4140 if (decode == true)
4141 cmd |= command_bits;
4142 else
4143 cmd &= ~command_bits;
4144 pci_write_config_word(dev, PCI_COMMAND, cmd);
4145 }
deb2d2ec 4146
3448a19d 4147 if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
deb2d2ec
BH
4148 return 0;
4149
4150 bus = dev->bus;
4151 while (bus) {
4152 bridge = bus->self;
4153 if (bridge) {
4154 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
4155 &cmd);
4156 if (decode == true)
4157 cmd |= PCI_BRIDGE_CTL_VGA;
4158 else
4159 cmd &= ~PCI_BRIDGE_CTL_VGA;
4160 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL,
4161 cmd);
4162 }
4163 bus = bus->parent;
4164 }
4165 return 0;
4166}
4167
32a9a682
YS
4168#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
4169static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
e9d1e492 4170static DEFINE_SPINLOCK(resource_alignment_lock);
32a9a682
YS
4171
4172/**
4173 * pci_specified_resource_alignment - get resource alignment specified by user.
4174 * @dev: the PCI device to get
4175 *
4176 * RETURNS: Resource alignment if it is specified.
4177 * Zero if it is not specified.
4178 */
9738abed 4179static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
32a9a682
YS
4180{
4181 int seg, bus, slot, func, align_order, count;
4182 resource_size_t align = 0;
4183 char *p;
4184
4185 spin_lock(&resource_alignment_lock);
4186 p = resource_alignment_param;
4187 while (*p) {
4188 count = 0;
4189 if (sscanf(p, "%d%n", &align_order, &count) == 1 &&
4190 p[count] == '@') {
4191 p += count + 1;
4192 } else {
4193 align_order = -1;
4194 }
4195 if (sscanf(p, "%x:%x:%x.%x%n",
4196 &seg, &bus, &slot, &func, &count) != 4) {
4197 seg = 0;
4198 if (sscanf(p, "%x:%x.%x%n",
4199 &bus, &slot, &func, &count) != 3) {
4200 /* Invalid format */
4201 printk(KERN_ERR "PCI: Can't parse resource_alignment parameter: %s\n",
4202 p);
4203 break;
4204 }
4205 }
4206 p += count;
4207 if (seg == pci_domain_nr(dev->bus) &&
4208 bus == dev->bus->number &&
4209 slot == PCI_SLOT(dev->devfn) &&
4210 func == PCI_FUNC(dev->devfn)) {
4211 if (align_order == -1) {
4212 align = PAGE_SIZE;
4213 } else {
4214 align = 1 << align_order;
4215 }
4216 /* Found */
4217 break;
4218 }
4219 if (*p != ';' && *p != ',') {
4220 /* End of param or invalid format */
4221 break;
4222 }
4223 p++;
4224 }
4225 spin_unlock(&resource_alignment_lock);
4226 return align;
4227}
4228
2069ecfb
YL
4229/*
4230 * This function disables memory decoding and releases memory resources
4231 * of the device specified by kernel's boot parameter 'pci=resource_alignment='.
4232 * It also rounds up size to specified alignment.
4233 * Later on, the kernel will assign page-aligned memory resource back
4234 * to the device.
4235 */
4236void pci_reassigndev_resource_alignment(struct pci_dev *dev)
4237{
4238 int i;
4239 struct resource *r;
4240 resource_size_t align, size;
4241 u16 command;
4242
10c463a7
YL
4243 /* check if specified PCI is target device to reassign */
4244 align = pci_specified_resource_alignment(dev);
4245 if (!align)
2069ecfb
YL
4246 return;
4247
4248 if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
4249 (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
4250 dev_warn(&dev->dev,
4251 "Can't reassign resources to host bridge.\n");
4252 return;
4253 }
4254
4255 dev_info(&dev->dev,
4256 "Disabling memory decoding and releasing memory resources.\n");
4257 pci_read_config_word(dev, PCI_COMMAND, &command);
4258 command &= ~PCI_COMMAND_MEMORY;
4259 pci_write_config_word(dev, PCI_COMMAND, command);
4260
2069ecfb
YL
4261 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
4262 r = &dev->resource[i];
4263 if (!(r->flags & IORESOURCE_MEM))
4264 continue;
4265 size = resource_size(r);
4266 if (size < align) {
4267 size = align;
4268 dev_info(&dev->dev,
4269 "Rounding up size of resource #%d to %#llx.\n",
4270 i, (unsigned long long)size);
4271 }
4272 r->end = size - 1;
4273 r->start = 0;
4274 }
4275 /* Need to disable bridge's resource window,
4276 * to enable the kernel to reassign new resource
4277 * window later on.
4278 */
4279 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
4280 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
4281 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
4282 r = &dev->resource[i];
4283 if (!(r->flags & IORESOURCE_MEM))
4284 continue;
4285 r->end = resource_size(r) - 1;
4286 r->start = 0;
4287 }
4288 pci_disable_bridge_window(dev);
4289 }
4290}
4291
9738abed 4292static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
32a9a682
YS
4293{
4294 if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
4295 count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
4296 spin_lock(&resource_alignment_lock);
4297 strncpy(resource_alignment_param, buf, count);
4298 resource_alignment_param[count] = '\0';
4299 spin_unlock(&resource_alignment_lock);
4300 return count;
4301}
4302
9738abed 4303static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
32a9a682
YS
4304{
4305 size_t count;
4306 spin_lock(&resource_alignment_lock);
4307 count = snprintf(buf, size, "%s", resource_alignment_param);
4308 spin_unlock(&resource_alignment_lock);
4309 return count;
4310}
4311
4312static ssize_t pci_resource_alignment_show(struct bus_type *bus, char *buf)
4313{
4314 return pci_get_resource_alignment_param(buf, PAGE_SIZE);
4315}
4316
4317static ssize_t pci_resource_alignment_store(struct bus_type *bus,
4318 const char *buf, size_t count)
4319{
4320 return pci_set_resource_alignment_param(buf, count);
4321}
4322
4323BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show,
4324 pci_resource_alignment_store);
4325
4326static int __init pci_resource_alignment_sysfs_init(void)
4327{
4328 return bus_create_file(&pci_bus_type,
4329 &bus_attr_resource_alignment);
4330}
4331
4332late_initcall(pci_resource_alignment_sysfs_init);
4333
15856ad5 4334static void pci_no_domains(void)
32a2eea7
JG
4335{
4336#ifdef CONFIG_PCI_DOMAINS
4337 pci_domains_supported = 0;
4338#endif
4339}
4340
0ef5f8f6 4341/**
642c92da 4342 * pci_ext_cfg_avail - can we access extended PCI config space?
0ef5f8f6
AP
4343 *
4344 * Returns 1 if we can access PCI extended config space (offsets
4345 * greater than 0xff). This is the default implementation. Architecture
4346 * implementations can override this.
4347 */
642c92da 4348int __weak pci_ext_cfg_avail(void)
0ef5f8f6
AP
4349{
4350 return 1;
4351}
4352
2d1c8618
BH
4353void __weak pci_fixup_cardbus(struct pci_bus *bus)
4354{
4355}
4356EXPORT_SYMBOL(pci_fixup_cardbus);
4357
ad04d31e 4358static int __init pci_setup(char *str)
1da177e4
LT
4359{
4360 while (str) {
4361 char *k = strchr(str, ',');
4362 if (k)
4363 *k++ = 0;
4364 if (*str && (str = pcibios_setup(str)) && *str) {
309e57df
MW
4365 if (!strcmp(str, "nomsi")) {
4366 pci_no_msi();
7f785763
RD
4367 } else if (!strcmp(str, "noaer")) {
4368 pci_no_aer();
b55438fd
YL
4369 } else if (!strncmp(str, "realloc=", 8)) {
4370 pci_realloc_get_opt(str + 8);
f483d392 4371 } else if (!strncmp(str, "realloc", 7)) {
b55438fd 4372 pci_realloc_get_opt("on");
32a2eea7
JG
4373 } else if (!strcmp(str, "nodomains")) {
4374 pci_no_domains();
6748dcc2
RW
4375 } else if (!strncmp(str, "noari", 5)) {
4376 pcie_ari_disabled = true;
4516a618
AN
4377 } else if (!strncmp(str, "cbiosize=", 9)) {
4378 pci_cardbus_io_size = memparse(str + 9, &str);
4379 } else if (!strncmp(str, "cbmemsize=", 10)) {
4380 pci_cardbus_mem_size = memparse(str + 10, &str);
32a9a682
YS
4381 } else if (!strncmp(str, "resource_alignment=", 19)) {
4382 pci_set_resource_alignment_param(str + 19,
4383 strlen(str + 19));
43c16408
AP
4384 } else if (!strncmp(str, "ecrc=", 5)) {
4385 pcie_ecrc_get_policy(str + 5);
28760489
EB
4386 } else if (!strncmp(str, "hpiosize=", 9)) {
4387 pci_hotplug_io_size = memparse(str + 9, &str);
4388 } else if (!strncmp(str, "hpmemsize=", 10)) {
4389 pci_hotplug_mem_size = memparse(str + 10, &str);
5f39e670
JM
4390 } else if (!strncmp(str, "pcie_bus_tune_off", 17)) {
4391 pcie_bus_config = PCIE_BUS_TUNE_OFF;
b03e7495
JM
4392 } else if (!strncmp(str, "pcie_bus_safe", 13)) {
4393 pcie_bus_config = PCIE_BUS_SAFE;
4394 } else if (!strncmp(str, "pcie_bus_perf", 13)) {
4395 pcie_bus_config = PCIE_BUS_PERFORMANCE;
5f39e670
JM
4396 } else if (!strncmp(str, "pcie_bus_peer2peer", 18)) {
4397 pcie_bus_config = PCIE_BUS_PEER2PEER;
284f5f9d
BH
4398 } else if (!strncmp(str, "pcie_scan_all", 13)) {
4399 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
309e57df
MW
4400 } else {
4401 printk(KERN_ERR "PCI: Unknown option `%s'\n",
4402 str);
4403 }
1da177e4
LT
4404 }
4405 str = k;
4406 }
0637a70a 4407 return 0;
1da177e4 4408}
0637a70a 4409early_param("pci", pci_setup);
1da177e4 4410
0b62e13b 4411EXPORT_SYMBOL(pci_reenable_device);
b718989d
BH
4412EXPORT_SYMBOL(pci_enable_device_io);
4413EXPORT_SYMBOL(pci_enable_device_mem);
1da177e4 4414EXPORT_SYMBOL(pci_enable_device);
9ac7849e
TH
4415EXPORT_SYMBOL(pcim_enable_device);
4416EXPORT_SYMBOL(pcim_pin_device);
1da177e4 4417EXPORT_SYMBOL(pci_disable_device);
1da177e4
LT
4418EXPORT_SYMBOL(pci_find_capability);
4419EXPORT_SYMBOL(pci_bus_find_capability);
4420EXPORT_SYMBOL(pci_release_regions);
4421EXPORT_SYMBOL(pci_request_regions);
e8de1481 4422EXPORT_SYMBOL(pci_request_regions_exclusive);
1da177e4
LT
4423EXPORT_SYMBOL(pci_release_region);
4424EXPORT_SYMBOL(pci_request_region);
e8de1481 4425EXPORT_SYMBOL(pci_request_region_exclusive);
c87deff7
HS
4426EXPORT_SYMBOL(pci_release_selected_regions);
4427EXPORT_SYMBOL(pci_request_selected_regions);
e8de1481 4428EXPORT_SYMBOL(pci_request_selected_regions_exclusive);
1da177e4 4429EXPORT_SYMBOL(pci_set_master);
6a479079 4430EXPORT_SYMBOL(pci_clear_master);
1da177e4 4431EXPORT_SYMBOL(pci_set_mwi);
694625c0 4432EXPORT_SYMBOL(pci_try_set_mwi);
1da177e4 4433EXPORT_SYMBOL(pci_clear_mwi);
a04ce0ff 4434EXPORT_SYMBOL_GPL(pci_intx);
1da177e4
LT
4435EXPORT_SYMBOL(pci_assign_resource);
4436EXPORT_SYMBOL(pci_find_parent_resource);
c87deff7 4437EXPORT_SYMBOL(pci_select_bars);
1da177e4
LT
4438
4439EXPORT_SYMBOL(pci_set_power_state);
4440EXPORT_SYMBOL(pci_save_state);
4441EXPORT_SYMBOL(pci_restore_state);
e5899e1b 4442EXPORT_SYMBOL(pci_pme_capable);
5a6c9b60 4443EXPORT_SYMBOL(pci_pme_active);
0235c4fc 4444EXPORT_SYMBOL(pci_wake_from_d3);
e5899e1b 4445EXPORT_SYMBOL(pci_target_state);
404cc2d8
RW
4446EXPORT_SYMBOL(pci_prepare_to_sleep);
4447EXPORT_SYMBOL(pci_back_from_sleep);
f7bdd12d 4448EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
This page took 0.974889 seconds and 5 git commands to generate.