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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-integrator/pci-integrator.c
  3.  *
  4.  *  Copyright (C) 1999 ARM Limited
  5.  *  Copyright (C) 2000 Deep Blue Solutions Ltd
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  *
  21.  *
  22.  *  PCI functions for Integrator
  23.  */
  24. #include <linux/sched.h>
  25. #include <linux/kernel.h>
  26. #include <linux/pci.h>
  27. #include <linux/ptrace.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/init.h>
  30. #include <asm/irq.h>
  31. #include <asm/system.h>
  32. #include <asm/mach/pci.h>
  33. /* 
  34.  * A small note about bridges and interrupts.  The DECchip 21050 (and
  35.  * later) adheres to the PCI-PCI bridge specification.  This says that
  36.  * the interrupts on the other side of a bridge are swizzled in the
  37.  * following manner:
  38.  *
  39.  * Dev    Interrupt   Interrupt 
  40.  *        Pin on      Pin on 
  41.  *        Device      Connector
  42.  *
  43.  *   4    A           A
  44.  *        B           B
  45.  *        C           C
  46.  *        D           D
  47.  * 
  48.  *   5    A           B
  49.  *        B           C
  50.  *        C           D
  51.  *        D           A
  52.  *
  53.  *   6    A           C
  54.  *        B           D
  55.  *        C           A
  56.  *        D           B
  57.  *
  58.  *   7    A           D
  59.  *        B           A
  60.  *        C           B
  61.  *        D           C
  62.  *
  63.  * Where A = pin 1, B = pin 2 and so on and pin=0 = default = A.
  64.  * Thus, each swizzle is ((pin-1) + (device#-4)) % 4
  65.  *
  66.  * The following code swizzles for exactly one bridge.  
  67.  */
  68. static inline int bridge_swizzle(int pin, unsigned int slot) 
  69. {
  70. return (pin + slot) & 3;
  71. }
  72. /*
  73.  * This routine handles multiple bridges.
  74.  */
  75. static u8 __init integrator_swizzle(struct pci_dev *dev, u8 *pinp)
  76. {
  77. int pin = *pinp;
  78. if (pin == 0)
  79. pin = 1;
  80. pin -= 1;
  81. while (dev->bus->self) {
  82. pin = bridge_swizzle(pin, PCI_SLOT(dev->devfn));
  83. /*
  84.  * move up the chain of bridges, swizzling as we go.
  85.  */
  86. dev = dev->bus->self;
  87. }
  88. *pinp = pin + 1;
  89. return PCI_SLOT(dev->devfn);
  90. }
  91. static int irq_tab[4] __initdata = {
  92. IRQ_PCIINT0, IRQ_PCIINT1, IRQ_PCIINT2, IRQ_PCIINT3
  93. };
  94. /*
  95.  * map the specified device/slot/pin to an IRQ.  This works out such
  96.  * that slot 9 pin 1 is INT0, pin 2 is INT1, and slot 10 pin 1 is INT1.
  97.  */
  98. static int __init integrator_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  99. {
  100. int intnr = ((slot - 9) + (pin - 1)) & 3;
  101. return irq_tab[intnr];
  102. }
  103. extern void pci_v3_setup_resources(struct resource **res);
  104. extern void pci_v3_init(void *);
  105. struct hw_pci integrator_pci __initdata = {
  106. setup_resources: pci_v3_setup_resources,
  107. init: pci_v3_init,
  108. mem_offset: 0x40000000,
  109. swizzle: integrator_swizzle,
  110. map_irq: integrator_map_irq,
  111. };