patch-2_6_7-vs1_9_1_12
[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         dev->is_enabled = 1;
389         return pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
390 }
391
392 /**
393  * pci_disable_device - Disable PCI device after use
394  * @dev: PCI device to be disabled
395  *
396  * Signal to the system that the PCI device is not in use by the system
397  * anymore.  This only involves disabling PCI bus-mastering, if active.
398  */
399 void
400 pci_disable_device(struct pci_dev *dev)
401 {
402         u16 pci_command;
403         
404         dev->is_enabled = 0;
405         dev->is_busmaster = 0;
406
407         pci_read_config_word(dev, PCI_COMMAND, &pci_command);
408         if (pci_command & PCI_COMMAND_MASTER) {
409                 pci_command &= ~PCI_COMMAND_MASTER;
410                 pci_write_config_word(dev, PCI_COMMAND, pci_command);
411         }
412 }
413
414 /**
415  * pci_enable_wake - enable device to generate PME# when suspended
416  * @dev: - PCI device to operate on
417  * @state: - Current state of device.
418  * @enable: - Flag to enable or disable generation
419  * 
420  * Set the bits in the device's PM Capabilities to generate PME# when
421  * the system is suspended. 
422  *
423  * -EIO is returned if device doesn't have PM Capabilities. 
424  * -EINVAL is returned if device supports it, but can't generate wake events.
425  * 0 if operation is successful.
426  * 
427  */
428 int pci_enable_wake(struct pci_dev *dev, u32 state, int enable)
429 {
430         int pm;
431         u16 value;
432
433         /* find PCI PM capability in list */
434         pm = pci_find_capability(dev, PCI_CAP_ID_PM);
435
436         /* If device doesn't support PM Capabilities, but request is to disable
437          * wake events, it's a nop; otherwise fail */
438         if (!pm) 
439                 return enable ? -EIO : 0; 
440
441         /* Check device's ability to generate PME# */
442         pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
443
444         value &= PCI_PM_CAP_PME_MASK;
445         value >>= ffs(value);   /* First bit of mask */
446
447         /* Check if it can generate PME# from requested state. */
448         if (!value || !(value & (1 << state))) 
449                 return enable ? -EINVAL : 0;
450
451         pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
452
453         /* Clear PME_Status by writing 1 to it and enable PME# */
454         value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
455
456         if (!enable)
457                 value &= ~PCI_PM_CTRL_PME_ENABLE;
458
459         pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
460         
461         return 0;
462 }
463
464 int
465 pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
466 {
467         u8 pin;
468
469         pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
470         if (!pin)
471                 return -1;
472         pin--;
473         while (dev->bus->self) {
474                 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
475                 dev = dev->bus->self;
476         }
477         *bridge = dev;
478         return pin;
479 }
480
481 /**
482  *      pci_release_region - Release a PCI bar
483  *      @pdev: PCI device whose resources were previously reserved by pci_request_region
484  *      @bar: BAR to release
485  *
486  *      Releases the PCI I/O and memory resources previously reserved by a
487  *      successful call to pci_request_region.  Call this function only
488  *      after all use of the PCI regions has ceased.
489  */
490 void pci_release_region(struct pci_dev *pdev, int bar)
491 {
492         if (pci_resource_len(pdev, bar) == 0)
493                 return;
494         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
495                 release_region(pci_resource_start(pdev, bar),
496                                 pci_resource_len(pdev, bar));
497         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
498                 release_mem_region(pci_resource_start(pdev, bar),
499                                 pci_resource_len(pdev, bar));
500 }
501
502 /**
503  *      pci_request_region - Reserved PCI I/O and memory resource
504  *      @pdev: PCI device whose resources are to be reserved
505  *      @bar: BAR to be reserved
506  *      @res_name: Name to be associated with resource.
507  *
508  *      Mark the PCI region associated with PCI device @pdev BR @bar as
509  *      being reserved by owner @res_name.  Do not access any
510  *      address inside the PCI regions unless this call returns
511  *      successfully.
512  *
513  *      Returns 0 on success, or %EBUSY on error.  A warning
514  *      message is also printed on failure.
515  */
516 int pci_request_region(struct pci_dev *pdev, int bar, char *res_name)
517 {
518         if (pci_resource_len(pdev, bar) == 0)
519                 return 0;
520                 
521         if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
522                 if (!request_region(pci_resource_start(pdev, bar),
523                             pci_resource_len(pdev, bar), res_name))
524                         goto err_out;
525         }
526         else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
527                 if (!request_mem_region(pci_resource_start(pdev, bar),
528                                         pci_resource_len(pdev, bar), res_name))
529                         goto err_out;
530         }
531         
532         return 0;
533
534 err_out:
535         printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%lx@%lx for device %s\n",
536                 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
537                 bar + 1, /* PCI BAR # */
538                 pci_resource_len(pdev, bar), pci_resource_start(pdev, bar),
539                 pci_name(pdev));
540         return -EBUSY;
541 }
542
543
544 /**
545  *      pci_release_regions - Release reserved PCI I/O and memory resources
546  *      @pdev: PCI device whose resources were previously reserved by pci_request_regions
547  *
548  *      Releases all PCI I/O and memory resources previously reserved by a
549  *      successful call to pci_request_regions.  Call this function only
550  *      after all use of the PCI regions has ceased.
551  */
552
553 void pci_release_regions(struct pci_dev *pdev)
554 {
555         int i;
556         
557         for (i = 0; i < 6; i++)
558                 pci_release_region(pdev, i);
559 }
560
561 /**
562  *      pci_request_regions - Reserved PCI I/O and memory resources
563  *      @pdev: PCI device whose resources are to be reserved
564  *      @res_name: Name to be associated with resource.
565  *
566  *      Mark all PCI regions associated with PCI device @pdev as
567  *      being reserved by owner @res_name.  Do not access any
568  *      address inside the PCI regions unless this call returns
569  *      successfully.
570  *
571  *      Returns 0 on success, or %EBUSY on error.  A warning
572  *      message is also printed on failure.
573  */
574 int pci_request_regions(struct pci_dev *pdev, char *res_name)
575 {
576         int i;
577         
578         for (i = 0; i < 6; i++)
579                 if(pci_request_region(pdev, i, res_name))
580                         goto err_out;
581         return 0;
582
583 err_out:
584         while(--i >= 0)
585                 pci_release_region(pdev, i);
586                 
587         return -EBUSY;
588 }
589
590 /**
591  * pci_set_master - enables bus-mastering for device dev
592  * @dev: the PCI device to enable
593  *
594  * Enables bus-mastering on the device and calls pcibios_set_master()
595  * to do the needed arch specific settings.
596  */
597 void
598 pci_set_master(struct pci_dev *dev)
599 {
600         u16 cmd;
601
602         pci_read_config_word(dev, PCI_COMMAND, &cmd);
603         if (! (cmd & PCI_COMMAND_MASTER)) {
604                 DBG("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
605                 cmd |= PCI_COMMAND_MASTER;
606                 pci_write_config_word(dev, PCI_COMMAND, cmd);
607         }
608         dev->is_busmaster = 1;
609         pcibios_set_master(dev);
610 }
611
612 #ifndef HAVE_ARCH_PCI_MWI
613 /* This can be overridden by arch code. */
614 u8 pci_cache_line_size = L1_CACHE_BYTES >> 2;
615
616 /**
617  * pci_generic_prep_mwi - helper function for pci_set_mwi
618  * @dev: the PCI device for which MWI is enabled
619  *
620  * Helper function for generic implementation of pcibios_prep_mwi
621  * function.  Originally copied from drivers/net/acenic.c.
622  * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
623  *
624  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
625  */
626 static int
627 pci_generic_prep_mwi(struct pci_dev *dev)
628 {
629         u8 cacheline_size;
630
631         if (!pci_cache_line_size)
632                 return -EINVAL;         /* The system doesn't support MWI. */
633
634         /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
635            equal to or multiple of the right value. */
636         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
637         if (cacheline_size >= pci_cache_line_size &&
638             (cacheline_size % pci_cache_line_size) == 0)
639                 return 0;
640
641         /* Write the correct value. */
642         pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
643         /* Read it back. */
644         pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
645         if (cacheline_size == pci_cache_line_size)
646                 return 0;
647
648         printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
649                "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
650
651         return -EINVAL;
652 }
653 #endif /* !HAVE_ARCH_PCI_MWI */
654
655 /**
656  * pci_set_mwi - enables memory-write-invalidate PCI transaction
657  * @dev: the PCI device for which MWI is enabled
658  *
659  * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
660  * and then calls @pcibios_set_mwi to do the needed arch specific
661  * operations or a generic mwi-prep function.
662  *
663  * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
664  */
665 int
666 pci_set_mwi(struct pci_dev *dev)
667 {
668         int rc;
669         u16 cmd;
670
671 #ifdef HAVE_ARCH_PCI_MWI
672         rc = pcibios_prep_mwi(dev);
673 #else
674         rc = pci_generic_prep_mwi(dev);
675 #endif
676
677         if (rc)
678                 return rc;
679
680         pci_read_config_word(dev, PCI_COMMAND, &cmd);
681         if (! (cmd & PCI_COMMAND_INVALIDATE)) {
682                 DBG("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
683                 cmd |= PCI_COMMAND_INVALIDATE;
684                 pci_write_config_word(dev, PCI_COMMAND, cmd);
685         }
686         
687         return 0;
688 }
689
690 /**
691  * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
692  * @dev: the PCI device to disable
693  *
694  * Disables PCI Memory-Write-Invalidate transaction on the device
695  */
696 void
697 pci_clear_mwi(struct pci_dev *dev)
698 {
699         u16 cmd;
700
701         pci_read_config_word(dev, PCI_COMMAND, &cmd);
702         if (cmd & PCI_COMMAND_INVALIDATE) {
703                 cmd &= ~PCI_COMMAND_INVALIDATE;
704                 pci_write_config_word(dev, PCI_COMMAND, cmd);
705         }
706 }
707
708 #ifndef HAVE_ARCH_PCI_SET_DMA_MASK
709 /*
710  * These can be overridden by arch-specific implementations
711  */
712 int
713 pci_set_dma_mask(struct pci_dev *dev, u64 mask)
714 {
715         if (!pci_dma_supported(dev, mask))
716                 return -EIO;
717
718         dev->dma_mask = mask;
719
720         return 0;
721 }
722     
723 int
724 pci_dac_set_dma_mask(struct pci_dev *dev, u64 mask)
725 {
726         if (!pci_dac_dma_supported(dev, mask))
727                 return -EIO;
728
729         dev->dma_mask = mask;
730
731         return 0;
732 }
733
734 int
735 pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
736 {
737         if (!pci_dma_supported(dev, mask))
738                 return -EIO;
739
740         dev->dev.coherent_dma_mask = mask;
741
742         return 0;
743 }
744 #endif
745      
746 static int __devinit pci_init(void)
747 {
748         struct pci_dev *dev = NULL;
749
750         while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
751                 pci_fixup_device(PCI_FIXUP_FINAL, dev);
752         }
753         return 0;
754 }
755
756 static int __devinit pci_setup(char *str)
757 {
758         while (str) {
759                 char *k = strchr(str, ',');
760                 if (k)
761                         *k++ = 0;
762                 if (*str && (str = pcibios_setup(str)) && *str) {
763                         /* PCI layer options should be handled here */
764                         printk(KERN_ERR "PCI: Unknown option `%s'\n", str);
765                 }
766                 str = k;
767         }
768         return 1;
769 }
770
771 device_initcall(pci_init);
772
773 __setup("pci=", pci_setup);
774
775 #if defined(CONFIG_ISA) || defined(CONFIG_EISA)
776 /* FIXME: Some boxes have multiple ISA bridges! */
777 struct pci_dev *isa_bridge;
778 EXPORT_SYMBOL(isa_bridge);
779 #endif
780
781 EXPORT_SYMBOL(pci_enable_device_bars);
782 EXPORT_SYMBOL(pci_enable_device);
783 EXPORT_SYMBOL(pci_disable_device);
784 EXPORT_SYMBOL(pci_max_busnr);
785 EXPORT_SYMBOL(pci_bus_max_busnr);
786 EXPORT_SYMBOL(pci_find_capability);
787 EXPORT_SYMBOL(pci_bus_find_capability);
788 EXPORT_SYMBOL(pci_release_regions);
789 EXPORT_SYMBOL(pci_request_regions);
790 EXPORT_SYMBOL(pci_release_region);
791 EXPORT_SYMBOL(pci_request_region);
792 EXPORT_SYMBOL(pci_set_master);
793 EXPORT_SYMBOL(pci_set_mwi);
794 EXPORT_SYMBOL(pci_clear_mwi);
795 EXPORT_SYMBOL(pci_set_dma_mask);
796 EXPORT_SYMBOL(pci_dac_set_dma_mask);
797 EXPORT_SYMBOL(pci_set_consistent_dma_mask);
798 EXPORT_SYMBOL(pci_assign_resource);
799 EXPORT_SYMBOL(pci_find_parent_resource);
800
801 EXPORT_SYMBOL(pci_set_power_state);
802 EXPORT_SYMBOL(pci_save_state);
803 EXPORT_SYMBOL(pci_restore_state);
804 EXPORT_SYMBOL(pci_enable_wake);
805
806 /* Quirk info */
807
808 EXPORT_SYMBOL(isa_dma_bridge_buggy);
809 EXPORT_SYMBOL(pci_pci_problems);