gtwx5715-pci.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 <asm/mach-types.h>
  28. #include <asm/hardware.h>
  29. #include <asm/irq.h>
  30. #include <asm/arch/gtwx5715.h>
  31. #include <asm/mach/pci.h>
  32. extern void ixp4xx_pci_preinit(void);
  33. extern int ixp4xx_setup(int nr, struct pci_sys_data *sys);
  34. extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys);
  35. /*
  36. * The exact GPIO pins and IRQs are defined in arch-ixp4xx/gtwx5715.h
  37. * Slot 0 isn't actually populated with a card connector but
  38. * we initialize it anyway in case a future version has the
  39. * slot populated or someone with good soldering skills has
  40. * some free time.
  41. */
  42. static void gtwx5715_init_gpio(u8 pin, u32 style)
  43. {
  44. gpio_line_config(pin, style | IXP4XX_GPIO_ACTIVE_LOW);
  45. if (style & IXP4XX_GPIO_IN) gpio_line_isr_clear(pin);
  46. }
  47. void __init gtwx5715_pci_preinit(void)
  48. {
  49. gtwx5715_init_gpio(GTWX5715_PCI_SLOT0_INTA_GPIO, IXP4XX_GPIO_IN);
  50. gtwx5715_init_gpio(GTWX5715_PCI_SLOT1_INTA_GPIO, IXP4XX_GPIO_IN);
  51. ixp4xx_pci_preinit();
  52. }
  53. static int __init gtwx5715_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  54. {
  55. int rc;
  56. static int gtwx5715_irqmap
  57. [GTWX5715_PCI_SLOT_COUNT]
  58. [GTWX5715_PCI_INT_PIN_COUNT] = {
  59. {GTWX5715_PCI_SLOT0_INTA_IRQ, GTWX5715_PCI_SLOT0_INTB_IRQ},
  60. {GTWX5715_PCI_SLOT1_INTA_IRQ, GTWX5715_PCI_SLOT1_INTB_IRQ},
  61. };
  62. if (slot >= GTWX5715_PCI_SLOT_COUNT ||
  63. pin >= GTWX5715_PCI_INT_PIN_COUNT) rc = -1;
  64. else
  65. rc = gtwx5715_irqmap[slot][pin-1];
  66. printk("%s: Mapped slot %d pin %d to IRQ %d\n", __FUNCTION__,slot, pin, rc);
  67. return(rc);
  68. }
  69. struct hw_pci gtwx5715_pci __initdata = {
  70. .nr_controllers = 1,
  71. .preinit = gtwx5715_pci_preinit,
  72. .swizzle = pci_std_swizzle,
  73. .setup = ixp4xx_setup,
  74. .scan = ixp4xx_scan_bus,
  75. .map_irq = gtwx5715_map_irq,
  76. };
  77. int __init gtwx5715_pci_init(void)
  78. {
  79. if (machine_is_gtwx5715())
  80. {
  81. pci_common_init(&gtwx5715_pci);
  82. }
  83. return 0;
  84. }
  85. subsys_initcall(gtwx5715_pci_init);