blob: e17cd49d6244f87ecf809cdd8cf18a4f069207eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: pci.c,v 1.91 1999/01/21 13:34:01 davem Exp $
3 *
4 * PCI Bus Services, see include/linux/pci.h for further explanation.
5 *
6 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
7 * David Mosberger-Tang
8 *
9 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
10 */
11
12#include <linux/kernel.h>
13#include <linux/delay.h>
14#include <linux/init.h>
15#include <linux/pci.h>
16#include <linux/module.h>
17#include <linux/spinlock.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080018#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/dma.h> /* isa_dma_bridge_buggy */
Greg KHbc56b9e2005-04-08 14:53:31 +090020#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Adrian Bunk54c762f2005-12-22 01:08:52 +010022#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/**
25 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
26 * @bus: pointer to PCI bus structure to search
27 *
28 * Given a PCI bus, returns the highest PCI bus number present in the set
29 * including the given PCI bus and its list of child PCI buses.
30 */
31unsigned char __devinit
32pci_bus_max_busnr(struct pci_bus* bus)
33{
34 struct list_head *tmp;
35 unsigned char max, n;
36
37 max = bus->number;
38 list_for_each(tmp, &bus->children) {
39 n = pci_bus_max_busnr(pci_bus_b(tmp));
40 if(n > max)
41 max = n;
42 }
43 return max;
44}
45
46/**
47 * pci_max_busnr - returns maximum PCI bus number
48 *
49 * Returns the highest PCI bus number present in the system global list of
50 * PCI buses.
51 */
52unsigned char __devinit
53pci_max_busnr(void)
54{
55 struct pci_bus *bus = NULL;
56 unsigned char max, n;
57
58 max = 0;
59 while ((bus = pci_find_next_bus(bus)) != NULL) {
60 n = pci_bus_max_busnr(bus);
61 if(n > max)
62 max = n;
63 }
64 return max;
65}
66
Adrian Bunk54c762f2005-12-22 01:08:52 +010067#endif /* 0 */
68
Roland Dreier24a4e372005-10-28 17:35:34 -070069static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap)
70{
71 u8 id;
72 int ttl = 48;
73
74 while (ttl--) {
75 pci_bus_read_config_byte(bus, devfn, pos, &pos);
76 if (pos < 0x40)
77 break;
78 pos &= ~3;
79 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
80 &id);
81 if (id == 0xff)
82 break;
83 if (id == cap)
84 return pos;
85 pos += PCI_CAP_LIST_NEXT;
86 }
87 return 0;
88}
89
90int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
91{
92 return __pci_find_next_cap(dev->bus, dev->devfn,
93 pos + PCI_CAP_LIST_NEXT, cap);
94}
95EXPORT_SYMBOL_GPL(pci_find_next_capability);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap)
98{
99 u16 status;
Roland Dreier24a4e372005-10-28 17:35:34 -0700100 u8 pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
103 if (!(status & PCI_STATUS_CAP_LIST))
104 return 0;
105
106 switch (hdr_type) {
107 case PCI_HEADER_TYPE_NORMAL:
108 case PCI_HEADER_TYPE_BRIDGE:
Roland Dreier24a4e372005-10-28 17:35:34 -0700109 pos = PCI_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 break;
111 case PCI_HEADER_TYPE_CARDBUS:
Roland Dreier24a4e372005-10-28 17:35:34 -0700112 pos = PCI_CB_CAPABILITY_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 break;
114 default:
115 return 0;
116 }
Roland Dreier24a4e372005-10-28 17:35:34 -0700117 return __pci_find_next_cap(bus, devfn, pos, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120/**
121 * pci_find_capability - query for devices' capabilities
122 * @dev: PCI device to query
123 * @cap: capability code
124 *
125 * Tell if a device supports a given PCI capability.
126 * Returns the address of the requested capability structure within the
127 * device's PCI configuration space or 0 in case the device does not
128 * support it. Possible values for @cap:
129 *
130 * %PCI_CAP_ID_PM Power Management
131 * %PCI_CAP_ID_AGP Accelerated Graphics Port
132 * %PCI_CAP_ID_VPD Vital Product Data
133 * %PCI_CAP_ID_SLOTID Slot Identification
134 * %PCI_CAP_ID_MSI Message Signalled Interrupts
135 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
136 * %PCI_CAP_ID_PCIX PCI-X
137 * %PCI_CAP_ID_EXP PCI Express
138 */
139int pci_find_capability(struct pci_dev *dev, int cap)
140{
141 return __pci_bus_find_cap(dev->bus, dev->devfn, dev->hdr_type, cap);
142}
143
144/**
145 * pci_bus_find_capability - query for devices' capabilities
146 * @bus: the PCI bus to query
147 * @devfn: PCI device to query
148 * @cap: capability code
149 *
150 * Like pci_find_capability() but works for pci devices that do not have a
151 * pci_dev structure set up yet.
152 *
153 * Returns the address of the requested capability structure within the
154 * device's PCI configuration space or 0 in case the device does not
155 * support it.
156 */
157int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
158{
159 u8 hdr_type;
160
161 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
162
163 return __pci_bus_find_cap(bus, devfn, hdr_type & 0x7f, cap);
164}
165
Adrian Bunkf8d65712006-01-06 03:25:37 +0100166#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/**
168 * pci_find_ext_capability - Find an extended capability
169 * @dev: PCI device to query
170 * @cap: capability code
171 *
172 * Returns the address of the requested extended capability structure
173 * within the device's PCI configuration space or 0 if the device does
174 * not support it. Possible values for @cap:
175 *
176 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
177 * %PCI_EXT_CAP_ID_VC Virtual Channel
178 * %PCI_EXT_CAP_ID_DSN Device Serial Number
179 * %PCI_EXT_CAP_ID_PWR Power Budgeting
180 */
181int pci_find_ext_capability(struct pci_dev *dev, int cap)
182{
183 u32 header;
184 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
185 int pos = 0x100;
186
187 if (dev->cfg_size <= 256)
188 return 0;
189
190 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
191 return 0;
192
193 /*
194 * If we have no capabilities, this is indicated by cap ID,
195 * cap version and next pointer all being 0.
196 */
197 if (header == 0)
198 return 0;
199
200 while (ttl-- > 0) {
201 if (PCI_EXT_CAP_ID(header) == cap)
202 return pos;
203
204 pos = PCI_EXT_CAP_NEXT(header);
205 if (pos < 0x100)
206 break;
207
208 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
209 break;
210 }
211
212 return 0;
213}
Adrian Bunkf8d65712006-01-06 03:25:37 +0100214#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/**
217 * pci_find_parent_resource - return resource region of parent bus of given region
218 * @dev: PCI device structure contains resources to be searched
219 * @res: child resource record for which parent is sought
220 *
221 * For given resource region of given device, return the resource
222 * region of parent bus the given region is contained in or where
223 * it should be allocated from.
224 */
225struct resource *
226pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
227{
228 const struct pci_bus *bus = dev->bus;
229 int i;
230 struct resource *best = NULL;
231
232 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
233 struct resource *r = bus->resource[i];
234 if (!r)
235 continue;
236 if (res->start && !(res->start >= r->start && res->end <= r->end))
237 continue; /* Not contained */
238 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
239 continue; /* Wrong type */
240 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
241 return r; /* Exact match */
242 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
243 best = r; /* Approximating prefetchable by non-prefetchable */
244 }
245 return best;
246}
247
248/**
John W. Linville064b53db2005-07-27 10:19:44 -0400249 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
250 * @dev: PCI device to have its BARs restored
251 *
252 * Restore the BAR values for a given device, so as to make it
253 * accessible by its driver.
254 */
255void
256pci_restore_bars(struct pci_dev *dev)
257{
258 int i, numres;
259
260 switch (dev->hdr_type) {
261 case PCI_HEADER_TYPE_NORMAL:
262 numres = 6;
263 break;
264 case PCI_HEADER_TYPE_BRIDGE:
265 numres = 2;
266 break;
267 case PCI_HEADER_TYPE_CARDBUS:
268 numres = 1;
269 break;
270 default:
271 /* Should never get here, but just in case... */
272 return;
273 }
274
275 for (i = 0; i < numres; i ++)
276 pci_update_resource(dev, &dev->resource[i], i);
277}
278
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700279int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t);
280
John W. Linville064b53db2005-07-27 10:19:44 -0400281/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * pci_set_power_state - Set the power state of a PCI device
283 * @dev: PCI device to be suspended
284 * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering
285 *
286 * Transition a device to a new power state, using the Power Management
287 * Capabilities in the device's config space.
288 *
289 * RETURN VALUE:
290 * -EINVAL if trying to enter a lower state than we're already in.
291 * 0 if we're already in the requested state.
292 * -EIO if device does not support PCI PM.
293 * 0 if we can successfully change the power state.
294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295int
296pci_set_power_state(struct pci_dev *dev, pci_power_t state)
297{
John W. Linville064b53db2005-07-27 10:19:44 -0400298 int pm, need_restore = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 u16 pmcsr, pmc;
300
301 /* bound the state we're entering */
302 if (state > PCI_D3hot)
303 state = PCI_D3hot;
304
305 /* Validate current state:
306 * Can enter D0 from any state, but if we can only go deeper
307 * to sleep if we're already in a low power state
308 */
309 if (state != PCI_D0 && dev->current_state > state)
310 return -EINVAL;
311 else if (dev->current_state == state)
312 return 0; /* we're already there */
313
314 /* find PCI PM capability in list */
315 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
316
317 /* abort if the device doesn't support PM capabilities */
318 if (!pm)
319 return -EIO;
320
321 pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700322 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 printk(KERN_DEBUG
324 "PCI: %s has unsupported PM cap regs version (%u)\n",
325 pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
326 return -EIO;
327 }
328
329 /* check if this device supports the desired state */
Daniel Ritz3fe9d192005-08-17 15:32:19 -0700330 if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
331 return -EIO;
332 else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
333 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
John W. Linville064b53db2005-07-27 10:19:44 -0400335 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
336
John W. Linville32a36582005-09-14 09:52:42 -0400337 /* If we're (effectively) in D3, force entire word to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * This doesn't affect PME_Status, disables PME_En, and
339 * sets PowerState to 0.
340 */
John W. Linville32a36582005-09-14 09:52:42 -0400341 switch (dev->current_state) {
John W. Linvilled3535fb2005-09-28 17:50:51 -0400342 case PCI_D0:
343 case PCI_D1:
344 case PCI_D2:
345 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
346 pmcsr |= state;
347 break;
John W. Linville32a36582005-09-14 09:52:42 -0400348 case PCI_UNKNOWN: /* Boot-up */
349 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
350 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
John W. Linville064b53db2005-07-27 10:19:44 -0400351 need_restore = 1;
John W. Linville32a36582005-09-14 09:52:42 -0400352 /* Fall-through: force to D0 */
John W. Linville32a36582005-09-14 09:52:42 -0400353 default:
John W. Linvilled3535fb2005-09-28 17:50:51 -0400354 pmcsr = 0;
John W. Linville32a36582005-09-14 09:52:42 -0400355 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357
358 /* enter specified state */
359 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
360
361 /* Mandatory power management transition delays */
362 /* see PCI PM 1.1 5.6.1 table 18 */
363 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
364 msleep(10);
365 else if (state == PCI_D2 || dev->current_state == PCI_D2)
366 udelay(200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
David Shaohua Lib9131002005-03-19 00:16:18 -0500368 /*
369 * Give firmware a chance to be called, such as ACPI _PRx, _PSx
370 * Firmware method after natice method ?
371 */
372 if (platform_pci_set_power_state)
373 platform_pci_set_power_state(dev, state);
374
375 dev->current_state = state;
John W. Linville064b53db2005-07-27 10:19:44 -0400376
377 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
378 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
379 * from D3hot to D0 _may_ perform an internal reset, thereby
380 * going to "D0 Uninitialized" rather than "D0 Initialized".
381 * For example, at least some versions of the 3c905B and the
382 * 3c556B exhibit this behaviour.
383 *
384 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
385 * devices in a D3hot state at boot. Consequently, we need to
386 * restore at least the BARs so that the device will be
387 * accessible to its driver.
388 */
389 if (need_restore)
390 pci_restore_bars(dev);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return 0;
393}
394
Greg Kroah-Hartmanf165b102005-03-30 21:23:19 -0500395int (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state);
David Shaohua Li0f644742005-03-19 00:15:48 -0500396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
398 * pci_choose_state - Choose the power state of a PCI device
399 * @dev: PCI device to be suspended
400 * @state: target sleep state for the whole system. This is the value
401 * that is passed to suspend() function.
402 *
403 * Returns PCI power state suitable for given device and given system
404 * message.
405 */
406
407pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
408{
David Shaohua Li0f644742005-03-19 00:15:48 -0500409 int ret;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
412 return PCI_D0;
413
David Shaohua Li0f644742005-03-19 00:15:48 -0500414 if (platform_pci_choose_state) {
415 ret = platform_pci_choose_state(dev, state);
416 if (ret >= 0)
Pavel Machekca078ba2005-09-03 15:56:57 -0700417 state.event = ret;
David Shaohua Li0f644742005-03-19 00:15:48 -0500418 }
Pavel Machekca078ba2005-09-03 15:56:57 -0700419
420 switch (state.event) {
421 case PM_EVENT_ON:
422 return PCI_D0;
423 case PM_EVENT_FREEZE:
424 case PM_EVENT_SUSPEND:
425 return PCI_D3hot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 default:
Pavel Machekca078ba2005-09-03 15:56:57 -0700427 printk("They asked me for state %d\n", state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 BUG();
429 }
430 return PCI_D0;
431}
432
433EXPORT_SYMBOL(pci_choose_state);
434
435/**
436 * pci_save_state - save the PCI configuration space of a device before suspending
437 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
439int
440pci_save_state(struct pci_dev *dev)
441{
442 int i;
443 /* XXX: 100% dword access ok here? */
444 for (i = 0; i < 16; i++)
445 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
446 return 0;
447}
448
449/**
450 * pci_restore_state - Restore the saved state of a PCI device
451 * @dev: - PCI device that we're dealing with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
453int
454pci_restore_state(struct pci_dev *dev)
455{
456 int i;
457
458 for (i = 0; i < 16; i++)
459 pci_write_config_dword(dev,i * 4, dev->saved_config_space[i]);
460 return 0;
461}
462
463/**
464 * pci_enable_device_bars - Initialize some of a device for use
465 * @dev: PCI device to be initialized
466 * @bars: bitmask of BAR's that must be configured
467 *
468 * Initialize device before it's used by a driver. Ask low-level code
469 * to enable selected I/O and memory resources. Wake up the device if it
470 * was suspended. Beware, this function can fail.
471 */
472
473int
474pci_enable_device_bars(struct pci_dev *dev, int bars)
475{
476 int err;
477
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700478 err = pci_set_power_state(dev, PCI_D0);
Alan Stern11f38592005-08-10 15:18:44 -0400479 if (err < 0 && err != -EIO)
Greg Kroah-Hartman95a62962005-07-28 11:37:33 -0700480 return err;
481 err = pcibios_enable_device(dev, bars);
482 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return err;
484 return 0;
485}
486
487/**
488 * pci_enable_device - Initialize device before it's used by a driver.
489 * @dev: PCI device to be initialized
490 *
491 * Initialize device before it's used by a driver. Ask low-level code
492 * to enable I/O and memory. Wake up the device if it was suspended.
493 * Beware, this function can fail.
494 */
495int
496pci_enable_device(struct pci_dev *dev)
497{
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700498 int err = pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
499 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return err;
501 pci_fixup_device(pci_fixup_enable, dev);
Kenji Kaneshigeceb43742005-04-08 14:53:31 +0900502 dev->is_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return 0;
504}
505
506/**
507 * pcibios_disable_device - disable arch specific PCI resources for device dev
508 * @dev: the PCI device to disable
509 *
510 * Disables architecture specific PCI resources for the device. This
511 * is the default implementation. Architecture implementations can
512 * override this.
513 */
514void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
515
516/**
517 * pci_disable_device - Disable PCI device after use
518 * @dev: PCI device to be disabled
519 *
520 * Signal to the system that the PCI device is not in use by the system
521 * anymore. This only involves disabling PCI bus-mastering, if active.
522 */
523void
524pci_disable_device(struct pci_dev *dev)
525{
526 u16 pci_command;
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
529 if (pci_command & PCI_COMMAND_MASTER) {
530 pci_command &= ~PCI_COMMAND_MASTER;
531 pci_write_config_word(dev, PCI_COMMAND, pci_command);
532 }
Kenji Kaneshigeceb43742005-04-08 14:53:31 +0900533 dev->is_busmaster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 pcibios_disable_device(dev);
Kenji Kaneshigeceb43742005-04-08 14:53:31 +0900536 dev->is_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/**
540 * pci_enable_wake - enable device to generate PME# when suspended
541 * @dev: - PCI device to operate on
542 * @state: - Current state of device.
543 * @enable: - Flag to enable or disable generation
544 *
545 * Set the bits in the device's PM Capabilities to generate PME# when
546 * the system is suspended.
547 *
548 * -EIO is returned if device doesn't have PM Capabilities.
549 * -EINVAL is returned if device supports it, but can't generate wake events.
550 * 0 if operation is successful.
551 *
552 */
553int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
554{
555 int pm;
556 u16 value;
557
558 /* find PCI PM capability in list */
559 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
560
561 /* If device doesn't support PM Capabilities, but request is to disable
562 * wake events, it's a nop; otherwise fail */
563 if (!pm)
564 return enable ? -EIO : 0;
565
566 /* Check device's ability to generate PME# */
567 pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
568
569 value &= PCI_PM_CAP_PME_MASK;
570 value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
571
572 /* Check if it can generate PME# from requested state. */
573 if (!value || !(value & (1 << state)))
574 return enable ? -EINVAL : 0;
575
576 pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
577
578 /* Clear PME_Status by writing 1 to it and enable PME# */
579 value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
580
581 if (!enable)
582 value &= ~PCI_PM_CTRL_PME_ENABLE;
583
584 pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
585
586 return 0;
587}
588
589int
590pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
591{
592 u8 pin;
593
Kristen Accardi514d2072005-11-02 16:24:39 -0800594 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (!pin)
596 return -1;
597 pin--;
598 while (dev->bus->self) {
599 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
600 dev = dev->bus->self;
601 }
602 *bridge = dev;
603 return pin;
604}
605
606/**
607 * pci_release_region - Release a PCI bar
608 * @pdev: PCI device whose resources were previously reserved by pci_request_region
609 * @bar: BAR to release
610 *
611 * Releases the PCI I/O and memory resources previously reserved by a
612 * successful call to pci_request_region. Call this function only
613 * after all use of the PCI regions has ceased.
614 */
615void pci_release_region(struct pci_dev *pdev, int bar)
616{
617 if (pci_resource_len(pdev, bar) == 0)
618 return;
619 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
620 release_region(pci_resource_start(pdev, bar),
621 pci_resource_len(pdev, bar));
622 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
623 release_mem_region(pci_resource_start(pdev, bar),
624 pci_resource_len(pdev, bar));
625}
626
627/**
628 * pci_request_region - Reserved PCI I/O and memory resource
629 * @pdev: PCI device whose resources are to be reserved
630 * @bar: BAR to be reserved
631 * @res_name: Name to be associated with resource.
632 *
633 * Mark the PCI region associated with PCI device @pdev BR @bar as
634 * being reserved by owner @res_name. Do not access any
635 * address inside the PCI regions unless this call returns
636 * successfully.
637 *
638 * Returns 0 on success, or %EBUSY on error. A warning
639 * message is also printed on failure.
640 */
641int pci_request_region(struct pci_dev *pdev, int bar, char *res_name)
642{
643 if (pci_resource_len(pdev, bar) == 0)
644 return 0;
645
646 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
647 if (!request_region(pci_resource_start(pdev, bar),
648 pci_resource_len(pdev, bar), res_name))
649 goto err_out;
650 }
651 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
652 if (!request_mem_region(pci_resource_start(pdev, bar),
653 pci_resource_len(pdev, bar), res_name))
654 goto err_out;
655 }
656
657 return 0;
658
659err_out:
660 printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%lx@%lx for device %s\n",
661 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
662 bar + 1, /* PCI BAR # */
663 pci_resource_len(pdev, bar), pci_resource_start(pdev, bar),
664 pci_name(pdev));
665 return -EBUSY;
666}
667
668
669/**
670 * pci_release_regions - Release reserved PCI I/O and memory resources
671 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
672 *
673 * Releases all PCI I/O and memory resources previously reserved by a
674 * successful call to pci_request_regions. Call this function only
675 * after all use of the PCI regions has ceased.
676 */
677
678void pci_release_regions(struct pci_dev *pdev)
679{
680 int i;
681
682 for (i = 0; i < 6; i++)
683 pci_release_region(pdev, i);
684}
685
686/**
687 * pci_request_regions - Reserved PCI I/O and memory resources
688 * @pdev: PCI device whose resources are to be reserved
689 * @res_name: Name to be associated with resource.
690 *
691 * Mark all PCI regions associated with PCI device @pdev as
692 * being reserved by owner @res_name. Do not access any
693 * address inside the PCI regions unless this call returns
694 * successfully.
695 *
696 * Returns 0 on success, or %EBUSY on error. A warning
697 * message is also printed on failure.
698 */
699int pci_request_regions(struct pci_dev *pdev, char *res_name)
700{
701 int i;
702
703 for (i = 0; i < 6; i++)
704 if(pci_request_region(pdev, i, res_name))
705 goto err_out;
706 return 0;
707
708err_out:
709 while(--i >= 0)
710 pci_release_region(pdev, i);
711
712 return -EBUSY;
713}
714
715/**
716 * pci_set_master - enables bus-mastering for device dev
717 * @dev: the PCI device to enable
718 *
719 * Enables bus-mastering on the device and calls pcibios_set_master()
720 * to do the needed arch specific settings.
721 */
722void
723pci_set_master(struct pci_dev *dev)
724{
725 u16 cmd;
726
727 pci_read_config_word(dev, PCI_COMMAND, &cmd);
728 if (! (cmd & PCI_COMMAND_MASTER)) {
729 pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
730 cmd |= PCI_COMMAND_MASTER;
731 pci_write_config_word(dev, PCI_COMMAND, cmd);
732 }
733 dev->is_busmaster = 1;
734 pcibios_set_master(dev);
735}
736
737#ifndef HAVE_ARCH_PCI_MWI
738/* This can be overridden by arch code. */
739u8 pci_cache_line_size = L1_CACHE_BYTES >> 2;
740
741/**
742 * pci_generic_prep_mwi - helper function for pci_set_mwi
743 * @dev: the PCI device for which MWI is enabled
744 *
745 * Helper function for generic implementation of pcibios_prep_mwi
746 * function. Originally copied from drivers/net/acenic.c.
747 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
748 *
749 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
750 */
751static int
752pci_generic_prep_mwi(struct pci_dev *dev)
753{
754 u8 cacheline_size;
755
756 if (!pci_cache_line_size)
757 return -EINVAL; /* The system doesn't support MWI. */
758
759 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
760 equal to or multiple of the right value. */
761 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
762 if (cacheline_size >= pci_cache_line_size &&
763 (cacheline_size % pci_cache_line_size) == 0)
764 return 0;
765
766 /* Write the correct value. */
767 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
768 /* Read it back. */
769 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
770 if (cacheline_size == pci_cache_line_size)
771 return 0;
772
773 printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
774 "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
775
776 return -EINVAL;
777}
778#endif /* !HAVE_ARCH_PCI_MWI */
779
780/**
781 * pci_set_mwi - enables memory-write-invalidate PCI transaction
782 * @dev: the PCI device for which MWI is enabled
783 *
784 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
785 * and then calls @pcibios_set_mwi to do the needed arch specific
786 * operations or a generic mwi-prep function.
787 *
788 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
789 */
790int
791pci_set_mwi(struct pci_dev *dev)
792{
793 int rc;
794 u16 cmd;
795
796#ifdef HAVE_ARCH_PCI_MWI
797 rc = pcibios_prep_mwi(dev);
798#else
799 rc = pci_generic_prep_mwi(dev);
800#endif
801
802 if (rc)
803 return rc;
804
805 pci_read_config_word(dev, PCI_COMMAND, &cmd);
806 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
807 pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
808 cmd |= PCI_COMMAND_INVALIDATE;
809 pci_write_config_word(dev, PCI_COMMAND, cmd);
810 }
811
812 return 0;
813}
814
815/**
816 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
817 * @dev: the PCI device to disable
818 *
819 * Disables PCI Memory-Write-Invalidate transaction on the device
820 */
821void
822pci_clear_mwi(struct pci_dev *dev)
823{
824 u16 cmd;
825
826 pci_read_config_word(dev, PCI_COMMAND, &cmd);
827 if (cmd & PCI_COMMAND_INVALIDATE) {
828 cmd &= ~PCI_COMMAND_INVALIDATE;
829 pci_write_config_word(dev, PCI_COMMAND, cmd);
830 }
831}
832
Brett M Russa04ce0f2005-08-15 15:23:41 -0400833/**
834 * pci_intx - enables/disables PCI INTx for device dev
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700835 * @pdev: the PCI device to operate on
836 * @enable: boolean: whether to enable or disable PCI INTx
Brett M Russa04ce0f2005-08-15 15:23:41 -0400837 *
838 * Enables/disables PCI INTx for device dev
839 */
840void
841pci_intx(struct pci_dev *pdev, int enable)
842{
843 u16 pci_command, new;
844
845 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
846
847 if (enable) {
848 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
849 } else {
850 new = pci_command | PCI_COMMAND_INTX_DISABLE;
851 }
852
853 if (new != pci_command) {
Brett M Russ2fd9d742005-09-09 10:02:22 -0700854 pci_write_config_word(pdev, PCI_COMMAND, new);
Brett M Russa04ce0f2005-08-15 15:23:41 -0400855 }
856}
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
859/*
860 * These can be overridden by arch-specific implementations
861 */
862int
863pci_set_dma_mask(struct pci_dev *dev, u64 mask)
864{
865 if (!pci_dma_supported(dev, mask))
866 return -EIO;
867
868 dev->dma_mask = mask;
869
870 return 0;
871}
872
873int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
875{
876 if (!pci_dma_supported(dev, mask))
877 return -EIO;
878
879 dev->dev.coherent_dma_mask = mask;
880
881 return 0;
882}
883#endif
884
885static int __devinit pci_init(void)
886{
887 struct pci_dev *dev = NULL;
888
889 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
890 pci_fixup_device(pci_fixup_final, dev);
891 }
892 return 0;
893}
894
895static int __devinit pci_setup(char *str)
896{
897 while (str) {
898 char *k = strchr(str, ',');
899 if (k)
900 *k++ = 0;
901 if (*str && (str = pcibios_setup(str)) && *str) {
902 /* PCI layer options should be handled here */
903 printk(KERN_ERR "PCI: Unknown option `%s'\n", str);
904 }
905 str = k;
906 }
907 return 1;
908}
909
910device_initcall(pci_init);
911
912__setup("pci=", pci_setup);
913
914#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
915/* FIXME: Some boxes have multiple ISA bridges! */
916struct pci_dev *isa_bridge;
917EXPORT_SYMBOL(isa_bridge);
918#endif
919
John W. Linville064b53db2005-07-27 10:19:44 -0400920EXPORT_SYMBOL_GPL(pci_restore_bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921EXPORT_SYMBOL(pci_enable_device_bars);
922EXPORT_SYMBOL(pci_enable_device);
923EXPORT_SYMBOL(pci_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924EXPORT_SYMBOL(pci_find_capability);
925EXPORT_SYMBOL(pci_bus_find_capability);
926EXPORT_SYMBOL(pci_release_regions);
927EXPORT_SYMBOL(pci_request_regions);
928EXPORT_SYMBOL(pci_release_region);
929EXPORT_SYMBOL(pci_request_region);
930EXPORT_SYMBOL(pci_set_master);
931EXPORT_SYMBOL(pci_set_mwi);
932EXPORT_SYMBOL(pci_clear_mwi);
Brett M Russa04ce0f2005-08-15 15:23:41 -0400933EXPORT_SYMBOL_GPL(pci_intx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934EXPORT_SYMBOL(pci_set_dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935EXPORT_SYMBOL(pci_set_consistent_dma_mask);
936EXPORT_SYMBOL(pci_assign_resource);
937EXPORT_SYMBOL(pci_find_parent_resource);
938
939EXPORT_SYMBOL(pci_set_power_state);
940EXPORT_SYMBOL(pci_save_state);
941EXPORT_SYMBOL(pci_restore_state);
942EXPORT_SYMBOL(pci_enable_wake);
943
944/* Quirk info */
945
946EXPORT_SYMBOL(isa_dma_bridge_buggy);
947EXPORT_SYMBOL(pci_pci_problems);