miccpt-pci.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * arch/arm/mach-ixp4xx/miccpt-pci.c
  3. *
  4. * MICCPT board-level PCI initialization
  5. *
  6. * Copyright (C) 2002 Intel Corporation.
  7. * Copyright (C) 2003-2004 MontaVista Software, Inc.
  8. * Copyright (C) 2006 OMICRON electronics GmbH
  9. *
  10. * Author: Michael Jochum <michael.jochum@omicron.at>
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. *
  16. */
  17. #include <linux/kernel.h>
  18. #include <linux/pci.h>
  19. #include <linux/init.h>
  20. #include <linux/delay.h>
  21. #include <linux/irq.h>
  22. #include <asm/mach/pci.h>
  23. #include <asm/irq.h>
  24. #include <mach/hardware.h>
  25. #include <asm/mach-types.h>
  26. #define MAX_DEV 4
  27. #define IRQ_LINES 4
  28. /* PCI controller GPIO to IRQ pin mappings */
  29. #define INTA 1
  30. #define INTB 2
  31. #define INTC 3
  32. #define INTD 4
  33. void __init miccpt_pci_preinit(void)
  34. {
  35. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW);
  36. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW);
  37. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW);
  38. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTD), IRQ_TYPE_LEVEL_LOW);
  39. ixp4xx_pci_preinit();
  40. }
  41. static int __init miccpt_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  42. {
  43. static int pci_irq_table[IRQ_LINES] = {
  44. IXP4XX_GPIO_IRQ(INTA),
  45. IXP4XX_GPIO_IRQ(INTB),
  46. IXP4XX_GPIO_IRQ(INTC),
  47. IXP4XX_GPIO_IRQ(INTD)
  48. };
  49. if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES)
  50. return pci_irq_table[(slot + pin - 2) % 4];
  51. return -1;
  52. }
  53. struct hw_pci miccpt_pci __initdata = {
  54. .nr_controllers = 1,
  55. .ops = &ixp4xx_ops,
  56. .preinit = miccpt_pci_preinit,
  57. .setup = ixp4xx_setup,
  58. .map_irq = miccpt_map_irq,
  59. };
  60. int __init miccpt_pci_init(void)
  61. {
  62. if (machine_is_miccpt())
  63. pci_common_init(&miccpt_pci);
  64. return 0;
  65. }
  66. subsys_initcall(miccpt_pci_init);