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
11 #include <linux/platform_device.h>
12 #include <linux/init.h>
13 #include <linux/serial.h>
15 #include <linux/sh_timer.h>
16 #include <linux/serial_sci.h>
17 #include <generated/machtypes.h>
19 static struct resource rtc_resources
[] = {
22 .end
= 0xffc80000 + 0x58 - 1,
23 .flags
= IORESOURCE_IO
,
26 /* Shared Period/Carry/Alarm IRQ */
28 .flags
= IORESOURCE_IRQ
,
32 static struct platform_device rtc_device
= {
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
,
45 .irqs
= { 23, 23, 23, 0 },
48 static struct platform_device sci_device
= {
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
,
62 .irqs
= { 40, 40, 40, 40 },
65 static struct platform_device scif_device
= {
69 .platform_data
= &scif_platform_data
,
73 static struct sh_timer_config tmu0_platform_data
= {
74 .channel_offset
= 0x04,
76 .clockevent_rating
= 200,
79 static struct resource tmu0_resources
[] = {
83 .flags
= IORESOURCE_MEM
,
87 .flags
= IORESOURCE_IRQ
,
91 static struct platform_device tmu0_device
= {
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,
104 .clocksource_rating
= 200,
107 static struct resource tmu1_resources
[] = {
111 .flags
= IORESOURCE_MEM
,
115 .flags
= IORESOURCE_IRQ
,
119 static struct platform_device tmu1_device
= {
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,
134 static struct resource tmu2_resources
[] = {
138 .flags
= IORESOURCE_MEM
,
142 .flags
= IORESOURCE_IRQ
,
146 static struct platform_device tmu2_device
= {
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,
166 static struct resource tmu3_resources
[] = {
170 .flags
= IORESOURCE_MEM
,
174 .flags
= IORESOURCE_IRQ
,
178 static struct platform_device tmu3_device
= {
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,
193 static struct resource tmu4_resources
[] = {
197 .flags
= IORESOURCE_MEM
,
201 .flags
= IORESOURCE_IRQ
,
205 static struct platform_device tmu4_device
= {
209 .platform_data
= &tmu4_platform_data
,
211 .resource
= tmu4_resources
,
212 .num_resources
= ARRAY_SIZE(tmu4_resources
),
217 static struct platform_device
*sh7750_devices
[] __initdata
= {
222 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
223 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
224 defined(CONFIG_CPU_SUBTYPE_SH7751R)
230 static int __init
sh7750_devices_setup(void)
232 if (mach_is_rts7751r2d()) {
233 platform_device_register(&scif_device
);
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
= {
248 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
249 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
250 defined(CONFIG_CPU_SUBTYPE_SH7751R)
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);
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
));
278 /* interrupt sources */
279 IRL0
, IRL1
, IRL2
, IRL3
, /* only IRLM mode supported */
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 */
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,
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",
329 NULL
, prio_registers
, NULL
);
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",
344 NULL
, prio_registers
, NULL
);
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",
366 mask_registers
, prio_registers
, NULL
);
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
);
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,
405 register_intc_controller(&intc_desc
);
406 register_intc_controller(&intc_desc_dma4
);
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
);
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
);
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
);
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 */
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
);