diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-21 09:16:33 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:54 -0500 |
commit | 18bc81319b438ae3266e1b2653ce874912dae891 (patch) | |
tree | a0fc683c0beafdafc360f5ad77c995d55df684fd /arch/sh | |
parent | caead5ef34e5abdda8c5189cf698e0b863904701 (diff) |
sh: Get the mach-cayman IRQ support building.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/cpu/irq/Makefile | 1 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/irq/intc-sh5.c | 257 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/sh5/Makefile | 4 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/sh5/setup-sh5-101.c | 15 | ||||
-rw-r--r-- | arch/sh/mach-cayman/Makefile | 8 | ||||
-rw-r--r-- | arch/sh/mach-cayman/iomap.c | 22 | ||||
-rw-r--r-- | arch/sh/mach-cayman/irq.c | 26 | ||||
-rw-r--r-- | arch/sh/mach-cayman/setup.c | 94 |
8 files changed, 294 insertions, 133 deletions
diff --git a/arch/sh/kernel/cpu/irq/Makefile b/arch/sh/kernel/cpu/irq/Makefile index 81d37e948b86..cc1836e47a5d 100644 --- a/arch/sh/kernel/cpu/irq/Makefile +++ b/arch/sh/kernel/cpu/irq/Makefile | |||
@@ -4,5 +4,6 @@ | |||
4 | obj-y += intc.o | 4 | obj-y += intc.o |
5 | 5 | ||
6 | obj-$(CONFIG_SUPERH32) += imask.o | 6 | obj-$(CONFIG_SUPERH32) += imask.o |
7 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o | ||
7 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o | 8 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o |
8 | obj-$(CONFIG_CPU_HAS_MASKREG_IRQ) += maskreg.o | 9 | obj-$(CONFIG_CPU_HAS_MASKREG_IRQ) += maskreg.o |
diff --git a/arch/sh/kernel/cpu/irq/intc-sh5.c b/arch/sh/kernel/cpu/irq/intc-sh5.c new file mode 100644 index 000000000000..49b845a31fff --- /dev/null +++ b/arch/sh/kernel/cpu/irq/intc-sh5.c | |||
@@ -0,0 +1,257 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * arch/sh64/kernel/irq_intc.c | ||
7 | * | ||
8 | * Copyright (C) 2000, 2001 Paolo Alberelli | ||
9 | * Copyright (C) 2003 Paul Mundt | ||
10 | * | ||
11 | * Interrupt Controller support for SH5 INTC. | ||
12 | * Per-interrupt selective. IRLM=0 (Fixed priority) is not | ||
13 | * supported being useless without a cascaded interrupt | ||
14 | * controller. | ||
15 | * | ||
16 | */ | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/interrupt.h> | ||
19 | #include <linux/irq.h> | ||
20 | #include <linux/io.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/bitops.h> | ||
23 | #include <asm/cpu/irq.h> | ||
24 | #include <asm/page.h> | ||
25 | |||
26 | /* | ||
27 | * Maybe the generic Peripheral block could move to a more | ||
28 | * generic include file. INTC Block will be defined here | ||
29 | * and only here to make INTC self-contained in a single | ||
30 | * file. | ||
31 | */ | ||
32 | #define INTC_BLOCK_OFFSET 0x01000000 | ||
33 | |||
34 | /* Base */ | ||
35 | #define INTC_BASE PHYS_PERIPHERAL_BLOCK + \ | ||
36 | INTC_BLOCK_OFFSET | ||
37 | |||
38 | /* Address */ | ||
39 | #define INTC_ICR_SET (intc_virt + 0x0) | ||
40 | #define INTC_ICR_CLEAR (intc_virt + 0x8) | ||
41 | #define INTC_INTPRI_0 (intc_virt + 0x10) | ||
42 | #define INTC_INTSRC_0 (intc_virt + 0x50) | ||
43 | #define INTC_INTSRC_1 (intc_virt + 0x58) | ||
44 | #define INTC_INTREQ_0 (intc_virt + 0x60) | ||
45 | #define INTC_INTREQ_1 (intc_virt + 0x68) | ||
46 | #define INTC_INTENB_0 (intc_virt + 0x70) | ||
47 | #define INTC_INTENB_1 (intc_virt + 0x78) | ||
48 | #define INTC_INTDSB_0 (intc_virt + 0x80) | ||
49 | #define INTC_INTDSB_1 (intc_virt + 0x88) | ||
50 | |||
51 | #define INTC_ICR_IRLM 0x1 | ||
52 | #define INTC_INTPRI_PREGS 8 /* 8 Priority Registers */ | ||
53 | #define INTC_INTPRI_PPREG 8 /* 8 Priorities per Register */ | ||
54 | |||
55 | |||
56 | /* | ||
57 | * Mapper between the vector ordinal and the IRQ number | ||
58 | * passed to kernel/device drivers. | ||
59 | */ | ||
60 | int intc_evt_to_irq[(0xE20/0x20)+1] = { | ||
61 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x000 - 0x0E0 */ | ||
62 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x100 - 0x1E0 */ | ||
63 | 0, 0, 0, 0, 0, 1, 0, 0, /* 0x200 - 0x2E0 */ | ||
64 | 2, 0, 0, 3, 0, 0, 0, -1, /* 0x300 - 0x3E0 */ | ||
65 | 32, 33, 34, 35, 36, 37, 38, -1, /* 0x400 - 0x4E0 */ | ||
66 | -1, -1, -1, 63, -1, -1, -1, -1, /* 0x500 - 0x5E0 */ | ||
67 | -1, -1, 18, 19, 20, 21, 22, -1, /* 0x600 - 0x6E0 */ | ||
68 | 39, 40, 41, 42, -1, -1, -1, -1, /* 0x700 - 0x7E0 */ | ||
69 | 4, 5, 6, 7, -1, -1, -1, -1, /* 0x800 - 0x8E0 */ | ||
70 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x900 - 0x9E0 */ | ||
71 | 12, 13, 14, 15, 16, 17, -1, -1, /* 0xA00 - 0xAE0 */ | ||
72 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xB00 - 0xBE0 */ | ||
73 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xC00 - 0xCE0 */ | ||
74 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xD00 - 0xDE0 */ | ||
75 | -1, -1 /* 0xE00 - 0xE20 */ | ||
76 | }; | ||
77 | |||
78 | /* | ||
79 | * Opposite mapper. | ||
80 | */ | ||
81 | static int IRQ_to_vectorN[NR_INTC_IRQS] = { | ||
82 | 0x12, 0x15, 0x18, 0x1B, 0x40, 0x41, 0x42, 0x43, /* 0- 7 */ | ||
83 | -1, -1, -1, -1, 0x50, 0x51, 0x52, 0x53, /* 8-15 */ | ||
84 | 0x54, 0x55, 0x32, 0x33, 0x34, 0x35, 0x36, -1, /* 16-23 */ | ||
85 | -1, -1, -1, -1, -1, -1, -1, -1, /* 24-31 */ | ||
86 | 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x38, /* 32-39 */ | ||
87 | 0x39, 0x3A, 0x3B, -1, -1, -1, -1, -1, /* 40-47 */ | ||
88 | -1, -1, -1, -1, -1, -1, -1, -1, /* 48-55 */ | ||
89 | -1, -1, -1, -1, -1, -1, -1, 0x2B, /* 56-63 */ | ||
90 | |||
91 | }; | ||
92 | |||
93 | static unsigned long intc_virt; | ||
94 | |||
95 | static unsigned int startup_intc_irq(unsigned int irq); | ||
96 | static void shutdown_intc_irq(unsigned int irq); | ||
97 | static void enable_intc_irq(unsigned int irq); | ||
98 | static void disable_intc_irq(unsigned int irq); | ||
99 | static void mask_and_ack_intc(unsigned int); | ||
100 | static void end_intc_irq(unsigned int irq); | ||
101 | |||
102 | static struct hw_interrupt_type intc_irq_type = { | ||
103 | .typename = "INTC", | ||
104 | .startup = startup_intc_irq, | ||
105 | .shutdown = shutdown_intc_irq, | ||
106 | .enable = enable_intc_irq, | ||
107 | .disable = disable_intc_irq, | ||
108 | .ack = mask_and_ack_intc, | ||
109 | .end = end_intc_irq | ||
110 | }; | ||
111 | |||
112 | static int irlm; /* IRL mode */ | ||
113 | |||
114 | static unsigned int startup_intc_irq(unsigned int irq) | ||
115 | { | ||
116 | enable_intc_irq(irq); | ||
117 | return 0; /* never anything pending */ | ||
118 | } | ||
119 | |||
120 | static void shutdown_intc_irq(unsigned int irq) | ||
121 | { | ||
122 | disable_intc_irq(irq); | ||
123 | } | ||
124 | |||
125 | static void enable_intc_irq(unsigned int irq) | ||
126 | { | ||
127 | unsigned long reg; | ||
128 | unsigned long bitmask; | ||
129 | |||
130 | if ((irq <= IRQ_IRL3) && (irlm == NO_PRIORITY)) | ||
131 | printk("Trying to use straight IRL0-3 with an encoding platform.\n"); | ||
132 | |||
133 | if (irq < 32) { | ||
134 | reg = INTC_INTENB_0; | ||
135 | bitmask = 1 << irq; | ||
136 | } else { | ||
137 | reg = INTC_INTENB_1; | ||
138 | bitmask = 1 << (irq - 32); | ||
139 | } | ||
140 | |||
141 | ctrl_outl(bitmask, reg); | ||
142 | } | ||
143 | |||
144 | static void disable_intc_irq(unsigned int irq) | ||
145 | { | ||
146 | unsigned long reg; | ||
147 | unsigned long bitmask; | ||
148 | |||
149 | if (irq < 32) { | ||
150 | reg = INTC_INTDSB_0; | ||
151 | bitmask = 1 << irq; | ||
152 | } else { | ||
153 | reg = INTC_INTDSB_1; | ||
154 | bitmask = 1 << (irq - 32); | ||
155 | } | ||
156 | |||
157 | ctrl_outl(bitmask, reg); | ||
158 | } | ||
159 | |||
160 | static void mask_and_ack_intc(unsigned int irq) | ||
161 | { | ||
162 | disable_intc_irq(irq); | ||
163 | } | ||
164 | |||
165 | static void end_intc_irq(unsigned int irq) | ||
166 | { | ||
167 | enable_intc_irq(irq); | ||
168 | } | ||
169 | |||
170 | /* For future use, if we ever support IRLM=0) */ | ||
171 | void make_intc_irq(unsigned int irq) | ||
172 | { | ||
173 | disable_irq_nosync(irq); | ||
174 | irq_desc[irq].chip = &intc_irq_type; | ||
175 | disable_intc_irq(irq); | ||
176 | } | ||
177 | |||
178 | #if defined(CONFIG_PROC_FS) && defined(CONFIG_SYSCTL) | ||
179 | int intc_irq_describe(char* p, int irq) | ||
180 | { | ||
181 | if (irq < NR_INTC_IRQS) | ||
182 | return sprintf(p, "(0x%3x)", IRQ_to_vectorN[irq]*0x20); | ||
183 | else | ||
184 | return 0; | ||
185 | } | ||
186 | #endif | ||
187 | |||
188 | void __init plat_irq_setup(void) | ||
189 | { | ||
190 | unsigned long long __dummy0, __dummy1=~0x00000000100000f0; | ||
191 | unsigned long reg; | ||
192 | unsigned long data; | ||
193 | int i; | ||
194 | |||
195 | intc_virt = onchip_remap(INTC_BASE, 1024, "INTC"); | ||
196 | if (!intc_virt) { | ||
197 | panic("Unable to remap INTC\n"); | ||
198 | } | ||
199 | |||
200 | |||
201 | /* Set default: per-line enable/disable, priority driven ack/eoi */ | ||
202 | for (i = 0; i < NR_INTC_IRQS; i++) { | ||
203 | if (platform_int_priority[i] != NO_PRIORITY) { | ||
204 | irq_desc[i].chip = &intc_irq_type; | ||
205 | } | ||
206 | } | ||
207 | |||
208 | |||
209 | /* Disable all interrupts and set all priorities to 0 to avoid trouble */ | ||
210 | ctrl_outl(-1, INTC_INTDSB_0); | ||
211 | ctrl_outl(-1, INTC_INTDSB_1); | ||
212 | |||
213 | for (reg = INTC_INTPRI_0, i = 0; i < INTC_INTPRI_PREGS; i++, reg += 8) | ||
214 | ctrl_outl( NO_PRIORITY, reg); | ||
215 | |||
216 | |||
217 | /* Set IRLM */ | ||
218 | /* If all the priorities are set to 'no priority', then | ||
219 | * assume we are using encoded mode. | ||
220 | */ | ||
221 | irlm = platform_int_priority[IRQ_IRL0] + platform_int_priority[IRQ_IRL1] + \ | ||
222 | platform_int_priority[IRQ_IRL2] + platform_int_priority[IRQ_IRL3]; | ||
223 | |||
224 | if (irlm == NO_PRIORITY) { | ||
225 | /* IRLM = 0 */ | ||
226 | reg = INTC_ICR_CLEAR; | ||
227 | i = IRQ_INTA; | ||
228 | printk("Trying to use encoded IRL0-3. IRLs unsupported.\n"); | ||
229 | } else { | ||
230 | /* IRLM = 1 */ | ||
231 | reg = INTC_ICR_SET; | ||
232 | i = IRQ_IRL0; | ||
233 | } | ||
234 | ctrl_outl(INTC_ICR_IRLM, reg); | ||
235 | |||
236 | /* Set interrupt priorities according to platform description */ | ||
237 | for (data = 0, reg = INTC_INTPRI_0; i < NR_INTC_IRQS; i++) { | ||
238 | data |= platform_int_priority[i] << ((i % INTC_INTPRI_PPREG) * 4); | ||
239 | if ((i % INTC_INTPRI_PPREG) == (INTC_INTPRI_PPREG - 1)) { | ||
240 | /* Upon the 7th, set Priority Register */ | ||
241 | ctrl_outl(data, reg); | ||
242 | data = 0; | ||
243 | reg += 8; | ||
244 | } | ||
245 | } | ||
246 | |||
247 | /* | ||
248 | * And now let interrupts come in. | ||
249 | * sti() is not enough, we need to | ||
250 | * lower priority, too. | ||
251 | */ | ||
252 | __asm__ __volatile__("getcon " __SR ", %0\n\t" | ||
253 | "and %0, %1, %0\n\t" | ||
254 | "putcon %0, " __SR "\n\t" | ||
255 | : "=&r" (__dummy0) | ||
256 | : "r" (__dummy1)); | ||
257 | } | ||
diff --git a/arch/sh/kernel/cpu/sh5/Makefile b/arch/sh/kernel/cpu/sh5/Makefile index 0ef257b72e5d..8646363e9ded 100644 --- a/arch/sh/kernel/cpu/sh5/Makefile +++ b/arch/sh/kernel/cpu/sh5/Makefile | |||
@@ -5,7 +5,3 @@ obj-y := entry.o probe.o switchto.o | |||
5 | 5 | ||
6 | obj-$(CONFIG_SH_FPU) += fpu.o | 6 | obj-$(CONFIG_SH_FPU) += fpu.o |
7 | obj-$(CONFIG_KALLSYMS) += unwind.o | 7 | obj-$(CONFIG_KALLSYMS) += unwind.o |
8 | |||
9 | # CPU subtype setup | ||
10 | obj-$(CONFIG_CPU_SUBTYPE_SH5_101) += setup-sh5-101.o | ||
11 | obj-$(CONFIG_CPU_SUBTYPE_SH5_103) += setup-sh5-101.o | ||
diff --git a/arch/sh/kernel/cpu/sh5/setup-sh5-101.c b/arch/sh/kernel/cpu/sh5/setup-sh5-101.c deleted file mode 100644 index 3680012d7109..000000000000 --- a/arch/sh/kernel/cpu/sh5/setup-sh5-101.c +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | /* | ||
2 | * SH5-101 Setup | ||
3 | * | ||
4 | * Copyright (C) 2007 Paul Mundt | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | |||
12 | void __init plat_irq_setup(void) | ||
13 | { | ||
14 | /* do nothing - all IRL interrupts are handled by the board code */ | ||
15 | } | ||
diff --git a/arch/sh/mach-cayman/Makefile b/arch/sh/mach-cayman/Makefile index 67a2258bf8c4..489a8f867368 100644 --- a/arch/sh/mach-cayman/Makefile +++ b/arch/sh/mach-cayman/Makefile | |||
@@ -1,11 +1,5 @@ | |||
1 | # | 1 | # |
2 | # Makefile for the Hitachi Cayman specific parts of the kernel | 2 | # Makefile for the Hitachi Cayman specific parts of the kernel |
3 | # | 3 | # |
4 | # Note! Dependencies are done automagically by 'make dep', which also | 4 | obj-y := setup.o irq.o |
5 | # removes any old dependencies. DON'T put your own dependencies here | ||
6 | # unless it's something special (ie not a .c file). | ||
7 | # | ||
8 | |||
9 | obj-y := setup.o irq.o iomap.o | ||
10 | obj-$(CONFIG_HEARTBEAT) += led.o | 5 | obj-$(CONFIG_HEARTBEAT) += led.o |
11 | |||
diff --git a/arch/sh/mach-cayman/iomap.c b/arch/sh/mach-cayman/iomap.c deleted file mode 100644 index a5c645f02d57..000000000000 --- a/arch/sh/mach-cayman/iomap.c +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | /* | ||
2 | * arch/sh64/mach-cayman/iomap.c | ||
3 | * | ||
4 | * Cayman iomap interface | ||
5 | * | ||
6 | * Copyright (C) 2004 Paul Mundt | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <asm/io.h> | ||
13 | #include <asm/cayman.h> | ||
14 | |||
15 | void __iomem *ioport_map(unsigned long port, unsigned int len) | ||
16 | { | ||
17 | if (port < 0x400) | ||
18 | return (void __iomem *)((port << 2) | smsc_superio_virt); | ||
19 | |||
20 | return (void __iomem *)port; | ||
21 | } | ||
22 | |||
diff --git a/arch/sh/mach-cayman/irq.c b/arch/sh/mach-cayman/irq.c index aaad36d37d1f..30ec7bebfaf1 100644 --- a/arch/sh/mach-cayman/irq.c +++ b/arch/sh/mach-cayman/irq.c | |||
@@ -1,24 +1,26 @@ | |||
1 | /* | 1 | /* |
2 | * This file is subject to the terms and conditions of the GNU General Public | 2 | * arch/sh/mach-cayman/irq.c - SH-5 Cayman Interrupt Support |
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * arch/sh64/kernel/irq_cayman.c | ||
7 | * | ||
8 | * SH-5 Cayman Interrupt Support | ||
9 | * | 3 | * |
10 | * This file handles the board specific parts of the Cayman interrupt system | 4 | * This file handles the board specific parts of the Cayman interrupt system |
11 | * | 5 | * |
12 | * Copyright (C) 2002 Stuart Menefy | 6 | * Copyright (C) 2002 Stuart Menefy |
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
13 | */ | 11 | */ |
14 | 12 | #include <linux/io.h> | |
15 | #include <asm/irq.h> | ||
16 | #include <asm/page.h> | ||
17 | #include <asm/io.h> | ||
18 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
19 | #include <linux/interrupt.h> | 14 | #include <linux/interrupt.h> |
20 | #include <linux/signal.h> | 15 | #include <linux/signal.h> |
21 | #include <asm/cayman.h> | 16 | #include <asm/cpu/irq.h> |
17 | #include <asm/page.h> | ||
18 | |||
19 | /* Setup for the SMSC FDC37C935 / LAN91C100FD */ | ||
20 | #define SMSC_IRQ IRQ_IRL1 | ||
21 | |||
22 | /* Setup for PCI Bus 2, which transmits interrupts via the EPLD */ | ||
23 | #define PCI2_IRQ IRQ_IRL3 | ||
22 | 24 | ||
23 | unsigned long epld_virt; | 25 | unsigned long epld_virt; |
24 | 26 | ||
diff --git a/arch/sh/mach-cayman/setup.c b/arch/sh/mach-cayman/setup.c index 726c520d7eb9..8c9fa472d8f5 100644 --- a/arch/sh/mach-cayman/setup.c +++ b/arch/sh/mach-cayman/setup.c | |||
@@ -1,28 +1,19 @@ | |||
1 | /* | 1 | /* |
2 | * This file is subject to the terms and conditions of the GNU General Public | 2 | * arch/sh/mach-cayman/setup.c |
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * arch/sh64/mach-cayman/setup.c | ||
7 | * | 3 | * |
8 | * SH5 Cayman support | 4 | * SH5 Cayman support |
9 | * | 5 | * |
10 | * This file handles the architecture-dependent parts of initialization | 6 | * Copyright (C) 2002 David J. Mckay & Benedict Gaster |
7 | * Copyright (C) 2003 - 2007 Paul Mundt | ||
11 | * | 8 | * |
12 | * Copyright David J. Mckay. | 9 | * This file is subject to the terms and conditions of the GNU General Public |
13 | * Needs major work! | 10 | * License. See the file "COPYING" in the main directory of this archive |
14 | * | 11 | * for more details. |
15 | * benedict.gaster@superh.com: 3rd May 2002 | ||
16 | * Added support for ramdisk, removing statically linked romfs at the same time. | ||
17 | * | ||
18 | * lethal@linux-sh.org: 15th May 2003 | ||
19 | * Use the generic procfs cpuinfo interface, just return a valid board name. | ||
20 | */ | 12 | */ |
21 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/io.h> | ||
22 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
23 | #include <asm/platform.h> | 16 | #include <asm/cpu/irq.h> |
24 | #include <asm/irq.h> | ||
25 | #include <asm/io.h> | ||
26 | 17 | ||
27 | /* | 18 | /* |
28 | * Platform Dependent Interrupt Priorities. | 19 | * Platform Dependent Interrupt Priorities. |
@@ -96,42 +87,6 @@ | |||
96 | 87 | ||
97 | unsigned long smsc_superio_virt; | 88 | unsigned long smsc_superio_virt; |
98 | 89 | ||
99 | /* | ||
100 | * Platform dependent structures: maps and parms block. | ||
101 | */ | ||
102 | struct resource io_resources[] = { | ||
103 | /* To be updated with external devices */ | ||
104 | }; | ||
105 | |||
106 | struct resource kram_resources[] = { | ||
107 | /* These must be last in the array */ | ||
108 | { .name = "Kernel code", .start = 0, .end = 0 }, | ||
109 | /* These must be last in the array */ | ||
110 | { .name = "Kernel data", .start = 0, .end = 0 } | ||
111 | }; | ||
112 | |||
113 | struct resource xram_resources[] = { | ||
114 | /* To be updated with external devices */ | ||
115 | }; | ||
116 | |||
117 | struct resource rom_resources[] = { | ||
118 | /* To be updated with external devices */ | ||
119 | }; | ||
120 | |||
121 | struct sh64_platform platform_parms = { | ||
122 | .readonly_rootfs = 1, | ||
123 | .initial_root_dev = 0x0100, | ||
124 | .loader_type = 1, | ||
125 | .io_res_p = io_resources, | ||
126 | .io_res_count = ARRAY_SIZE(io_resources), | ||
127 | .kram_res_p = kram_resources, | ||
128 | .kram_res_count = ARRAY_SIZE(kram_resources), | ||
129 | .xram_res_p = xram_resources, | ||
130 | .xram_res_count = ARRAY_SIZE(xram_resources), | ||
131 | .rom_res_p = rom_resources, | ||
132 | .rom_res_count = ARRAY_SIZE(rom_resources), | ||
133 | }; | ||
134 | |||
135 | int platform_int_priority[NR_INTC_IRQS] = { | 90 | int platform_int_priority[NR_INTC_IRQS] = { |
136 | IR0, IR1, IR2, IR3, PCA, PCB, PCC, PCD, /* IRQ 0- 7 */ | 91 | IR0, IR1, IR2, IR3, PCA, PCB, PCC, PCD, /* IRQ 0- 7 */ |
137 | RES, RES, RES, RES, SER, ERR, PW3, PW2, /* IRQ 8-15 */ | 92 | RES, RES, RES, RES, SER, ERR, PW3, PW2, /* IRQ 8-15 */ |
@@ -210,30 +165,23 @@ static int __init smsc_superio_setup(void) | |||
210 | 165 | ||
211 | return 0; | 166 | return 0; |
212 | } | 167 | } |
213 | |||
214 | /* This is grotty, but, because kernel is always referenced on the link line | ||
215 | * before any devices, this is safe. | ||
216 | */ | ||
217 | __initcall(smsc_superio_setup); | 168 | __initcall(smsc_superio_setup); |
218 | 169 | ||
219 | void __init platform_setup(void) | 170 | static void __iomem *cayman_ioport_map(unsigned long port, unsigned int len) |
220 | { | ||
221 | /* Cayman platform leaves the decision to head.S, for now */ | ||
222 | platform_parms.fpu_flags = fpu_in_use; | ||
223 | } | ||
224 | |||
225 | void __init platform_monitor(void) | ||
226 | { | 171 | { |
227 | /* Nothing yet .. */ | 172 | if (port < 0x400) { |
228 | } | 173 | extern unsigned long smsc_superio_virt; |
174 | return (void __iomem *)((port << 2) | smsc_superio_virt); | ||
175 | } | ||
229 | 176 | ||
230 | void __init platform_reserve(void) | 177 | return (void __iomem *)port; |
231 | { | ||
232 | /* Nothing yet .. */ | ||
233 | } | 178 | } |
234 | 179 | ||
235 | const char *get_system_type(void) | 180 | extern void init_cayman_irq(void); |
236 | { | ||
237 | return "Hitachi Cayman"; | ||
238 | } | ||
239 | 181 | ||
182 | static struct sh_machine_vector mv_cayman __initmv = { | ||
183 | .mv_name = "Hitachi Cayman", | ||
184 | .mv_nr_irqs = 64, | ||
185 | .mv_ioport_map = cayman_ioport_map, | ||
186 | .mv_init_irq = init_cayman_irq, | ||
187 | }; | ||