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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-footbridge/ebsa285-pci.c
  3.  *
  4.  * PCI bios-type initialisation for PCI machines
  5.  *
  6.  * Bits taken from various places.
  7.  */
  8. #include <linux/kernel.h>
  9. #include <linux/pci.h>
  10. #include <linux/init.h>
  11. #include <asm/irq.h>
  12. #include <asm/mach/pci.h>
  13. #include <asm/hardware/dec21285.h>
  14. static int irqmap_ebsa285[] __initdata = { IRQ_IN3, IRQ_IN1, IRQ_IN0, IRQ_PCI };
  15. static u8 __init ebsa285_swizzle(struct pci_dev *dev, u8 *pin)
  16. {
  17. return PCI_SLOT(dev->devfn);
  18. }
  19. static int __init ebsa285_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  20. {
  21. if (dev->vendor == PCI_VENDOR_ID_CONTAQ &&
  22.     dev->device == PCI_DEVICE_ID_CONTAQ_82C693)
  23. switch (PCI_FUNC(dev->devfn)) {
  24. case 1: return 14;
  25. case 2: return 15;
  26. case 3: return 12;
  27. }
  28. return irqmap_ebsa285[(slot + pin) & 3];
  29. }
  30. struct hw_pci ebsa285_pci __initdata = {
  31. setup_resources: dc21285_setup_resources,
  32. init: dc21285_init,
  33. mem_offset: DC21285_PCI_MEM,
  34. swizzle: ebsa285_swizzle,
  35. map_irq: ebsa285_map_irq,
  36. };