coyote-pci.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * arch/arm/mach-ixp4xx/coyote-pci.c
  3. *
  4. * PCI setup routines for ADI Engineering Coyote platform
  5. *
  6. * Copyright (C) 2002 Jungo Software Technologies.
  7. * Copyright (C) 2003 MontaVista Softwrae, Inc.
  8. *
  9. * Maintainer: Deepak Saxena <dsaxena@mvista.com>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. *
  15. */
  16. #include <linux/kernel.h>
  17. #include <linux/pci.h>
  18. #include <linux/init.h>
  19. #include <linux/irq.h>
  20. #include <asm/mach-types.h>
  21. #include <mach/hardware.h>
  22. #include <asm/irq.h>
  23. #include <asm/mach/pci.h>
  24. #define SLOT0_DEVID 14
  25. #define SLOT1_DEVID 15
  26. /* PCI controller GPIO to IRQ pin mappings */
  27. #define SLOT0_INTA 6
  28. #define SLOT1_INTA 11
  29. void __init coyote_pci_preinit(void)
  30. {
  31. irq_set_irq_type(IXP4XX_GPIO_IRQ(SLOT0_INTA), IRQ_TYPE_LEVEL_LOW);
  32. irq_set_irq_type(IXP4XX_GPIO_IRQ(SLOT1_INTA), IRQ_TYPE_LEVEL_LOW);
  33. ixp4xx_pci_preinit();
  34. }
  35. static int __init coyote_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  36. {
  37. if (slot == SLOT0_DEVID)
  38. return IXP4XX_GPIO_IRQ(SLOT0_INTA);
  39. else if (slot == SLOT1_DEVID)
  40. return IXP4XX_GPIO_IRQ(SLOT1_INTA);
  41. else return -1;
  42. }
  43. struct hw_pci coyote_pci __initdata = {
  44. .nr_controllers = 1,
  45. .preinit = coyote_pci_preinit,
  46. .swizzle = pci_std_swizzle,
  47. .setup = ixp4xx_setup,
  48. .scan = ixp4xx_scan_bus,
  49. .map_irq = coyote_map_irq,
  50. };
  51. int __init coyote_pci_init(void)
  52. {
  53. if (machine_is_adi_coyote())
  54. pci_common_init(&coyote_pci);
  55. return 0;
  56. }
  57. subsys_initcall(coyote_pci_init);