coyote-pci.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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(const 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. .ops = &ixp4xx_ops,
  46. .preinit = coyote_pci_preinit,
  47. .setup = ixp4xx_setup,
  48. .map_irq = coyote_map_irq,
  49. };
  50. int __init coyote_pci_init(void)
  51. {
  52. if (machine_is_adi_coyote())
  53. pci_common_init(&coyote_pci);
  54. return 0;
  55. }
  56. subsys_initcall(coyote_pci_init);