setup-irq.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * drivers/pci/setup-irq.c
  3.  *
  4.  * Extruded from code written by
  5.  *      Dave Rusling (david.rusling@reo.mts.dec.com)
  6.  *      David Mosberger (davidm@cs.arizona.edu)
  7.  * David Miller (davem@redhat.com)
  8.  *
  9.  * Support routines for initializing a PCI subsystem.
  10.  */
  11. #include <linux/init.h>
  12. #include <linux/kernel.h>
  13. #include <linux/pci.h>
  14. #include <linux/errno.h>
  15. #include <linux/ioport.h>
  16. #include <linux/cache.h>
  17. #define DEBUG_CONFIG 0
  18. #if DEBUG_CONFIG
  19. # define DBGC(args)     printk args
  20. #else
  21. # define DBGC(args)
  22. #endif
  23. static void __init
  24. pdev_fixup_irq(struct pci_dev *dev,
  25.        u8 (*swizzle)(struct pci_dev *, u8 *),
  26.        int (*map_irq)(struct pci_dev *, u8, u8))
  27. {
  28. u8 pin, slot;
  29. int irq;
  30. /* If this device is not on the primary bus, we need to figure out
  31.    which interrupt pin it will come in on.   We know which slot it
  32.    will come in on 'cos that slot is where the bridge is.   Each
  33.    time the interrupt line passes through a PCI-PCI bridge we must
  34.    apply the swizzle function.  */
  35. pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
  36. /* Cope with 0 and illegal. */
  37. if (pin == 0 || pin > 4)
  38. pin = 1;
  39. /* Follow the chain of bridges, swizzling as we go.  */
  40. slot = (*swizzle)(dev, &pin);
  41. irq = (*map_irq)(dev, slot, pin);
  42. if (irq == -1)
  43. irq = 0;
  44. dev->irq = irq;
  45. DBGC((KERN_ERR "PCI fixup irq: (%s) got %dn", dev->name, dev->irq));
  46. /* Always tell the device, so the driver knows what is
  47.    the real IRQ to use; the device does not use it. */
  48. pcibios_update_irq(dev, irq);
  49. }
  50. void __init
  51. pci_fixup_irqs(u8 (*swizzle)(struct pci_dev *, u8 *),
  52.        int (*map_irq)(struct pci_dev *, u8, u8))
  53. {
  54. struct pci_dev *dev;
  55. pci_for_each_dev(dev) {
  56. pdev_fixup_irq(dev, swizzle, map_irq);
  57. }
  58. }