GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sh / kernel / cpu / sh4 / setup-sh7750.c
blobc00ba5ddf9574c14ece736d2ee2c2c1c4966715d
1 /*
2 * SH7750/SH7751 Setup
4 * Copyright (C) 2006 Paul Mundt
5 * Copyright (C) 2006 Jamie Lenehan
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
11 #include <linux/platform_device.h>
12 #include <linux/init.h>
13 #include <linux/serial.h>
14 #include <linux/io.h>
15 #include <linux/sh_timer.h>
16 #include <linux/serial_sci.h>
18 static struct resource rtc_resources[] = {
19 [0] = {
20 .start = 0xffc80000,
21 .end = 0xffc80000 + 0x58 - 1,
22 .flags = IORESOURCE_IO,
24 [1] = {
25 /* Shared Period/Carry/Alarm IRQ */
26 .start = 20,
27 .flags = IORESOURCE_IRQ,
31 static struct platform_device rtc_device = {
32 .name = "sh-rtc",
33 .id = -1,
34 .num_resources = ARRAY_SIZE(rtc_resources),
35 .resource = rtc_resources,
38 static struct plat_sci_port scif0_platform_data = {
39 .mapbase = 0xffe00000,
40 .flags = UPF_BOOT_AUTOCONF,
41 .type = PORT_SCI,
42 .irqs = { 23, 23, 23, 0 },
45 static struct platform_device scif0_device = {
46 .name = "sh-sci",
47 .id = 0,
48 .dev = {
49 .platform_data = &scif0_platform_data,
53 static struct plat_sci_port scif1_platform_data = {
54 .mapbase = 0xffe80000,
55 .flags = UPF_BOOT_AUTOCONF,
56 .type = PORT_SCIF,
57 .irqs = { 40, 40, 40, 40 },
60 static struct platform_device scif1_device = {
61 .name = "sh-sci",
62 .id = 1,
63 .dev = {
64 .platform_data = &scif1_platform_data,
68 static struct sh_timer_config tmu0_platform_data = {
69 .channel_offset = 0x04,
70 .timer_bit = 0,
71 .clockevent_rating = 200,
74 static struct resource tmu0_resources[] = {
75 [0] = {
76 .start = 0xffd80008,
77 .end = 0xffd80013,
78 .flags = IORESOURCE_MEM,
80 [1] = {
81 .start = 16,
82 .flags = IORESOURCE_IRQ,
86 static struct platform_device tmu0_device = {
87 .name = "sh_tmu",
88 .id = 0,
89 .dev = {
90 .platform_data = &tmu0_platform_data,
92 .resource = tmu0_resources,
93 .num_resources = ARRAY_SIZE(tmu0_resources),
96 static struct sh_timer_config tmu1_platform_data = {
97 .channel_offset = 0x10,
98 .timer_bit = 1,
99 .clocksource_rating = 200,
102 static struct resource tmu1_resources[] = {
103 [0] = {
104 .start = 0xffd80014,
105 .end = 0xffd8001f,
106 .flags = IORESOURCE_MEM,
108 [1] = {
109 .start = 17,
110 .flags = IORESOURCE_IRQ,
114 static struct platform_device tmu1_device = {
115 .name = "sh_tmu",
116 .id = 1,
117 .dev = {
118 .platform_data = &tmu1_platform_data,
120 .resource = tmu1_resources,
121 .num_resources = ARRAY_SIZE(tmu1_resources),
124 static struct sh_timer_config tmu2_platform_data = {
125 .channel_offset = 0x1c,
126 .timer_bit = 2,
129 static struct resource tmu2_resources[] = {
130 [0] = {
131 .start = 0xffd80020,
132 .end = 0xffd8002f,
133 .flags = IORESOURCE_MEM,
135 [1] = {
136 .start = 18,
137 .flags = IORESOURCE_IRQ,
141 static struct platform_device tmu2_device = {
142 .name = "sh_tmu",
143 .id = 2,
144 .dev = {
145 .platform_data = &tmu2_platform_data,
147 .resource = tmu2_resources,
148 .num_resources = ARRAY_SIZE(tmu2_resources),
151 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
152 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751) || \
153 defined(CONFIG_CPU_SUBTYPE_SH7751R)
155 static struct sh_timer_config tmu3_platform_data = {
156 .channel_offset = 0x04,
157 .timer_bit = 0,
160 static struct resource tmu3_resources[] = {
161 [0] = {
162 .start = 0xfe100008,
163 .end = 0xfe100013,
164 .flags = IORESOURCE_MEM,
166 [1] = {
167 .start = 72,
168 .flags = IORESOURCE_IRQ,
172 static struct platform_device tmu3_device = {
173 .name = "sh_tmu",
174 .id = 3,
175 .dev = {
176 .platform_data = &tmu3_platform_data,
178 .resource = tmu3_resources,
179 .num_resources = ARRAY_SIZE(tmu3_resources),
182 static struct sh_timer_config tmu4_platform_data = {
183 .channel_offset = 0x10,
184 .timer_bit = 1,
187 static struct resource tmu4_resources[] = {
188 [0] = {
189 .start = 0xfe100014,
190 .end = 0xfe10001f,
191 .flags = IORESOURCE_MEM,
193 [1] = {
194 .start = 76,
195 .flags = IORESOURCE_IRQ,
199 static struct platform_device tmu4_device = {
200 .name = "sh_tmu",
201 .id = 4,
202 .dev = {
203 .platform_data = &tmu4_platform_data,
205 .resource = tmu4_resources,
206 .num_resources = ARRAY_SIZE(tmu4_resources),
209 #endif
211 static struct platform_device *sh7750_devices[] __initdata = {
212 &scif0_device,
213 &scif1_device,
214 &rtc_device,
215 &tmu0_device,
216 &tmu1_device,
217 &tmu2_device,
218 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751) || \
219 defined(CONFIG_CPU_SUBTYPE_SH7751R)
220 &tmu3_device,
221 &tmu4_device,
222 #endif
225 static int __init sh7750_devices_setup(void)
227 return platform_add_devices(sh7750_devices,
228 ARRAY_SIZE(sh7750_devices));
230 arch_initcall(sh7750_devices_setup);
232 static struct platform_device *sh7750_early_devices[] __initdata = {
233 &scif0_device,
234 &scif1_device,
235 &tmu0_device,
236 &tmu1_device,
237 &tmu2_device,
238 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751) || \
239 defined(CONFIG_CPU_SUBTYPE_SH7751R)
240 &tmu3_device,
241 &tmu4_device,
242 #endif
245 void __init plat_early_device_setup(void)
247 early_platform_add_devices(sh7750_early_devices,
248 ARRAY_SIZE(sh7750_early_devices));
251 enum {
252 UNUSED = 0,
254 /* interrupt sources */
255 IRL0, IRL1, IRL2, IRL3, /* only IRLM mode supported */
256 HUDI, GPIOI, DMAC,
257 PCIC0_PCISERR, PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
258 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2, PCIC1_PCIDMA3,
259 TMU3, TMU4, TMU0, TMU1, TMU2, RTC, SCI1, SCIF, WDT, REF,
261 /* interrupt groups */
262 PCIC1,
265 static struct intc_vect vectors[] __initdata = {
266 INTC_VECT(HUDI, 0x600), INTC_VECT(GPIOI, 0x620),
267 INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420),
268 INTC_VECT(TMU2, 0x440), INTC_VECT(TMU2, 0x460),
269 INTC_VECT(RTC, 0x480), INTC_VECT(RTC, 0x4a0),
270 INTC_VECT(RTC, 0x4c0),
271 INTC_VECT(SCI1, 0x4e0), INTC_VECT(SCI1, 0x500),
272 INTC_VECT(SCI1, 0x520), INTC_VECT(SCI1, 0x540),
273 INTC_VECT(SCIF, 0x700), INTC_VECT(SCIF, 0x720),
274 INTC_VECT(SCIF, 0x740), INTC_VECT(SCIF, 0x760),
275 INTC_VECT(WDT, 0x560),
276 INTC_VECT(REF, 0x580), INTC_VECT(REF, 0x5a0),
279 static struct intc_prio_reg prio_registers[] __initdata = {
280 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } },
281 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, SCI1, 0 } },
282 { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI, DMAC, SCIF, HUDI } },
283 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0, IRL1, IRL2, IRL3 } },
284 { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { 0, 0, 0, 0,
285 TMU4, TMU3,
286 PCIC1, PCIC0_PCISERR } },
289 static DECLARE_INTC_DESC(intc_desc, "sh7750", vectors, NULL,
290 NULL, prio_registers, NULL);
292 /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */
293 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
294 defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7091)
295 static struct intc_vect vectors_dma4[] __initdata = {
296 INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660),
297 INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0),
298 INTC_VECT(DMAC, 0x6c0),
301 static DECLARE_INTC_DESC(intc_desc_dma4, "sh7750_dma4",
302 vectors_dma4, NULL,
303 NULL, prio_registers, NULL);
304 #endif
306 /* SH7750R and SH7751R both have 8-channel DMA controllers */
307 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
308 static struct intc_vect vectors_dma8[] __initdata = {
309 INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660),
310 INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0),
311 INTC_VECT(DMAC, 0x780), INTC_VECT(DMAC, 0x7a0),
312 INTC_VECT(DMAC, 0x7c0), INTC_VECT(DMAC, 0x7e0),
313 INTC_VECT(DMAC, 0x6c0),
316 static DECLARE_INTC_DESC(intc_desc_dma8, "sh7750_dma8",
317 vectors_dma8, NULL,
318 NULL, prio_registers, NULL);
319 #endif
321 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
322 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751) || \
323 defined(CONFIG_CPU_SUBTYPE_SH7751R)
324 static struct intc_vect vectors_tmu34[] __initdata = {
325 INTC_VECT(TMU3, 0xb00), INTC_VECT(TMU4, 0xb80),
328 static struct intc_mask_reg mask_registers[] __initdata = {
329 { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
330 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
331 0, 0, 0, 0, 0, 0, TMU4, TMU3,
332 PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
333 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2,
334 PCIC1_PCIDMA3, PCIC0_PCISERR } },
337 static DECLARE_INTC_DESC(intc_desc_tmu34, "sh7750_tmu34",
338 vectors_tmu34, NULL,
339 mask_registers, prio_registers, NULL);
340 #endif
342 /* SH7750S, SH7750R, SH7751 and SH7751R all have IRLM priority registers */
343 static struct intc_vect vectors_irlm[] __initdata = {
344 INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0),
345 INTC_VECT(IRL2, 0x300), INTC_VECT(IRL3, 0x360),
348 static DECLARE_INTC_DESC(intc_desc_irlm, "sh7750_irlm", vectors_irlm, NULL,
349 NULL, prio_registers, NULL);
351 /* SH7751 and SH7751R both have PCI */
352 #if defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
353 static struct intc_vect vectors_pci[] __initdata = {
354 INTC_VECT(PCIC0_PCISERR, 0xa00), INTC_VECT(PCIC1_PCIERR, 0xae0),
355 INTC_VECT(PCIC1_PCIPWDWN, 0xac0), INTC_VECT(PCIC1_PCIPWON, 0xaa0),
356 INTC_VECT(PCIC1_PCIDMA0, 0xa80), INTC_VECT(PCIC1_PCIDMA1, 0xa60),
357 INTC_VECT(PCIC1_PCIDMA2, 0xa40), INTC_VECT(PCIC1_PCIDMA3, 0xa20),
360 static struct intc_group groups_pci[] __initdata = {
361 INTC_GROUP(PCIC1, PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
362 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2, PCIC1_PCIDMA3),
365 static DECLARE_INTC_DESC(intc_desc_pci, "sh7750_pci", vectors_pci, groups_pci,
366 mask_registers, prio_registers, NULL);
367 #endif
369 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
370 defined(CONFIG_CPU_SUBTYPE_SH7091)
371 void __init plat_irq_setup(void)
374 * same vectors for SH7750, SH7750S and SH7091 except for IRLM,
375 * see below..
377 register_intc_controller(&intc_desc);
378 register_intc_controller(&intc_desc_dma4);
380 #endif
382 #if defined(CONFIG_CPU_SUBTYPE_SH7750R)
383 void __init plat_irq_setup(void)
385 register_intc_controller(&intc_desc);
386 register_intc_controller(&intc_desc_dma8);
387 register_intc_controller(&intc_desc_tmu34);
389 #endif
391 #if defined(CONFIG_CPU_SUBTYPE_SH7751)
392 void __init plat_irq_setup(void)
394 register_intc_controller(&intc_desc);
395 register_intc_controller(&intc_desc_dma4);
396 register_intc_controller(&intc_desc_tmu34);
397 register_intc_controller(&intc_desc_pci);
399 #endif
401 #if defined(CONFIG_CPU_SUBTYPE_SH7751R)
402 void __init plat_irq_setup(void)
404 register_intc_controller(&intc_desc);
405 register_intc_controller(&intc_desc_dma8);
406 register_intc_controller(&intc_desc_tmu34);
407 register_intc_controller(&intc_desc_pci);
409 #endif
411 #define INTC_ICR 0xffd00000UL
412 #define INTC_ICR_IRLM (1<<7)
414 void __init plat_irq_setup_pins(int mode)
416 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7091)
417 BUG(); /* impossible to mask interrupts on SH7750 and SH7091 */
418 return;
419 #endif
421 switch (mode) {
422 case IRQ_MODE_IRQ: /* individual interrupt mode for IRL3-0 */
423 __raw_writew(__raw_readw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
424 register_intc_controller(&intc_desc_irlm);
425 break;
426 default:
427 BUG();