diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-09-27 02:05:39 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 02:05:39 -0400 |
commit | a09749dd86e9e93de10f12ab4ce4e90815b5650a (patch) | |
tree | 013d7deabb31dea70063a2acdc50ee86fb3c7b9a /arch/sh/drivers/pci/ops-titan.c | |
parent | b7e108ee63624176af85b97d4d80bef6fe099395 (diff) |
sh: Titan board support.
Add support for the titan board.
Signed-off-by: Jamie Lenehan <lenehan@twibble.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/ops-titan.c')
-rw-r--r-- | arch/sh/drivers/pci/ops-titan.c | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/arch/sh/drivers/pci/ops-titan.c b/arch/sh/drivers/pci/ops-titan.c new file mode 100644 index 000000000000..f76e4e963ac1 --- /dev/null +++ b/arch/sh/drivers/pci/ops-titan.c | |||
@@ -0,0 +1,84 @@ | |||
1 | /* | ||
2 | * arch/sh/drivers/pci/ops-titan.c | ||
3 | * | ||
4 | * Ported to new API by Paul Mundt <lethal@linux-sh.org> | ||
5 | * | ||
6 | * Modified from ops-snapgear.c written by David McCullough | ||
7 | * Highly leveraged from pci-bigsur.c, written by Dustin McIntire. | ||
8 | * | ||
9 | * May be copied or modified under the terms of the GNU General Public | ||
10 | * License. See linux/COPYING for more information. | ||
11 | * | ||
12 | * PCI initialization for the Titan boards | ||
13 | */ | ||
14 | |||
15 | #include <linux/config.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/types.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/delay.h> | ||
20 | #include <asm/io.h> | ||
21 | #include <asm/titan.h> | ||
22 | #include "pci-sh7751.h" | ||
23 | |||
24 | int __init pcibios_map_platform_irq(u8 slot, u8 pin) | ||
25 | { | ||
26 | int irq = -1; | ||
27 | |||
28 | switch (slot) { | ||
29 | case 0: irq = TITAN_IRQ_WAN; break; /* eth0 (WAN) */ | ||
30 | case 1: irq = TITAN_IRQ_LAN; break; /* eth1 (LAN) */ | ||
31 | case 2: irq = TITAN_IRQ_MPCIA; break; /* mPCI A */ | ||
32 | case 3: irq = TITAN_IRQ_MPCIB; break; /* mPCI B */ | ||
33 | case 4: irq = TITAN_IRQ_USB; break; /* USB */ | ||
34 | default: | ||
35 | printk(KERN_INFO "PCI: Bad IRQ mapping request for slot %d\n", slot); | ||
36 | return -1; | ||
37 | } | ||
38 | |||
39 | printk("PCI: Mapping TITAN IRQ for slot %d, pin %c to irq %d\n", | ||
40 | slot, pin - 1 + 'A', irq); | ||
41 | |||
42 | return irq; | ||
43 | } | ||
44 | |||
45 | static struct resource sh7751_io_resource = { | ||
46 | .name = "SH7751_IO", | ||
47 | .start = SH7751_PCI_IO_BASE, | ||
48 | .end = SH7751_PCI_IO_BASE + SH7751_PCI_IO_SIZE - 1, | ||
49 | .flags = IORESOURCE_IO | ||
50 | }; | ||
51 | |||
52 | static struct resource sh7751_mem_resource = { | ||
53 | .name = "SH7751_mem", | ||
54 | .start = SH7751_PCI_MEMORY_BASE, | ||
55 | .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1, | ||
56 | .flags = IORESOURCE_MEM | ||
57 | }; | ||
58 | |||
59 | extern struct pci_ops sh7751_pci_ops; | ||
60 | |||
61 | struct pci_channel board_pci_channels[] = { | ||
62 | { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff }, | ||
63 | { NULL, NULL, NULL, 0, 0 }, | ||
64 | }; | ||
65 | EXPORT_SYMBOL(board_pci_channels); | ||
66 | |||
67 | static struct sh7751_pci_address_map sh7751_pci_map = { | ||
68 | .window0 = { | ||
69 | .base = SH7751_CS2_BASE_ADDR, | ||
70 | .size = SH7751_MEM_REGION_SIZE*2, /* cs2 and cs3 */ | ||
71 | }, | ||
72 | |||
73 | .window1 = { | ||
74 | .base = SH7751_CS2_BASE_ADDR, | ||
75 | .size = SH7751_MEM_REGION_SIZE*2, | ||
76 | }, | ||
77 | |||
78 | .flags = SH7751_PCIC_NO_RESET, | ||
79 | }; | ||
80 | |||
81 | int __init pcibios_init_platform(void) | ||
82 | { | ||
83 | return sh7751_pcic_init(&sh7751_pci_map); | ||
84 | } | ||