iq31244-pci.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * arch/arm/mach-iop3xx/iq80321-pci.c
  3. *
  4. * PCI support for the Intel IQ80321 reference board
  5. *
  6. * Author: Rory Bolt <rorybolt@pacbell.net>
  7. * Copyright (C) 2002 Rory Bolt
  8. * Copyright (C) 2004 Intel Corp.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/pci.h>
  16. #include <linux/init.h>
  17. #include <linux/string.h>
  18. #include <linux/slab.h>
  19. #include <asm/hardware.h>
  20. #include <asm/irq.h>
  21. #include <asm/mach/pci.h>
  22. #include <asm/mach-types.h>
  23. /*
  24. * The following macro is used to lookup irqs in a standard table
  25. * format for those systems that do not already have PCI
  26. * interrupts properly routed. We assume 1 <= pin <= 4
  27. */
  28. #define PCI_IRQ_TABLE_LOOKUP(minid,maxid) \
  29. ({ int _ctl_ = -1; \
  30. unsigned int _idsel = idsel - minid; \
  31. if (_idsel <= maxid) \
  32. _ctl_ = pci_irq_table[_idsel][pin-1]; \
  33. _ctl_; })
  34. #define INTA IRQ_IQ31244_INTA
  35. #define INTB IRQ_IQ31244_INTB
  36. #define INTC IRQ_IQ31244_INTC
  37. #define INTD IRQ_IQ31244_INTD
  38. #define INTE IRQ_IQ31244_I82546
  39. static inline int __init
  40. iq31244_map_irq(struct pci_dev *dev, u8 idsel, u8 pin)
  41. {
  42. static int pci_irq_table[][4] = {
  43. /*
  44. * PCI IDSEL/INTPIN->INTLINE
  45. * A B C D
  46. */
  47. #ifdef CONFIG_ARCH_EP80219
  48. {INTB, INTB, INTB, INTB}, /* CFlash */
  49. {INTE, INTE, INTE, INTE}, /* 82551 Pro 100 */
  50. {INTD, INTD, INTD, INTD}, /* PCI-X Slot */
  51. {INTC, INTC, INTC, INTC}, /* SATA */
  52. #else
  53. {INTB, INTB, INTB, INTB}, /* CFlash */
  54. {INTC, INTC, INTC, INTC}, /* SATA */
  55. {INTD, INTD, INTD, INTD}, /* PCI-X Slot */
  56. {INTE, INTE, INTE, INTE}, /* 82546 GigE */
  57. #endif // CONFIG_ARCH_EP80219
  58. };
  59. BUG_ON(pin < 1 || pin > 4);
  60. return PCI_IRQ_TABLE_LOOKUP(0, 7);
  61. }
  62. static int iq31244_setup(int nr, struct pci_sys_data *sys)
  63. {
  64. struct resource *res;
  65. if(nr != 0)
  66. return 0;
  67. res = kzalloc(sizeof(struct resource) * 2, GFP_KERNEL);
  68. if (!res)
  69. panic("PCI: unable to alloc resources");
  70. res[0].start = IOP321_PCI_LOWER_IO_VA;
  71. res[0].end = IOP321_PCI_UPPER_IO_VA;
  72. res[0].name = "IQ31244 PCI I/O Space";
  73. res[0].flags = IORESOURCE_IO;
  74. res[1].start = IOP321_PCI_LOWER_MEM_PA;
  75. res[1].end = IOP321_PCI_UPPER_MEM_PA;
  76. res[1].name = "IQ31244 PCI Memory Space";
  77. res[1].flags = IORESOURCE_MEM;
  78. request_resource(&ioport_resource, &res[0]);
  79. request_resource(&iomem_resource, &res[1]);
  80. sys->mem_offset = IOP321_PCI_MEM_OFFSET;
  81. sys->io_offset = IOP321_PCI_IO_OFFSET;
  82. sys->resource[0] = &res[0];
  83. sys->resource[1] = &res[1];
  84. sys->resource[2] = NULL;
  85. return 1;
  86. }
  87. static void iq31244_preinit(void)
  88. {
  89. iop321_init();
  90. }
  91. static struct hw_pci iq31244_pci __initdata = {
  92. .swizzle = pci_std_swizzle,
  93. .nr_controllers = 1,
  94. .setup = iq31244_setup,
  95. .scan = iop321_scan_bus,
  96. .preinit = iq31244_preinit,
  97. .map_irq = iq31244_map_irq
  98. };
  99. static int __init iq31244_pci_init(void)
  100. {
  101. if (machine_is_iq31244())
  102. pci_common_init(&iq31244_pci);
  103. return 0;
  104. }
  105. subsys_initcall(iq31244_pci_init);