nslu2-pci.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * arch/arm/mach-ixp4xx/nslu2-pci.c
  3. *
  4. * NSLU2 board-level PCI initialization
  5. *
  6. * based on ixdp425-pci.c:
  7. * Copyright (C) 2002 Intel Corporation.
  8. * Copyright (C) 2003-2004 MontaVista Software, Inc.
  9. *
  10. * Maintainer: http://www.nslu2-linux.org/
  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/pci.h>
  18. #include <linux/init.h>
  19. #include <asm/mach/pci.h>
  20. #include <asm/mach-types.h>
  21. void __init nslu2_pci_preinit(void)
  22. {
  23. set_irq_type(IRQ_NSLU2_PCI_INTA, IRQT_LOW);
  24. set_irq_type(IRQ_NSLU2_PCI_INTB, IRQT_LOW);
  25. set_irq_type(IRQ_NSLU2_PCI_INTC, IRQT_LOW);
  26. ixp4xx_pci_preinit();
  27. }
  28. static int __init nslu2_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  29. {
  30. static int pci_irq_table[NSLU2_PCI_IRQ_LINES] = {
  31. IRQ_NSLU2_PCI_INTA,
  32. IRQ_NSLU2_PCI_INTB,
  33. IRQ_NSLU2_PCI_INTC,
  34. };
  35. int irq = -1;
  36. if (slot >= 1 && slot <= NSLU2_PCI_MAX_DEV &&
  37. pin >= 1 && pin <= NSLU2_PCI_IRQ_LINES) {
  38. irq = pci_irq_table[(slot + pin - 2) % NSLU2_PCI_IRQ_LINES];
  39. }
  40. return irq;
  41. }
  42. struct hw_pci __initdata nslu2_pci = {
  43. .nr_controllers = 1,
  44. .preinit = nslu2_pci_preinit,
  45. .swizzle = pci_std_swizzle,
  46. .setup = ixp4xx_setup,
  47. .scan = ixp4xx_scan_bus,
  48. .map_irq = nslu2_map_irq,
  49. };
  50. int __init nslu2_pci_init(void) /* monkey see, monkey do */
  51. {
  52. if (machine_is_nslu2())
  53. pci_common_init(&nslu2_pci);
  54. return 0;
  55. }
  56. subsys_initcall(nslu2_pci_init);