pci_fixup.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  * Globespan IVR board-specific pci fixups.
  5.  *
  6.  * Copyright 2000 MontaVista Software Inc.
  7.  * Author: MontaVista Software, Inc.
  8.  *          ppopov@mvista.com or source@mvista.com
  9.  *
  10.  *  This program is free software; you can redistribute  it and/or modify it
  11.  *  under  the terms of  the GNU General  Public License as published by the
  12.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  13.  *  option) any later version.
  14.  *
  15.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  16.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  17.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  18.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  19.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  20.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  21.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  22.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  23.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  *
  26.  *  You should have received a copy of the  GNU General Public License along
  27.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  28.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  29.  */
  30. #include <linux/config.h>
  31. #ifdef CONFIG_PCI
  32. #include <linux/types.h>
  33. #include <linux/pci.h>
  34. #include <linux/kernel.h>
  35. #include <linux/init.h>
  36. #include <asm/it8172/it8172.h>
  37. #include <asm/it8172/it8172_pci.h>
  38. #include <asm/it8172/it8172_int.h>
  39. void __init board_int_line_fixup(struct pci_dev *dev)     
  40. {
  41. unsigned int slot, func;
  42. unsigned char pin;
  43.         const int internal_func_irqs[7] = {
  44.             IT8172_AC97_IRQ,
  45.             IT8172_DMA_IRQ,
  46.             IT8172_CDMA_IRQ,
  47.             IT8172_USB_IRQ,
  48.             IT8172_BRIDGE_MASTER_IRQ,
  49.             IT8172_IDE_IRQ,
  50.             IT8172_MC68K_IRQ
  51.         };
  52. #ifdef DEBUG
  53. printk("board_int_line_fixup bus %dn", dev->bus->number);
  54. #endif
  55. if (dev->bus->number != 0)
  56. return;
  57. pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
  58. #ifdef DEBUG
  59. pci_read_config_dword(dev, PCI_SUBSYSTEM_VENDOR_ID, &vendor);
  60. #endif
  61. slot = PCI_SLOT(dev->devfn);
  62.         func = PCI_FUNC(dev->devfn);
  63. switch (slot) {
  64.                 case 0x01:
  65.                     /*
  66.                      * Internal device 1 is actually 7 different internal
  67.                      * devices on the IT8172G (a multi-function device).
  68.                      */
  69.                     if (func < 7)
  70.                         dev->irq = internal_func_irqs[func];
  71.                     break;
  72. case 0x11:
  73. switch (pin) {
  74. case 0: /* pin A, hardware bug */
  75. case 1: /* pin A */
  76. dev->irq = IT8172_PCI_INTC_IRQ;
  77. break;
  78. case 2: /* pin B */
  79. dev->irq = IT8172_PCI_INTD_IRQ;
  80. break;
  81. case 3: /* pin C */
  82. dev->irq = IT8172_PCI_INTA_IRQ;
  83. break;
  84. case 4: /* pin D */
  85. dev->irq = IT8172_PCI_INTB_IRQ;
  86. break;
  87. default:
  88. dev->irq = 0xff; 
  89. break;
  90. }
  91. break;
  92. case 0x13:
  93. switch (pin) {
  94. case 0: /* pin A, hardware bug */
  95. case 1: /* pin A */
  96. dev->irq = IT8172_PCI_INTA_IRQ;
  97. break;
  98. case 2: /* pin B */
  99. dev->irq = IT8172_PCI_INTB_IRQ;
  100. break;
  101. case 3: /* pin C */
  102. dev->irq = IT8172_PCI_INTC_IRQ;
  103. break;
  104. case 4: /* pin D */
  105. dev->irq = IT8172_PCI_INTD_IRQ;
  106. break;
  107. default:
  108. dev->irq = 0xff; 
  109. break;
  110. }
  111. break;
  112. default:
  113. return;
  114. }
  115. #ifdef DEBUG
  116. printk("irq fixup: slot %d, vendor %x, int line %d, int number %dn",
  117. slot, vendor, pin, dev->irq);
  118. #endif
  119. pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
  120. }
  121. struct pci_fixup pcibios_fixups[] = {
  122. { PCI_FIXUP_HEADER, PCI_ANY_ID, PCI_ANY_ID, board_int_line_fixup },
  123. { 0 }
  124. };
  125. #endif