coyote-pci.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * arch/arch/mach-ixp4xx/coyote-pci.c
  3. *
  4. * PCI setup routines for ADI Engineering Coyote platform
  5. *
  6. * Copyright (C) 2002 Jungo Software Technologies.
  7. * Copyright (C) 2003 MontaVista Softwrae, Inc.
  8. *
  9. * Maintainer: Deepak Saxena <dsaxena@mvista.com>
  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 <asm/mach-types.h>
  20. #include <asm/hardware.h>
  21. #include <asm/irq.h>
  22. #include <asm/mach/pci.h>
  23. extern void ixp4xx_pci_preinit(void);
  24. extern int ixp4xx_setup(int nr, struct pci_sys_data *sys);
  25. extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys);
  26. void __init coyote_pci_preinit(void)
  27. {
  28. set_irq_type(IRQ_COYOTE_PCI_SLOT0, IRQT_LOW);
  29. set_irq_type(IRQ_COYOTE_PCI_SLOT1, IRQT_LOW);
  30. gpio_line_isr_clear(COYOTE_PCI_SLOT0_PIN);
  31. gpio_line_isr_clear(COYOTE_PCI_SLOT1_PIN);
  32. ixp4xx_pci_preinit();
  33. }
  34. static int __init coyote_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  35. {
  36. if (slot == COYOTE_PCI_SLOT0_DEVID)
  37. return IRQ_COYOTE_PCI_SLOT0;
  38. else if (slot == COYOTE_PCI_SLOT1_DEVID)
  39. return IRQ_COYOTE_PCI_SLOT1;
  40. else return -1;
  41. }
  42. struct hw_pci coyote_pci __initdata = {
  43. .nr_controllers = 1,
  44. .preinit = coyote_pci_preinit,
  45. .swizzle = pci_std_swizzle,
  46. .setup = ixp4xx_setup,
  47. .scan = ixp4xx_scan_bus,
  48. .map_irq = coyote_map_irq,
  49. };
  50. int __init coyote_pci_init(void)
  51. {
  52. if (machine_is_adi_coyote())
  53. pci_common_init(&coyote_pci);
  54. return 0;
  55. }
  56. subsys_initcall(coyote_pci_init);