ixdp425-pci.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. void __init ixdp425_pci_preinit(void)
  26. {
  27. set_irq_type(IRQ_IXDP425_PCI_INTA, IRQ_TYPE_LEVEL_LOW);
  28. set_irq_type(IRQ_IXDP425_PCI_INTB, IRQ_TYPE_LEVEL_LOW);
  29. set_irq_type(IRQ_IXDP425_PCI_INTC, IRQ_TYPE_LEVEL_LOW);
  30. set_irq_type(IRQ_IXDP425_PCI_INTD, IRQ_TYPE_LEVEL_LOW);
  31. ixp4xx_pci_preinit();
  32. }
  33. static int __init ixdp425_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  34. {
  35. static int pci_irq_table[IXDP425_PCI_IRQ_LINES] = {
  36. IRQ_IXDP425_PCI_INTA,
  37. IRQ_IXDP425_PCI_INTB,
  38. IRQ_IXDP425_PCI_INTC,
  39. IRQ_IXDP425_PCI_INTD
  40. };
  41. int irq = -1;
  42. if (slot >= 1 && slot <= IXDP425_PCI_MAX_DEV &&
  43. pin >= 1 && pin <= IXDP425_PCI_IRQ_LINES) {
  44. irq = pci_irq_table[(slot + pin - 2) % 4];
  45. }
  46. return irq;
  47. }
  48. struct hw_pci ixdp425_pci __initdata = {
  49. .nr_controllers = 1,
  50. .preinit = ixdp425_pci_preinit,
  51. .swizzle = pci_std_swizzle,
  52. .setup = ixp4xx_setup,
  53. .scan = ixp4xx_scan_bus,
  54. .map_irq = ixdp425_map_irq,
  55. };
  56. int __init ixdp425_pci_init(void)
  57. {
  58. if (machine_is_ixdp425() || machine_is_ixcdp1100() ||
  59. machine_is_ixdp465() || machine_is_kixrp435())
  60. pci_common_init(&ixdp425_pci);
  61. return 0;
  62. }
  63. subsys_initcall(ixdp425_pci_init);