blob: 1b0ec45e9934f2aa05c951d716ac1a4f2908c0ee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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>
David Brownell075c1772007-04-26 00:12:06 -070014#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/string.h>
vignesh babu229f5af2007-08-13 18:23:14 +053018#include <linux/log2.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080019#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/dma.h> /* isa_dma_bridge_buggy */
Greg KHbc56b9e2005-04-08 14:53:31 +090021#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -070023unsigned int pci_pm_d3_delay = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jeff Garzik32a2eea2007-10-11 16:57:27 -040025#ifdef CONFIG_PCI_DOMAINS
26int pci_domains_supported = 1;
27#endif
28
Atsushi Nemoto4516a612007-02-05 16:36:06 -080029#define DEFAULT_CARDBUS_IO_SIZE (256)
30#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
31/* pci=cbmemsize=nnM,cbiosize=nn can override this */
32unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
33unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/**
36 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
37 * @bus: pointer to PCI bus structure to search
38 *
39 * Given a PCI bus, returns the highest PCI bus number present in the set
40 * including the given PCI bus and its list of child PCI buses.
41 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080042unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct list_head *tmp;
45 unsigned char max, n;
46
Kristen Accardib82db5c2006-01-17 16:56:56 -080047 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 list_for_each(tmp, &bus->children) {
49 n = pci_bus_max_busnr(pci_bus_b(tmp));
50 if(n > max)
51 max = n;
52 }
53 return max;
54}
Kristen Accardib82db5c2006-01-17 16:56:56 -080055EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Kristen Accardib82db5c2006-01-17 16:56:56 -080057#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/**
59 * pci_max_busnr - returns maximum PCI bus number
60 *
61 * Returns the highest PCI bus number present in the system global list of
62 * PCI buses.
63 */
64unsigned char __devinit
65pci_max_busnr(void)
66{
67 struct pci_bus *bus = NULL;
68 unsigned char max, n;
69
70 max = 0;
71 while ((bus = pci_find_next_bus(bus)) != NULL) {
72 n = pci_bus_max_busnr(bus);
73 if(n > max)
74 max = n;
75 }
76 return max;
77}
78
Adrian Bunk54c762f2005-12-22 01:08:52 +010079#endif /* 0 */
80
Michael Ellerman687d5fe2006-11-22 18:26:18 +110081#define PCI_FIND_CAP_TTL 48
82
83static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
84 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -070085{
86 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -070087
Michael Ellerman687d5fe2006-11-22 18:26:18 +110088 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -070089 pci_bus_read_config_byte(bus, devfn, pos, &pos);
90 if (pos < 0x40)
91 break;
92 pos &= ~3;
93 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
94 &id);
95 if (id == 0xff)
96 break;
97 if (id == cap)
98 return pos;
99 pos += PCI_CAP_LIST_NEXT;
100 }
101 return 0;
102}
103
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100104static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
105 u8 pos, int cap)
106{
107 int ttl = PCI_FIND_CAP_TTL;
108
109 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
110}
111
Roland Dreier24a4e372005-10-28 17:35:34 -0700112int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
113{
114 return __pci_find_next_cap(dev->bus, dev->devfn,
115 pos + PCI_CAP_LIST_NEXT, cap);
116}
117EXPORT_SYMBOL_GPL(pci_find_next_capability);
118
Michael Ellermand3bac112006-11-22 18:26:16 +1100119static int __pci_bus_find_cap_start(struct pci_bus *bus,
120 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
125 if (!(status & PCI_STATUS_CAP_LIST))
126 return 0;
127
128 switch (hdr_type) {
129 case PCI_HEADER_TYPE_NORMAL:
130 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100131 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100133 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 default:
135 return 0;
136 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100137
138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141/**
142 * pci_find_capability - query for devices' capabilities
143 * @dev: PCI device to query
144 * @cap: capability code
145 *
146 * Tell if a device supports a given PCI capability.
147 * Returns the address of the requested capability structure within the
148 * device's PCI configuration space or 0 in case the device does not
149 * support it. Possible values for @cap:
150 *
151 * %PCI_CAP_ID_PM Power Management
152 * %PCI_CAP_ID_AGP Accelerated Graphics Port
153 * %PCI_CAP_ID_VPD Vital Product Data
154 * %PCI_CAP_ID_SLOTID Slot Identification
155 * %PCI_CAP_ID_MSI Message Signalled Interrupts
156 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
157 * %PCI_CAP_ID_PCIX PCI-X
158 * %PCI_CAP_ID_EXP PCI Express
159 */
160int pci_find_capability(struct pci_dev *dev, int cap)
161{
Michael Ellermand3bac112006-11-22 18:26:16 +1100162 int pos;
163
164 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
165 if (pos)
166 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
167
168 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171/**
172 * pci_bus_find_capability - query for devices' capabilities
173 * @bus: the PCI bus to query
174 * @devfn: PCI device to query
175 * @cap: capability code
176 *
177 * Like pci_find_capability() but works for pci devices that do not have a
178 * pci_dev structure set up yet.
179 *
180 * Returns the address of the requested capability structure within the
181 * device's PCI configuration space or 0 in case the device does not
182 * support it.
183 */
184int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
185{
Michael Ellermand3bac112006-11-22 18:26:16 +1100186 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 u8 hdr_type;
188
189 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
190
Michael Ellermand3bac112006-11-22 18:26:16 +1100191 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
192 if (pos)
193 pos = __pci_find_next_cap(bus, devfn, pos, cap);
194
195 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198/**
199 * pci_find_ext_capability - Find an extended capability
200 * @dev: PCI device to query
201 * @cap: capability code
202 *
203 * Returns the address of the requested extended capability structure
204 * within the device's PCI configuration space or 0 if the device does
205 * not support it. Possible values for @cap:
206 *
207 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
208 * %PCI_EXT_CAP_ID_VC Virtual Channel
209 * %PCI_EXT_CAP_ID_DSN Device Serial Number
210 * %PCI_EXT_CAP_ID_PWR Power Budgeting
211 */
212int pci_find_ext_capability(struct pci_dev *dev, int cap)
213{
214 u32 header;
215 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
216 int pos = 0x100;
217
218 if (dev->cfg_size <= 256)
219 return 0;
220
221 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
222 return 0;
223
224 /*
225 * If we have no capabilities, this is indicated by cap ID,
226 * cap version and next pointer all being 0.
227 */
228 if (header == 0)
229 return 0;
230
231 while (ttl-- > 0) {
232 if (PCI_EXT_CAP_ID(header) == cap)
233 return pos;
234
235 pos = PCI_EXT_CAP_NEXT(header);
236 if (pos < 0x100)
237 break;
238
239 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
240 break;
241 }
242
243 return 0;
244}
Brice Goglin3a720d72006-05-23 06:10:01 -0400245EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100247static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
248{
249 int rc, ttl = PCI_FIND_CAP_TTL;
250 u8 cap, mask;
251
252 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
253 mask = HT_3BIT_CAP_MASK;
254 else
255 mask = HT_5BIT_CAP_MASK;
256
257 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
258 PCI_CAP_ID_HT, &ttl);
259 while (pos) {
260 rc = pci_read_config_byte(dev, pos + 3, &cap);
261 if (rc != PCIBIOS_SUCCESSFUL)
262 return 0;
263
264 if ((cap & mask) == ht_cap)
265 return pos;
266
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800267 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
268 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100269 PCI_CAP_ID_HT, &ttl);
270 }
271
272 return 0;
273}
274/**
275 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
276 * @dev: PCI device to query
277 * @pos: Position from which to continue searching
278 * @ht_cap: Hypertransport capability code
279 *
280 * To be used in conjunction with pci_find_ht_capability() to search for
281 * all capabilities matching @ht_cap. @pos should always be a value returned
282 * from pci_find_ht_capability().
283 *
284 * NB. To be 100% safe against broken PCI devices, the caller should take
285 * steps to avoid an infinite loop.
286 */
287int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
288{
289 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
290}
291EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
292
293/**
294 * pci_find_ht_capability - query a device's Hypertransport capabilities
295 * @dev: PCI device to query
296 * @ht_cap: Hypertransport capability code
297 *
298 * Tell if a device supports a given Hypertransport capability.
299 * Returns an address within the device's PCI configuration space
300 * or 0 in case the device does not support the request capability.
301 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
302 * which has a Hypertransport capability matching @ht_cap.
303 */
304int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
305{
306 int pos;
307
308 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
309 if (pos)
310 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
311
312 return pos;
313}
314EXPORT_SYMBOL_GPL(pci_find_ht_capability);
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/**
317 * pci_find_parent_resource - return resource region of parent bus of given region
318 * @dev: PCI device structure contains resources to be searched
319 * @res: child resource record for which parent is sought
320 *
321 * For given resource region of given device, return the resource
322 * region of parent bus the given region is contained in or where
323 * it should be allocated from.
324 */
325struct resource *
326pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
327{
328 const struct pci_bus *bus = dev->bus;
329 int i;
330 struct resource *best = NULL;
331
332 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
333 struct resource *r = bus->resource[i];
334 if (!r)
335 continue;
336 if (res->start && !(res->start >= r->start && res->end <= r->end))
337 continue; /* Not contained */
338 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
339 continue; /* Wrong type */
340 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
341 return r; /* Exact match */
342 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
343 best = r; /* Approximating prefetchable by non-prefetchable */
344 }
345 return best;
346}
347
348/**
John W. Linville064b53d2005-07-27 10:19:44 -0400349 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
350 * @dev: PCI device to have its BARs restored
351 *
352 * Restore the BAR values for a given device, so as to make it
353 * accessible by its driver.
354 */
Adrian Bunkad6685992007-10-27 03:06:22 +0200355static void
John W. Linville064b53d2005-07-27 10:19:44 -0400356pci_restore_bars(struct pci_dev *dev)
357{
358 int i, numres;
359
360 switch (dev->hdr_type) {
361 case PCI_HEADER_TYPE_NORMAL:
362 numres = 6;
363 break;
364 case PCI_HEADER_TYPE_BRIDGE:
365 numres = 2;
366 break;
367 case PCI_HEADER_TYPE_CARDBUS:
368 numres = 1;
369 break;
370 default:
371 /* Should never get here, but just in case... */
372 return;
373 }
374
375 for (i = 0; i < numres; i ++)
376 pci_update_resource(dev, &dev->resource[i], i);
377}
378
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200379static struct pci_platform_pm_ops *pci_platform_pm;
380
381int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
382{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200383 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
384 || !ops->sleep_wake || !ops->can_wakeup)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200385 return -EINVAL;
386 pci_platform_pm = ops;
387 return 0;
388}
389
390static inline bool platform_pci_power_manageable(struct pci_dev *dev)
391{
392 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
393}
394
395static inline int platform_pci_set_power_state(struct pci_dev *dev,
396 pci_power_t t)
397{
398 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
399}
400
401static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
402{
403 return pci_platform_pm ?
404 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
405}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700406
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200407static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
408{
409 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
410}
411
412static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
413{
414 return pci_platform_pm ?
415 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
416}
417
John W. Linville064b53d2005-07-27 10:19:44 -0400418/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200419 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
420 * given PCI device
421 * @dev: PCI device to handle.
422 * @pm: PCI PM capability offset of the device.
423 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200425 * RETURN VALUE:
426 * -EINVAL if the requested state is invalid.
427 * -EIO if device does not support PCI PM or its PM capabilities register has a
428 * wrong version, or device doesn't support the requested state.
429 * 0 if device already is in the requested state.
430 * 0 if device's power state has been successfully changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200432static int
433pci_raw_set_power_state(struct pci_dev *dev, int pm, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 u16 pmcsr, pmc;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200436 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Andrew Lunncca03de2007-07-09 11:55:58 -0700438 if (!pm)
439 return -EIO;
440
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200441 if (state < PCI_D0 || state > PCI_D3hot)
442 return -EINVAL;
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /* Validate current state:
445 * Can enter D0 from any state, but if we can only go deeper
446 * to sleep if we're already in a low power state
447 */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200448 if (dev->current_state == state) {
449 /* we're already there */
450 return 0;
451 } else if (state != PCI_D0 && dev->current_state <= PCI_D3cold
452 && dev->current_state > state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600453 dev_err(&dev->dev, "invalid power transition "
454 "(from state %d to %d)\n", dev->current_state, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return -EINVAL;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200458 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700459
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700460 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200461 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
462 pmc & PCI_PM_CAP_VER_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -EIO;
464 }
465
466 /* check if this device supports the desired state */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200467 if ((state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
468 || (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2)))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700469 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
John W. Linville064b53d2005-07-27 10:19:44 -0400471 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
472
John W. Linville32a36582005-09-14 09:52:42 -0400473 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * This doesn't affect PME_Status, disables PME_En, and
475 * sets PowerState to 0.
476 */
John W. Linville32a36582005-09-14 09:52:42 -0400477 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400478 case PCI_D0:
479 case PCI_D1:
480 case PCI_D2:
481 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
482 pmcsr |= state;
483 break;
John W. Linville32a36582005-09-14 09:52:42 -0400484 case PCI_UNKNOWN: /* Boot-up */
485 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
486 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200487 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400488 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400489 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400490 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400491 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 /* enter specified state */
495 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
496
497 /* Mandatory power management transition delays */
498 /* see PCI PM 1.1 5.6.1 table 18 */
499 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700500 msleep(pci_pm_d3_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 else if (state == PCI_D2 || dev->current_state == PCI_D2)
502 udelay(200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David Shaohua Lib9131002005-03-19 00:16:18 -0500504 dev->current_state = state;
John W. Linville064b53d2005-07-27 10:19:44 -0400505
506 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
507 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
508 * from D3hot to D0 _may_ perform an internal reset, thereby
509 * going to "D0 Uninitialized" rather than "D0 Initialized".
510 * For example, at least some versions of the 3c905B and the
511 * 3c556B exhibit this behaviour.
512 *
513 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
514 * devices in a D3hot state at boot. Consequently, we need to
515 * restore at least the BARs so that the device will be
516 * accessible to its driver.
517 */
518 if (need_restore)
519 pci_restore_bars(dev);
520
Shaohua Li7d715a62008-02-25 09:46:41 +0800521 if (dev->bus->self)
522 pcie_aspm_pm_state_change(dev->bus->self);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 0;
525}
526
527/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200528 * pci_update_current_state - Read PCI power state of given device from its
529 * PCI PM registers and cache it
530 * @dev: PCI device to handle.
531 * @pm: PCI PM capability offset of the device.
532 */
533static void pci_update_current_state(struct pci_dev *dev, int pm)
534{
535 if (pm) {
536 u16 pmcsr;
537
538 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
539 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
540 }
541}
542
543/**
544 * pci_set_power_state - Set the power state of a PCI device
545 * @dev: PCI device to handle.
546 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
547 *
548 * Transition a device to a new power state, using the platform formware and/or
549 * the device's PCI PM registers.
550 *
551 * RETURN VALUE:
552 * -EINVAL if the requested state is invalid.
553 * -EIO if device does not support PCI PM or its PM capabilities register has a
554 * wrong version, or device doesn't support the requested state.
555 * 0 if device already is in the requested state.
556 * 0 if device's power state has been successfully changed.
557 */
558int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
559{
560 int pm, error;
561
562 /* bound the state we're entering */
563 if (state > PCI_D3hot)
564 state = PCI_D3hot;
565 else if (state < PCI_D0)
566 state = PCI_D0;
567 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
568 /*
569 * If the device or the parent bridge do not support PCI PM,
570 * ignore the request if we're doing anything other than putting
571 * it into D0 (which would only happen on boot).
572 */
573 return 0;
574
575 /* Find PCI PM capability in the list */
576 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
577
578 if (state == PCI_D0 && platform_pci_power_manageable(dev)) {
579 /*
580 * Allow the platform to change the state, for example via ACPI
581 * _PR0, _PS0 and some such, but do not trust it.
582 */
583 int ret = platform_pci_set_power_state(dev, PCI_D0);
584 if (!ret)
585 pci_update_current_state(dev, pm);
586 }
587
588 error = pci_raw_set_power_state(dev, pm, state);
589
590 if (state > PCI_D0 && platform_pci_power_manageable(dev)) {
591 /* Allow the platform to finalize the transition */
592 int ret = platform_pci_set_power_state(dev, state);
593 if (!ret) {
594 pci_update_current_state(dev, pm);
595 error = 0;
596 }
597 }
598
599 return error;
600}
601
602/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * pci_choose_state - Choose the power state of a PCI device
604 * @dev: PCI device to be suspended
605 * @state: target sleep state for the whole system. This is the value
606 * that is passed to suspend() function.
607 *
608 * Returns PCI power state suitable for given device and given system
609 * message.
610 */
611
612pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
613{
Shaohua Liab826ca2007-07-20 10:03:22 +0800614 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
617 return PCI_D0;
618
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200619 ret = platform_pci_choose_state(dev);
620 if (ret != PCI_POWER_ERROR)
621 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700622
623 switch (state.event) {
624 case PM_EVENT_ON:
625 return PCI_D0;
626 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700627 case PM_EVENT_PRETHAW:
628 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700629 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100630 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700631 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600633 dev_info(&dev->dev, "unrecognized suspend event %d\n",
634 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 BUG();
636 }
637 return PCI_D0;
638}
639
640EXPORT_SYMBOL(pci_choose_state);
641
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300642static int pci_save_pcie_state(struct pci_dev *dev)
643{
644 int pos, i = 0;
645 struct pci_cap_saved_state *save_state;
646 u16 *cap;
Shaohua Li017fc482007-12-18 09:57:09 +0800647 int found = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300648
649 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
650 if (pos <= 0)
651 return 0;
652
Eric W. Biederman9f355752007-03-08 13:06:13 -0700653 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
654 if (!save_state)
655 save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
Shaohua Li017fc482007-12-18 09:57:09 +0800656 else
657 found = 1;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300658 if (!save_state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600659 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300660 return -ENOMEM;
661 }
662 cap = (u16 *)&save_state->data[0];
663
664 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
665 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
666 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
667 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
Shaohua Liec0a3a22007-12-18 09:56:56 +0800668 save_state->cap_nr = PCI_CAP_ID_EXP;
Shaohua Li017fc482007-12-18 09:57:09 +0800669 if (!found)
670 pci_add_saved_cap(dev, save_state);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300671 return 0;
672}
673
674static void pci_restore_pcie_state(struct pci_dev *dev)
675{
676 int i = 0, pos;
677 struct pci_cap_saved_state *save_state;
678 u16 *cap;
679
680 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
681 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
682 if (!save_state || pos <= 0)
683 return;
684 cap = (u16 *)&save_state->data[0];
685
686 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
687 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
688 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
689 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300690}
691
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800692
693static int pci_save_pcix_state(struct pci_dev *dev)
694{
695 int pos, i = 0;
696 struct pci_cap_saved_state *save_state;
697 u16 *cap;
Shaohua Li017fc482007-12-18 09:57:09 +0800698 int found = 0;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800699
700 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
701 if (pos <= 0)
702 return 0;
703
Shaohua Lif34303d2007-12-18 09:56:47 +0800704 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Eric W. Biederman9f355752007-03-08 13:06:13 -0700705 if (!save_state)
706 save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
Shaohua Li017fc482007-12-18 09:57:09 +0800707 else
708 found = 1;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800709 if (!save_state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600710 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800711 return -ENOMEM;
712 }
713 cap = (u16 *)&save_state->data[0];
714
715 pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
Shaohua Liec0a3a22007-12-18 09:56:56 +0800716 save_state->cap_nr = PCI_CAP_ID_PCIX;
Shaohua Li017fc482007-12-18 09:57:09 +0800717 if (!found)
718 pci_add_saved_cap(dev, save_state);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800719 return 0;
720}
721
722static void pci_restore_pcix_state(struct pci_dev *dev)
723{
724 int i = 0, pos;
725 struct pci_cap_saved_state *save_state;
726 u16 *cap;
727
728 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
729 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
730 if (!save_state || pos <= 0)
731 return;
732 cap = (u16 *)&save_state->data[0];
733
734 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800735}
736
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/**
739 * pci_save_state - save the PCI configuration space of a device before suspending
740 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 */
742int
743pci_save_state(struct pci_dev *dev)
744{
745 int i;
746 /* XXX: 100% dword access ok here? */
747 for (i = 0; i < 16; i++)
748 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300749 if ((i = pci_save_pcie_state(dev)) != 0)
750 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800751 if ((i = pci_save_pcix_state(dev)) != 0)
752 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
754}
755
756/**
757 * pci_restore_state - Restore the saved state of a PCI device
758 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
760int
761pci_restore_state(struct pci_dev *dev)
762{
763 int i;
Al Virob4482a42007-10-14 19:35:40 +0100764 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300766 /* PCI Express register must be restored first */
767 pci_restore_pcie_state(dev);
768
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700769 /*
770 * The Base Address register should be programmed before the command
771 * register(s)
772 */
773 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700774 pci_read_config_dword(dev, i * 4, &val);
775 if (val != dev->saved_config_space[i]) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600776 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
777 "space at offset %#x (was %#x, writing %#x)\n",
778 i, val, (int)dev->saved_config_space[i]);
Dave Jones04d9c1a2006-04-18 21:06:51 -0700779 pci_write_config_dword(dev,i * 4,
780 dev->saved_config_space[i]);
781 }
782 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800783 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800784 pci_restore_msi_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return 0;
787}
788
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900789static int do_pci_enable_device(struct pci_dev *dev, int bars)
790{
791 int err;
792
793 err = pci_set_power_state(dev, PCI_D0);
794 if (err < 0 && err != -EIO)
795 return err;
796 err = pcibios_enable_device(dev, bars);
797 if (err < 0)
798 return err;
799 pci_fixup_device(pci_fixup_enable, dev);
800
801 return 0;
802}
803
804/**
Tejun Heo0b62e132007-07-27 14:43:35 +0900805 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900806 * @dev: PCI device to be resumed
807 *
808 * Note this function is a backend of pci_default_resume and is not supposed
809 * to be called by normal code, write proper resume handler and use it instead.
810 */
Tejun Heo0b62e132007-07-27 14:43:35 +0900811int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900812{
813 if (atomic_read(&dev->enable_cnt))
814 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
815 return 0;
816}
817
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100818static int __pci_enable_device_flags(struct pci_dev *dev,
819 resource_size_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100822 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900824 if (atomic_add_return(1, &dev->enable_cnt) > 1)
825 return 0; /* already enabled */
826
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100827 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
828 if (dev->resource[i].flags & flags)
829 bars |= (1 << i);
830
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900831 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700832 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900833 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900834 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
837/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100838 * pci_enable_device_io - Initialize a device for use with IO space
839 * @dev: PCI device to be initialized
840 *
841 * Initialize device before it's used by a driver. Ask low-level code
842 * to enable I/O resources. Wake up the device if it was suspended.
843 * Beware, this function can fail.
844 */
845int pci_enable_device_io(struct pci_dev *dev)
846{
847 return __pci_enable_device_flags(dev, IORESOURCE_IO);
848}
849
850/**
851 * pci_enable_device_mem - Initialize a device for use with Memory space
852 * @dev: PCI device to be initialized
853 *
854 * Initialize device before it's used by a driver. Ask low-level code
855 * to enable Memory resources. Wake up the device if it was suspended.
856 * Beware, this function can fail.
857 */
858int pci_enable_device_mem(struct pci_dev *dev)
859{
860 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/**
864 * pci_enable_device - Initialize device before it's used by a driver.
865 * @dev: PCI device to be initialized
866 *
867 * Initialize device before it's used by a driver. Ask low-level code
868 * to enable I/O and memory. Wake up the device if it was suspended.
869 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800870 *
871 * Note we don't actually enable the device many times if we call
872 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800874int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100876 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Tejun Heo9ac78492007-01-20 16:00:26 +0900879/*
880 * Managed PCI resources. This manages device on/off, intx/msi/msix
881 * on/off and BAR regions. pci_dev itself records msi/msix status, so
882 * there's no need to track it separately. pci_devres is initialized
883 * when a device is enabled using managed PCI device enable interface.
884 */
885struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -0800886 unsigned int enabled:1;
887 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900888 unsigned int orig_intx:1;
889 unsigned int restore_intx:1;
890 u32 region_mask;
891};
892
893static void pcim_release(struct device *gendev, void *res)
894{
895 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
896 struct pci_devres *this = res;
897 int i;
898
899 if (dev->msi_enabled)
900 pci_disable_msi(dev);
901 if (dev->msix_enabled)
902 pci_disable_msix(dev);
903
904 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
905 if (this->region_mask & (1 << i))
906 pci_release_region(dev, i);
907
908 if (this->restore_intx)
909 pci_intx(dev, this->orig_intx);
910
Tejun Heo7f375f32007-02-25 04:36:01 -0800911 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +0900912 pci_disable_device(dev);
913}
914
915static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
916{
917 struct pci_devres *dr, *new_dr;
918
919 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
920 if (dr)
921 return dr;
922
923 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
924 if (!new_dr)
925 return NULL;
926 return devres_get(&pdev->dev, new_dr, NULL, NULL);
927}
928
929static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
930{
931 if (pci_is_managed(pdev))
932 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
933 return NULL;
934}
935
936/**
937 * pcim_enable_device - Managed pci_enable_device()
938 * @pdev: PCI device to be initialized
939 *
940 * Managed pci_enable_device().
941 */
942int pcim_enable_device(struct pci_dev *pdev)
943{
944 struct pci_devres *dr;
945 int rc;
946
947 dr = get_pci_dr(pdev);
948 if (unlikely(!dr))
949 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +0900950 if (dr->enabled)
951 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +0900952
953 rc = pci_enable_device(pdev);
954 if (!rc) {
955 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -0800956 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900957 }
958 return rc;
959}
960
961/**
962 * pcim_pin_device - Pin managed PCI device
963 * @pdev: PCI device to pin
964 *
965 * Pin managed PCI device @pdev. Pinned device won't be disabled on
966 * driver detach. @pdev must have been enabled with
967 * pcim_enable_device().
968 */
969void pcim_pin_device(struct pci_dev *pdev)
970{
971 struct pci_devres *dr;
972
973 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -0800974 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +0900975 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -0800976 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979/**
980 * pcibios_disable_device - disable arch specific PCI resources for device dev
981 * @dev: the PCI device to disable
982 *
983 * Disables architecture specific PCI resources for the device. This
984 * is the default implementation. Architecture implementations can
985 * override this.
986 */
987void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
988
989/**
990 * pci_disable_device - Disable PCI device after use
991 * @dev: PCI device to be disabled
992 *
993 * Signal to the system that the PCI device is not in use by the system
994 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800995 *
996 * Note we don't actually disable the device until all callers of
997 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 */
999void
1000pci_disable_device(struct pci_dev *dev)
1001{
Tejun Heo9ac78492007-01-20 16:00:26 +09001002 struct pci_devres *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 u16 pci_command;
Shaohua Li99dc8042006-05-26 10:58:27 +08001004
Tejun Heo9ac78492007-01-20 16:00:26 +09001005 dr = find_pci_dr(dev);
1006 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -08001007 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +09001008
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -08001009 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
1010 return;
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1013 if (pci_command & PCI_COMMAND_MASTER) {
1014 pci_command &= ~PCI_COMMAND_MASTER;
1015 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1016 }
Kenji Kaneshigeceb43742005-04-08 14:53:31 +09001017 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 pcibios_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001023 * pcibios_set_pcie_reset_state - set reset state for device dev
1024 * @dev: the PCI-E device reset
1025 * @state: Reset state to enter into
1026 *
1027 *
1028 * Sets the PCI-E reset state for the device. This is the default
1029 * implementation. Architecture implementations can override this.
1030 */
1031int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1032 enum pcie_reset_state state)
1033{
1034 return -EINVAL;
1035}
1036
1037/**
1038 * pci_set_pcie_reset_state - set reset state for device dev
1039 * @dev: the PCI-E device reset
1040 * @state: Reset state to enter into
1041 *
1042 *
1043 * Sets the PCI reset state for the device.
1044 */
1045int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1046{
1047 return pcibios_set_pcie_reset_state(dev, state);
1048}
1049
1050/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001051 * pci_pme_capable - check the capability of PCI device to generate PME#
1052 * @dev: PCI device to handle.
1053 * @pm: PCI PM capability offset of the device.
1054 * @state: PCI state from which device will issue PME#.
1055 */
1056static bool pci_pme_capable(struct pci_dev *dev, int pm, pci_power_t state)
1057{
1058 u16 pmc;
1059
1060 if (!pm)
1061 return false;
1062
1063 /* Check device's ability to generate PME# from given state */
1064 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
1065
1066 pmc &= PCI_PM_CAP_PME_MASK;
1067 pmc >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
1068
1069 return !!(pmc & (1 << state));
1070}
1071
1072/**
1073 * pci_pme_active - enable or disable PCI device's PME# function
1074 * @dev: PCI device to handle.
1075 * @pm: PCI PM capability offset of the device.
1076 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1077 *
1078 * The caller must verify that the device is capable of generating PME# before
1079 * calling this function with @enable equal to 'true'.
1080 */
1081static void pci_pme_active(struct pci_dev *dev, int pm, bool enable)
1082{
1083 u16 pmcsr;
1084
1085 if (!pm)
1086 return;
1087
1088 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
1089 /* Clear PME_Status by writing 1 to it and enable PME# */
1090 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1091 if (!enable)
1092 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1093
1094 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
1095
1096 dev_printk(KERN_INFO, &dev->dev, "PME# %s\n",
1097 enable ? "enabled" : "disabled");
1098}
1099
1100/**
David Brownell075c1772007-04-26 00:12:06 -07001101 * pci_enable_wake - enable PCI device as wakeup event source
1102 * @dev: PCI device affected
1103 * @state: PCI state from which device will issue wakeup events
1104 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 *
David Brownell075c1772007-04-26 00:12:06 -07001106 * This enables the device as a wakeup event source, or disables it.
1107 * When such events involves platform-specific hooks, those hooks are
1108 * called automatically by this routine.
1109 *
1110 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001111 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001112 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001113 * RETURN VALUE:
1114 * 0 is returned on success
1115 * -EINVAL is returned if device is not supposed to wake up the system
1116 * Error code depending on the platform is returned if both the platform and
1117 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
1119int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
1120{
1121 int pm;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001122 int error = 0;
1123 bool pme_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001125 if (!device_may_wakeup(&dev->dev))
1126 return -EINVAL;
1127
1128 /*
1129 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1130 * Anderson we should be doing PME# wake enable followed by ACPI wake
1131 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001132 */
1133
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001134 if (!enable && platform_pci_can_wakeup(dev))
1135 error = platform_pci_sleep_wake(dev, false);
1136
1137 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
1138 if (!enable || pci_pme_capable(dev, pm, state)) {
1139 pci_pme_active(dev, pm, enable);
1140 pme_done = true;
1141 }
1142
1143 if (enable && platform_pci_can_wakeup(dev))
1144 error = platform_pci_sleep_wake(dev, true);
1145
1146 return pme_done ? 0 : error;
1147}
1148
1149/**
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001150 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into
1151 * a sleep state
1152 * @dev: Device to handle.
1153 *
1154 * Choose the power state appropriate for the device depending on whether
1155 * it can wake up the system and/or is power manageable by the platform
1156 * (PCI_D3hot is the default) and put the device into that state.
1157 */
1158int pci_prepare_to_sleep(struct pci_dev *dev)
1159{
1160 pci_power_t target_state = PCI_D3hot;
1161 int pm = pci_find_capability(dev, PCI_CAP_ID_PM);
1162 int error;
1163
1164 if (platform_pci_power_manageable(dev)) {
1165 /*
1166 * Call the platform to choose the target state of the device
1167 * and enable wake-up from this state if supported.
1168 */
1169 pci_power_t state = platform_pci_choose_state(dev);
1170
1171 switch (state) {
1172 case PCI_POWER_ERROR:
1173 case PCI_UNKNOWN:
1174 break;
1175 case PCI_D1:
1176 case PCI_D2:
1177 if (pci_no_d1d2(dev))
1178 break;
1179 default:
1180 target_state = state;
1181 pci_enable_wake(dev, target_state, true);
1182 }
1183 } else if (device_may_wakeup(&dev->dev)) {
1184 /*
1185 * Find the deepest state from which the device can generate
1186 * wake-up events, make it the target state and enable device
1187 * to generate PME#.
1188 */
1189 u16 pmc;
1190
1191 if (!pm)
1192 return -EIO;
1193
1194 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
1195 if (pmc & PCI_PM_CAP_PME_MASK) {
1196 if (!(pmc & PCI_PM_CAP_PME_D3)) {
1197 /* Device cannot generate PME# from D3_hot */
1198 if (pmc & PCI_PM_CAP_PME_D2)
1199 target_state = PCI_D2;
1200 else if (pmc & PCI_PM_CAP_PME_D1)
1201 target_state = PCI_D1;
1202 else
1203 target_state = PCI_D0;
1204 }
1205 pci_pme_active(dev, pm, true);
1206 }
1207 }
1208
1209 error = pci_set_power_state(dev, target_state);
1210
1211 if (error)
1212 pci_enable_wake(dev, target_state, false);
1213
1214 return error;
1215}
1216
1217/**
1218 * pci_back_from_sleep - turn PCI device on during system-wide transition into
1219 * the working state a sleep state
1220 * @dev: Device to handle.
1221 *
1222 * Disable device's sytem wake-up capability and put it into D0.
1223 */
1224int pci_back_from_sleep(struct pci_dev *dev)
1225{
1226 pci_enable_wake(dev, PCI_D0, false);
1227 return pci_set_power_state(dev, PCI_D0);
1228}
1229
1230/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001231 * pci_pm_init - Initialize PM functions of given PCI device
1232 * @dev: PCI device to handle.
1233 */
1234void pci_pm_init(struct pci_dev *dev)
1235{
1236 int pm;
1237 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /* find PCI PM capability in list */
1240 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001241 if (!pm)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001242 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001244 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001246 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1247 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1248 pmc & PCI_PM_CAP_VER_MASK);
1249 return;
David Brownell075c1772007-04-26 00:12:06 -07001250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001252 if (pmc & PCI_PM_CAP_PME_MASK) {
1253 dev_printk(KERN_INFO, &dev->dev,
1254 "PME# supported from%s%s%s%s%s\n",
1255 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1256 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1257 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1258 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1259 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
1260 /*
1261 * Make device's PM flags reflect the wake-up capability, but
1262 * let the user space enable it to wake up the system as needed.
1263 */
1264 device_set_wakeup_capable(&dev->dev, true);
1265 device_set_wakeup_enable(&dev->dev, false);
1266 /* Disable the PME# generation functionality */
1267 pci_pme_active(dev, pm, false);
1268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271int
1272pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1273{
1274 u8 pin;
1275
Kristen Accardi514d2072005-11-02 16:24:39 -08001276 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (!pin)
1278 return -1;
1279 pin--;
1280 while (dev->bus->self) {
1281 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
1282 dev = dev->bus->self;
1283 }
1284 *bridge = dev;
1285 return pin;
1286}
1287
1288/**
1289 * pci_release_region - Release a PCI bar
1290 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1291 * @bar: BAR to release
1292 *
1293 * Releases the PCI I/O and memory resources previously reserved by a
1294 * successful call to pci_request_region. Call this function only
1295 * after all use of the PCI regions has ceased.
1296 */
1297void pci_release_region(struct pci_dev *pdev, int bar)
1298{
Tejun Heo9ac78492007-01-20 16:00:26 +09001299 struct pci_devres *dr;
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (pci_resource_len(pdev, bar) == 0)
1302 return;
1303 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1304 release_region(pci_resource_start(pdev, bar),
1305 pci_resource_len(pdev, bar));
1306 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1307 release_mem_region(pci_resource_start(pdev, bar),
1308 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09001309
1310 dr = find_pci_dr(pdev);
1311 if (dr)
1312 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
1315/**
1316 * pci_request_region - Reserved PCI I/O and memory resource
1317 * @pdev: PCI device whose resources are to be reserved
1318 * @bar: BAR to be reserved
1319 * @res_name: Name to be associated with resource.
1320 *
1321 * Mark the PCI region associated with PCI device @pdev BR @bar as
1322 * being reserved by owner @res_name. Do not access any
1323 * address inside the PCI regions unless this call returns
1324 * successfully.
1325 *
1326 * Returns 0 on success, or %EBUSY on error. A warning
1327 * message is also printed on failure.
1328 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001329int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Tejun Heo9ac78492007-01-20 16:00:26 +09001331 struct pci_devres *dr;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (pci_resource_len(pdev, bar) == 0)
1334 return 0;
1335
1336 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1337 if (!request_region(pci_resource_start(pdev, bar),
1338 pci_resource_len(pdev, bar), res_name))
1339 goto err_out;
1340 }
1341 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
1342 if (!request_mem_region(pci_resource_start(pdev, bar),
1343 pci_resource_len(pdev, bar), res_name))
1344 goto err_out;
1345 }
Tejun Heo9ac78492007-01-20 16:00:26 +09001346
1347 dr = find_pci_dr(pdev);
1348 if (dr)
1349 dr->region_mask |= 1 << bar;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return 0;
1352
1353err_out:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001354 dev_warn(&pdev->dev, "BAR %d: can't reserve %s region [%#llx-%#llx]\n",
Jesse Barnese4ec7a02008-06-25 16:12:25 -07001355 bar,
1356 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
1357 (unsigned long long)pci_resource_start(pdev, bar),
1358 (unsigned long long)pci_resource_end(pdev, bar));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return -EBUSY;
1360}
1361
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001362/**
1363 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1364 * @pdev: PCI device whose resources were previously reserved
1365 * @bars: Bitmask of BARs to be released
1366 *
1367 * Release selected PCI I/O and memory resources previously reserved.
1368 * Call this function only after all use of the PCI regions has ceased.
1369 */
1370void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1371{
1372 int i;
1373
1374 for (i = 0; i < 6; i++)
1375 if (bars & (1 << i))
1376 pci_release_region(pdev, i);
1377}
1378
1379/**
1380 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1381 * @pdev: PCI device whose resources are to be reserved
1382 * @bars: Bitmask of BARs to be requested
1383 * @res_name: Name to be associated with resource
1384 */
1385int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1386 const char *res_name)
1387{
1388 int i;
1389
1390 for (i = 0; i < 6; i++)
1391 if (bars & (1 << i))
1392 if(pci_request_region(pdev, i, res_name))
1393 goto err_out;
1394 return 0;
1395
1396err_out:
1397 while(--i >= 0)
1398 if (bars & (1 << i))
1399 pci_release_region(pdev, i);
1400
1401 return -EBUSY;
1402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404/**
1405 * pci_release_regions - Release reserved PCI I/O and memory resources
1406 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1407 *
1408 * Releases all PCI I/O and memory resources previously reserved by a
1409 * successful call to pci_request_regions. Call this function only
1410 * after all use of the PCI regions has ceased.
1411 */
1412
1413void pci_release_regions(struct pci_dev *pdev)
1414{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001415 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
1418/**
1419 * pci_request_regions - Reserved PCI I/O and memory resources
1420 * @pdev: PCI device whose resources are to be reserved
1421 * @res_name: Name to be associated with resource.
1422 *
1423 * Mark all PCI regions associated with PCI device @pdev as
1424 * being reserved by owner @res_name. Do not access any
1425 * address inside the PCI regions unless this call returns
1426 * successfully.
1427 *
1428 * Returns 0 on success, or %EBUSY on error. A warning
1429 * message is also printed on failure.
1430 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001431int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001433 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436/**
1437 * pci_set_master - enables bus-mastering for device dev
1438 * @dev: the PCI device to enable
1439 *
1440 * Enables bus-mastering on the device and calls pcibios_set_master()
1441 * to do the needed arch specific settings.
1442 */
1443void
1444pci_set_master(struct pci_dev *dev)
1445{
1446 u16 cmd;
1447
1448 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1449 if (! (cmd & PCI_COMMAND_MASTER)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001450 dev_dbg(&dev->dev, "enabling bus mastering\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 cmd |= PCI_COMMAND_MASTER;
1452 pci_write_config_word(dev, PCI_COMMAND, cmd);
1453 }
1454 dev->is_busmaster = 1;
1455 pcibios_set_master(dev);
1456}
1457
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001458#ifdef PCI_DISABLE_MWI
1459int pci_set_mwi(struct pci_dev *dev)
1460{
1461 return 0;
1462}
1463
Randy Dunlap694625c2007-07-09 11:55:54 -07001464int pci_try_set_mwi(struct pci_dev *dev)
1465{
1466 return 0;
1467}
1468
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001469void pci_clear_mwi(struct pci_dev *dev)
1470{
1471}
1472
1473#else
Matthew Wilcoxebf5a242006-10-10 08:01:20 -06001474
1475#ifndef PCI_CACHE_LINE_BYTES
1476#define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
1477#endif
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479/* This can be overridden by arch code. */
Matthew Wilcoxebf5a242006-10-10 08:01:20 -06001480/* Don't forget this is measured in 32-bit words, not bytes */
1481u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001484 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1485 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001487 * Helper function for pci_set_mwi.
1488 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1490 *
1491 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1492 */
1493static int
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001494pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 u8 cacheline_size;
1497
1498 if (!pci_cache_line_size)
1499 return -EINVAL; /* The system doesn't support MWI. */
1500
1501 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
1502 equal to or multiple of the right value. */
1503 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1504 if (cacheline_size >= pci_cache_line_size &&
1505 (cacheline_size % pci_cache_line_size) == 0)
1506 return 0;
1507
1508 /* Write the correct value. */
1509 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
1510 /* Read it back. */
1511 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1512 if (cacheline_size == pci_cache_line_size)
1513 return 0;
1514
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001515 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
1516 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 return -EINVAL;
1519}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521/**
1522 * pci_set_mwi - enables memory-write-invalidate PCI transaction
1523 * @dev: the PCI device for which MWI is enabled
1524 *
Randy Dunlap694625c2007-07-09 11:55:54 -07001525 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
1527 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1528 */
1529int
1530pci_set_mwi(struct pci_dev *dev)
1531{
1532 int rc;
1533 u16 cmd;
1534
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001535 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (rc)
1537 return rc;
1538
1539 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1540 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001541 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 cmd |= PCI_COMMAND_INVALIDATE;
1543 pci_write_config_word(dev, PCI_COMMAND, cmd);
1544 }
1545
1546 return 0;
1547}
1548
1549/**
Randy Dunlap694625c2007-07-09 11:55:54 -07001550 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
1551 * @dev: the PCI device for which MWI is enabled
1552 *
1553 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
1554 * Callers are not required to check the return value.
1555 *
1556 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1557 */
1558int pci_try_set_mwi(struct pci_dev *dev)
1559{
1560 int rc = pci_set_mwi(dev);
1561 return rc;
1562}
1563
1564/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
1566 * @dev: the PCI device to disable
1567 *
1568 * Disables PCI Memory-Write-Invalidate transaction on the device
1569 */
1570void
1571pci_clear_mwi(struct pci_dev *dev)
1572{
1573 u16 cmd;
1574
1575 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1576 if (cmd & PCI_COMMAND_INVALIDATE) {
1577 cmd &= ~PCI_COMMAND_INVALIDATE;
1578 pci_write_config_word(dev, PCI_COMMAND, cmd);
1579 }
1580}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001581#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Brett M Russa04ce0f2005-08-15 15:23:41 -04001583/**
1584 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001585 * @pdev: the PCI device to operate on
1586 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04001587 *
1588 * Enables/disables PCI INTx for device dev
1589 */
1590void
1591pci_intx(struct pci_dev *pdev, int enable)
1592{
1593 u16 pci_command, new;
1594
1595 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
1596
1597 if (enable) {
1598 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
1599 } else {
1600 new = pci_command | PCI_COMMAND_INTX_DISABLE;
1601 }
1602
1603 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09001604 struct pci_devres *dr;
1605
Brett M Russ2fd9d742005-09-09 10:02:22 -07001606 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09001607
1608 dr = find_pci_dr(pdev);
1609 if (dr && !dr->restore_intx) {
1610 dr->restore_intx = 1;
1611 dr->orig_intx = !enable;
1612 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04001613 }
1614}
1615
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08001616/**
1617 * pci_msi_off - disables any msi or msix capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07001618 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08001619 *
1620 * If you want to use msi see pci_enable_msi and friends.
1621 * This is a lower level primitive that allows us to disable
1622 * msi operation at the device level.
1623 */
1624void pci_msi_off(struct pci_dev *dev)
1625{
1626 int pos;
1627 u16 control;
1628
1629 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
1630 if (pos) {
1631 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
1632 control &= ~PCI_MSI_FLAGS_ENABLE;
1633 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
1634 }
1635 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1636 if (pos) {
1637 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
1638 control &= ~PCI_MSIX_FLAGS_ENABLE;
1639 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
1640 }
1641}
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
1644/*
1645 * These can be overridden by arch-specific implementations
1646 */
1647int
1648pci_set_dma_mask(struct pci_dev *dev, u64 mask)
1649{
1650 if (!pci_dma_supported(dev, mask))
1651 return -EIO;
1652
1653 dev->dma_mask = mask;
1654
1655 return 0;
1656}
1657
1658int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1660{
1661 if (!pci_dma_supported(dev, mask))
1662 return -EIO;
1663
1664 dev->dev.coherent_dma_mask = mask;
1665
1666 return 0;
1667}
1668#endif
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001669
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08001670#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
1671int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
1672{
1673 return dma_set_max_seg_size(&dev->dev, size);
1674}
1675EXPORT_SYMBOL(pci_set_dma_max_seg_size);
1676#endif
1677
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08001678#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
1679int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
1680{
1681 return dma_set_seg_boundary(&dev->dev, mask);
1682}
1683EXPORT_SYMBOL(pci_set_dma_seg_boundary);
1684#endif
1685
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001686/**
Peter Orubad556ad42007-05-15 13:59:13 +02001687 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
1688 * @dev: PCI device to query
1689 *
1690 * Returns mmrbc: maximum designed memory read count in bytes
1691 * or appropriate error value.
1692 */
1693int pcix_get_max_mmrbc(struct pci_dev *dev)
1694{
Andrew Mortonb7b095c2007-07-09 11:55:50 -07001695 int err, cap;
Peter Orubad556ad42007-05-15 13:59:13 +02001696 u32 stat;
1697
1698 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1699 if (!cap)
1700 return -EINVAL;
1701
1702 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1703 if (err)
1704 return -EINVAL;
1705
Andrew Mortonb7b095c2007-07-09 11:55:50 -07001706 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
Peter Orubad556ad42007-05-15 13:59:13 +02001707}
1708EXPORT_SYMBOL(pcix_get_max_mmrbc);
1709
1710/**
1711 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
1712 * @dev: PCI device to query
1713 *
1714 * Returns mmrbc: maximum memory read count in bytes
1715 * or appropriate error value.
1716 */
1717int pcix_get_mmrbc(struct pci_dev *dev)
1718{
1719 int ret, cap;
1720 u32 cmd;
1721
1722 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1723 if (!cap)
1724 return -EINVAL;
1725
1726 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1727 if (!ret)
1728 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
1729
1730 return ret;
1731}
1732EXPORT_SYMBOL(pcix_get_mmrbc);
1733
1734/**
1735 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
1736 * @dev: PCI device to query
1737 * @mmrbc: maximum memory read count in bytes
1738 * valid values are 512, 1024, 2048, 4096
1739 *
1740 * If possible sets maximum memory read byte count, some bridges have erratas
1741 * that prevent this.
1742 */
1743int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
1744{
1745 int cap, err = -EINVAL;
1746 u32 stat, cmd, v, o;
1747
vignesh babu229f5af2007-08-13 18:23:14 +05301748 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Peter Orubad556ad42007-05-15 13:59:13 +02001749 goto out;
1750
1751 v = ffs(mmrbc) - 10;
1752
1753 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1754 if (!cap)
1755 goto out;
1756
1757 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1758 if (err)
1759 goto out;
1760
1761 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
1762 return -E2BIG;
1763
1764 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1765 if (err)
1766 goto out;
1767
1768 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
1769 if (o != v) {
1770 if (v > o && dev->bus &&
1771 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
1772 return -EIO;
1773
1774 cmd &= ~PCI_X_CMD_MAX_READ;
1775 cmd |= v << 2;
1776 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
1777 }
1778out:
1779 return err;
1780}
1781EXPORT_SYMBOL(pcix_set_mmrbc);
1782
1783/**
1784 * pcie_get_readrq - get PCI Express read request size
1785 * @dev: PCI device to query
1786 *
1787 * Returns maximum memory read request in bytes
1788 * or appropriate error value.
1789 */
1790int pcie_get_readrq(struct pci_dev *dev)
1791{
1792 int ret, cap;
1793 u16 ctl;
1794
1795 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1796 if (!cap)
1797 return -EINVAL;
1798
1799 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1800 if (!ret)
1801 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
1802
1803 return ret;
1804}
1805EXPORT_SYMBOL(pcie_get_readrq);
1806
1807/**
1808 * pcie_set_readrq - set PCI Express maximum memory read request
1809 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07001810 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02001811 * valid values are 128, 256, 512, 1024, 2048, 4096
1812 *
1813 * If possible sets maximum read byte count
1814 */
1815int pcie_set_readrq(struct pci_dev *dev, int rq)
1816{
1817 int cap, err = -EINVAL;
1818 u16 ctl, v;
1819
vignesh babu229f5af2007-08-13 18:23:14 +05301820 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Peter Orubad556ad42007-05-15 13:59:13 +02001821 goto out;
1822
1823 v = (ffs(rq) - 8) << 12;
1824
1825 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1826 if (!cap)
1827 goto out;
1828
1829 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1830 if (err)
1831 goto out;
1832
1833 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
1834 ctl &= ~PCI_EXP_DEVCTL_READRQ;
1835 ctl |= v;
1836 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
1837 }
1838
1839out:
1840 return err;
1841}
1842EXPORT_SYMBOL(pcie_set_readrq);
1843
1844/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001845 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08001846 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001847 * @flags: resource type mask to be selected
1848 *
1849 * This helper routine makes bar mask from the type of resource.
1850 */
1851int pci_select_bars(struct pci_dev *dev, unsigned long flags)
1852{
1853 int i, bars = 0;
1854 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1855 if (pci_resource_flags(dev, i) & flags)
1856 bars |= (1 << i);
1857 return bars;
1858}
1859
Jeff Garzik32a2eea2007-10-11 16:57:27 -04001860static void __devinit pci_no_domains(void)
1861{
1862#ifdef CONFIG_PCI_DOMAINS
1863 pci_domains_supported = 0;
1864#endif
1865}
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867static int __devinit pci_init(void)
1868{
1869 struct pci_dev *dev = NULL;
1870
1871 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1872 pci_fixup_device(pci_fixup_final, dev);
1873 }
1874 return 0;
1875}
1876
1877static int __devinit pci_setup(char *str)
1878{
1879 while (str) {
1880 char *k = strchr(str, ',');
1881 if (k)
1882 *k++ = 0;
1883 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001884 if (!strcmp(str, "nomsi")) {
1885 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07001886 } else if (!strcmp(str, "noaer")) {
1887 pci_no_aer();
Jeff Garzik32a2eea2007-10-11 16:57:27 -04001888 } else if (!strcmp(str, "nodomains")) {
1889 pci_no_domains();
Atsushi Nemoto4516a612007-02-05 16:36:06 -08001890 } else if (!strncmp(str, "cbiosize=", 9)) {
1891 pci_cardbus_io_size = memparse(str + 9, &str);
1892 } else if (!strncmp(str, "cbmemsize=", 10)) {
1893 pci_cardbus_mem_size = memparse(str + 10, &str);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001894 } else {
1895 printk(KERN_ERR "PCI: Unknown option `%s'\n",
1896 str);
1897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899 str = k;
1900 }
Andi Kleen0637a702006-09-26 10:52:41 +02001901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
Andi Kleen0637a702006-09-26 10:52:41 +02001903early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905device_initcall(pci_init);
1906
Tejun Heo0b62e132007-07-27 14:43:35 +09001907EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001908EXPORT_SYMBOL(pci_enable_device_io);
1909EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001911EXPORT_SYMBOL(pcim_enable_device);
1912EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914EXPORT_SYMBOL(pci_find_capability);
1915EXPORT_SYMBOL(pci_bus_find_capability);
1916EXPORT_SYMBOL(pci_release_regions);
1917EXPORT_SYMBOL(pci_request_regions);
1918EXPORT_SYMBOL(pci_release_region);
1919EXPORT_SYMBOL(pci_request_region);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001920EXPORT_SYMBOL(pci_release_selected_regions);
1921EXPORT_SYMBOL(pci_request_selected_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922EXPORT_SYMBOL(pci_set_master);
1923EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07001924EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04001926EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928EXPORT_SYMBOL(pci_set_consistent_dma_mask);
1929EXPORT_SYMBOL(pci_assign_resource);
1930EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001931EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933EXPORT_SYMBOL(pci_set_power_state);
1934EXPORT_SYMBOL(pci_save_state);
1935EXPORT_SYMBOL(pci_restore_state);
1936EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001937EXPORT_SYMBOL(pci_prepare_to_sleep);
1938EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05001939EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940