ixdp425-pci.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * arch/arm/mach-ixp4xx/ixdp425-pci.c
  3. *
  4. * IXDP425 board-level PCI initialization
  5. *
  6. * Copyright (C) 2002 Intel Corporation.
  7. * Copyright (C) 2003-2004 MontaVista Software, Inc.
  8. *
  9. * Maintainer: Deepak Saxena <dsaxena@plexity.net>
  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 <linux/delay.h>
  21. #include <asm/mach/pci.h>
  22. #include <asm/irq.h>
  23. #include <mach/hardware.h>
  24. #include <asm/mach-types.h>
  25. #define MAX_DEV 4
  26. #define IRQ_LINES 4
  27. /* PCI controller GPIO to IRQ pin mappings */
  28. #define INTA 11
  29. #define INTB 10
  30. #define INTC 9
  31. #define INTD 8
  32. void __init ixdp425_pci_preinit(void)
  33. {
  34. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW);
  35. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW);
  36. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW);
  37. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTD), IRQ_TYPE_LEVEL_LOW);
  38. ixp4xx_pci_preinit();
  39. }
  40. static int __init ixdp425_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  41. {
  42. static int pci_irq_table[IRQ_LINES] = {
  43. IXP4XX_GPIO_IRQ(INTA),
  44. IXP4XX_GPIO_IRQ(INTB),
  45. IXP4XX_GPIO_IRQ(INTC),
  46. IXP4XX_GPIO_IRQ(INTD)
  47. };
  48. if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES)
  49. return pci_irq_table[(slot + pin - 2) % 4];
  50. return -1;
  51. }
  52. struct hw_pci ixdp425_pci __initdata = {
  53. .nr_controllers = 1,
  54. .preinit = ixdp425_pci_preinit,
  55. .swizzle = pci_std_swizzle,
  56. .setup = ixp4xx_setup,
  57. .scan = ixp4xx_scan_bus,
  58. .map_irq = ixdp425_map_irq,
  59. };
  60. int __init ixdp425_pci_init(void)
  61. {
  62. if (machine_is_ixdp425() || machine_is_ixcdp1100() ||
  63. machine_is_ixdp465() || machine_is_kixrp435())
  64. pci_common_init(&ixdp425_pci);
  65. return 0;
  66. }
  67. subsys_initcall(ixdp425_pci_init);