blob: 44a46c92b721a2c6d97fe1b795b6e4c0b1656ad6 [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>
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020020#include <linux/pm_wakeup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/dma.h> /* isa_dma_bridge_buggy */
Greg KHbc56b9e2005-04-08 14:53:31 +090022#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -070024unsigned int pci_pm_d3_delay = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Jeff Garzik32a2eea2007-10-11 16:57:27 -040026#ifdef CONFIG_PCI_DOMAINS
27int pci_domains_supported = 1;
28#endif
29
Atsushi Nemoto4516a612007-02-05 16:36:06 -080030#define DEFAULT_CARDBUS_IO_SIZE (256)
31#define DEFAULT_CARDBUS_MEM_SIZE (64*1024*1024)
32/* pci=cbmemsize=nnM,cbiosize=nn can override this */
33unsigned long pci_cardbus_io_size = DEFAULT_CARDBUS_IO_SIZE;
34unsigned long pci_cardbus_mem_size = DEFAULT_CARDBUS_MEM_SIZE;
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/**
37 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
38 * @bus: pointer to PCI bus structure to search
39 *
40 * Given a PCI bus, returns the highest PCI bus number present in the set
41 * including the given PCI bus and its list of child PCI buses.
42 */
Sam Ravnborg96bde062007-03-26 21:53:30 -080043unsigned char pci_bus_max_busnr(struct pci_bus* bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 struct list_head *tmp;
46 unsigned char max, n;
47
Kristen Accardib82db5c2006-01-17 16:56:56 -080048 max = bus->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 list_for_each(tmp, &bus->children) {
50 n = pci_bus_max_busnr(pci_bus_b(tmp));
51 if(n > max)
52 max = n;
53 }
54 return max;
55}
Kristen Accardib82db5c2006-01-17 16:56:56 -080056EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Kristen Accardib82db5c2006-01-17 16:56:56 -080058#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/**
60 * pci_max_busnr - returns maximum PCI bus number
61 *
62 * Returns the highest PCI bus number present in the system global list of
63 * PCI buses.
64 */
65unsigned char __devinit
66pci_max_busnr(void)
67{
68 struct pci_bus *bus = NULL;
69 unsigned char max, n;
70
71 max = 0;
72 while ((bus = pci_find_next_bus(bus)) != NULL) {
73 n = pci_bus_max_busnr(bus);
74 if(n > max)
75 max = n;
76 }
77 return max;
78}
79
Adrian Bunk54c762f2005-12-22 01:08:52 +010080#endif /* 0 */
81
Michael Ellerman687d5fe2006-11-22 18:26:18 +110082#define PCI_FIND_CAP_TTL 48
83
84static int __pci_find_next_cap_ttl(struct pci_bus *bus, unsigned int devfn,
85 u8 pos, int cap, int *ttl)
Roland Dreier24a4e372005-10-28 17:35:34 -070086{
87 u8 id;
Roland Dreier24a4e372005-10-28 17:35:34 -070088
Michael Ellerman687d5fe2006-11-22 18:26:18 +110089 while ((*ttl)--) {
Roland Dreier24a4e372005-10-28 17:35:34 -070090 pci_bus_read_config_byte(bus, devfn, pos, &pos);
91 if (pos < 0x40)
92 break;
93 pos &= ~3;
94 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
95 &id);
96 if (id == 0xff)
97 break;
98 if (id == cap)
99 return pos;
100 pos += PCI_CAP_LIST_NEXT;
101 }
102 return 0;
103}
104
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100105static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn,
106 u8 pos, int cap)
107{
108 int ttl = PCI_FIND_CAP_TTL;
109
110 return __pci_find_next_cap_ttl(bus, devfn, pos, cap, &ttl);
111}
112
Roland Dreier24a4e372005-10-28 17:35:34 -0700113int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
114{
115 return __pci_find_next_cap(dev->bus, dev->devfn,
116 pos + PCI_CAP_LIST_NEXT, cap);
117}
118EXPORT_SYMBOL_GPL(pci_find_next_capability);
119
Michael Ellermand3bac112006-11-22 18:26:16 +1100120static int __pci_bus_find_cap_start(struct pci_bus *bus,
121 unsigned int devfn, u8 hdr_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
126 if (!(status & PCI_STATUS_CAP_LIST))
127 return 0;
128
129 switch (hdr_type) {
130 case PCI_HEADER_TYPE_NORMAL:
131 case PCI_HEADER_TYPE_BRIDGE:
Michael Ellermand3bac112006-11-22 18:26:16 +1100132 return PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 case PCI_HEADER_TYPE_CARDBUS:
Michael Ellermand3bac112006-11-22 18:26:16 +1100134 return PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 default:
136 return 0;
137 }
Michael Ellermand3bac112006-11-22 18:26:16 +1100138
139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142/**
143 * pci_find_capability - query for devices' capabilities
144 * @dev: PCI device to query
145 * @cap: capability code
146 *
147 * Tell if a device supports a given PCI capability.
148 * Returns the address of the requested capability structure within the
149 * device's PCI configuration space or 0 in case the device does not
150 * support it. Possible values for @cap:
151 *
152 * %PCI_CAP_ID_PM Power Management
153 * %PCI_CAP_ID_AGP Accelerated Graphics Port
154 * %PCI_CAP_ID_VPD Vital Product Data
155 * %PCI_CAP_ID_SLOTID Slot Identification
156 * %PCI_CAP_ID_MSI Message Signalled Interrupts
157 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
158 * %PCI_CAP_ID_PCIX PCI-X
159 * %PCI_CAP_ID_EXP PCI Express
160 */
161int pci_find_capability(struct pci_dev *dev, int cap)
162{
Michael Ellermand3bac112006-11-22 18:26:16 +1100163 int pos;
164
165 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
166 if (pos)
167 pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
168
169 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
173 * pci_bus_find_capability - query for devices' capabilities
174 * @bus: the PCI bus to query
175 * @devfn: PCI device to query
176 * @cap: capability code
177 *
178 * Like pci_find_capability() but works for pci devices that do not have a
179 * pci_dev structure set up yet.
180 *
181 * Returns the address of the requested capability structure within the
182 * device's PCI configuration space or 0 in case the device does not
183 * support it.
184 */
185int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
186{
Michael Ellermand3bac112006-11-22 18:26:16 +1100187 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 u8 hdr_type;
189
190 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
191
Michael Ellermand3bac112006-11-22 18:26:16 +1100192 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f);
193 if (pos)
194 pos = __pci_find_next_cap(bus, devfn, pos, cap);
195
196 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/**
200 * pci_find_ext_capability - Find an extended capability
201 * @dev: PCI device to query
202 * @cap: capability code
203 *
204 * Returns the address of the requested extended capability structure
205 * within the device's PCI configuration space or 0 if the device does
206 * not support it. Possible values for @cap:
207 *
208 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
209 * %PCI_EXT_CAP_ID_VC Virtual Channel
210 * %PCI_EXT_CAP_ID_DSN Device Serial Number
211 * %PCI_EXT_CAP_ID_PWR Power Budgeting
212 */
213int pci_find_ext_capability(struct pci_dev *dev, int cap)
214{
215 u32 header;
216 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
217 int pos = 0x100;
218
219 if (dev->cfg_size <= 256)
220 return 0;
221
222 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
223 return 0;
224
225 /*
226 * If we have no capabilities, this is indicated by cap ID,
227 * cap version and next pointer all being 0.
228 */
229 if (header == 0)
230 return 0;
231
232 while (ttl-- > 0) {
233 if (PCI_EXT_CAP_ID(header) == cap)
234 return pos;
235
236 pos = PCI_EXT_CAP_NEXT(header);
237 if (pos < 0x100)
238 break;
239
240 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
241 break;
242 }
243
244 return 0;
245}
Brice Goglin3a720d72006-05-23 06:10:01 -0400246EXPORT_SYMBOL_GPL(pci_find_ext_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100248static int __pci_find_next_ht_cap(struct pci_dev *dev, int pos, int ht_cap)
249{
250 int rc, ttl = PCI_FIND_CAP_TTL;
251 u8 cap, mask;
252
253 if (ht_cap == HT_CAPTYPE_SLAVE || ht_cap == HT_CAPTYPE_HOST)
254 mask = HT_3BIT_CAP_MASK;
255 else
256 mask = HT_5BIT_CAP_MASK;
257
258 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
259 PCI_CAP_ID_HT, &ttl);
260 while (pos) {
261 rc = pci_read_config_byte(dev, pos + 3, &cap);
262 if (rc != PCIBIOS_SUCCESSFUL)
263 return 0;
264
265 if ((cap & mask) == ht_cap)
266 return pos;
267
Brice Goglin47a4d5b2007-01-10 23:15:29 -0800268 pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
269 pos + PCI_CAP_LIST_NEXT,
Michael Ellerman687d5fe2006-11-22 18:26:18 +1100270 PCI_CAP_ID_HT, &ttl);
271 }
272
273 return 0;
274}
275/**
276 * pci_find_next_ht_capability - query a device's Hypertransport capabilities
277 * @dev: PCI device to query
278 * @pos: Position from which to continue searching
279 * @ht_cap: Hypertransport capability code
280 *
281 * To be used in conjunction with pci_find_ht_capability() to search for
282 * all capabilities matching @ht_cap. @pos should always be a value returned
283 * from pci_find_ht_capability().
284 *
285 * NB. To be 100% safe against broken PCI devices, the caller should take
286 * steps to avoid an infinite loop.
287 */
288int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap)
289{
290 return __pci_find_next_ht_cap(dev, pos + PCI_CAP_LIST_NEXT, ht_cap);
291}
292EXPORT_SYMBOL_GPL(pci_find_next_ht_capability);
293
294/**
295 * pci_find_ht_capability - query a device's Hypertransport capabilities
296 * @dev: PCI device to query
297 * @ht_cap: Hypertransport capability code
298 *
299 * Tell if a device supports a given Hypertransport capability.
300 * Returns an address within the device's PCI configuration space
301 * or 0 in case the device does not support the request capability.
302 * The address points to the PCI capability, of type PCI_CAP_ID_HT,
303 * which has a Hypertransport capability matching @ht_cap.
304 */
305int pci_find_ht_capability(struct pci_dev *dev, int ht_cap)
306{
307 int pos;
308
309 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type);
310 if (pos)
311 pos = __pci_find_next_ht_cap(dev, pos, ht_cap);
312
313 return pos;
314}
315EXPORT_SYMBOL_GPL(pci_find_ht_capability);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/**
318 * pci_find_parent_resource - return resource region of parent bus of given region
319 * @dev: PCI device structure contains resources to be searched
320 * @res: child resource record for which parent is sought
321 *
322 * For given resource region of given device, return the resource
323 * region of parent bus the given region is contained in or where
324 * it should be allocated from.
325 */
326struct resource *
327pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
328{
329 const struct pci_bus *bus = dev->bus;
330 int i;
331 struct resource *best = NULL;
332
333 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
334 struct resource *r = bus->resource[i];
335 if (!r)
336 continue;
337 if (res->start && !(res->start >= r->start && res->end <= r->end))
338 continue; /* Not contained */
339 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
340 continue; /* Wrong type */
341 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
342 return r; /* Exact match */
343 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
344 best = r; /* Approximating prefetchable by non-prefetchable */
345 }
346 return best;
347}
348
349/**
John W. Linville064b53d2005-07-27 10:19:44 -0400350 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
351 * @dev: PCI device to have its BARs restored
352 *
353 * Restore the BAR values for a given device, so as to make it
354 * accessible by its driver.
355 */
Adrian Bunkad668592007-10-27 03:06:22 +0200356static void
John W. Linville064b53d2005-07-27 10:19:44 -0400357pci_restore_bars(struct pci_dev *dev)
358{
359 int i, numres;
360
361 switch (dev->hdr_type) {
362 case PCI_HEADER_TYPE_NORMAL:
363 numres = 6;
364 break;
365 case PCI_HEADER_TYPE_BRIDGE:
366 numres = 2;
367 break;
368 case PCI_HEADER_TYPE_CARDBUS:
369 numres = 1;
370 break;
371 default:
372 /* Should never get here, but just in case... */
373 return;
374 }
375
376 for (i = 0; i < numres; i ++)
377 pci_update_resource(dev, &dev->resource[i], i);
378}
379
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200380static struct pci_platform_pm_ops *pci_platform_pm;
381
382int pci_set_platform_pm(struct pci_platform_pm_ops *ops)
383{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200384 if (!ops->is_manageable || !ops->set_state || !ops->choose_state
385 || !ops->sleep_wake || !ops->can_wakeup)
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200386 return -EINVAL;
387 pci_platform_pm = ops;
388 return 0;
389}
390
391static inline bool platform_pci_power_manageable(struct pci_dev *dev)
392{
393 return pci_platform_pm ? pci_platform_pm->is_manageable(dev) : false;
394}
395
396static inline int platform_pci_set_power_state(struct pci_dev *dev,
397 pci_power_t t)
398{
399 return pci_platform_pm ? pci_platform_pm->set_state(dev, t) : -ENOSYS;
400}
401
402static inline pci_power_t platform_pci_choose_state(struct pci_dev *dev)
403{
404 return pci_platform_pm ?
405 pci_platform_pm->choose_state(dev) : PCI_POWER_ERROR;
406}
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700407
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200408static inline bool platform_pci_can_wakeup(struct pci_dev *dev)
409{
410 return pci_platform_pm ? pci_platform_pm->can_wakeup(dev) : false;
411}
412
413static inline int platform_pci_sleep_wake(struct pci_dev *dev, bool enable)
414{
415 return pci_platform_pm ?
416 pci_platform_pm->sleep_wake(dev, enable) : -ENODEV;
417}
418
John W. Linville064b53d2005-07-27 10:19:44 -0400419/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200420 * pci_raw_set_power_state - Use PCI PM registers to set the power state of
421 * given PCI device
422 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200423 * @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
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200433pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200435 u16 pmcsr;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200436 bool need_restore = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200438 if (!dev->pm_cap)
Andrew Lunncca03de2007-07-09 11:55:58 -0700439 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* check if this device supports the desired state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200459 if ((state == PCI_D1 && !dev->d1_support)
460 || (state == PCI_D2 && !dev->d2_support))
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700461 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200463 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
John W. Linville064b53d2005-07-27 10:19:44 -0400464
John W. Linville32a36582005-09-14 09:52:42 -0400465 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * This doesn't affect PME_Status, disables PME_En, and
467 * sets PowerState to 0.
468 */
John W. Linville32a36582005-09-14 09:52:42 -0400469 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400470 case PCI_D0:
471 case PCI_D1:
472 case PCI_D2:
473 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
474 pmcsr |= state;
475 break;
John W. Linville32a36582005-09-14 09:52:42 -0400476 case PCI_UNKNOWN: /* Boot-up */
477 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
478 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200479 need_restore = true;
John W. Linville32a36582005-09-14 09:52:42 -0400480 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400481 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400482 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
486 /* enter specified state */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200487 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* Mandatory power management transition delays */
490 /* see PCI PM 1.1 5.6.1 table 18 */
491 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
Kristen Carlson Accardiffadcc22006-07-12 08:59:00 -0700492 msleep(pci_pm_d3_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 else if (state == PCI_D2 || dev->current_state == PCI_D2)
494 udelay(200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
David Shaohua Lib9131002005-03-19 00:16:18 -0500496 dev->current_state = state;
John W. Linville064b53d2005-07-27 10:19:44 -0400497
498 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
499 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
500 * from D3hot to D0 _may_ perform an internal reset, thereby
501 * going to "D0 Uninitialized" rather than "D0 Initialized".
502 * For example, at least some versions of the 3c905B and the
503 * 3c556B exhibit this behaviour.
504 *
505 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
506 * devices in a D3hot state at boot. Consequently, we need to
507 * restore at least the BARs so that the device will be
508 * accessible to its driver.
509 */
510 if (need_restore)
511 pci_restore_bars(dev);
512
Shaohua Li7d715a62008-02-25 09:46:41 +0800513 if (dev->bus->self)
514 pcie_aspm_pm_state_change(dev->bus->self);
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return 0;
517}
518
519/**
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200520 * pci_update_current_state - Read PCI power state of given device from its
521 * PCI PM registers and cache it
522 * @dev: PCI device to handle.
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200523 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200524static void pci_update_current_state(struct pci_dev *dev)
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200525{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200526 if (dev->pm_cap) {
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200527 u16 pmcsr;
528
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200529 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200530 dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK);
531 }
532}
533
534/**
535 * pci_set_power_state - Set the power state of a PCI device
536 * @dev: PCI device to handle.
537 * @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
538 *
539 * Transition a device to a new power state, using the platform formware and/or
540 * the device's PCI PM registers.
541 *
542 * RETURN VALUE:
543 * -EINVAL if the requested state is invalid.
544 * -EIO if device does not support PCI PM or its PM capabilities register has a
545 * wrong version, or device doesn't support the requested state.
546 * 0 if device already is in the requested state.
547 * 0 if device's power state has been successfully changed.
548 */
549int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
550{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200551 int error;
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200552
553 /* bound the state we're entering */
554 if (state > PCI_D3hot)
555 state = PCI_D3hot;
556 else if (state < PCI_D0)
557 state = PCI_D0;
558 else if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
559 /*
560 * If the device or the parent bridge do not support PCI PM,
561 * ignore the request if we're doing anything other than putting
562 * it into D0 (which would only happen on boot).
563 */
564 return 0;
565
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200566 if (state == PCI_D0 && platform_pci_power_manageable(dev)) {
567 /*
568 * Allow the platform to change the state, for example via ACPI
569 * _PR0, _PS0 and some such, but do not trust it.
570 */
571 int ret = platform_pci_set_power_state(dev, PCI_D0);
572 if (!ret)
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200573 pci_update_current_state(dev);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200574 }
575
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200576 error = pci_raw_set_power_state(dev, state);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200577
578 if (state > PCI_D0 && platform_pci_power_manageable(dev)) {
579 /* Allow the platform to finalize the transition */
580 int ret = platform_pci_set_power_state(dev, state);
581 if (!ret) {
Rafael J. Wysocki337001b2008-07-07 03:36:24 +0200582 pci_update_current_state(dev);
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200583 error = 0;
584 }
585 }
586
587 return error;
588}
589
590/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * pci_choose_state - Choose the power state of a PCI device
592 * @dev: PCI device to be suspended
593 * @state: target sleep state for the whole system. This is the value
594 * that is passed to suspend() function.
595 *
596 * Returns PCI power state suitable for given device and given system
597 * message.
598 */
599
600pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
601{
Shaohua Liab826ca2007-07-20 10:03:22 +0800602 pci_power_t ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
605 return PCI_D0;
606
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200607 ret = platform_pci_choose_state(dev);
608 if (ret != PCI_POWER_ERROR)
609 return ret;
Pavel Machekca078ba2005-09-03 15:56:57 -0700610
611 switch (state.event) {
612 case PM_EVENT_ON:
613 return PCI_D0;
614 case PM_EVENT_FREEZE:
David Brownellb887d2e2006-08-14 23:11:05 -0700615 case PM_EVENT_PRETHAW:
616 /* REVISIT both freeze and pre-thaw "should" use D0 */
Pavel Machekca078ba2005-09-03 15:56:57 -0700617 case PM_EVENT_SUSPEND:
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100618 case PM_EVENT_HIBERNATE:
Pavel Machekca078ba2005-09-03 15:56:57 -0700619 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600621 dev_info(&dev->dev, "unrecognized suspend event %d\n",
622 state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 BUG();
624 }
625 return PCI_D0;
626}
627
628EXPORT_SYMBOL(pci_choose_state);
629
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300630static int pci_save_pcie_state(struct pci_dev *dev)
631{
632 int pos, i = 0;
633 struct pci_cap_saved_state *save_state;
634 u16 *cap;
Shaohua Li017fc482007-12-18 09:57:09 +0800635 int found = 0;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300636
637 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
638 if (pos <= 0)
639 return 0;
640
Eric W. Biederman9f355752007-03-08 13:06:13 -0700641 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
642 if (!save_state)
643 save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
Shaohua Li017fc482007-12-18 09:57:09 +0800644 else
645 found = 1;
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300646 if (!save_state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600647 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300648 return -ENOMEM;
649 }
650 cap = (u16 *)&save_state->data[0];
651
652 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
653 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
654 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
655 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
Shaohua Liec0a3a22007-12-18 09:56:56 +0800656 save_state->cap_nr = PCI_CAP_ID_EXP;
Shaohua Li017fc482007-12-18 09:57:09 +0800657 if (!found)
658 pci_add_saved_cap(dev, save_state);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300659 return 0;
660}
661
662static void pci_restore_pcie_state(struct pci_dev *dev)
663{
664 int i = 0, pos;
665 struct pci_cap_saved_state *save_state;
666 u16 *cap;
667
668 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
669 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
670 if (!save_state || pos <= 0)
671 return;
672 cap = (u16 *)&save_state->data[0];
673
674 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
675 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
676 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
677 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300678}
679
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800680
681static int pci_save_pcix_state(struct pci_dev *dev)
682{
683 int pos, i = 0;
684 struct pci_cap_saved_state *save_state;
685 u16 *cap;
Shaohua Li017fc482007-12-18 09:57:09 +0800686 int found = 0;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800687
688 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
689 if (pos <= 0)
690 return 0;
691
Shaohua Lif34303d2007-12-18 09:56:47 +0800692 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
Eric W. Biederman9f355752007-03-08 13:06:13 -0700693 if (!save_state)
694 save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
Shaohua Li017fc482007-12-18 09:57:09 +0800695 else
696 found = 1;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800697 if (!save_state) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600698 dev_err(&dev->dev, "out of memory in pci_save_pcie_state\n");
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800699 return -ENOMEM;
700 }
701 cap = (u16 *)&save_state->data[0];
702
703 pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
Shaohua Liec0a3a22007-12-18 09:56:56 +0800704 save_state->cap_nr = PCI_CAP_ID_PCIX;
Shaohua Li017fc482007-12-18 09:57:09 +0800705 if (!found)
706 pci_add_saved_cap(dev, save_state);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800707 return 0;
708}
709
710static void pci_restore_pcix_state(struct pci_dev *dev)
711{
712 int i = 0, pos;
713 struct pci_cap_saved_state *save_state;
714 u16 *cap;
715
716 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
717 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
718 if (!save_state || pos <= 0)
719 return;
720 cap = (u16 *)&save_state->data[0];
721
722 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800723}
724
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/**
727 * pci_save_state - save the PCI configuration space of a device before suspending
728 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
730int
731pci_save_state(struct pci_dev *dev)
732{
733 int i;
734 /* XXX: 100% dword access ok here? */
735 for (i = 0; i < 16; i++)
736 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300737 if ((i = pci_save_pcie_state(dev)) != 0)
738 return i;
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800739 if ((i = pci_save_pcix_state(dev)) != 0)
740 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return 0;
742}
743
744/**
745 * pci_restore_state - Restore the saved state of a PCI device
746 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
748int
749pci_restore_state(struct pci_dev *dev)
750{
751 int i;
Al Virob4482a42007-10-14 19:35:40 +0100752 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Michael S. Tsirkinb56a5a22006-08-21 16:22:22 +0300754 /* PCI Express register must be restored first */
755 pci_restore_pcie_state(dev);
756
Yu, Luming8b8c8d22006-04-25 00:00:34 -0700757 /*
758 * The Base Address register should be programmed before the command
759 * register(s)
760 */
761 for (i = 15; i >= 0; i--) {
Dave Jones04d9c1a2006-04-18 21:06:51 -0700762 pci_read_config_dword(dev, i * 4, &val);
763 if (val != dev->saved_config_space[i]) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600764 dev_printk(KERN_DEBUG, &dev->dev, "restoring config "
765 "space at offset %#x (was %#x, writing %#x)\n",
766 i, val, (int)dev->saved_config_space[i]);
Dave Jones04d9c1a2006-04-18 21:06:51 -0700767 pci_write_config_dword(dev,i * 4,
768 dev->saved_config_space[i]);
769 }
770 }
Stephen Hemmingercc692a52006-11-08 16:17:15 -0800771 pci_restore_pcix_state(dev);
Shaohua Li41017f02006-02-08 17:11:38 +0800772 pci_restore_msi_state(dev);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775}
776
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900777static int do_pci_enable_device(struct pci_dev *dev, int bars)
778{
779 int err;
780
781 err = pci_set_power_state(dev, PCI_D0);
782 if (err < 0 && err != -EIO)
783 return err;
784 err = pcibios_enable_device(dev, bars);
785 if (err < 0)
786 return err;
787 pci_fixup_device(pci_fixup_enable, dev);
788
789 return 0;
790}
791
792/**
Tejun Heo0b62e132007-07-27 14:43:35 +0900793 * pci_reenable_device - Resume abandoned device
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900794 * @dev: PCI device to be resumed
795 *
796 * Note this function is a backend of pci_default_resume and is not supposed
797 * to be called by normal code, write proper resume handler and use it instead.
798 */
Tejun Heo0b62e132007-07-27 14:43:35 +0900799int pci_reenable_device(struct pci_dev *dev)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900800{
801 if (atomic_read(&dev->enable_cnt))
802 return do_pci_enable_device(dev, (1 << PCI_NUM_RESOURCES) - 1);
803 return 0;
804}
805
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100806static int __pci_enable_device_flags(struct pci_dev *dev,
807 resource_size_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 int err;
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100810 int i, bars = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900812 if (atomic_add_return(1, &dev->enable_cnt) > 1)
813 return 0; /* already enabled */
814
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100815 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
816 if (dev->resource[i].flags & flags)
817 bars |= (1 << i);
818
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900819 err = do_pci_enable_device(dev, bars);
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700820 if (err < 0)
Hidetoshi Seto38cc1302006-12-18 10:30:00 +0900821 atomic_dec(&dev->enable_cnt);
Hidetoshi Seto9fb625c2006-12-18 10:28:43 +0900822 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825/**
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100826 * pci_enable_device_io - Initialize a device for use with IO space
827 * @dev: PCI device to be initialized
828 *
829 * Initialize device before it's used by a driver. Ask low-level code
830 * to enable I/O resources. Wake up the device if it was suspended.
831 * Beware, this function can fail.
832 */
833int pci_enable_device_io(struct pci_dev *dev)
834{
835 return __pci_enable_device_flags(dev, IORESOURCE_IO);
836}
837
838/**
839 * pci_enable_device_mem - Initialize a device for use with Memory space
840 * @dev: PCI device to be initialized
841 *
842 * Initialize device before it's used by a driver. Ask low-level code
843 * to enable Memory resources. Wake up the device if it was suspended.
844 * Beware, this function can fail.
845 */
846int pci_enable_device_mem(struct pci_dev *dev)
847{
848 return __pci_enable_device_flags(dev, IORESOURCE_MEM);
849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/**
852 * pci_enable_device - Initialize device before it's used by a driver.
853 * @dev: PCI device to be initialized
854 *
855 * Initialize device before it's used by a driver. Ask low-level code
856 * to enable I/O and memory. Wake up the device if it was suspended.
857 * Beware, this function can fail.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800858 *
859 * Note we don't actually enable the device many times if we call
860 * this function repeatedly (we just increment the count).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800862int pci_enable_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +1100864 return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Tejun Heo9ac78492007-01-20 16:00:26 +0900867/*
868 * Managed PCI resources. This manages device on/off, intx/msi/msix
869 * on/off and BAR regions. pci_dev itself records msi/msix status, so
870 * there's no need to track it separately. pci_devres is initialized
871 * when a device is enabled using managed PCI device enable interface.
872 */
873struct pci_devres {
Tejun Heo7f375f32007-02-25 04:36:01 -0800874 unsigned int enabled:1;
875 unsigned int pinned:1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900876 unsigned int orig_intx:1;
877 unsigned int restore_intx:1;
878 u32 region_mask;
879};
880
881static void pcim_release(struct device *gendev, void *res)
882{
883 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
884 struct pci_devres *this = res;
885 int i;
886
887 if (dev->msi_enabled)
888 pci_disable_msi(dev);
889 if (dev->msix_enabled)
890 pci_disable_msix(dev);
891
892 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
893 if (this->region_mask & (1 << i))
894 pci_release_region(dev, i);
895
896 if (this->restore_intx)
897 pci_intx(dev, this->orig_intx);
898
Tejun Heo7f375f32007-02-25 04:36:01 -0800899 if (this->enabled && !this->pinned)
Tejun Heo9ac78492007-01-20 16:00:26 +0900900 pci_disable_device(dev);
901}
902
903static struct pci_devres * get_pci_dr(struct pci_dev *pdev)
904{
905 struct pci_devres *dr, *new_dr;
906
907 dr = devres_find(&pdev->dev, pcim_release, NULL, NULL);
908 if (dr)
909 return dr;
910
911 new_dr = devres_alloc(pcim_release, sizeof(*new_dr), GFP_KERNEL);
912 if (!new_dr)
913 return NULL;
914 return devres_get(&pdev->dev, new_dr, NULL, NULL);
915}
916
917static struct pci_devres * find_pci_dr(struct pci_dev *pdev)
918{
919 if (pci_is_managed(pdev))
920 return devres_find(&pdev->dev, pcim_release, NULL, NULL);
921 return NULL;
922}
923
924/**
925 * pcim_enable_device - Managed pci_enable_device()
926 * @pdev: PCI device to be initialized
927 *
928 * Managed pci_enable_device().
929 */
930int pcim_enable_device(struct pci_dev *pdev)
931{
932 struct pci_devres *dr;
933 int rc;
934
935 dr = get_pci_dr(pdev);
936 if (unlikely(!dr))
937 return -ENOMEM;
Tejun Heob95d58e2008-01-30 18:20:04 +0900938 if (dr->enabled)
939 return 0;
Tejun Heo9ac78492007-01-20 16:00:26 +0900940
941 rc = pci_enable_device(pdev);
942 if (!rc) {
943 pdev->is_managed = 1;
Tejun Heo7f375f32007-02-25 04:36:01 -0800944 dr->enabled = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900945 }
946 return rc;
947}
948
949/**
950 * pcim_pin_device - Pin managed PCI device
951 * @pdev: PCI device to pin
952 *
953 * Pin managed PCI device @pdev. Pinned device won't be disabled on
954 * driver detach. @pdev must have been enabled with
955 * pcim_enable_device().
956 */
957void pcim_pin_device(struct pci_dev *pdev)
958{
959 struct pci_devres *dr;
960
961 dr = find_pci_dr(pdev);
Tejun Heo7f375f32007-02-25 04:36:01 -0800962 WARN_ON(!dr || !dr->enabled);
Tejun Heo9ac78492007-01-20 16:00:26 +0900963 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -0800964 dr->pinned = 1;
Tejun Heo9ac78492007-01-20 16:00:26 +0900965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967/**
968 * pcibios_disable_device - disable arch specific PCI resources for device dev
969 * @dev: the PCI device to disable
970 *
971 * Disables architecture specific PCI resources for the device. This
972 * is the default implementation. Architecture implementations can
973 * override this.
974 */
975void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
976
977/**
978 * pci_disable_device - Disable PCI device after use
979 * @dev: PCI device to be disabled
980 *
981 * Signal to the system that the PCI device is not in use by the system
982 * anymore. This only involves disabling PCI bus-mastering, if active.
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800983 *
984 * Note we don't actually disable the device until all callers of
985 * pci_device_enable() have called pci_device_disable().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 */
987void
988pci_disable_device(struct pci_dev *dev)
989{
Tejun Heo9ac78492007-01-20 16:00:26 +0900990 struct pci_devres *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 u16 pci_command;
Shaohua Li99dc8042006-05-26 10:58:27 +0800992
Tejun Heo9ac78492007-01-20 16:00:26 +0900993 dr = find_pci_dr(dev);
994 if (dr)
Tejun Heo7f375f32007-02-25 04:36:01 -0800995 dr->enabled = 0;
Tejun Heo9ac78492007-01-20 16:00:26 +0900996
Inaky Perez-Gonzalezbae94d02006-11-22 12:40:31 -0800997 if (atomic_sub_return(1, &dev->enable_cnt) != 0)
998 return;
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
1001 if (pci_command & PCI_COMMAND_MASTER) {
1002 pci_command &= ~PCI_COMMAND_MASTER;
1003 pci_write_config_word(dev, PCI_COMMAND, pci_command);
1004 }
Kenji Kaneshigeceb43742005-04-08 14:53:31 +09001005 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 pcibios_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
1010/**
Brian Kingf7bdd122007-04-06 16:39:36 -05001011 * pcibios_set_pcie_reset_state - set reset state for device dev
1012 * @dev: the PCI-E device reset
1013 * @state: Reset state to enter into
1014 *
1015 *
1016 * Sets the PCI-E reset state for the device. This is the default
1017 * implementation. Architecture implementations can override this.
1018 */
1019int __attribute__ ((weak)) pcibios_set_pcie_reset_state(struct pci_dev *dev,
1020 enum pcie_reset_state state)
1021{
1022 return -EINVAL;
1023}
1024
1025/**
1026 * pci_set_pcie_reset_state - set reset state for device dev
1027 * @dev: the PCI-E device reset
1028 * @state: Reset state to enter into
1029 *
1030 *
1031 * Sets the PCI reset state for the device.
1032 */
1033int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
1034{
1035 return pcibios_set_pcie_reset_state(dev, state);
1036}
1037
1038/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001039 * pci_pme_capable - check the capability of PCI device to generate PME#
1040 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001041 * @state: PCI state from which device will issue PME#.
1042 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001043static bool pci_pme_capable(struct pci_dev *dev, pci_power_t state)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001044{
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001045 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001046 return false;
1047
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001048 return !!(dev->pme_support & (1 << state));
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001049}
1050
1051/**
1052 * pci_pme_active - enable or disable PCI device's PME# function
1053 * @dev: PCI device to handle.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001054 * @enable: 'true' to enable PME# generation; 'false' to disable it.
1055 *
1056 * The caller must verify that the device is capable of generating PME# before
1057 * calling this function with @enable equal to 'true'.
1058 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001059static void pci_pme_active(struct pci_dev *dev, bool enable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001060{
1061 u16 pmcsr;
1062
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001063 if (!dev->pm_cap)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001064 return;
1065
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001066 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001067 /* Clear PME_Status by writing 1 to it and enable PME# */
1068 pmcsr |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
1069 if (!enable)
1070 pmcsr &= ~PCI_PM_CTRL_PME_ENABLE;
1071
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001072 pci_write_config_word(dev, dev->pm_cap + PCI_PM_CTRL, pmcsr);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001073
1074 dev_printk(KERN_INFO, &dev->dev, "PME# %s\n",
1075 enable ? "enabled" : "disabled");
1076}
1077
1078/**
David Brownell075c1772007-04-26 00:12:06 -07001079 * pci_enable_wake - enable PCI device as wakeup event source
1080 * @dev: PCI device affected
1081 * @state: PCI state from which device will issue wakeup events
1082 * @enable: True to enable event generation; false to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 *
David Brownell075c1772007-04-26 00:12:06 -07001084 * This enables the device as a wakeup event source, or disables it.
1085 * When such events involves platform-specific hooks, those hooks are
1086 * called automatically by this routine.
1087 *
1088 * Devices with legacy power management (no standard PCI PM capabilities)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001089 * always require such platform hooks.
David Brownell075c1772007-04-26 00:12:06 -07001090 *
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001091 * RETURN VALUE:
1092 * 0 is returned on success
1093 * -EINVAL is returned if device is not supposed to wake up the system
1094 * Error code depending on the platform is returned if both the platform and
1095 * the native mechanism fail to enable the generation of wake-up events
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 */
1097int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
1098{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001099 int error = 0;
1100 bool pme_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001102 if (!device_may_wakeup(&dev->dev))
1103 return -EINVAL;
1104
1105 /*
1106 * According to "PCI System Architecture" 4th ed. by Tom Shanley & Don
1107 * Anderson we should be doing PME# wake enable followed by ACPI wake
1108 * enable. To disable wake-up we call the platform first, for symmetry.
David Brownell075c1772007-04-26 00:12:06 -07001109 */
1110
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001111 if (!enable && platform_pci_can_wakeup(dev))
1112 error = platform_pci_sleep_wake(dev, false);
1113
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001114 if (!enable || pci_pme_capable(dev, state)) {
1115 pci_pme_active(dev, enable);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001116 pme_done = true;
1117 }
1118
1119 if (enable && platform_pci_can_wakeup(dev))
1120 error = platform_pci_sleep_wake(dev, true);
1121
1122 return pme_done ? 0 : error;
1123}
1124
1125/**
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001126 * pci_prepare_to_sleep - prepare PCI device for system-wide transition into
1127 * a sleep state
1128 * @dev: Device to handle.
1129 *
1130 * Choose the power state appropriate for the device depending on whether
1131 * it can wake up the system and/or is power manageable by the platform
1132 * (PCI_D3hot is the default) and put the device into that state.
1133 */
1134int pci_prepare_to_sleep(struct pci_dev *dev)
1135{
1136 pci_power_t target_state = PCI_D3hot;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001137 int error;
1138
1139 if (platform_pci_power_manageable(dev)) {
1140 /*
1141 * Call the platform to choose the target state of the device
1142 * and enable wake-up from this state if supported.
1143 */
1144 pci_power_t state = platform_pci_choose_state(dev);
1145
1146 switch (state) {
1147 case PCI_POWER_ERROR:
1148 case PCI_UNKNOWN:
1149 break;
1150 case PCI_D1:
1151 case PCI_D2:
1152 if (pci_no_d1d2(dev))
1153 break;
1154 default:
1155 target_state = state;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001156 }
1157 } else if (device_may_wakeup(&dev->dev)) {
1158 /*
1159 * Find the deepest state from which the device can generate
1160 * wake-up events, make it the target state and enable device
1161 * to generate PME#.
1162 */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001163 if (!dev->pm_cap)
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001164 return -EIO;
1165
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001166 if (dev->pme_support) {
1167 while (target_state
1168 && !(dev->pme_support & (1 << target_state)))
1169 target_state--;
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001170 }
1171 }
1172
Rafael J. Wysockic157dfa2008-07-13 22:45:06 +02001173 pci_enable_wake(dev, target_state, true);
1174
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001175 error = pci_set_power_state(dev, target_state);
1176
1177 if (error)
1178 pci_enable_wake(dev, target_state, false);
1179
1180 return error;
1181}
1182
1183/**
1184 * pci_back_from_sleep - turn PCI device on during system-wide transition into
1185 * the working state a sleep state
1186 * @dev: Device to handle.
1187 *
1188 * Disable device's sytem wake-up capability and put it into D0.
1189 */
1190int pci_back_from_sleep(struct pci_dev *dev)
1191{
1192 pci_enable_wake(dev, PCI_D0, false);
1193 return pci_set_power_state(dev, PCI_D0);
1194}
1195
1196/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001197 * pci_pm_init - Initialize PM functions of given PCI device
1198 * @dev: PCI device to handle.
1199 */
1200void pci_pm_init(struct pci_dev *dev)
1201{
1202 int pm;
1203 u16 pmc;
David Brownell075c1772007-04-26 00:12:06 -07001204
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001205 dev->pm_cap = 0;
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* find PCI PM capability in list */
1208 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
David Brownell075c1772007-04-26 00:12:06 -07001209 if (!pm)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001210 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 /* Check device's ability to generate PME# */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001212 pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001214 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1215 dev_err(&dev->dev, "unsupported PM cap regs version (%u)\n",
1216 pmc & PCI_PM_CAP_VER_MASK);
1217 return;
David Brownell075c1772007-04-26 00:12:06 -07001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001220 dev->pm_cap = pm;
1221
1222 dev->d1_support = false;
1223 dev->d2_support = false;
1224 if (!pci_no_d1d2(dev)) {
1225 if (pmc & PCI_PM_CAP_D1) {
1226 dev_printk(KERN_DEBUG, &dev->dev, "supports D1\n");
1227 dev->d1_support = true;
1228 }
1229 if (pmc & PCI_PM_CAP_D2) {
1230 dev_printk(KERN_DEBUG, &dev->dev, "supports D2\n");
1231 dev->d2_support = true;
1232 }
1233 }
1234
1235 pmc &= PCI_PM_CAP_PME_MASK;
1236 if (pmc) {
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001237 dev_printk(KERN_INFO, &dev->dev,
1238 "PME# supported from%s%s%s%s%s\n",
1239 (pmc & PCI_PM_CAP_PME_D0) ? " D0" : "",
1240 (pmc & PCI_PM_CAP_PME_D1) ? " D1" : "",
1241 (pmc & PCI_PM_CAP_PME_D2) ? " D2" : "",
1242 (pmc & PCI_PM_CAP_PME_D3) ? " D3hot" : "",
1243 (pmc & PCI_PM_CAP_PME_D3cold) ? " D3cold" : "");
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001244 dev->pme_support = pmc >> PCI_PM_CAP_PME_SHIFT;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001245 /*
1246 * Make device's PM flags reflect the wake-up capability, but
1247 * let the user space enable it to wake up the system as needed.
1248 */
1249 device_set_wakeup_capable(&dev->dev, true);
1250 device_set_wakeup_enable(&dev->dev, false);
1251 /* Disable the PME# generation functionality */
Rafael J. Wysocki337001b2008-07-07 03:36:24 +02001252 pci_pme_active(dev, false);
1253 } else {
1254 dev->pme_support = 0;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02001255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258int
1259pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1260{
1261 u8 pin;
1262
Kristen Accardi514d2072005-11-02 16:24:39 -08001263 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (!pin)
1265 return -1;
1266 pin--;
1267 while (dev->bus->self) {
1268 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
1269 dev = dev->bus->self;
1270 }
1271 *bridge = dev;
1272 return pin;
1273}
1274
1275/**
1276 * pci_release_region - Release a PCI bar
1277 * @pdev: PCI device whose resources were previously reserved by pci_request_region
1278 * @bar: BAR to release
1279 *
1280 * Releases the PCI I/O and memory resources previously reserved by a
1281 * successful call to pci_request_region. Call this function only
1282 * after all use of the PCI regions has ceased.
1283 */
1284void pci_release_region(struct pci_dev *pdev, int bar)
1285{
Tejun Heo9ac78492007-01-20 16:00:26 +09001286 struct pci_devres *dr;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (pci_resource_len(pdev, bar) == 0)
1289 return;
1290 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
1291 release_region(pci_resource_start(pdev, bar),
1292 pci_resource_len(pdev, bar));
1293 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
1294 release_mem_region(pci_resource_start(pdev, bar),
1295 pci_resource_len(pdev, bar));
Tejun Heo9ac78492007-01-20 16:00:26 +09001296
1297 dr = find_pci_dr(pdev);
1298 if (dr)
1299 dr->region_mask &= ~(1 << bar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302/**
1303 * pci_request_region - Reserved PCI I/O and memory resource
1304 * @pdev: PCI device whose resources are to be reserved
1305 * @bar: BAR to be reserved
1306 * @res_name: Name to be associated with resource.
1307 *
1308 * Mark the PCI region associated with PCI device @pdev BR @bar as
1309 * being reserved by owner @res_name. Do not access any
1310 * address inside the PCI regions unless this call returns
1311 * successfully.
1312 *
1313 * Returns 0 on success, or %EBUSY on error. A warning
1314 * message is also printed on failure.
1315 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001316int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Tejun Heo9ac78492007-01-20 16:00:26 +09001318 struct pci_devres *dr;
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (pci_resource_len(pdev, bar) == 0)
1321 return 0;
1322
1323 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
1324 if (!request_region(pci_resource_start(pdev, bar),
1325 pci_resource_len(pdev, bar), res_name))
1326 goto err_out;
1327 }
1328 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
1329 if (!request_mem_region(pci_resource_start(pdev, bar),
1330 pci_resource_len(pdev, bar), res_name))
1331 goto err_out;
1332 }
Tejun Heo9ac78492007-01-20 16:00:26 +09001333
1334 dr = find_pci_dr(pdev);
1335 if (dr)
1336 dr->region_mask |= 1 << bar;
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return 0;
1339
1340err_out:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001341 dev_warn(&pdev->dev, "BAR %d: can't reserve %s region [%#llx-%#llx]\n",
Jesse Barnese4ec7a02008-06-25 16:12:25 -07001342 bar,
1343 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
1344 (unsigned long long)pci_resource_start(pdev, bar),
1345 (unsigned long long)pci_resource_end(pdev, bar));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return -EBUSY;
1347}
1348
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001349/**
1350 * pci_release_selected_regions - Release selected PCI I/O and memory resources
1351 * @pdev: PCI device whose resources were previously reserved
1352 * @bars: Bitmask of BARs to be released
1353 *
1354 * Release selected PCI I/O and memory resources previously reserved.
1355 * Call this function only after all use of the PCI regions has ceased.
1356 */
1357void pci_release_selected_regions(struct pci_dev *pdev, int bars)
1358{
1359 int i;
1360
1361 for (i = 0; i < 6; i++)
1362 if (bars & (1 << i))
1363 pci_release_region(pdev, i);
1364}
1365
1366/**
1367 * pci_request_selected_regions - Reserve selected PCI I/O and memory resources
1368 * @pdev: PCI device whose resources are to be reserved
1369 * @bars: Bitmask of BARs to be requested
1370 * @res_name: Name to be associated with resource
1371 */
1372int pci_request_selected_regions(struct pci_dev *pdev, int bars,
1373 const char *res_name)
1374{
1375 int i;
1376
1377 for (i = 0; i < 6; i++)
1378 if (bars & (1 << i))
1379 if(pci_request_region(pdev, i, res_name))
1380 goto err_out;
1381 return 0;
1382
1383err_out:
1384 while(--i >= 0)
1385 if (bars & (1 << i))
1386 pci_release_region(pdev, i);
1387
1388 return -EBUSY;
1389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391/**
1392 * pci_release_regions - Release reserved PCI I/O and memory resources
1393 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
1394 *
1395 * Releases all PCI I/O and memory resources previously reserved by a
1396 * successful call to pci_request_regions. Call this function only
1397 * after all use of the PCI regions has ceased.
1398 */
1399
1400void pci_release_regions(struct pci_dev *pdev)
1401{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001402 pci_release_selected_regions(pdev, (1 << 6) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
1405/**
1406 * pci_request_regions - Reserved PCI I/O and memory resources
1407 * @pdev: PCI device whose resources are to be reserved
1408 * @res_name: Name to be associated with resource.
1409 *
1410 * Mark all PCI regions associated with PCI device @pdev as
1411 * being reserved by owner @res_name. Do not access any
1412 * address inside the PCI regions unless this call returns
1413 * successfully.
1414 *
1415 * Returns 0 on success, or %EBUSY on error. A warning
1416 * message is also printed on failure.
1417 */
Jeff Garzik3c990e92006-03-04 21:52:42 -05001418int pci_request_regions(struct pci_dev *pdev, const char *res_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001420 return pci_request_selected_regions(pdev, ((1 << 6) - 1), res_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423/**
1424 * pci_set_master - enables bus-mastering for device dev
1425 * @dev: the PCI device to enable
1426 *
1427 * Enables bus-mastering on the device and calls pcibios_set_master()
1428 * to do the needed arch specific settings.
1429 */
1430void
1431pci_set_master(struct pci_dev *dev)
1432{
1433 u16 cmd;
1434
1435 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1436 if (! (cmd & PCI_COMMAND_MASTER)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001437 dev_dbg(&dev->dev, "enabling bus mastering\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 cmd |= PCI_COMMAND_MASTER;
1439 pci_write_config_word(dev, PCI_COMMAND, cmd);
1440 }
1441 dev->is_busmaster = 1;
1442 pcibios_set_master(dev);
1443}
1444
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001445#ifdef PCI_DISABLE_MWI
1446int pci_set_mwi(struct pci_dev *dev)
1447{
1448 return 0;
1449}
1450
Randy Dunlap694625c2007-07-09 11:55:54 -07001451int pci_try_set_mwi(struct pci_dev *dev)
1452{
1453 return 0;
1454}
1455
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001456void pci_clear_mwi(struct pci_dev *dev)
1457{
1458}
1459
1460#else
Matthew Wilcoxebf5a242006-10-10 08:01:20 -06001461
1462#ifndef PCI_CACHE_LINE_BYTES
1463#define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
1464#endif
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/* This can be overridden by arch code. */
Matthew Wilcoxebf5a242006-10-10 08:01:20 -06001467/* Don't forget this is measured in 32-bit words, not bytes */
1468u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470/**
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001471 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
1472 * @dev: the PCI device for which MWI is to be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 *
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001474 * Helper function for pci_set_mwi.
1475 * Originally copied from drivers/net/acenic.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
1477 *
1478 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1479 */
1480static int
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001481pci_set_cacheline_size(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
1483 u8 cacheline_size;
1484
1485 if (!pci_cache_line_size)
1486 return -EINVAL; /* The system doesn't support MWI. */
1487
1488 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
1489 equal to or multiple of the right value. */
1490 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1491 if (cacheline_size >= pci_cache_line_size &&
1492 (cacheline_size % pci_cache_line_size) == 0)
1493 return 0;
1494
1495 /* Write the correct value. */
1496 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
1497 /* Read it back. */
1498 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
1499 if (cacheline_size == pci_cache_line_size)
1500 return 0;
1501
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001502 dev_printk(KERN_DEBUG, &dev->dev, "cache line size of %d is not "
1503 "supported\n", pci_cache_line_size << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 return -EINVAL;
1506}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508/**
1509 * pci_set_mwi - enables memory-write-invalidate PCI transaction
1510 * @dev: the PCI device for which MWI is enabled
1511 *
Randy Dunlap694625c2007-07-09 11:55:54 -07001512 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 *
1514 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1515 */
1516int
1517pci_set_mwi(struct pci_dev *dev)
1518{
1519 int rc;
1520 u16 cmd;
1521
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001522 rc = pci_set_cacheline_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (rc)
1524 return rc;
1525
1526 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1527 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001528 dev_dbg(&dev->dev, "enabling Mem-Wr-Inval\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 cmd |= PCI_COMMAND_INVALIDATE;
1530 pci_write_config_word(dev, PCI_COMMAND, cmd);
1531 }
1532
1533 return 0;
1534}
1535
1536/**
Randy Dunlap694625c2007-07-09 11:55:54 -07001537 * pci_try_set_mwi - enables memory-write-invalidate PCI transaction
1538 * @dev: the PCI device for which MWI is enabled
1539 *
1540 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND.
1541 * Callers are not required to check the return value.
1542 *
1543 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
1544 */
1545int pci_try_set_mwi(struct pci_dev *dev)
1546{
1547 int rc = pci_set_mwi(dev);
1548 return rc;
1549}
1550
1551/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
1553 * @dev: the PCI device to disable
1554 *
1555 * Disables PCI Memory-Write-Invalidate transaction on the device
1556 */
1557void
1558pci_clear_mwi(struct pci_dev *dev)
1559{
1560 u16 cmd;
1561
1562 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1563 if (cmd & PCI_COMMAND_INVALIDATE) {
1564 cmd &= ~PCI_COMMAND_INVALIDATE;
1565 pci_write_config_word(dev, PCI_COMMAND, cmd);
1566 }
1567}
Matthew Wilcoxedb2d972006-10-10 08:01:21 -06001568#endif /* ! PCI_DISABLE_MWI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Brett M Russa04ce0f2005-08-15 15:23:41 -04001570/**
1571 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001572 * @pdev: the PCI device to operate on
1573 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -04001574 *
1575 * Enables/disables PCI INTx for device dev
1576 */
1577void
1578pci_intx(struct pci_dev *pdev, int enable)
1579{
1580 u16 pci_command, new;
1581
1582 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
1583
1584 if (enable) {
1585 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
1586 } else {
1587 new = pci_command | PCI_COMMAND_INTX_DISABLE;
1588 }
1589
1590 if (new != pci_command) {
Tejun Heo9ac78492007-01-20 16:00:26 +09001591 struct pci_devres *dr;
1592
Brett M Russ2fd9d742005-09-09 10:02:22 -07001593 pci_write_config_word(pdev, PCI_COMMAND, new);
Tejun Heo9ac78492007-01-20 16:00:26 +09001594
1595 dr = find_pci_dr(pdev);
1596 if (dr && !dr->restore_intx) {
1597 dr->restore_intx = 1;
1598 dr->orig_intx = !enable;
1599 }
Brett M Russa04ce0f2005-08-15 15:23:41 -04001600 }
1601}
1602
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08001603/**
1604 * pci_msi_off - disables any msi or msix capabilities
Randy Dunlap8d7d86e2007-03-16 19:55:52 -07001605 * @dev: the PCI device to operate on
Eric W. Biedermanf5f2b132007-03-05 00:30:07 -08001606 *
1607 * If you want to use msi see pci_enable_msi and friends.
1608 * This is a lower level primitive that allows us to disable
1609 * msi operation at the device level.
1610 */
1611void pci_msi_off(struct pci_dev *dev)
1612{
1613 int pos;
1614 u16 control;
1615
1616 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
1617 if (pos) {
1618 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
1619 control &= ~PCI_MSI_FLAGS_ENABLE;
1620 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
1621 }
1622 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1623 if (pos) {
1624 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
1625 control &= ~PCI_MSIX_FLAGS_ENABLE;
1626 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
1627 }
1628}
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
1631/*
1632 * These can be overridden by arch-specific implementations
1633 */
1634int
1635pci_set_dma_mask(struct pci_dev *dev, u64 mask)
1636{
1637 if (!pci_dma_supported(dev, mask))
1638 return -EIO;
1639
1640 dev->dma_mask = mask;
1641
1642 return 0;
1643}
1644
1645int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1647{
1648 if (!pci_dma_supported(dev, mask))
1649 return -EIO;
1650
1651 dev->dev.coherent_dma_mask = mask;
1652
1653 return 0;
1654}
1655#endif
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001656
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08001657#ifndef HAVE_ARCH_PCI_SET_DMA_MAX_SEGMENT_SIZE
1658int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size)
1659{
1660 return dma_set_max_seg_size(&dev->dev, size);
1661}
1662EXPORT_SYMBOL(pci_set_dma_max_seg_size);
1663#endif
1664
FUJITA Tomonori59fc67d2008-02-04 22:28:14 -08001665#ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY
1666int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask)
1667{
1668 return dma_set_seg_boundary(&dev->dev, mask);
1669}
1670EXPORT_SYMBOL(pci_set_dma_seg_boundary);
1671#endif
1672
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001673/**
Peter Orubad556ad42007-05-15 13:59:13 +02001674 * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count
1675 * @dev: PCI device to query
1676 *
1677 * Returns mmrbc: maximum designed memory read count in bytes
1678 * or appropriate error value.
1679 */
1680int pcix_get_max_mmrbc(struct pci_dev *dev)
1681{
Andrew Mortonb7b095c2007-07-09 11:55:50 -07001682 int err, cap;
Peter Orubad556ad42007-05-15 13:59:13 +02001683 u32 stat;
1684
1685 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1686 if (!cap)
1687 return -EINVAL;
1688
1689 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1690 if (err)
1691 return -EINVAL;
1692
Andrew Mortonb7b095c2007-07-09 11:55:50 -07001693 return (stat & PCI_X_STATUS_MAX_READ) >> 12;
Peter Orubad556ad42007-05-15 13:59:13 +02001694}
1695EXPORT_SYMBOL(pcix_get_max_mmrbc);
1696
1697/**
1698 * pcix_get_mmrbc - get PCI-X maximum memory read byte count
1699 * @dev: PCI device to query
1700 *
1701 * Returns mmrbc: maximum memory read count in bytes
1702 * or appropriate error value.
1703 */
1704int pcix_get_mmrbc(struct pci_dev *dev)
1705{
1706 int ret, cap;
1707 u32 cmd;
1708
1709 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1710 if (!cap)
1711 return -EINVAL;
1712
1713 ret = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1714 if (!ret)
1715 ret = 512 << ((cmd & PCI_X_CMD_MAX_READ) >> 2);
1716
1717 return ret;
1718}
1719EXPORT_SYMBOL(pcix_get_mmrbc);
1720
1721/**
1722 * pcix_set_mmrbc - set PCI-X maximum memory read byte count
1723 * @dev: PCI device to query
1724 * @mmrbc: maximum memory read count in bytes
1725 * valid values are 512, 1024, 2048, 4096
1726 *
1727 * If possible sets maximum memory read byte count, some bridges have erratas
1728 * that prevent this.
1729 */
1730int pcix_set_mmrbc(struct pci_dev *dev, int mmrbc)
1731{
1732 int cap, err = -EINVAL;
1733 u32 stat, cmd, v, o;
1734
vignesh babu229f5af2007-08-13 18:23:14 +05301735 if (mmrbc < 512 || mmrbc > 4096 || !is_power_of_2(mmrbc))
Peter Orubad556ad42007-05-15 13:59:13 +02001736 goto out;
1737
1738 v = ffs(mmrbc) - 10;
1739
1740 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1741 if (!cap)
1742 goto out;
1743
1744 err = pci_read_config_dword(dev, cap + PCI_X_STATUS, &stat);
1745 if (err)
1746 goto out;
1747
1748 if (v > (stat & PCI_X_STATUS_MAX_READ) >> 21)
1749 return -E2BIG;
1750
1751 err = pci_read_config_dword(dev, cap + PCI_X_CMD, &cmd);
1752 if (err)
1753 goto out;
1754
1755 o = (cmd & PCI_X_CMD_MAX_READ) >> 2;
1756 if (o != v) {
1757 if (v > o && dev->bus &&
1758 (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_MMRBC))
1759 return -EIO;
1760
1761 cmd &= ~PCI_X_CMD_MAX_READ;
1762 cmd |= v << 2;
1763 err = pci_write_config_dword(dev, cap + PCI_X_CMD, cmd);
1764 }
1765out:
1766 return err;
1767}
1768EXPORT_SYMBOL(pcix_set_mmrbc);
1769
1770/**
1771 * pcie_get_readrq - get PCI Express read request size
1772 * @dev: PCI device to query
1773 *
1774 * Returns maximum memory read request in bytes
1775 * or appropriate error value.
1776 */
1777int pcie_get_readrq(struct pci_dev *dev)
1778{
1779 int ret, cap;
1780 u16 ctl;
1781
1782 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1783 if (!cap)
1784 return -EINVAL;
1785
1786 ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1787 if (!ret)
1788 ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12);
1789
1790 return ret;
1791}
1792EXPORT_SYMBOL(pcie_get_readrq);
1793
1794/**
1795 * pcie_set_readrq - set PCI Express maximum memory read request
1796 * @dev: PCI device to query
Randy Dunlap42e61f42007-07-23 21:42:11 -07001797 * @rq: maximum memory read count in bytes
Peter Orubad556ad42007-05-15 13:59:13 +02001798 * valid values are 128, 256, 512, 1024, 2048, 4096
1799 *
1800 * If possible sets maximum read byte count
1801 */
1802int pcie_set_readrq(struct pci_dev *dev, int rq)
1803{
1804 int cap, err = -EINVAL;
1805 u16 ctl, v;
1806
vignesh babu229f5af2007-08-13 18:23:14 +05301807 if (rq < 128 || rq > 4096 || !is_power_of_2(rq))
Peter Orubad556ad42007-05-15 13:59:13 +02001808 goto out;
1809
1810 v = (ffs(rq) - 8) << 12;
1811
1812 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
1813 if (!cap)
1814 goto out;
1815
1816 err = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl);
1817 if (err)
1818 goto out;
1819
1820 if ((ctl & PCI_EXP_DEVCTL_READRQ) != v) {
1821 ctl &= ~PCI_EXP_DEVCTL_READRQ;
1822 ctl |= v;
1823 err = pci_write_config_dword(dev, cap + PCI_EXP_DEVCTL, ctl);
1824 }
1825
1826out:
1827 return err;
1828}
1829EXPORT_SYMBOL(pcie_set_readrq);
1830
1831/**
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001832 * pci_select_bars - Make BAR mask from the type of resource
Randy Dunlapf95d8822007-02-10 14:41:56 -08001833 * @dev: the PCI device for which BAR mask is made
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001834 * @flags: resource type mask to be selected
1835 *
1836 * This helper routine makes bar mask from the type of resource.
1837 */
1838int pci_select_bars(struct pci_dev *dev, unsigned long flags)
1839{
1840 int i, bars = 0;
1841 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1842 if (pci_resource_flags(dev, i) & flags)
1843 bars |= (1 << i);
1844 return bars;
1845}
1846
Jeff Garzik32a2eea2007-10-11 16:57:27 -04001847static void __devinit pci_no_domains(void)
1848{
1849#ifdef CONFIG_PCI_DOMAINS
1850 pci_domains_supported = 0;
1851#endif
1852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854static int __devinit pci_init(void)
1855{
1856 struct pci_dev *dev = NULL;
1857
1858 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1859 pci_fixup_device(pci_fixup_final, dev);
1860 }
1861 return 0;
1862}
1863
1864static int __devinit pci_setup(char *str)
1865{
1866 while (str) {
1867 char *k = strchr(str, ',');
1868 if (k)
1869 *k++ = 0;
1870 if (*str && (str = pcibios_setup(str)) && *str) {
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001871 if (!strcmp(str, "nomsi")) {
1872 pci_no_msi();
Randy Dunlap7f785762007-10-05 13:17:58 -07001873 } else if (!strcmp(str, "noaer")) {
1874 pci_no_aer();
Jeff Garzik32a2eea2007-10-11 16:57:27 -04001875 } else if (!strcmp(str, "nodomains")) {
1876 pci_no_domains();
Atsushi Nemoto4516a612007-02-05 16:36:06 -08001877 } else if (!strncmp(str, "cbiosize=", 9)) {
1878 pci_cardbus_io_size = memparse(str + 9, &str);
1879 } else if (!strncmp(str, "cbmemsize=", 10)) {
1880 pci_cardbus_mem_size = memparse(str + 10, &str);
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001881 } else {
1882 printk(KERN_ERR "PCI: Unknown option `%s'\n",
1883 str);
1884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886 str = k;
1887 }
Andi Kleen0637a702006-09-26 10:52:41 +02001888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
Andi Kleen0637a702006-09-26 10:52:41 +02001890early_param("pci", pci_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892device_initcall(pci_init);
1893
Tejun Heo0b62e132007-07-27 14:43:35 +09001894EXPORT_SYMBOL(pci_reenable_device);
Benjamin Herrenschmidtb7189892007-12-20 15:28:08 +11001895EXPORT_SYMBOL(pci_enable_device_io);
1896EXPORT_SYMBOL(pci_enable_device_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897EXPORT_SYMBOL(pci_enable_device);
Tejun Heo9ac78492007-01-20 16:00:26 +09001898EXPORT_SYMBOL(pcim_enable_device);
1899EXPORT_SYMBOL(pcim_pin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901EXPORT_SYMBOL(pci_find_capability);
1902EXPORT_SYMBOL(pci_bus_find_capability);
1903EXPORT_SYMBOL(pci_release_regions);
1904EXPORT_SYMBOL(pci_request_regions);
1905EXPORT_SYMBOL(pci_release_region);
1906EXPORT_SYMBOL(pci_request_region);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001907EXPORT_SYMBOL(pci_release_selected_regions);
1908EXPORT_SYMBOL(pci_request_selected_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909EXPORT_SYMBOL(pci_set_master);
1910EXPORT_SYMBOL(pci_set_mwi);
Randy Dunlap694625c2007-07-09 11:55:54 -07001911EXPORT_SYMBOL(pci_try_set_mwi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -04001913EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915EXPORT_SYMBOL(pci_set_consistent_dma_mask);
1916EXPORT_SYMBOL(pci_assign_resource);
1917EXPORT_SYMBOL(pci_find_parent_resource);
Hidetoshi Setoc87deff2006-12-18 10:31:06 +09001918EXPORT_SYMBOL(pci_select_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920EXPORT_SYMBOL(pci_set_power_state);
1921EXPORT_SYMBOL(pci_save_state);
1922EXPORT_SYMBOL(pci_restore_state);
1923EXPORT_SYMBOL(pci_enable_wake);
Rafael J. Wysocki404cc2d2008-07-07 03:35:26 +02001924EXPORT_SYMBOL(pci_prepare_to_sleep);
1925EXPORT_SYMBOL(pci_back_from_sleep);
Brian Kingf7bdd122007-04-06 16:39:36 -05001926EXPORT_SYMBOL_GPL(pci_set_pcie_reset_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927