fixups-snapgear.c 1002 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * arch/sh/drivers/pci/ops-snapgear.c
  4. *
  5. * Author: David McCullough <[email protected]>
  6. *
  7. * Ported to new API by Paul Mundt <[email protected]>
  8. *
  9. * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
  10. *
  11. * PCI initialization for the SnapGear boards
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/init.h>
  16. #include <linux/pci.h>
  17. #include <linux/sh_intc.h>
  18. #include "pci-sh4.h"
  19. int pcibios_map_platform_irq(const struct pci_dev *pdev, u8 slot, u8 pin)
  20. {
  21. int irq = -1;
  22. switch (slot) {
  23. case 8: /* the PCI bridge */ break;
  24. case 11: irq = evt2irq(0x300); break; /* USB */
  25. case 12: irq = evt2irq(0x360); break; /* PCMCIA */
  26. case 13: irq = evt2irq(0x2a0); break; /* eth0 */
  27. case 14: irq = evt2irq(0x300); break; /* eth1 */
  28. case 15: irq = evt2irq(0x360); break; /* safenet (unused) */
  29. }
  30. printk("PCI: Mapping SnapGear IRQ for slot %d, pin %c to irq %d\n",
  31. slot, pin - 1 + 'A', irq);
  32. return irq;
  33. }