bonding: fix rx_handler locking
[linux/fpc-iii.git] / arch / sh / kernel / cpu / sh4 / setup-sh7750.c
blobe53b4b38bd11f954fd3d23b9e72e74d1540ea78e
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>
17 #include <generated/machtypes.h>
19 static struct resource rtc_resources[] = {
20 [0] = {
21 .start = 0xffc80000,
22 .end = 0xffc80000 + 0x58 - 1,
23 .flags = IORESOURCE_IO,
25 [1] = {
26 /* Shared Period/Carry/Alarm IRQ */
27 .start = 20,
28 .flags = IORESOURCE_IRQ,
32 static struct platform_device rtc_device = {
33 .name = "sh-rtc",
34 .id = -1,
35 .num_resources = ARRAY_SIZE(rtc_resources),
36 .resource = rtc_resources,
39 static struct plat_sci_port sci_platform_data = {
40 .mapbase = 0xffe00000,
41 .flags = UPF_BOOT_AUTOCONF,
42 .scscr = SCSCR_TE | SCSCR_RE,
43 .scbrr_algo_id = SCBRR_ALGO_2,
44 .type = PORT_SCI,
45 .irqs = { 23, 23, 23, 0 },
48 static struct platform_device sci_device = {
49 .name = "sh-sci",
50 .id = 0,
51 .dev = {
52 .platform_data = &sci_platform_data,
56 static struct plat_sci_port scif_platform_data = {
57 .mapbase = 0xffe80000,
58 .flags = UPF_BOOT_AUTOCONF,
59 .scscr = SCSCR_TE | SCSCR_RE | SCSCR_REIE,
60 .scbrr_algo_id = SCBRR_ALGO_2,
61 .type = PORT_SCIF,
62 .irqs = { 40, 40, 40, 40 },
65 static struct platform_device scif_device = {
66 .name = "sh-sci",
67 .id = 1,
68 .dev = {
69 .platform_data = &scif_platform_data,
73 static struct sh_timer_config tmu0_platform_data = {
74 .channel_offset = 0x04,
75 .timer_bit = 0,
76 .clockevent_rating = 200,
79 static struct resource tmu0_resources[] = {
80 [0] = {
81 .start = 0xffd80008,
82 .end = 0xffd80013,
83 .flags = IORESOURCE_MEM,
85 [1] = {
86 .start = 16,
87 .flags = IORESOURCE_IRQ,
91 static struct platform_device tmu0_device = {
92 .name = "sh_tmu",
93 .id = 0,
94 .dev = {
95 .platform_data = &tmu0_platform_data,
97 .resource = tmu0_resources,
98 .num_resources = ARRAY_SIZE(tmu0_resources),
101 static struct sh_timer_config tmu1_platform_data = {
102 .channel_offset = 0x10,
103 .timer_bit = 1,
104 .clocksource_rating = 200,
107 static struct resource tmu1_resources[] = {
108 [0] = {
109 .start = 0xffd80014,
110 .end = 0xffd8001f,
111 .flags = IORESOURCE_MEM,
113 [1] = {
114 .start = 17,
115 .flags = IORESOURCE_IRQ,
119 static struct platform_device tmu1_device = {
120 .name = "sh_tmu",
121 .id = 1,
122 .dev = {
123 .platform_data = &tmu1_platform_data,
125 .resource = tmu1_resources,
126 .num_resources = ARRAY_SIZE(tmu1_resources),
129 static struct sh_timer_config tmu2_platform_data = {
130 .channel_offset = 0x1c,
131 .timer_bit = 2,
134 static struct resource tmu2_resources[] = {
135 [0] = {
136 .start = 0xffd80020,
137 .end = 0xffd8002f,
138 .flags = IORESOURCE_MEM,
140 [1] = {
141 .start = 18,
142 .flags = IORESOURCE_IRQ,
146 static struct platform_device tmu2_device = {
147 .name = "sh_tmu",
148 .id = 2,
149 .dev = {
150 .platform_data = &tmu2_platform_data,
152 .resource = tmu2_resources,
153 .num_resources = ARRAY_SIZE(tmu2_resources),
156 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
157 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
158 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
159 defined(CONFIG_CPU_SUBTYPE_SH7751R)
161 static struct sh_timer_config tmu3_platform_data = {
162 .channel_offset = 0x04,
163 .timer_bit = 0,
166 static struct resource tmu3_resources[] = {
167 [0] = {
168 .start = 0xfe100008,
169 .end = 0xfe100013,
170 .flags = IORESOURCE_MEM,
172 [1] = {
173 .start = 72,
174 .flags = IORESOURCE_IRQ,
178 static struct platform_device tmu3_device = {
179 .name = "sh_tmu",
180 .id = 3,
181 .dev = {
182 .platform_data = &tmu3_platform_data,
184 .resource = tmu3_resources,
185 .num_resources = ARRAY_SIZE(tmu3_resources),
188 static struct sh_timer_config tmu4_platform_data = {
189 .channel_offset = 0x10,
190 .timer_bit = 1,
193 static struct resource tmu4_resources[] = {
194 [0] = {
195 .start = 0xfe100014,
196 .end = 0xfe10001f,
197 .flags = IORESOURCE_MEM,
199 [1] = {
200 .start = 76,
201 .flags = IORESOURCE_IRQ,
205 static struct platform_device tmu4_device = {
206 .name = "sh_tmu",
207 .id = 4,
208 .dev = {
209 .platform_data = &tmu4_platform_data,
211 .resource = tmu4_resources,
212 .num_resources = ARRAY_SIZE(tmu4_resources),
215 #endif
217 static struct platform_device *sh7750_devices[] __initdata = {
218 &rtc_device,
219 &tmu0_device,
220 &tmu1_device,
221 &tmu2_device,
222 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
223 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
224 defined(CONFIG_CPU_SUBTYPE_SH7751R)
225 &tmu3_device,
226 &tmu4_device,
227 #endif
230 static int __init sh7750_devices_setup(void)
232 if (mach_is_rts7751r2d()) {
233 platform_device_register(&scif_device);
234 } else {
235 platform_device_register(&sci_device);
236 platform_device_register(&scif_device);
239 return platform_add_devices(sh7750_devices,
240 ARRAY_SIZE(sh7750_devices));
242 arch_initcall(sh7750_devices_setup);
244 static struct platform_device *sh7750_early_devices[] __initdata = {
245 &tmu0_device,
246 &tmu1_device,
247 &tmu2_device,
248 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
249 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
250 defined(CONFIG_CPU_SUBTYPE_SH7751R)
251 &tmu3_device,
252 &tmu4_device,
253 #endif
256 void __init plat_early_device_setup(void)
258 struct platform_device *dev[1];
260 if (mach_is_rts7751r2d()) {
261 scif_platform_data.scscr |= SCSCR_CKE1;
262 dev[0] = &scif_device;
263 early_platform_add_devices(dev, 1);
264 } else {
265 dev[0] = &sci_device;
266 early_platform_add_devices(dev, 1);
267 dev[0] = &scif_device;
268 early_platform_add_devices(dev, 1);
271 early_platform_add_devices(sh7750_early_devices,
272 ARRAY_SIZE(sh7750_early_devices));
275 enum {
276 UNUSED = 0,
278 /* interrupt sources */
279 IRL0, IRL1, IRL2, IRL3, /* only IRLM mode supported */
280 HUDI, GPIOI, DMAC,
281 PCIC0_PCISERR, PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
282 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2, PCIC1_PCIDMA3,
283 TMU3, TMU4, TMU0, TMU1, TMU2, RTC, SCI1, SCIF, WDT, REF,
285 /* interrupt groups */
286 PCIC1,
289 static struct intc_vect vectors[] __initdata = {
290 INTC_VECT(HUDI, 0x600), INTC_VECT(GPIOI, 0x620),
291 INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420),
292 INTC_VECT(TMU2, 0x440), INTC_VECT(TMU2, 0x460),
293 INTC_VECT(RTC, 0x480), INTC_VECT(RTC, 0x4a0),
294 INTC_VECT(RTC, 0x4c0),
295 INTC_VECT(SCI1, 0x4e0), INTC_VECT(SCI1, 0x500),
296 INTC_VECT(SCI1, 0x520), INTC_VECT(SCI1, 0x540),
297 INTC_VECT(SCIF, 0x700), INTC_VECT(SCIF, 0x720),
298 INTC_VECT(SCIF, 0x740), INTC_VECT(SCIF, 0x760),
299 INTC_VECT(WDT, 0x560),
300 INTC_VECT(REF, 0x580), INTC_VECT(REF, 0x5a0),
303 static struct intc_prio_reg prio_registers[] __initdata = {
304 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } },
305 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, SCI1, 0 } },
306 { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI, DMAC, SCIF, HUDI } },
307 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0, IRL1, IRL2, IRL3 } },
308 { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { 0, 0, 0, 0,
309 TMU4, TMU3,
310 PCIC1, PCIC0_PCISERR } },
313 static DECLARE_INTC_DESC(intc_desc, "sh7750", vectors, NULL,
314 NULL, prio_registers, NULL);
316 /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */
317 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
318 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
319 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
320 defined(CONFIG_CPU_SUBTYPE_SH7091)
321 static struct intc_vect vectors_dma4[] __initdata = {
322 INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660),
323 INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0),
324 INTC_VECT(DMAC, 0x6c0),
327 static DECLARE_INTC_DESC(intc_desc_dma4, "sh7750_dma4",
328 vectors_dma4, NULL,
329 NULL, prio_registers, NULL);
330 #endif
332 /* SH7750R and SH7751R both have 8-channel DMA controllers */
333 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
334 static struct intc_vect vectors_dma8[] __initdata = {
335 INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660),
336 INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0),
337 INTC_VECT(DMAC, 0x780), INTC_VECT(DMAC, 0x7a0),
338 INTC_VECT(DMAC, 0x7c0), INTC_VECT(DMAC, 0x7e0),
339 INTC_VECT(DMAC, 0x6c0),
342 static DECLARE_INTC_DESC(intc_desc_dma8, "sh7750_dma8",
343 vectors_dma8, NULL,
344 NULL, prio_registers, NULL);
345 #endif
347 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
348 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
349 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
350 defined(CONFIG_CPU_SUBTYPE_SH7751R)
351 static struct intc_vect vectors_tmu34[] __initdata = {
352 INTC_VECT(TMU3, 0xb00), INTC_VECT(TMU4, 0xb80),
355 static struct intc_mask_reg mask_registers[] __initdata = {
356 { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
357 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
358 0, 0, 0, 0, 0, 0, TMU4, TMU3,
359 PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
360 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2,
361 PCIC1_PCIDMA3, PCIC0_PCISERR } },
364 static DECLARE_INTC_DESC(intc_desc_tmu34, "sh7750_tmu34",
365 vectors_tmu34, NULL,
366 mask_registers, prio_registers, NULL);
367 #endif
369 /* SH7750S, SH7750R, SH7751 and SH7751R all have IRLM priority registers */
370 static struct intc_vect vectors_irlm[] __initdata = {
371 INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0),
372 INTC_VECT(IRL2, 0x300), INTC_VECT(IRL3, 0x360),
375 static DECLARE_INTC_DESC(intc_desc_irlm, "sh7750_irlm", vectors_irlm, NULL,
376 NULL, prio_registers, NULL);
378 /* SH7751 and SH7751R both have PCI */
379 #if defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
380 static struct intc_vect vectors_pci[] __initdata = {
381 INTC_VECT(PCIC0_PCISERR, 0xa00), INTC_VECT(PCIC1_PCIERR, 0xae0),
382 INTC_VECT(PCIC1_PCIPWDWN, 0xac0), INTC_VECT(PCIC1_PCIPWON, 0xaa0),
383 INTC_VECT(PCIC1_PCIDMA0, 0xa80), INTC_VECT(PCIC1_PCIDMA1, 0xa60),
384 INTC_VECT(PCIC1_PCIDMA2, 0xa40), INTC_VECT(PCIC1_PCIDMA3, 0xa20),
387 static struct intc_group groups_pci[] __initdata = {
388 INTC_GROUP(PCIC1, PCIC1_PCIERR, PCIC1_PCIPWDWN, PCIC1_PCIPWON,
389 PCIC1_PCIDMA0, PCIC1_PCIDMA1, PCIC1_PCIDMA2, PCIC1_PCIDMA3),
392 static DECLARE_INTC_DESC(intc_desc_pci, "sh7750_pci", vectors_pci, groups_pci,
393 mask_registers, prio_registers, NULL);
394 #endif
396 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
397 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
398 defined(CONFIG_CPU_SUBTYPE_SH7091)
399 void __init plat_irq_setup(void)
402 * same vectors for SH7750, SH7750S and SH7091 except for IRLM,
403 * see below..
405 register_intc_controller(&intc_desc);
406 register_intc_controller(&intc_desc_dma4);
408 #endif
410 #if defined(CONFIG_CPU_SUBTYPE_SH7750R)
411 void __init plat_irq_setup(void)
413 register_intc_controller(&intc_desc);
414 register_intc_controller(&intc_desc_dma8);
415 register_intc_controller(&intc_desc_tmu34);
417 #endif
419 #if defined(CONFIG_CPU_SUBTYPE_SH7751)
420 void __init plat_irq_setup(void)
422 register_intc_controller(&intc_desc);
423 register_intc_controller(&intc_desc_dma4);
424 register_intc_controller(&intc_desc_tmu34);
425 register_intc_controller(&intc_desc_pci);
427 #endif
429 #if defined(CONFIG_CPU_SUBTYPE_SH7751R)
430 void __init plat_irq_setup(void)
432 register_intc_controller(&intc_desc);
433 register_intc_controller(&intc_desc_dma8);
434 register_intc_controller(&intc_desc_tmu34);
435 register_intc_controller(&intc_desc_pci);
437 #endif
439 #define INTC_ICR 0xffd00000UL
440 #define INTC_ICR_IRLM (1<<7)
442 void __init plat_irq_setup_pins(int mode)
444 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7091)
445 BUG(); /* impossible to mask interrupts on SH7750 and SH7091 */
446 return;
447 #endif
449 switch (mode) {
450 case IRQ_MODE_IRQ: /* individual interrupt mode for IRL3-0 */
451 __raw_writew(__raw_readw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
452 register_intc_controller(&intc_desc_irlm);
453 break;
454 default:
455 BUG();