1 // SPDX-License-Identifier: GPL-2.0
3 * arch/sh/drivers/pci/ops-titan.c
5 * Ported to new API by Paul Mundt <lethal@linux-sh.org>
7 * Modified from ops-snapgear.c written by David McCullough
8 * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
10 * PCI initialization for the Titan boards
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/init.h>
15 #include <linux/pci.h>
17 #include <mach/titan.h>
20 static char titan_irq_tab
[] = {
28 int pcibios_map_platform_irq(const struct pci_dev
*pdev
, u8 slot
, u8 pin
)
30 int irq
= titan_irq_tab
[slot
];
32 printk("PCI: Mapping TITAN IRQ for slot %d, pin %c to irq %d\n",
33 slot
, pin
- 1 + 'A', irq
);