ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / pci / pci.c
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/delay.h>
13 #include <linux/init.h>
14 #include <linux/pci.h>
15 #include <linux/module.h>
16 #include <linux/spinlock.h>
17 #include <asm/dma.h>    /* isa_dma_bridge_buggy */
18
19 #undef DEBUG
20
21 #ifdef DEBUG
22 #define DBG(x...) printk(x)
23 #else
24 #define DBG(x...)
25 #endif
26
27 /**
28  * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
29  * @bus: pointer to PCI bus structure to search
30  *
31  * Given a PCI bus, returns the highest PCI bus number present in the set
32  * including the given PCI bus and its list of child PCI buses.
33  */
34 unsigned char __devinit
35 pci_bus_max_busnr(struct pci_bus* bus)
36 {
37         struct list_head *tmp;
38         unsigned char max, n;
39
40         max = bus->number;
41         list_for_each(tmp, &bus->children) {
42                 n = pci_bus_max_busnr(pci_bus_b(tmp));
43                 if(n > max)
44                         max = n;
45         }
46         return max;
47 }
48
49 /**
50  * pci_max_busnr - returns maximum PCI bus number
51  *
52  * Returns the highest PCI bus number present in the system global list of
53  * PCI buses.
54  */
55 unsigned char __devinit
56 pci_max_busnr(void)
57 {
58         struct pci_bus *bus = NULL;
59         unsigned char max, n;
60
61         max = 0;
62         while ((bus = pci_find_next_bus(bus)) != NULL) {
63                 n = pci_bus_max_busnr(bus);
64                 if(n > max)
65                         max = n;
66         }
67         return max;
68 }
69
70 static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap)
71 {
72         u16 status;
73         u8 pos, id;
74         int ttl = 48;
75
76         pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
77         if (!(status & PCI_STATUS_CAP_LIST))
78                 return 0;
79
80         switch (hdr_type) {
81         case PCI_HEADER_TYPE_NORMAL:
82         case PCI_HEADER_TYPE_BRIDGE:
83                 pci_bus_read_config_byte(bus, devfn, PCI_CAPABILITY_LIST, &pos);
84                 break;
85         case PCI_HEADER_TYPE_CARDBUS:
86                 pci_bus_read_config_byte(bus, devfn, PCI_CB_CAPABILITY_LIST, &pos);
87                 break;
88         default:
89                 return 0;
90         }
91         while (ttl-- && pos >= 0x40) {
92                 pos &= ~3;
93                 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID, &id);
94                 if (id == 0xff)
95                         break;
96                 if (id == cap)
97                         return pos;
98                 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_NEXT, &pos);
99         }
100         return 0;
101 }
102
103 /**
104  * pci_find_capability - query for devices' capabilities 
105  * @dev: PCI device to query
106  * @cap: capability code
107  *
108  * Tell if a device supports a given PCI capability.
109  * Returns the address of the requested capability structure within the
110  * device's PCI configuration space or 0 in case the device does not
111  * support it.  Possible values for @cap:
112  *
113  *  %PCI_CAP_ID_PM           Power Management 
114  *  %PCI_CAP_ID_AGP          Accelerated Graphics Port 
115  *  %PCI_CAP_ID_VPD          Vital Product Data 
116  *  %PCI_CAP_ID_SLOTID       Slot Identification 
117  *  %PCI_CAP_ID_MSI          Message Signalled Interrupts
118  *  %PCI_CAP_ID_CHSWP        CompactPCI HotSwap 
119  *  %PCI_CAP_ID_PCIX         PCI-X
120  *  %PCI_CAP_ID_EXP          PCI Express
121  */
122 int pci_find_capability(struct pci_dev *dev, int cap)
123 {
124         return __pci_bus_find_cap(dev->bus, dev->devfn, dev->hdr_type, cap);
125 }
126
127 /**
128  * pci_bus_find_capability - query for devices' capabilities 
129  * @bus:   the PCI bus to query
130  * @devfn: PCI device to query
131  * @cap:   capability code
132  *
133  * Like pci_find_capability() but works for pci devices that do not have a
134  * pci_dev structure set up yet. 
135  *
136  * Returns the address of the requested capability structure within the
137  * device's PCI configuration space or 0 in case the device does not
138  * support it.
139  */
140 int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
141 {
142         u8 hdr_type;
143
144         pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
145
146         return __pci_bus_find_cap(bus, devfn, hdr_type & 0x7f, cap);
147 }
148
149 /**
150  * pci_find_ext_capability - Find an extended capability
151  * @dev: PCI device to query
152  * @cap: capability code
153  *
154  * Returns the address of the requested extended capability structure
155  * within the device's PCI configuration space or 0 if the device does
156  * not support it.  Possible values for @cap:
157  *
158  *  %PCI_EXT_CAP_ID_ERR         Advanced Error Reporting
159  *  %PCI_EXT_CAP_ID_VC          Virtual Channel
160  *  %PCI_EXT_CAP_ID_DSN         Device Serial Number
161  *  %PCI_EXT_CAP_ID_PWR         Power Budgeting
162  */
163 int pci_find_ext_capability(struct pci_dev *dev, int cap)
164 {
165         u32 header;
166         int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
167         int pos = 0x100;
168
169         if (dev->cfg_size <= 256)
170                 return 0;
171
172         if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
173                 return 0;
174
175         /*
176          * If we have no capabilities, this is indicated by cap ID,
177          * cap version and next pointer all being 0.
178          */
179         if (header == 0)
180                 return 0;
181
182         while (ttl-- > 0) {
183                 if (PCI_EXT_CAP_ID(header) == cap)
184                         return pos;
185
186                 pos = PCI_EXT_CAP_NEXT(header);
187                 if (pos < 0x100)
188                         break;
189
190                 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
191                         break;
192         }
193
194         return 0;
195 }
196
197 /**
198  * pci_find_parent_resource - return resource region of parent bus of given region
199  * @dev: PCI device structure contains resources to be searched
200  * @res: child resource record for which parent is sought
201  *
202  *  For given resource region of given device, return the resource
203  *  region of parent bus the given region is contained in or where
204  *  it should be allocated from.
205  */
206 struct resource *
207 pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
208 {
209         const struct pci_bus *bus = dev->bus;
210         int i;
211         struct resource *best = NULL;
212
213         for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
214                 struct resource *r = bus->resource[i];
215                 if (!r)
216                         continue;
217                 if (res->start && !(res->start >= r->start && res->end <= r->end))
218                         continue;       /* Not contained */
219                 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
220                         continue;       /* Wrong type */
221                 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH))
222                         return r;       /* Exact match */
223                 if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags & IORESOURCE_PREFETCH))
224                         best = r;       /* Approximating prefetchable by non-prefetchable */
225         }
226         return best;
227 }
228
229 /**
230  * pci_set_power_state - Set the power state of a PCI device
231  * @dev: PCI device to be suspended
232  * @state: Power state we're entering
233  *
234  * Transition a device to a new power state, using the Power Management 
235  * Capabilities in the device's config space.
236  *
237  * RETURN VALUE: 
238  * -EINVAL if trying to enter a lower state than we're already in.
239  * 0 if we're already in the requested state.
240  * -EIO if device does not support PCI PM.
241  * 0 if we can successfully change the power state.
242  */
243
244 int
245 pci_set_power_state(struct pci_dev *dev, int state)
246 {
247         int pm;
248         u16 pmcsr;
249
250         /* bound the state we're entering */
251         if (state > 3) state = 3;
252
253         /* Validate current state:
254          * Can enter D0 from any state, but if we can only go deeper 
255          * to sleep if we're already in a low power state
256          */
257         if (state > 0 && dev->current_state > state)
258                 return -EINVAL;
259         else if (dev->current_state == state) 
260                 return 0;        /* we're already there */
261
262         /* find PCI PM capability in list */
263         pm = pci_find_capability(dev, PCI_CAP_ID_PM);
264         
265         /* abort if the device doesn't support PM capabilities */
266         if (!pm) return -EIO; 
267
268         /* check if this device supports the desired state */
269         if (state == 1 || state == 2) {
270                 u16 pmc;
271                 pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
272                 if (state == 1 && !(pmc & PCI_PM_CAP_D1)) return -EIO;
273                 else if (state == 2 && !(pmc & PCI_PM_CAP_D2)) return -EIO;
274         }
275
276         /* If we're in D3, force entire word to 0.
277          * This doesn't affect PME_Status, disables PME_En, and
278          * sets PowerState to 0.
279          */
280         if (dev->current_state >= 3)
281                 pmcsr = 0;
282         else {
283                 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
284                 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
285                 pmcsr |= state;
286         }
287
288         /* enter specified state */
289         pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
290
291         /* Mandatory power management transition delays */
292         /* see PCI PM 1.1 5.6.1 table 18 */
293         if(state == 3 || dev->current_state == 3)
294         {
295                 set_current_state(TASK_UNINTERRUPTIBLE);
296                 schedule_timeout(HZ/100);
297         }
298         else if(state == 2 || dev->current_state == 2)
299                 udelay(200);
300         dev->current_state = state;
301
302         return 0;
303 }
304
305 /**
306  * pci_save_state - save the PCI configuration space of a device before suspending
307  * @dev: - PCI device that we're dealing with
308  * @buffer: - buffer to hold config space context
309  *
310  * @buffer must be large enough to hold the entire PCI 2.2 config space 
311  * (>= 64 bytes).
312  */
313 int
314 pci_save_state(struct pci_dev *dev, u32 *buffer)
315 {
316         int i;
317         if (buffer) {
318                 /* XXX: 100% dword access ok here? */
319                 for (i = 0; i < 16; i++)
320                         pci_read_config_dword(dev, i * 4,&buffer[i]);
321         }
322         return 0;
323 }
324
325 /** 
326  * pci_restore_state - Restore the saved state of a PCI device
327  * @dev: - PCI device that we're dealing with
328  * @buffer: - saved PCI config space
329  *
330  */
331 int 
332 pci_restore_state(struct pci_dev *dev, u32 *buffer)
333 {
334         int i;
335
336         if (buffer) {
337                 for (i = 0; i < 16; i++)
338                         pci_write_config_dword(dev,i * 4, buffer[i]);
339         }
340         /*
341          * otherwise, write the context information we know from bootup.
342          * This works around a problem where warm-booting from Windows
343          * combined with a D3(hot)->D0 transition causes PCI config
344          * header data to be forgotten.
345          */     
346         else {
347                 for (i = 0; i < 6; i ++)
348                         pci_write_config_dword(dev,
349                                                PCI_BASE_ADDRESS_0 + (i * 4),
350                                                dev->resource[i].start);
351                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
352         }
353         return 0;
354 }
355
356 /**
357  * pci_enable_device_bars - Initialize some of a device for use
358  * @dev: PCI device to be initialized
359  * @bars: bitmask of BAR's that must be configured
360  *
361  *  Initialize device before it's used by a driver. Ask low-level code
362  *  to enable selected I/O and memory resources. Wake up the device if it 
363  *  was suspended. Beware, this function can fail.
364  */
365  
366 int
367 pci_enable_device_bars(struct pci_dev *dev, int bars)
368 {
369         int err;
370
371         pci_set_power_state(dev, 0);
372         if ((err = pcibios_enable_device(dev, bars)) < 0)
373                 return err;
374         return 0;
375 }
376
377 /**
378  * pci_enable_device - Initialize device before it's used by a driver.
379  * @dev: PCI device to be initialized
380  *
381  *  Initialize device before it's used by a driver. Ask low-level code
382  *  to enable I/O and memory. Wake up the device if it was suspended.
383  *  Beware, this function can fail.
384  */
385 int
386 pci_enable_device(struct pci_dev *dev)
387 {
388         return pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
389 }
390
391 /**
392  * pci_disable_device - Disable PCI device after use
393  * @dev: PCI device to be disabled
394  *
395  * Signal to the system that the PCI device is not in use by the system
396  * anymore.  This only involves disabling PCI bus-mastering, if active.
397  */
398 void
399 pci_disable_device(struct pci_dev *dev)
400 {
401         u16 pci_command;
402
403         pci_read_config_word(dev, PCI_COMMAND, &pci_command);
404         if (pci_command & PCI_COMMAND_MASTER) {
405                 pci_command &= ~PCI_COMMAND_MASTER;
406                 pci_write_config_word(dev, PCI_COMMAND, pci_command);
407         }
408 }
409
410 /**
411  * pci_enable_wake - enable device to generate PME# when suspended
412  * @dev: - PCI device to operate on
413  * @state: - Current state of device.
414  * @enable: - Flag to enable or disable generation
415  * 
416  * Set the bits in the device's PM Capabilities to generate PME# when
417  * the system is suspended. 
418  *
419  * -EIO is returned if device doesn't have PM Capabilities. 
420  * -EINVAL is returned if device supports it, but can't generate wake events.
421  * 0 if operation is successful.
422  * 
423  */
424 int pci_enable_wake(struct pci_dev *dev, u32 state, int enable)
425 {
426         int pm;
427         u16 value;
428
429         /* find PCI PM capability in list */
430         pm = pci_find_capability(dev, PCI_CAP_ID_PM);
431
432         /* If device doesn't support PM Capabilities, but request is to disable
433          * wake events, it's a nop; otherwise fail */
434         if (!pm) 
435                 return enable ? -EIO : 0; 
436
437         /* Check device's ability to generate PME# */
438         pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
439
440         value &= PCI_PM_CAP_PME_MASK;
441         value >>= ffs(value);   /* First bit of mask */
442
443         /* Check if it can generate PME# from requested state. */
444         if (!value || !(value & (1 << state))) 
445                 return enable ? -EINVAL : 0;
446
447         pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
448
449         /* Clear PME_Status by writing 1 to it and enable PME# */
450         value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
451
452         if (!enable)
453                 value &= ~PCI_PM_CTRL_PME_ENABLE;
454
455         pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
456         
457         return 0;
458 }
459
460 int
461 pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
462 {
463         u8 pin;
464
465         pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
466         if (!pin)
467                 return -1;
468         pin--;
469         while (dev->bus->self) {
470                 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
471                 dev = dev->bus->self;
472         }
473         *bridge = dev;
474         return pin;
475 }
476
477 /**
478  *      pci_release_region - Release a PCI bar
479  *      @pdev: PCI device whose resources were previously reserved by pci_request_region
480  *      @bar: BAR to release
481  *
482  *      Releases the PCI I/O and memory resources previously reserved by a
483  *      successful call to pci_request_region.  Call this function only
484  *      after all use of the PCI regions has ceased.
485  */
486 void pci_release_region(struct pci_dev *pdev, int bar)
487 {
488         if (pci_resource_len(pdev, bar) == 0)
489                 return;
490         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
491                 release_region(pci_resource_start(pdev, bar),
492                                 pci_resource_len(pdev, bar));
493         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
494                 release_mem_region(pci_resource_start(pdev, bar),
495                                 pci_resource_len(pdev, bar));
496 }
497
498 /**
499  *      pci_request_region - Reserved PCI I/O and memory resource
500  *      @pdev: PCI device whose resources are to be reserved
501  *      @bar: BAR to be reserved
502  *      @res_name: Name to be associated with resource.
503  *
504  *      Mark the PCI region associated with PCI device @pdev BR @bar as
505  *      being reserved by owner @res_name.  Do not access any
506  *      address inside the PCI regions unless this call returns
507  *      successfully.
508  *
509  *      Returns 0 on success, or %EBUSY on error.  A warning
510  *      message is also printed on failure.
511  */
512 int pci_request_region(struct pci_dev *pdev, int bar, char *res_name)
513 {
514         if (pci_resource_len(pdev, bar) == 0)
515                 return 0;
516                 
517         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
518                 if (!request_region(pci_resource_start(pdev, bar),
519                             pci_resource_len(pdev, bar), res_name))
520                         goto err_out;
521         }
522         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
523                 if (!request_mem_region(pci_resource_start(pdev, bar),
524                                         pci_resource_len(pdev, bar), res_name))
525                         goto err_out;
526         }
527         
528         return 0;
529
530 err_out:
531         printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%lx@%lx for device %s\n",
532                 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
533                 bar + 1, /* PCI BAR # */
534                 pci_resource_len(pdev, bar), pci_resource_start(pdev, bar),
535                 pci_name(pdev));
536         return -EBUSY;
537 }
538
539
540 /**
541  *      pci_release_regions - Release reserved PCI I/O and memory resources
542  *      @pdev: PCI device whose resources were previously reserved by pci_request_regions
543  *
544  *      Releases all PCI I/O and memory resources previously reserved by a
545  *      successful call to pci_request_regions.  Call this function only
546  *      after all use of the PCI regions has ceased.
547  */
548
549 void pci_release_regions(struct pci_dev *pdev)
550 {
551         int i;
552         
553         for (i = 0; i < 6; i++)
554                 pci_release_region(pdev, i);
555 }
556
557 /**
558  *      pci_request_regions - Reserved PCI I/O and memory resources
559  *      @pdev: PCI device whose resources are to be reserved
560  *      @res_name: Name to be associated with resource.
561  *
562  *      Mark all PCI regions associated with PCI device @pdev as
563  *      being reserved by owner @res_name.  Do not access any
564  *      address inside the PCI regions unless this call returns
565  *      successfully.
566  *
567  *      Returns 0 on success, or %EBUSY on error.  A warning
568  *      message is also printed on failure.
569  */
570 int pci_request_regions(struct pci_dev *pdev, char *res_name)
571 {
572         int i;
573         
574         for (i = 0; i < 6; i++)
575                 if(pci_request_region(pdev, i, res_name))
576                         goto err_out;
577         return 0;
578
579 err_out:
580         while(--i >= 0)
581                 pci_release_region(pdev, i);
582                 
583         return -EBUSY;
584 }
585
586 /**
587  * pci_set_master - enables bus-mastering for device dev
588  * @dev: the PCI device to enable
589  *
590  * Enables bus-mastering on the device and calls pcibios_set_master()
591  * to do the needed arch specific settings.
592  */
593 void
594 pci_set_master(struct pci_dev *dev)
595 {
596         u16 cmd;
597
598         pci_read_config_word(dev, PCI_COMMAND, &cmd);
599         if (! (cmd & PCI_COMMAND_MASTER)) {
600                 DBG("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
601                 cmd |= PCI_COMMAND_MASTER;
602                 pci_write_config_word(dev, PCI_COMMAND, cmd);
603         }
604         pcibios_set_master(dev);
605 }
606
607 #ifndef HAVE_ARCH_PCI_MWI
608 /* This can be overridden by arch code. */
609 u8 pci_cache_line_size = L1_CACHE_BYTES >> 2;
610
611 /**
612  * pci_generic_prep_mwi - helper function for pci_set_mwi
613  * @dev: the PCI device for which MWI is enabled
614  *
615  * Helper function for generic implementation of pcibios_prep_mwi
616  * function.  Originally copied from drivers/net/acenic.c.
617  * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
618  *
619  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
620  */
621 static int
622 pci_generic_prep_mwi(struct pci_dev *dev)
623 {
624         u8 cacheline_size;
625
626         if (!pci_cache_line_size)
627                 return -EINVAL;         /* The system doesn't support MWI. */
628
629         /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
630            equal to or multiple of the right value. */
631         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
632         if (cacheline_size >= pci_cache_line_size &&
633             (cacheline_size % pci_cache_line_size) == 0)
634                 return 0;
635
636         /* Write the correct value. */
637         pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
638         /* Read it back. */
639         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
640         if (cacheline_size == pci_cache_line_size)
641                 return 0;
642
643         printk(KERN_WARNING "PCI: cache line size of %d is not supported "
644                "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
645
646         return -EINVAL;
647 }
648 #endif /* !HAVE_ARCH_PCI_MWI */
649
650 /**
651  * pci_set_mwi - enables memory-write-invalidate PCI transaction
652  * @dev: the PCI device for which MWI is enabled
653  *
654  * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
655  * and then calls @pcibios_set_mwi to do the needed arch specific
656  * operations or a generic mwi-prep function.
657  *
658  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
659  */
660 int
661 pci_set_mwi(struct pci_dev *dev)
662 {
663         int rc;
664         u16 cmd;
665
666 #ifdef HAVE_ARCH_PCI_MWI
667         rc = pcibios_prep_mwi(dev);
668 #else
669         rc = pci_generic_prep_mwi(dev);
670 #endif
671
672         if (rc)
673                 return rc;
674
675         pci_read_config_word(dev, PCI_COMMAND, &cmd);
676         if (! (cmd & PCI_COMMAND_INVALIDATE)) {
677                 DBG("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
678                 cmd |= PCI_COMMAND_INVALIDATE;
679                 pci_write_config_word(dev, PCI_COMMAND, cmd);
680         }
681         
682         return 0;
683 }
684
685 /**
686  * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
687  * @dev: the PCI device to disable
688  *
689  * Disables PCI Memory-Write-Invalidate transaction on the device
690  */
691 void
692 pci_clear_mwi(struct pci_dev *dev)
693 {
694         u16 cmd;
695
696         pci_read_config_word(dev, PCI_COMMAND, &cmd);
697         if (cmd & PCI_COMMAND_INVALIDATE) {
698                 cmd &= ~PCI_COMMAND_INVALIDATE;
699                 pci_write_config_word(dev, PCI_COMMAND, cmd);
700         }
701 }
702
703 #ifndef HAVE_ARCH_PCI_SET_DMA_MASK
704 /*
705  * These can be overridden by arch-specific implementations
706  */
707 int
708 pci_set_dma_mask(struct pci_dev *dev, u64 mask)
709 {
710         if (!pci_dma_supported(dev, mask))
711                 return -EIO;
712
713         dev->dma_mask = mask;
714
715         return 0;
716 }
717     
718 int
719 pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask)
720 {
721         if (!pci_dac_dma_supported(dev, mask))
722                 return -EIO;
723
724         dev->dma_mask = mask;
725
726         return 0;
727 }
728
729 int
730 pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
731 {
732         if (!pci_dma_supported(dev, mask))
733                 return -EIO;
734
735         dev->dev.coherent_dma_mask = mask;
736
737         return 0;
738 }
739 #endif
740      
741 static int __devinit pci_init(void)
742 {
743         struct pci_dev *dev = NULL;
744
745         while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
746                 pci_fixup_device(PCI_FIXUP_FINAL, dev);
747         }
748         return 0;
749 }
750
751 static int __devinit pci_setup(char *str)
752 {
753         while (str) {
754                 char *k = strchr(str, ',');
755                 if (k)
756                         *k++ = 0;
757                 if (*str && (str = pcibios_setup(str)) && *str) {
758                         /* PCI layer options should be handled here */
759                         printk(KERN_ERR "PCI: Unknown option `%s'\n", str);
760                 }
761                 str = k;
762         }
763         return 1;
764 }
765
766 device_initcall(pci_init);
767
768 __setup("pci=", pci_setup);
769
770 #if defined(CONFIG_ISA) || defined(CONFIG_EISA)
771 /* FIXME: Some boxes have multiple ISA bridges! */
772 struct pci_dev *isa_bridge;
773 EXPORT_SYMBOL(isa_bridge);
774 #endif
775
776 EXPORT_SYMBOL(pci_enable_device_bars);
777 EXPORT_SYMBOL(pci_enable_device);
778 EXPORT_SYMBOL(pci_disable_device);
779 EXPORT_SYMBOL(pci_max_busnr);
780 EXPORT_SYMBOL(pci_bus_max_busnr);
781 EXPORT_SYMBOL(pci_find_capability);
782 EXPORT_SYMBOL(pci_bus_find_capability);
783 EXPORT_SYMBOL(pci_release_regions);
784 EXPORT_SYMBOL(pci_request_regions);
785 EXPORT_SYMBOL(pci_release_region);
786 EXPORT_SYMBOL(pci_request_region);
787 EXPORT_SYMBOL(pci_set_master);
788 EXPORT_SYMBOL(pci_set_mwi);
789 EXPORT_SYMBOL(pci_clear_mwi);
790 EXPORT_SYMBOL(pci_set_dma_mask);
791 EXPORT_SYMBOL(pci_dac_set_dma_mask);
792 EXPORT_SYMBOL(pci_set_consistent_dma_mask);
793 EXPORT_SYMBOL(pci_assign_resource);
794 EXPORT_SYMBOL(pci_find_parent_resource);
795
796 EXPORT_SYMBOL(pci_set_power_state);
797 EXPORT_SYMBOL(pci_save_state);
798 EXPORT_SYMBOL(pci_restore_state);
799 EXPORT_SYMBOL(pci_enable_wake);
800
801 /* Quirk info */
802
803 EXPORT_SYMBOL(isa_dma_bridge_buggy);
804 EXPORT_SYMBOL(pci_pci_problems);