[PATCH] PCI: don't enable device if already enabled
[linux-2.6/verdex.git] / drivers / pci / pci.c
blobaa480370ef1019b7ca435870aaa3904d757310f9
1 /*
2 * $Id: pci.c,v 1.91 1999/01/21 13:34:01 davem Exp $
4 * PCI Bus Services, see include/linux/pci.h for further explanation.
6 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
7 * David Mosberger-Tang
9 * Copyright 1997 -- 2000 Martin Mares <mj@ucw.cz>
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>
18 #include <linux/string.h>
19 #include <asm/dma.h> /* isa_dma_bridge_buggy */
20 #include "pci.h"
23 /**
24 * pci_bus_max_busnr - returns maximum PCI bus number of given bus' children
25 * @bus: pointer to PCI bus structure to search
27 * Given a PCI bus, returns the highest PCI bus number present in the set
28 * including the given PCI bus and its list of child PCI buses.
30 unsigned char __devinit
31 pci_bus_max_busnr(struct pci_bus* bus)
33 struct list_head *tmp;
34 unsigned char max, n;
36 max = bus->subordinate;
37 list_for_each(tmp, &bus->children) {
38 n = pci_bus_max_busnr(pci_bus_b(tmp));
39 if(n > max)
40 max = n;
42 return max;
44 EXPORT_SYMBOL_GPL(pci_bus_max_busnr);
46 #if 0
47 /**
48 * pci_max_busnr - returns maximum PCI bus number
50 * Returns the highest PCI bus number present in the system global list of
51 * PCI buses.
53 unsigned char __devinit
54 pci_max_busnr(void)
56 struct pci_bus *bus = NULL;
57 unsigned char max, n;
59 max = 0;
60 while ((bus = pci_find_next_bus(bus)) != NULL) {
61 n = pci_bus_max_busnr(bus);
62 if(n > max)
63 max = n;
65 return max;
68 #endif /* 0 */
70 static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap)
72 u8 id;
73 int ttl = 48;
75 while (ttl--) {
76 pci_bus_read_config_byte(bus, devfn, pos, &pos);
77 if (pos < 0x40)
78 break;
79 pos &= ~3;
80 pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
81 &id);
82 if (id == 0xff)
83 break;
84 if (id == cap)
85 return pos;
86 pos += PCI_CAP_LIST_NEXT;
88 return 0;
91 int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
93 return __pci_find_next_cap(dev->bus, dev->devfn,
94 pos + PCI_CAP_LIST_NEXT, cap);
96 EXPORT_SYMBOL_GPL(pci_find_next_capability);
98 static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap)
100 u16 status;
101 u8 pos;
103 pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
104 if (!(status & PCI_STATUS_CAP_LIST))
105 return 0;
107 switch (hdr_type) {
108 case PCI_HEADER_TYPE_NORMAL:
109 case PCI_HEADER_TYPE_BRIDGE:
110 pos = PCI_CAPABILITY_LIST;
111 break;
112 case PCI_HEADER_TYPE_CARDBUS:
113 pos = PCI_CB_CAPABILITY_LIST;
114 break;
115 default:
116 return 0;
118 return __pci_find_next_cap(bus, devfn, pos, cap);
122 * pci_find_capability - query for devices' capabilities
123 * @dev: PCI device to query
124 * @cap: capability code
126 * Tell if a device supports a given PCI capability.
127 * Returns the address of the requested capability structure within the
128 * device's PCI configuration space or 0 in case the device does not
129 * support it. Possible values for @cap:
131 * %PCI_CAP_ID_PM Power Management
132 * %PCI_CAP_ID_AGP Accelerated Graphics Port
133 * %PCI_CAP_ID_VPD Vital Product Data
134 * %PCI_CAP_ID_SLOTID Slot Identification
135 * %PCI_CAP_ID_MSI Message Signalled Interrupts
136 * %PCI_CAP_ID_CHSWP CompactPCI HotSwap
137 * %PCI_CAP_ID_PCIX PCI-X
138 * %PCI_CAP_ID_EXP PCI Express
140 int pci_find_capability(struct pci_dev *dev, int cap)
142 return __pci_bus_find_cap(dev->bus, dev->devfn, dev->hdr_type, cap);
146 * pci_bus_find_capability - query for devices' capabilities
147 * @bus: the PCI bus to query
148 * @devfn: PCI device to query
149 * @cap: capability code
151 * Like pci_find_capability() but works for pci devices that do not have a
152 * pci_dev structure set up yet.
154 * Returns the address of the requested capability structure within the
155 * device's PCI configuration space or 0 in case the device does not
156 * support it.
158 int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap)
160 u8 hdr_type;
162 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type);
164 return __pci_bus_find_cap(bus, devfn, hdr_type & 0x7f, cap);
168 * pci_find_ext_capability - Find an extended capability
169 * @dev: PCI device to query
170 * @cap: capability code
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:
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
181 int pci_find_ext_capability(struct pci_dev *dev, int cap)
183 u32 header;
184 int ttl = 480; /* 3840 bytes, minimum 8 bytes per capability */
185 int pos = 0x100;
187 if (dev->cfg_size <= 256)
188 return 0;
190 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
191 return 0;
194 * If we have no capabilities, this is indicated by cap ID,
195 * cap version and next pointer all being 0.
197 if (header == 0)
198 return 0;
200 while (ttl-- > 0) {
201 if (PCI_EXT_CAP_ID(header) == cap)
202 return pos;
204 pos = PCI_EXT_CAP_NEXT(header);
205 if (pos < 0x100)
206 break;
208 if (pci_read_config_dword(dev, pos, &header) != PCIBIOS_SUCCESSFUL)
209 break;
212 return 0;
214 EXPORT_SYMBOL_GPL(pci_find_ext_capability);
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
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.
225 struct resource *
226 pci_find_parent_resource(const struct pci_dev *dev, struct resource *res)
228 const struct pci_bus *bus = dev->bus;
229 int i;
230 struct resource *best = NULL;
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 */
245 return best;
249 * pci_restore_bars - restore a devices BAR values (e.g. after wake-up)
250 * @dev: PCI device to have its BARs restored
252 * Restore the BAR values for a given device, so as to make it
253 * accessible by its driver.
255 void
256 pci_restore_bars(struct pci_dev *dev)
258 int i, numres;
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;
275 for (i = 0; i < numres; i ++)
276 pci_update_resource(dev, &dev->resource[i], i);
279 int (*platform_pci_set_power_state)(struct pci_dev *dev, pci_power_t t);
282 * 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
286 * Transition a device to a new power state, using the Power Management
287 * Capabilities in the device's config space.
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.
296 pci_set_power_state(struct pci_dev *dev, pci_power_t state)
298 int pm, need_restore = 0;
299 u16 pmcsr, pmc;
301 /* bound the state we're entering */
302 if (state > PCI_D3hot)
303 state = PCI_D3hot;
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
309 if (state != PCI_D0 && dev->current_state > state) {
310 printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n",
311 __FUNCTION__, pci_name(dev), state, dev->current_state);
312 return -EINVAL;
313 } else if (dev->current_state == state)
314 return 0; /* we're already there */
316 /* find PCI PM capability in list */
317 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
319 /* abort if the device doesn't support PM capabilities */
320 if (!pm)
321 return -EIO;
323 pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc);
324 if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
325 printk(KERN_DEBUG
326 "PCI: %s has unsupported PM cap regs version (%u)\n",
327 pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
328 return -EIO;
331 /* check if this device supports the desired state */
332 if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
333 return -EIO;
334 else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
335 return -EIO;
337 pci_read_config_word(dev, pm + PCI_PM_CTRL, &pmcsr);
339 /* If we're (effectively) in D3, force entire word to 0.
340 * This doesn't affect PME_Status, disables PME_En, and
341 * sets PowerState to 0.
343 switch (dev->current_state) {
344 case PCI_D0:
345 case PCI_D1:
346 case PCI_D2:
347 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
348 pmcsr |= state;
349 break;
350 case PCI_UNKNOWN: /* Boot-up */
351 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
352 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
353 need_restore = 1;
354 /* Fall-through: force to D0 */
355 default:
356 pmcsr = 0;
357 break;
360 /* enter specified state */
361 pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
363 /* Mandatory power management transition delays */
364 /* see PCI PM 1.1 5.6.1 table 18 */
365 if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
366 msleep(10);
367 else if (state == PCI_D2 || dev->current_state == PCI_D2)
368 udelay(200);
371 * Give firmware a chance to be called, such as ACPI _PRx, _PSx
372 * Firmware method after natice method ?
374 if (platform_pci_set_power_state)
375 platform_pci_set_power_state(dev, state);
377 dev->current_state = state;
379 /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
380 * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
381 * from D3hot to D0 _may_ perform an internal reset, thereby
382 * going to "D0 Uninitialized" rather than "D0 Initialized".
383 * For example, at least some versions of the 3c905B and the
384 * 3c556B exhibit this behaviour.
386 * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
387 * devices in a D3hot state at boot. Consequently, we need to
388 * restore at least the BARs so that the device will be
389 * accessible to its driver.
391 if (need_restore)
392 pci_restore_bars(dev);
394 return 0;
397 int (*platform_pci_choose_state)(struct pci_dev *dev, pm_message_t state);
400 * pci_choose_state - Choose the power state of a PCI device
401 * @dev: PCI device to be suspended
402 * @state: target sleep state for the whole system. This is the value
403 * that is passed to suspend() function.
405 * Returns PCI power state suitable for given device and given system
406 * message.
409 pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
411 int ret;
413 if (!pci_find_capability(dev, PCI_CAP_ID_PM))
414 return PCI_D0;
416 if (platform_pci_choose_state) {
417 ret = platform_pci_choose_state(dev, state);
418 if (ret >= 0)
419 state.event = ret;
422 switch (state.event) {
423 case PM_EVENT_ON:
424 return PCI_D0;
425 case PM_EVENT_FREEZE:
426 case PM_EVENT_SUSPEND:
427 return PCI_D3hot;
428 default:
429 printk("They asked me for state %d\n", state.event);
430 BUG();
432 return PCI_D0;
435 EXPORT_SYMBOL(pci_choose_state);
438 * pci_save_state - save the PCI configuration space of a device before suspending
439 * @dev: - PCI device that we're dealing with
442 pci_save_state(struct pci_dev *dev)
444 int i;
445 /* XXX: 100% dword access ok here? */
446 for (i = 0; i < 16; i++)
447 pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]);
448 if ((i = pci_save_msi_state(dev)) != 0)
449 return i;
450 if ((i = pci_save_msix_state(dev)) != 0)
451 return i;
452 return 0;
455 /**
456 * pci_restore_state - Restore the saved state of a PCI device
457 * @dev: - PCI device that we're dealing with
459 int
460 pci_restore_state(struct pci_dev *dev)
462 int i;
463 int val;
466 * The Base Address register should be programmed before the command
467 * register(s)
469 for (i = 15; i >= 0; i--) {
470 pci_read_config_dword(dev, i * 4, &val);
471 if (val != dev->saved_config_space[i]) {
472 printk(KERN_DEBUG "PM: Writing back config space on "
473 "device %s at offset %x (was %x, writing %x)\n",
474 pci_name(dev), i,
475 val, (int)dev->saved_config_space[i]);
476 pci_write_config_dword(dev,i * 4,
477 dev->saved_config_space[i]);
480 pci_restore_msi_state(dev);
481 pci_restore_msix_state(dev);
482 return 0;
486 * pci_enable_device_bars - Initialize some of a device for use
487 * @dev: PCI device to be initialized
488 * @bars: bitmask of BAR's that must be configured
490 * Initialize device before it's used by a driver. Ask low-level code
491 * to enable selected I/O and memory resources. Wake up the device if it
492 * was suspended. Beware, this function can fail.
496 pci_enable_device_bars(struct pci_dev *dev, int bars)
498 int err;
500 err = pci_set_power_state(dev, PCI_D0);
501 if (err < 0 && err != -EIO)
502 return err;
503 err = pcibios_enable_device(dev, bars);
504 if (err < 0)
505 return err;
506 return 0;
510 * pci_enable_device - Initialize device before it's used by a driver.
511 * @dev: PCI device to be initialized
513 * Initialize device before it's used by a driver. Ask low-level code
514 * to enable I/O and memory. Wake up the device if it was suspended.
515 * Beware, this function can fail.
518 pci_enable_device(struct pci_dev *dev)
520 int err;
522 if (dev->is_enabled)
523 return 0;
525 err = pci_enable_device_bars(dev, (1 << PCI_NUM_RESOURCES) - 1);
526 if (err)
527 return err;
528 pci_fixup_device(pci_fixup_enable, dev);
529 dev->is_enabled = 1;
530 return 0;
534 * pcibios_disable_device - disable arch specific PCI resources for device dev
535 * @dev: the PCI device to disable
537 * Disables architecture specific PCI resources for the device. This
538 * is the default implementation. Architecture implementations can
539 * override this.
541 void __attribute__ ((weak)) pcibios_disable_device (struct pci_dev *dev) {}
544 * pci_disable_device - Disable PCI device after use
545 * @dev: PCI device to be disabled
547 * Signal to the system that the PCI device is not in use by the system
548 * anymore. This only involves disabling PCI bus-mastering, if active.
550 void
551 pci_disable_device(struct pci_dev *dev)
553 u16 pci_command;
555 pci_read_config_word(dev, PCI_COMMAND, &pci_command);
556 if (pci_command & PCI_COMMAND_MASTER) {
557 pci_command &= ~PCI_COMMAND_MASTER;
558 pci_write_config_word(dev, PCI_COMMAND, pci_command);
560 dev->is_busmaster = 0;
562 pcibios_disable_device(dev);
563 dev->is_enabled = 0;
567 * pci_enable_wake - enable device to generate PME# when suspended
568 * @dev: - PCI device to operate on
569 * @state: - Current state of device.
570 * @enable: - Flag to enable or disable generation
572 * Set the bits in the device's PM Capabilities to generate PME# when
573 * the system is suspended.
575 * -EIO is returned if device doesn't have PM Capabilities.
576 * -EINVAL is returned if device supports it, but can't generate wake events.
577 * 0 if operation is successful.
580 int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
582 int pm;
583 u16 value;
585 /* find PCI PM capability in list */
586 pm = pci_find_capability(dev, PCI_CAP_ID_PM);
588 /* If device doesn't support PM Capabilities, but request is to disable
589 * wake events, it's a nop; otherwise fail */
590 if (!pm)
591 return enable ? -EIO : 0;
593 /* Check device's ability to generate PME# */
594 pci_read_config_word(dev,pm+PCI_PM_PMC,&value);
596 value &= PCI_PM_CAP_PME_MASK;
597 value >>= ffs(PCI_PM_CAP_PME_MASK) - 1; /* First bit of mask */
599 /* Check if it can generate PME# from requested state. */
600 if (!value || !(value & (1 << state)))
601 return enable ? -EINVAL : 0;
603 pci_read_config_word(dev, pm + PCI_PM_CTRL, &value);
605 /* Clear PME_Status by writing 1 to it and enable PME# */
606 value |= PCI_PM_CTRL_PME_STATUS | PCI_PM_CTRL_PME_ENABLE;
608 if (!enable)
609 value &= ~PCI_PM_CTRL_PME_ENABLE;
611 pci_write_config_word(dev, pm + PCI_PM_CTRL, value);
613 return 0;
617 pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
619 u8 pin;
621 pin = dev->pin;
622 if (!pin)
623 return -1;
624 pin--;
625 while (dev->bus->self) {
626 pin = (pin + PCI_SLOT(dev->devfn)) % 4;
627 dev = dev->bus->self;
629 *bridge = dev;
630 return pin;
634 * pci_release_region - Release a PCI bar
635 * @pdev: PCI device whose resources were previously reserved by pci_request_region
636 * @bar: BAR to release
638 * Releases the PCI I/O and memory resources previously reserved by a
639 * successful call to pci_request_region. Call this function only
640 * after all use of the PCI regions has ceased.
642 void pci_release_region(struct pci_dev *pdev, int bar)
644 if (pci_resource_len(pdev, bar) == 0)
645 return;
646 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
647 release_region(pci_resource_start(pdev, bar),
648 pci_resource_len(pdev, bar));
649 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
650 release_mem_region(pci_resource_start(pdev, bar),
651 pci_resource_len(pdev, bar));
655 * pci_request_region - Reserved PCI I/O and memory resource
656 * @pdev: PCI device whose resources are to be reserved
657 * @bar: BAR to be reserved
658 * @res_name: Name to be associated with resource.
660 * Mark the PCI region associated with PCI device @pdev BR @bar as
661 * being reserved by owner @res_name. Do not access any
662 * address inside the PCI regions unless this call returns
663 * successfully.
665 * Returns 0 on success, or %EBUSY on error. A warning
666 * message is also printed on failure.
668 int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
670 if (pci_resource_len(pdev, bar) == 0)
671 return 0;
673 if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) {
674 if (!request_region(pci_resource_start(pdev, bar),
675 pci_resource_len(pdev, bar), res_name))
676 goto err_out;
678 else if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
679 if (!request_mem_region(pci_resource_start(pdev, bar),
680 pci_resource_len(pdev, bar), res_name))
681 goto err_out;
684 return 0;
686 err_out:
687 printk (KERN_WARNING "PCI: Unable to reserve %s region #%d:%lx@%lx for device %s\n",
688 pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
689 bar + 1, /* PCI BAR # */
690 pci_resource_len(pdev, bar), pci_resource_start(pdev, bar),
691 pci_name(pdev));
692 return -EBUSY;
697 * pci_release_regions - Release reserved PCI I/O and memory resources
698 * @pdev: PCI device whose resources were previously reserved by pci_request_regions
700 * Releases all PCI I/O and memory resources previously reserved by a
701 * successful call to pci_request_regions. Call this function only
702 * after all use of the PCI regions has ceased.
705 void pci_release_regions(struct pci_dev *pdev)
707 int i;
709 for (i = 0; i < 6; i++)
710 pci_release_region(pdev, i);
714 * pci_request_regions - Reserved PCI I/O and memory resources
715 * @pdev: PCI device whose resources are to be reserved
716 * @res_name: Name to be associated with resource.
718 * Mark all PCI regions associated with PCI device @pdev as
719 * being reserved by owner @res_name. Do not access any
720 * address inside the PCI regions unless this call returns
721 * successfully.
723 * Returns 0 on success, or %EBUSY on error. A warning
724 * message is also printed on failure.
726 int pci_request_regions(struct pci_dev *pdev, const char *res_name)
728 int i;
730 for (i = 0; i < 6; i++)
731 if(pci_request_region(pdev, i, res_name))
732 goto err_out;
733 return 0;
735 err_out:
736 while(--i >= 0)
737 pci_release_region(pdev, i);
739 return -EBUSY;
743 * pci_set_master - enables bus-mastering for device dev
744 * @dev: the PCI device to enable
746 * Enables bus-mastering on the device and calls pcibios_set_master()
747 * to do the needed arch specific settings.
749 void
750 pci_set_master(struct pci_dev *dev)
752 u16 cmd;
754 pci_read_config_word(dev, PCI_COMMAND, &cmd);
755 if (! (cmd & PCI_COMMAND_MASTER)) {
756 pr_debug("PCI: Enabling bus mastering for device %s\n", pci_name(dev));
757 cmd |= PCI_COMMAND_MASTER;
758 pci_write_config_word(dev, PCI_COMMAND, cmd);
760 dev->is_busmaster = 1;
761 pcibios_set_master(dev);
764 #ifndef HAVE_ARCH_PCI_MWI
765 /* This can be overridden by arch code. */
766 u8 pci_cache_line_size = L1_CACHE_BYTES >> 2;
769 * pci_generic_prep_mwi - helper function for pci_set_mwi
770 * @dev: the PCI device for which MWI is enabled
772 * Helper function for generic implementation of pcibios_prep_mwi
773 * function. Originally copied from drivers/net/acenic.c.
774 * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
776 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
778 static int
779 pci_generic_prep_mwi(struct pci_dev *dev)
781 u8 cacheline_size;
783 if (!pci_cache_line_size)
784 return -EINVAL; /* The system doesn't support MWI. */
786 /* Validate current setting: the PCI_CACHE_LINE_SIZE must be
787 equal to or multiple of the right value. */
788 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
789 if (cacheline_size >= pci_cache_line_size &&
790 (cacheline_size % pci_cache_line_size) == 0)
791 return 0;
793 /* Write the correct value. */
794 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cache_line_size);
795 /* Read it back. */
796 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &cacheline_size);
797 if (cacheline_size == pci_cache_line_size)
798 return 0;
800 printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
801 "by device %s\n", pci_cache_line_size << 2, pci_name(dev));
803 return -EINVAL;
805 #endif /* !HAVE_ARCH_PCI_MWI */
808 * pci_set_mwi - enables memory-write-invalidate PCI transaction
809 * @dev: the PCI device for which MWI is enabled
811 * Enables the Memory-Write-Invalidate transaction in %PCI_COMMAND,
812 * and then calls @pcibios_set_mwi to do the needed arch specific
813 * operations or a generic mwi-prep function.
815 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
818 pci_set_mwi(struct pci_dev *dev)
820 int rc;
821 u16 cmd;
823 #ifdef HAVE_ARCH_PCI_MWI
824 rc = pcibios_prep_mwi(dev);
825 #else
826 rc = pci_generic_prep_mwi(dev);
827 #endif
829 if (rc)
830 return rc;
832 pci_read_config_word(dev, PCI_COMMAND, &cmd);
833 if (! (cmd & PCI_COMMAND_INVALIDATE)) {
834 pr_debug("PCI: Enabling Mem-Wr-Inval for device %s\n", pci_name(dev));
835 cmd |= PCI_COMMAND_INVALIDATE;
836 pci_write_config_word(dev, PCI_COMMAND, cmd);
839 return 0;
843 * pci_clear_mwi - disables Memory-Write-Invalidate for device dev
844 * @dev: the PCI device to disable
846 * Disables PCI Memory-Write-Invalidate transaction on the device
848 void
849 pci_clear_mwi(struct pci_dev *dev)
851 u16 cmd;
853 pci_read_config_word(dev, PCI_COMMAND, &cmd);
854 if (cmd & PCI_COMMAND_INVALIDATE) {
855 cmd &= ~PCI_COMMAND_INVALIDATE;
856 pci_write_config_word(dev, PCI_COMMAND, cmd);
861 * pci_intx - enables/disables PCI INTx for device dev
862 * @pdev: the PCI device to operate on
863 * @enable: boolean: whether to enable or disable PCI INTx
865 * Enables/disables PCI INTx for device dev
867 void
868 pci_intx(struct pci_dev *pdev, int enable)
870 u16 pci_command, new;
872 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
874 if (enable) {
875 new = pci_command & ~PCI_COMMAND_INTX_DISABLE;
876 } else {
877 new = pci_command | PCI_COMMAND_INTX_DISABLE;
880 if (new != pci_command) {
881 pci_write_config_word(pdev, PCI_COMMAND, new);
885 #ifndef HAVE_ARCH_PCI_SET_DMA_MASK
887 * These can be overridden by arch-specific implementations
890 pci_set_dma_mask(struct pci_dev *dev, u64 mask)
892 if (!pci_dma_supported(dev, mask))
893 return -EIO;
895 dev->dma_mask = mask;
897 return 0;
901 pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
903 if (!pci_dma_supported(dev, mask))
904 return -EIO;
906 dev->dev.coherent_dma_mask = mask;
908 return 0;
910 #endif
912 static int __devinit pci_init(void)
914 struct pci_dev *dev = NULL;
916 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
917 pci_fixup_device(pci_fixup_final, dev);
919 return 0;
922 static int __devinit pci_setup(char *str)
924 while (str) {
925 char *k = strchr(str, ',');
926 if (k)
927 *k++ = 0;
928 if (*str && (str = pcibios_setup(str)) && *str) {
929 if (!strcmp(str, "nomsi")) {
930 pci_no_msi();
931 } else {
932 printk(KERN_ERR "PCI: Unknown option `%s'\n",
933 str);
936 str = k;
938 return 1;
941 device_initcall(pci_init);
943 __setup("pci=", pci_setup);
945 #if defined(CONFIG_ISA) || defined(CONFIG_EISA)
946 /* FIXME: Some boxes have multiple ISA bridges! */
947 struct pci_dev *isa_bridge;
948 EXPORT_SYMBOL(isa_bridge);
949 #endif
951 EXPORT_SYMBOL_GPL(pci_restore_bars);
952 EXPORT_SYMBOL(pci_enable_device_bars);
953 EXPORT_SYMBOL(pci_enable_device);
954 EXPORT_SYMBOL(pci_disable_device);
955 EXPORT_SYMBOL(pci_find_capability);
956 EXPORT_SYMBOL(pci_bus_find_capability);
957 EXPORT_SYMBOL(pci_release_regions);
958 EXPORT_SYMBOL(pci_request_regions);
959 EXPORT_SYMBOL(pci_release_region);
960 EXPORT_SYMBOL(pci_request_region);
961 EXPORT_SYMBOL(pci_set_master);
962 EXPORT_SYMBOL(pci_set_mwi);
963 EXPORT_SYMBOL(pci_clear_mwi);
964 EXPORT_SYMBOL_GPL(pci_intx);
965 EXPORT_SYMBOL(pci_set_dma_mask);
966 EXPORT_SYMBOL(pci_set_consistent_dma_mask);
967 EXPORT_SYMBOL(pci_assign_resource);
968 EXPORT_SYMBOL(pci_find_parent_resource);
970 EXPORT_SYMBOL(pci_set_power_state);
971 EXPORT_SYMBOL(pci_save_state);
972 EXPORT_SYMBOL(pci_restore_state);
973 EXPORT_SYMBOL(pci_enable_wake);
975 /* Quirk info */
977 EXPORT_SYMBOL(isa_dma_bridge_buggy);
978 EXPORT_SYMBOL(pci_pci_problems);