gtwx5715-pci.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * arch/arm/mach-ixp4xx/gtwx5715-pci.c
  3. *
  4. * Gemtek GTWX5715 (Linksys WRV54G) board setup
  5. *
  6. * Copyright (C) 2004 George T. Joseph
  7. * Derived from Coyote
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. #include <linux/pci.h>
  25. #include <linux/init.h>
  26. #include <linux/delay.h>
  27. #include <linux/irq.h>
  28. #include <asm/mach-types.h>
  29. #include <mach/hardware.h>
  30. #include <mach/gtwx5715.h>
  31. #include <asm/mach/pci.h>
  32. /*
  33. * The exact GPIO pins and IRQs are defined in arch-ixp4xx/gtwx5715.h
  34. * Slot 0 isn't actually populated with a card connector but
  35. * we initialize it anyway in case a future version has the
  36. * slot populated or someone with good soldering skills has
  37. * some free time.
  38. */
  39. void __init gtwx5715_pci_preinit(void)
  40. {
  41. set_irq_type(GTWX5715_PCI_SLOT0_INTA_IRQ, IRQ_TYPE_LEVEL_LOW);
  42. set_irq_type(GTWX5715_PCI_SLOT0_INTB_IRQ, IRQ_TYPE_LEVEL_LOW);
  43. set_irq_type(GTWX5715_PCI_SLOT1_INTA_IRQ, IRQ_TYPE_LEVEL_LOW);
  44. set_irq_type(GTWX5715_PCI_SLOT1_INTB_IRQ, IRQ_TYPE_LEVEL_LOW);
  45. ixp4xx_pci_preinit();
  46. }
  47. static int __init gtwx5715_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  48. {
  49. int rc;
  50. static int gtwx5715_irqmap
  51. [GTWX5715_PCI_SLOT_COUNT]
  52. [GTWX5715_PCI_INT_PIN_COUNT] = {
  53. {GTWX5715_PCI_SLOT0_INTA_IRQ, GTWX5715_PCI_SLOT0_INTB_IRQ},
  54. {GTWX5715_PCI_SLOT1_INTA_IRQ, GTWX5715_PCI_SLOT1_INTB_IRQ},
  55. };
  56. if (slot >= GTWX5715_PCI_SLOT_COUNT ||
  57. pin >= GTWX5715_PCI_INT_PIN_COUNT) rc = -1;
  58. else
  59. rc = gtwx5715_irqmap[slot][pin-1];
  60. printk("%s: Mapped slot %d pin %d to IRQ %d\n", __func__, slot, pin, rc);
  61. return(rc);
  62. }
  63. struct hw_pci gtwx5715_pci __initdata = {
  64. .nr_controllers = 1,
  65. .preinit = gtwx5715_pci_preinit,
  66. .swizzle = pci_std_swizzle,
  67. .setup = ixp4xx_setup,
  68. .scan = ixp4xx_scan_bus,
  69. .map_irq = gtwx5715_map_irq,
  70. };
  71. int __init gtwx5715_pci_init(void)
  72. {
  73. if (machine_is_gtwx5715())
  74. {
  75. pci_common_init(&gtwx5715_pci);
  76. }
  77. return 0;
  78. }
  79. subsys_initcall(gtwx5715_pci_init);