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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BRIEF MODULE DESCRIPTION
  3.  * Board specific pci fixups.
  4.  *
  5.  * Copyright 2001,2002 MontaVista Software Inc.
  6.  * Author: MontaVista Software, Inc.
  7.  *          ppopov@mvista.com or source@mvista.com
  8.  *
  9.  *  This program is free software; you can redistribute  it and/or modify it
  10.  *  under  the terms of  the GNU General  Public License as published by the
  11.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  12.  *  option) any later version.
  13.  *
  14.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  15.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  16.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  17.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  18.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  20.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  21.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  22.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24.  *
  25.  *  You should have received a copy of the  GNU General Public License along
  26.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  27.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  28.  */
  29. #include <linux/config.h>
  30. #ifdef CONFIG_PCI
  31. #include <linux/types.h>
  32. #include <linux/pci.h>
  33. #include <linux/kernel.h>
  34. #include <linux/init.h>
  35. #include <asm/au1000.h>
  36. #include <asm/pb1500.h>
  37. #undef DEBUG
  38. #ifdef  DEBUG
  39. #define DBG(x...) printk(x)
  40. #else
  41. #define DBG(x...)
  42. #endif
  43. static void fixup_resource(int r_num, struct pci_dev *dev) ;
  44. static unsigned long virt_io_addr;
  45. void __init pcibios_fixup_resources(struct pci_dev *dev)
  46. {
  47. /* will need to fixup IO resources */
  48. }
  49. void __init pcibios_fixup(void)
  50. {
  51. int i;
  52. struct pci_dev *dev;
  53. virt_io_addr = (unsigned long)ioremap(Au1500_PCI_IO_START,
  54. Au1500_PCI_IO_END - Au1500_PCI_IO_START + 1);
  55. if (!virt_io_addr) {
  56. printk(KERN_ERR "Unable to ioremap pci spacen");
  57. return;
  58. }
  59. pci_for_each_dev(dev) {
  60. for (i=0; i < DEVICE_COUNT_RESOURCE; i++) {
  61. if (dev->resource[i].start) {
  62. fixup_resource(i, dev);
  63. }
  64. }
  65. }
  66. }
  67. void __init pcibios_fixup_irqs(void)
  68. {
  69. unsigned int slot, func;
  70. unsigned char pin;
  71. struct pci_dev *dev;
  72. pci_for_each_dev(dev) {
  73. if (dev->bus->number != 0)
  74. return;
  75. dev->irq = 0xff;
  76. slot = PCI_SLOT(dev->devfn);
  77. switch (slot) {
  78. case 12:
  79. case 13:
  80. dev->irq = AU1000_PCI_INTA;
  81. break;
  82. }
  83. pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
  84. DBG("slot %d irq %dn", slot, dev->irq);
  85. }
  86. }
  87. unsigned int pcibios_assign_all_busses(void)
  88. {
  89. return 0;
  90. }
  91. static void fixup_resource(int r_num, struct pci_dev *dev)
  92. {
  93. unsigned long start, size, new_start;
  94. if (dev->resource[r_num].flags & IORESOURCE_IO) {
  95. start = dev->resource[r_num].start;
  96. size = dev->resource[r_num].end - start;
  97. new_start = virt_io_addr + (start - Au1500_PCI_IO_START);
  98. dev->resource[r_num].start = new_start;
  99. dev->resource[r_num].end = new_start + size;
  100. }
  101. }
  102. #endif