]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/pci/pci.c
PCI: arch/i386/kernel/pci-dma.c: ioremap balanced with iounmap
[mirror_ubuntu-bionic-kernel.git] / drivers / pci / pci.c
CommitLineData
1da177e4
LT
1/*
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>
4e57b681 18#include <linux/string.h>
1da177e4 19#include <asm/dma.h> /* isa_dma_bridge_buggy */
bc56b9e0 20#include "pci.h"
1da177e4 21
ffadcc2f 22unsigned int pci_pm_d3_delay = 10;
1da177e4
LT
23
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
b82db5ce 37 max = bus->subordinate;
1da177e4
LT
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}
b82db5ce 45EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
1da177e4 46
b82db5ce 47#if 0
1da177e4
LT
48/**
49 * pci_max_busnr - returns maximum PCI bus number
50 *
51 * Returns the highest PCI bus number present in the system global list of
52 * PCI buses.
53 */
54unsigned char __devinit
55pci_max_busnr(void)
56{
57 struct pci_bus *bus = NULL;
58 unsigned char max, n;
59
60 max = 0;
61 while ((bus = pci_find_next_bus(bus)) != NULL) {
62 n = pci_bus_max_busnr(bus);
63 if(n > max)
64 max = n;
65 }
66 return max;
67}
68
54c762fe
AB
69#endif /* 0 */
70
24a4e377
RD
71static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap)
72{
73 u8 id;
74 int ttl = 48;
75
76 while (ttl--) {
77 pci_bus_read_config_byte(bus, devfn, pos, &pos);
78 if (pos < 0x40)
79 break;
80 pos &= ~3;
81 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
82 &id);
83 if (id == 0xff)
84 break;
85 if (id == cap)
86 return pos;
87 pos += PCI_CAP_LIST_NEXT;
88 }
89 return 0;
90}
91
92int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
93{
94 return __pci_find_next_cap(dev->bus, dev->devfn,
95 pos + PCI_CAP_LIST_NEXT, cap);
96}
97EXPORT_SYMBOL_GPL(pci_find_next_capability);
98
1da177e4
LT
99static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap)
100{
101 u16 status;
24a4e377 102 u8 pos;
1da177e4
LT
103
104 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
105 if (!(status & PCI_STATUS_CAP_LIST))
106 return 0;
107
108 switch (hdr_type) {
109 case PCI_HEADER_TYPE_NORMAL:
110 case PCI_HEADER_TYPE_BRIDGE:
24a4e377 111 pos = PCI_CAPABILITY_LIST;
1da177e4
LT
112 break;
113 case PCI_HEADER_TYPE_CARDBUS:
24a4e377 114 pos = PCI_CB_CAPABILITY_LIST;
1da177e4
LT
115 break;
116 default:
117 return 0;
118 }
24a4e377 119 return __pci_find_next_cap(bus, devfn, pos, cap);
1da177e4
LT
120}
121
122/**
123 * pci_find_capability - query for devices' capabilities
124 * @dev: PCI device to query
125 * @cap: capability code
126 *
127 * Tell if a device supports a given PCI capability.
128 * Returns the address of the requested capability structure within the
129 * device's PCI configuration space or 0 in case the device does not
130 * support it. Possible values for @cap:
131 *
132 * %PCI_CAP_ID_PM Power Management
133 * %PCI_CAP_ID_AGP Accelerated Graphics Port
134 * %PCI_CAP_ID_VPD Vital Product Data
135 * %PCI_CAP_ID_SLOTID Slot Identification
136 * %PCI_CAP_ID_MSI Message Signalled Interrupts
137 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
138 * %PCI_CAP_ID_PCIX PCI-X
139 * %PCI_CAP_ID_EXP PCI Express
140 */
141int pci_find_capability(struct pci_dev *dev, int cap)
142{
143 return __pci_bus_find_cap(dev->bus, dev->devfn, dev->hdr_type, cap);
144}
145
146/**
147 * pci_bus_find_capability - query for devices' capabilities
148 * @bus: the PCI bus to query
149 * @devfn: PCI device to query
150 * @cap: capability code
151 *
152 * Like pci_find_capability() but works for pci devices that do not have a
153 * pci_dev structure set up yet.
154 *
155 * Returns the address of the requested capability structure within the
156 * device's PCI configuration space or 0 in case the device does not
157 * support it.
158 */
159int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
160{
161 u8 hdr_type;
162
163 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
164
165 return __pci_bus_find_cap(bus, devfn, hdr_type & 0x7f, cap);
166}
167
168/**
169 * pci_find_ext_capability - Find an extended capability
170 * @dev: PCI device to query
171 * @cap: capability code
172 *
173 * Returns the address of the requested extended capability structure
174 * within the device's PCI configuration space or 0 if the device does
175 * not support it. Possible values for @cap:
176 *
177 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
178 * %PCI_EXT_CAP_ID_VC Virtual Channel
179 * %PCI_EXT_CAP_ID_DSN Device Serial Number
180 * %PCI_EXT_CAP_ID_PWR Power Budgeting
181 */
182int pci_find_ext_capability(struct pci_dev *dev, int cap)
183{
184 u32 header;
185 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
186 int pos = 0x100;
187
188 if (dev->cfg_size <= 256)
189 return 0;
190
191 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
192 return 0;
193
194 /*
195 * If we have no capabilities, this is indicated by cap ID,
196 * cap version and next pointer all being 0.
197 */
198 if (header == 0)
199 return 0;
200
201 while (ttl-- > 0) {
202 if (PCI_EXT_CAP_ID(header) == cap)
203 return pos;
204
205 pos = PCI_EXT_CAP_NEXT(header);
206 if (pos < 0x100)
207 break;
208
209 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
210 break;
211 }
212
213 return 0;
214}
3a720d72 215EXPORT_SYMBOL_GPL(pci_find_ext_capability);
1da177e4
LT
216
217/**
218 * pci_find_parent_resource - return resource region of parent bus of given region
219 * @dev: PCI device structure contains resources to be searched
220 * @res: child resource record for which parent is sought
221 *
222 * For given resource region of given device, return the resource
223 * region of parent bus the given region is contained in or where
224 * it should be allocated from.
225 */
226struct resource *
227pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
228{
229 const struct pci_bus *bus = dev->bus;
230 int i;
231 struct resource *best = NULL;
232
233 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
234 struct resource *r = bus->resource[i];
235 if (!r)
236 continue;
237 if (res->start && !(res->start >= r->start && res->end <= r->end))
238 continue; /* Not contained */
239 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
240 continue; /* Wrong type */
241 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
242 return r; /* Exact match */
243 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
244 best = r; /* Approximating prefetchable by non-prefetchable */
245 }
246 return best;
247}
248
064b53db
JL
249/**
250 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
251 * @dev: PCI device to have its BARs restored
252 *
253 * Restore the BAR values for a given device, so as to make it
254 * accessible by its driver.
255 */
256void
257pci_restore_bars(struct pci_dev *dev)
258{
259 int i, numres;
260
261 switch (dev->hdr_type) {
262 case PCI_HEADER_TYPE_NORMAL:
263 numres = 6;
264 break;
265 case PCI_HEADER_TYPE_BRIDGE:
266 numres = 2;
267 break;
268 case PCI_HEADER_TYPE_CARDBUS:
269 numres = 1;
270 break;
271 default:
272 /* Should never get here, but just in case... */
273 return;
274 }
275
276 for (i = 0; i < numres; i ++)
277 pci_update_resource(dev, &dev->resource[i], i);
278}
279
8f7020d3
RD
280int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t);
281
1da177e4
LT
282/**
283 * pci_set_power_state - Set the power state of a PCI device
284 * @dev: PCI device to be suspended
285 * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering
286 *
287 * Transition a device to a new power state, using the Power Management
288 * Capabilities in the device's config space.
289 *
290 * RETURN VALUE:
291 * -EINVAL if trying to enter a lower state than we're already in.
292 * 0 if we're already in the requested state.
293 * -EIO if device does not support PCI PM.
294 * 0 if we can successfully change the power state.
295 */
1da177e4
LT
296int
297pci_set_power_state(struct pci_dev *dev, pci_power_t state)
298{
064b53db 299 int pm, need_restore = 0;
1da177e4
LT
300 u16 pmcsr, pmc;
301
302 /* bound the state we're entering */
303 if (state > PCI_D3hot)
304 state = PCI_D3hot;
305
306 /* Validate current state:
307 * Can enter D0 from any state, but if we can only go deeper
308 * to sleep if we're already in a low power state
309 */
02669492
AM
310 if (state != PCI_D0 && dev->current_state > state) {
311 printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n",
312 __FUNCTION__, pci_name(dev), state, dev->current_state);
1da177e4 313 return -EINVAL;
02669492 314 } else if (dev->current_state == state)
1da177e4
LT
315 return 0; /* we're already there */
316
ffadcc2f
KCA
317 /*
318 * If the device or the parent bridge can't support PCI PM, ignore
319 * the request if we're doing anything besides putting it into D0
320 * (which would only happen on boot).
321 */
322 if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
323 return 0;
324
1da177e4
LT
325 /* find PCI PM capability in list */
326 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
327
328 /* abort if the device doesn't support PM capabilities */
329 if (!pm)
330 return -EIO;
331
332 pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
3fe9d19f 333 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
1da177e4
LT
334 printk(KERN_DEBUG
335 "PCI: %s has unsupported PM cap regs version (%u)\n",
336 pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
337 return -EIO;
338 }
339
340 /* check if this device supports the desired state */
3fe9d19f
DR
341 if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
342 return -EIO;
343 else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
344 return -EIO;
1da177e4 345
064b53db
JL
346 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
347
32a36585 348 /* If we're (effectively) in D3, force entire word to 0.
1da177e4
LT
349 * This doesn't affect PME_Status, disables PME_En, and
350 * sets PowerState to 0.
351 */
32a36585 352 switch (dev->current_state) {
d3535fbb
JL
353 case PCI_D0:
354 case PCI_D1:
355 case PCI_D2:
356 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
357 pmcsr |= state;
358 break;
32a36585
JL
359 case PCI_UNKNOWN: /* Boot-up */
360 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
361 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
064b53db 362 need_restore = 1;
32a36585 363 /* Fall-through: force to D0 */
32a36585 364 default:
d3535fbb 365 pmcsr = 0;
32a36585 366 break;
1da177e4
LT
367 }
368
369 /* enter specified state */
370 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
371
372 /* Mandatory power management transition delays */
373 /* see PCI PM 1.1 5.6.1 table 18 */
374 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
ffadcc2f 375 msleep(pci_pm_d3_delay);
1da177e4
LT
376 else if (state == PCI_D2 || dev->current_state == PCI_D2)
377 udelay(200);
1da177e4 378
b913100d
DSL
379 /*
380 * Give firmware a chance to be called, such as ACPI _PRx, _PSx
d6e05edc 381 * Firmware method after native method ?
b913100d
DSL
382 */
383 if (platform_pci_set_power_state)
384 platform_pci_set_power_state(dev, state);
385
386 dev->current_state = state;
064b53db
JL
387
388 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
389 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
390 * from D3hot to D0 _may_ perform an internal reset, thereby
391 * going to "D0 Uninitialized" rather than "D0 Initialized".
392 * For example, at least some versions of the 3c905B and the
393 * 3c556B exhibit this behaviour.
394 *
395 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
396 * devices in a D3hot state at boot. Consequently, we need to
397 * restore at least the BARs so that the device will be
398 * accessible to its driver.
399 */
400 if (need_restore)
401 pci_restore_bars(dev);
402
1da177e4
LT
403 return 0;
404}
405
f165b10f 406int (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state);
0f64474b 407
1da177e4
LT
408/**
409 * pci_choose_state - Choose the power state of a PCI device
410 * @dev: PCI device to be suspended
411 * @state: target sleep state for the whole system. This is the value
412 * that is passed to suspend() function.
413 *
414 * Returns PCI power state suitable for given device and given system
415 * message.
416 */
417
418pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
419{
0f64474b
DSL
420 int ret;
421
1da177e4
LT
422 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
423 return PCI_D0;
424
0f64474b
DSL
425 if (platform_pci_choose_state) {
426 ret = platform_pci_choose_state(dev, state);
427 if (ret >= 0)
ca078bae 428 state.event = ret;
0f64474b 429 }
ca078bae
PM
430
431 switch (state.event) {
432 case PM_EVENT_ON:
433 return PCI_D0;
434 case PM_EVENT_FREEZE:
b887d2e6
DB
435 case PM_EVENT_PRETHAW:
436 /* REVISIT both freeze and pre-thaw "should" use D0 */
ca078bae
PM
437 case PM_EVENT_SUSPEND:
438 return PCI_D3hot;
1da177e4 439 default:
b887d2e6 440 printk("Unrecognized suspend event %d\n", state.event);
1da177e4
LT
441 BUG();
442 }
443 return PCI_D0;
444}
445
446EXPORT_SYMBOL(pci_choose_state);
447
b56a5a23
MT
448static int pci_save_pcie_state(struct pci_dev *dev)
449{
450 int pos, i = 0;
451 struct pci_cap_saved_state *save_state;
452 u16 *cap;
453
454 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
455 if (pos <= 0)
456 return 0;
457
458 save_state = kzalloc(sizeof(*save_state) + sizeof(u16) * 4, GFP_KERNEL);
459 if (!save_state) {
460 dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
461 return -ENOMEM;
462 }
463 cap = (u16 *)&save_state->data[0];
464
465 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]);
466 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]);
467 pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]);
468 pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]);
469 pci_add_saved_cap(dev, save_state);
470 return 0;
471}
472
473static void pci_restore_pcie_state(struct pci_dev *dev)
474{
475 int i = 0, pos;
476 struct pci_cap_saved_state *save_state;
477 u16 *cap;
478
479 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
480 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
481 if (!save_state || pos <= 0)
482 return;
483 cap = (u16 *)&save_state->data[0];
484
485 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]);
486 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]);
487 pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]);
488 pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]);
489 pci_remove_saved_cap(save_state);
490 kfree(save_state);
491}
492
cc692a5f
SH
493
494static int pci_save_pcix_state(struct pci_dev *dev)
495{
496 int pos, i = 0;
497 struct pci_cap_saved_state *save_state;
498 u16 *cap;
499
500 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
501 if (pos <= 0)
502 return 0;
503
504 save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
505 if (!save_state) {
506 dev_err(&dev->dev, "Out of memory in pci_save_pcie_state\n");
507 return -ENOMEM;
508 }
509 cap = (u16 *)&save_state->data[0];
510
511 pci_read_config_word(dev, pos + PCI_X_CMD, &cap[i++]);
512 pci_add_saved_cap(dev, save_state);
513 return 0;
514}
515
516static void pci_restore_pcix_state(struct pci_dev *dev)
517{
518 int i = 0, pos;
519 struct pci_cap_saved_state *save_state;
520 u16 *cap;
521
522 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
523 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
524 if (!save_state || pos <= 0)
525 return;
526 cap = (u16 *)&save_state->data[0];
527
528 pci_write_config_word(dev, pos + PCI_X_CMD, cap[i++]);
529 pci_remove_saved_cap(save_state);
530 kfree(save_state);
531}
532
533
1da177e4
LT
534/**
535 * pci_save_state - save the PCI configuration space of a device before suspending
536 * @dev: - PCI device that we're dealing with
1da177e4
LT
537 */
538int
539pci_save_state(struct pci_dev *dev)
540{
541 int i;
542 /* XXX: 100% dword access ok here? */
543 for (i = 0; i < 16; i++)
544 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
41017f0c
SL
545 if ((i = pci_save_msi_state(dev)) != 0)
546 return i;
547 if ((i = pci_save_msix_state(dev)) != 0)
548 return i;
b56a5a23
MT
549 if ((i = pci_save_pcie_state(dev)) != 0)
550 return i;
cc692a5f
SH
551 if ((i = pci_save_pcix_state(dev)) != 0)
552 return i;
1da177e4
LT
553 return 0;
554}
555
556/**
557 * pci_restore_state - Restore the saved state of a PCI device
558 * @dev: - PCI device that we're dealing with
1da177e4
LT
559 */
560int
561pci_restore_state(struct pci_dev *dev)
562{
563 int i;
04d9c1a1 564 int val;
1da177e4 565
b56a5a23
MT
566 /* PCI Express register must be restored first */
567 pci_restore_pcie_state(dev);
568
8b8c8d28
YL
569 /*
570 * The Base Address register should be programmed before the command
571 * register(s)
572 */
573 for (i = 15; i >= 0; i--) {
04d9c1a1
DJ
574 pci_read_config_dword(dev, i * 4, &val);
575 if (val != dev->saved_config_space[i]) {
576 printk(KERN_DEBUG "PM: Writing back config space on "
577 "device %s at offset %x (was %x, writing %x)\n",
578 pci_name(dev), i,
579 val, (int)dev->saved_config_space[i]);
580 pci_write_config_dword(dev,i * 4,
581 dev->saved_config_space[i]);
582 }
583 }
cc692a5f 584 pci_restore_pcix_state(dev);
41017f0c
SL
585 pci_restore_msi_state(dev);
586 pci_restore_msix_state(dev);
1da177e4
LT
587 return 0;
588}
589
590/**
591 * pci_enable_device_bars - Initialize some of a device for use
592 * @dev: PCI device to be initialized
593 * @bars: bitmask of BAR's that must be configured
594 *
595 * Initialize device before it's used by a driver. Ask low-level code
596 * to enable selected I/O and memory resources. Wake up the device if it
597 * was suspended. Beware, this function can fail.
598 */
599
600int
601pci_enable_device_bars(struct pci_dev *dev, int bars)
602{
603 int err;
604
95a62965 605 err = pci_set_power_state(dev, PCI_D0);
11f3859b 606 if (err < 0 && err != -EIO)
95a62965
GKH
607 return err;
608 err = pcibios_enable_device(dev, bars);
609 if (err < 0)
1da177e4
LT
610 return err;
611 return 0;
612}
613
614/**
615 * pci_enable_device - Initialize device before it's used by a driver.
616 * @dev: PCI device to be initialized
617 *
618 * Initialize device before it's used by a driver. Ask low-level code
619 * to enable I/O and memory. Wake up the device if it was suspended.
620 * Beware, this function can fail.
621 */
622int
623pci_enable_device(struct pci_dev *dev)
624{
a1e022b3
KA
625 int err;
626
627 if (dev->is_enabled)
628 return 0;
629
630 err = pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
b64c05e7 631 if (err)
1da177e4
LT
632 return err;
633 pci_fixup_device(pci_fixup_enable, dev);
ceb43744 634 dev->is_enabled = 1;
1da177e4
LT
635 return 0;
636}
637
638/**
639 * pcibios_disable_device - disable arch specific PCI resources for device dev
640 * @dev: the PCI device to disable
641 *
642 * Disables architecture specific PCI resources for the device. This
643 * is the default implementation. Architecture implementations can
644 * override this.
645 */
646void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
647
648/**
649 * pci_disable_device - Disable PCI device after use
650 * @dev: PCI device to be disabled
651 *
652 * Signal to the system that the PCI device is not in use by the system
653 * anymore. This only involves disabling PCI bus-mastering, if active.
654 */
655void
656pci_disable_device(struct pci_dev *dev)
657{
658 u16 pci_command;
99dc804d
SL
659
660 if (dev->msi_enabled)
661 disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI),
662 PCI_CAP_ID_MSI);
663 if (dev->msix_enabled)
664 disable_msi_mode(dev, pci_find_capability(dev, PCI_CAP_ID_MSI),
665 PCI_CAP_ID_MSIX);
666
1da177e4
LT
667 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
668 if (pci_command & PCI_COMMAND_MASTER) {
669 pci_command &= ~PCI_COMMAND_MASTER;
670 pci_write_config_word(dev, PCI_COMMAND, pci_command);
671 }
ceb43744 672 dev->is_busmaster = 0;
1da177e4
LT
673
674 pcibios_disable_device(dev);
ceb43744 675 dev->is_enabled = 0;
1da177e4
LT
676}
677
678/**
679 * pci_enable_wake - enable device to generate PME# when suspended
680 * @dev: - PCI device to operate on
681 * @state: - Current state of device.
682 * @enable: - Flag to enable or disable generation
683 *
684 * Set the bits in the device's PM Capabilities to generate PME# when
685 * the system is suspended.
686 *
687 * -EIO is returned if device doesn't have PM Capabilities.
688 * -EINVAL is returned if device supports it, but can't generate wake events.
689 * 0 if operation is successful.
690 *
691 */
692int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
693{
694 int pm;
695 u16 value;
696
697 /* find PCI PM capability in list */
698 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
699
700 /* If device doesn't support PM Capabilities, but request is to disable
701 * wake events, it's a nop; otherwise fail */
702 if (!pm)
703 return enable ? -EIO : 0;
704
705 /* Check device's ability to generate PME# */
706 pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
707
708 value &= PCI_PM_CAP_PME_MASK;
709 value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
710
711 /* Check if it can generate PME# from requested state. */
712 if (!value || !(value & (1 << state)))
713 return enable ? -EINVAL : 0;
714
715 pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
716
717 /* Clear PME_Status by writing 1 to it and enable PME# */
718 value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
719
720 if (!enable)
721 value &= ~PCI_PM_CTRL_PME_ENABLE;
722
723 pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
724
725 return 0;
726}
727
728int
729pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
730{
731 u8 pin;
732
514d207d 733 pin = dev->pin;
1da177e4
LT
734 if (!pin)
735 return -1;
736 pin--;
737 while (dev->bus->self) {
738 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
739 dev = dev->bus->self;
740 }
741 *bridge = dev;
742 return pin;
743}
744
745/**
746 * pci_release_region - Release a PCI bar
747 * @pdev: PCI device whose resources were previously reserved by pci_request_region
748 * @bar: BAR to release
749 *
750 * Releases the PCI I/O and memory resources previously reserved by a
751 * successful call to pci_request_region. Call this function only
752 * after all use of the PCI regions has ceased.
753 */
754void pci_release_region(struct pci_dev *pdev, int bar)
755{
756 if (pci_resource_len(pdev, bar) == 0)
757 return;
758 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
759 release_region(pci_resource_start(pdev, bar),
760 pci_resource_len(pdev, bar));
761 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
762 release_mem_region(pci_resource_start(pdev, bar),
763 pci_resource_len(pdev, bar));
764}
765
766/**
767 * pci_request_region - Reserved PCI I/O and memory resource
768 * @pdev: PCI device whose resources are to be reserved
769 * @bar: BAR to be reserved
770 * @res_name: Name to be associated with resource.
771 *
772 * Mark the PCI region associated with PCI device @pdev BR @bar as
773 * being reserved by owner @res_name. Do not access any
774 * address inside the PCI regions unless this call returns
775 * successfully.
776 *
777 * Returns 0 on success, or %EBUSY on error. A warning
778 * message is also printed on failure.
779 */
3c990e92 780int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
1da177e4
LT
781{
782 if (pci_resource_len(pdev, bar) == 0)
783 return 0;
784
785 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
786 if (!request_region(pci_resource_start(pdev, bar),
787 pci_resource_len(pdev, bar), res_name))
788 goto err_out;
789 }
790 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
791 if (!request_mem_region(pci_resource_start(pdev, bar),
792 pci_resource_len(pdev, bar), res_name))
793 goto err_out;
794 }
795
796 return 0;
797
798err_out:
1396a8c3
GKH
799 printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%llx@%llx "
800 "for device %s\n",
1da177e4
LT
801 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
802 bar + 1, /* PCI BAR # */
1396a8c3
GKH
803 (unsigned long long)pci_resource_len(pdev, bar),
804 (unsigned long long)pci_resource_start(pdev, bar),
1da177e4
LT
805 pci_name(pdev));
806 return -EBUSY;
807}
808
809
810/**
811 * pci_release_regions - Release reserved PCI I/O and memory resources
812 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
813 *
814 * Releases all PCI I/O and memory resources previously reserved by a
815 * successful call to pci_request_regions. Call this function only
816 * after all use of the PCI regions has ceased.
817 */
818
819void pci_release_regions(struct pci_dev *pdev)
820{
821 int i;
822
823 for (i = 0; i < 6; i++)
824 pci_release_region(pdev, i);
825}
826
827/**
828 * pci_request_regions - Reserved PCI I/O and memory resources
829 * @pdev: PCI device whose resources are to be reserved
830 * @res_name: Name to be associated with resource.
831 *
832 * Mark all PCI regions associated with PCI device @pdev as
833 * being reserved by owner @res_name. Do not access any
834 * address inside the PCI regions unless this call returns
835 * successfully.
836 *
837 * Returns 0 on success, or %EBUSY on error. A warning
838 * message is also printed on failure.
839 */
3c990e92 840int pci_request_regions(struct pci_dev *pdev, const char *res_name)
1da177e4
LT
841{
842 int i;
843
844 for (i = 0; i < 6; i++)
845 if(pci_request_region(pdev, i, res_name))
846 goto err_out;
847 return 0;
848
849err_out:
850 while(--i >= 0)
851 pci_release_region(pdev, i);
852
853 return -EBUSY;
854}
855
856/**
857 * pci_set_master - enables bus-mastering for device dev
858 * @dev: the PCI device to enable
859 *
860 * Enables bus-mastering on the device and calls pcibios_set_master()
861 * to do the needed arch specific settings.
862 */
863void
864pci_set_master(struct pci_dev *dev)
865{
866 u16 cmd;
867
868 pci_read_config_word(dev, PCI_COMMAND, &cmd);
869 if (! (cmd & PCI_COMMAND_MASTER)) {
870 pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
871 cmd |= PCI_COMMAND_MASTER;
872 pci_write_config_word(dev, PCI_COMMAND, cmd);
873 }
874 dev->is_busmaster = 1;
875 pcibios_set_master(dev);
876}
877
edb2d97e
MW
878#ifdef PCI_DISABLE_MWI
879int pci_set_mwi(struct pci_dev *dev)
880{
881 return 0;
882}
883
884void pci_clear_mwi(struct pci_dev *dev)
885{
886}
887
888#else
ebf5a248
MW
889
890#ifndef PCI_CACHE_LINE_BYTES
891#define PCI_CACHE_LINE_BYTES L1_CACHE_BYTES
892#endif
893
1da177e4 894/* This can be overridden by arch code. */
ebf5a248
MW
895/* Don't forget this is measured in 32-bit words, not bytes */
896u8 pci_cache_line_size = PCI_CACHE_LINE_BYTES / 4;
1da177e4
LT
897
898/**
edb2d97e
MW
899 * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed
900 * @dev: the PCI device for which MWI is to be enabled
1da177e4 901 *
edb2d97e
MW
902 * Helper function for pci_set_mwi.
903 * Originally copied from drivers/net/acenic.c.
1da177e4
LT
904 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
905 *
906 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
907 */
908static int
edb2d97e 909pci_set_cacheline_size(struct pci_dev *dev)
1da177e4
LT
910{
911 u8 cacheline_size;
912
913 if (!pci_cache_line_size)
914 return -EINVAL; /* The system doesn't support MWI. */
915
916 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
917 equal to or multiple of the right value. */
918 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
919 if (cacheline_size >= pci_cache_line_size &&
920 (cacheline_size % pci_cache_line_size) == 0)
921 return 0;
922
923 /* Write the correct value. */
924 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
925 /* Read it back. */
926 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
927 if (cacheline_size == pci_cache_line_size)
928 return 0;
929
930 printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
931 "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
932
933 return -EINVAL;
934}
1da177e4
LT
935
936/**
937 * pci_set_mwi - enables memory-write-invalidate PCI transaction
938 * @dev: the PCI device for which MWI is enabled
939 *
940 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
941 * and then calls @pcibios_set_mwi to do the needed arch specific
942 * operations or a generic mwi-prep function.
943 *
944 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
945 */
946int
947pci_set_mwi(struct pci_dev *dev)
948{
949 int rc;
950 u16 cmd;
951
edb2d97e 952 rc = pci_set_cacheline_size(dev);
1da177e4
LT
953 if (rc)
954 return rc;
955
956 pci_read_config_word(dev, PCI_COMMAND, &cmd);
957 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
958 pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
959 cmd |= PCI_COMMAND_INVALIDATE;
960 pci_write_config_word(dev, PCI_COMMAND, cmd);
961 }
962
963 return 0;
964}
965
966/**
967 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
968 * @dev: the PCI device to disable
969 *
970 * Disables PCI Memory-Write-Invalidate transaction on the device
971 */
972void
973pci_clear_mwi(struct pci_dev *dev)
974{
975 u16 cmd;
976
977 pci_read_config_word(dev, PCI_COMMAND, &cmd);
978 if (cmd & PCI_COMMAND_INVALIDATE) {
979 cmd &= ~PCI_COMMAND_INVALIDATE;
980 pci_write_config_word(dev, PCI_COMMAND, cmd);
981 }
982}
edb2d97e 983#endif /* ! PCI_DISABLE_MWI */
1da177e4 984
a04ce0ff
BR
985/**
986 * pci_intx - enables/disables PCI INTx for device dev
8f7020d3
RD
987 * @pdev: the PCI device to operate on
988 * @enable: boolean: whether to enable or disable PCI INTx
a04ce0ff
BR
989 *
990 * Enables/disables PCI INTx for device dev
991 */
992void
993pci_intx(struct pci_dev *pdev, int enable)
994{
995 u16 pci_command, new;
996
997 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
998
999 if (enable) {
1000 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
1001 } else {
1002 new = pci_command | PCI_COMMAND_INTX_DISABLE;
1003 }
1004
1005 if (new != pci_command) {
2fd9d74b 1006 pci_write_config_word(pdev, PCI_COMMAND, new);
a04ce0ff
BR
1007 }
1008}
1009
1da177e4
LT
1010#ifndef HAVE_ARCH_PCI_SET_DMA_MASK
1011/*
1012 * These can be overridden by arch-specific implementations
1013 */
1014int
1015pci_set_dma_mask(struct pci_dev *dev, u64 mask)
1016{
1017 if (!pci_dma_supported(dev, mask))
1018 return -EIO;
1019
1020 dev->dma_mask = mask;
1021
1022 return 0;
1023}
1024
1da177e4
LT
1025int
1026pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1027{
1028 if (!pci_dma_supported(dev, mask))
1029 return -EIO;
1030
1031 dev->dev.coherent_dma_mask = mask;
1032
1033 return 0;
1034}
1035#endif
1036
1037static int __devinit pci_init(void)
1038{
1039 struct pci_dev *dev = NULL;
1040
1041 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1042 pci_fixup_device(pci_fixup_final, dev);
1043 }
1044 return 0;
1045}
1046
1047static int __devinit pci_setup(char *str)
1048{
1049 while (str) {
1050 char *k = strchr(str, ',');
1051 if (k)
1052 *k++ = 0;
1053 if (*str && (str = pcibios_setup(str)) && *str) {
309e57df
MW
1054 if (!strcmp(str, "nomsi")) {
1055 pci_no_msi();
1056 } else {
1057 printk(KERN_ERR "PCI: Unknown option `%s'\n",
1058 str);
1059 }
1da177e4
LT
1060 }
1061 str = k;
1062 }
0637a70a 1063 return 0;
1da177e4 1064}
0637a70a 1065early_param("pci", pci_setup);
1da177e4
LT
1066
1067device_initcall(pci_init);
1da177e4
LT
1068
1069#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
1070/* FIXME: Some boxes have multiple ISA bridges! */
1071struct pci_dev *isa_bridge;
1072EXPORT_SYMBOL(isa_bridge);
1073#endif
1074
064b53db 1075EXPORT_SYMBOL_GPL(pci_restore_bars);
1da177e4
LT
1076EXPORT_SYMBOL(pci_enable_device_bars);
1077EXPORT_SYMBOL(pci_enable_device);
1078EXPORT_SYMBOL(pci_disable_device);
1da177e4
LT
1079EXPORT_SYMBOL(pci_find_capability);
1080EXPORT_SYMBOL(pci_bus_find_capability);
1081EXPORT_SYMBOL(pci_release_regions);
1082EXPORT_SYMBOL(pci_request_regions);
1083EXPORT_SYMBOL(pci_release_region);
1084EXPORT_SYMBOL(pci_request_region);
1085EXPORT_SYMBOL(pci_set_master);
1086EXPORT_SYMBOL(pci_set_mwi);
1087EXPORT_SYMBOL(pci_clear_mwi);
a04ce0ff 1088EXPORT_SYMBOL_GPL(pci_intx);
1da177e4 1089EXPORT_SYMBOL(pci_set_dma_mask);
1da177e4
LT
1090EXPORT_SYMBOL(pci_set_consistent_dma_mask);
1091EXPORT_SYMBOL(pci_assign_resource);
1092EXPORT_SYMBOL(pci_find_parent_resource);
1093
1094EXPORT_SYMBOL(pci_set_power_state);
1095EXPORT_SYMBOL(pci_save_state);
1096EXPORT_SYMBOL(pci_restore_state);
1097EXPORT_SYMBOL(pci_enable_wake);
1098
1099/* Quirk info */
1100
1101EXPORT_SYMBOL(isa_dma_bridge_buggy);
1102EXPORT_SYMBOL(pci_pci_problems);