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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-footbridge/cats-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. /* cats host-specific stuff */
  15. static int irqmap_cats[] __initdata = { IRQ_PCI, IRQ_IN0, IRQ_IN1, IRQ_IN3 };
  16. static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  17. {
  18. if (dev->irq >= 128)
  19. return dev->irq & 0x1f;
  20. if (dev->irq >= 1 && dev->irq <= 4)
  21. return irqmap_cats[dev->irq - 1];
  22. if (dev->irq != 0)
  23. printk("PCI: device %02x:%02x has unknown irq line %xn",
  24.        dev->bus->number, dev->devfn, dev->irq);
  25. return -1;
  26. }
  27. struct hw_pci cats_pci __initdata = {
  28. setup_resources: dc21285_setup_resources,
  29. init: dc21285_init,
  30. mem_offset: DC21285_PCI_MEM,
  31. swizzle: no_swizzle,
  32. map_irq: cats_map_irq,
  33. };