2 * SH7091/SH7750/SH7750S/SH7750R/SH7751/SH7751R 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
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 .port_reg
= 0xffe0001C,
42 .flags
= UPF_BOOT_AUTOCONF
,
43 .scscr
= SCSCR_TE
| SCSCR_RE
,
44 .scbrr_algo_id
= SCBRR_ALGO_2
,
46 .irqs
= { 23, 23, 23, 0 },
50 static struct platform_device sci_device
= {
54 .platform_data
= &sci_platform_data
,
58 static struct plat_sci_port scif_platform_data
= {
59 .mapbase
= 0xffe80000,
60 .flags
= UPF_BOOT_AUTOCONF
,
61 .scscr
= SCSCR_TE
| SCSCR_RE
| SCSCR_REIE
,
62 .scbrr_algo_id
= SCBRR_ALGO_2
,
64 .irqs
= { 40, 40, 40, 40 },
67 static struct platform_device scif_device
= {
71 .platform_data
= &scif_platform_data
,
75 static struct sh_timer_config tmu0_platform_data
= {
76 .channel_offset
= 0x04,
78 .clockevent_rating
= 200,
81 static struct resource tmu0_resources
[] = {
85 .flags
= IORESOURCE_MEM
,
89 .flags
= IORESOURCE_IRQ
,
93 static struct platform_device tmu0_device
= {
97 .platform_data
= &tmu0_platform_data
,
99 .resource
= tmu0_resources
,
100 .num_resources
= ARRAY_SIZE(tmu0_resources
),
103 static struct sh_timer_config tmu1_platform_data
= {
104 .channel_offset
= 0x10,
106 .clocksource_rating
= 200,
109 static struct resource tmu1_resources
[] = {
113 .flags
= IORESOURCE_MEM
,
117 .flags
= IORESOURCE_IRQ
,
121 static struct platform_device tmu1_device
= {
125 .platform_data
= &tmu1_platform_data
,
127 .resource
= tmu1_resources
,
128 .num_resources
= ARRAY_SIZE(tmu1_resources
),
131 static struct sh_timer_config tmu2_platform_data
= {
132 .channel_offset
= 0x1c,
136 static struct resource tmu2_resources
[] = {
140 .flags
= IORESOURCE_MEM
,
144 .flags
= IORESOURCE_IRQ
,
148 static struct platform_device tmu2_device
= {
152 .platform_data
= &tmu2_platform_data
,
154 .resource
= tmu2_resources
,
155 .num_resources
= ARRAY_SIZE(tmu2_resources
),
158 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
159 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
160 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
161 defined(CONFIG_CPU_SUBTYPE_SH7751R)
163 static struct sh_timer_config tmu3_platform_data
= {
164 .channel_offset
= 0x04,
168 static struct resource tmu3_resources
[] = {
172 .flags
= IORESOURCE_MEM
,
176 .flags
= IORESOURCE_IRQ
,
180 static struct platform_device tmu3_device
= {
184 .platform_data
= &tmu3_platform_data
,
186 .resource
= tmu3_resources
,
187 .num_resources
= ARRAY_SIZE(tmu3_resources
),
190 static struct sh_timer_config tmu4_platform_data
= {
191 .channel_offset
= 0x10,
195 static struct resource tmu4_resources
[] = {
199 .flags
= IORESOURCE_MEM
,
203 .flags
= IORESOURCE_IRQ
,
207 static struct platform_device tmu4_device
= {
211 .platform_data
= &tmu4_platform_data
,
213 .resource
= tmu4_resources
,
214 .num_resources
= ARRAY_SIZE(tmu4_resources
),
219 static struct platform_device
*sh7750_devices
[] __initdata
= {
224 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
225 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
226 defined(CONFIG_CPU_SUBTYPE_SH7751R)
232 static int __init
sh7750_devices_setup(void)
234 if (mach_is_rts7751r2d()) {
235 platform_device_register(&scif_device
);
237 platform_device_register(&sci_device
);
238 platform_device_register(&scif_device
);
241 return platform_add_devices(sh7750_devices
,
242 ARRAY_SIZE(sh7750_devices
));
244 arch_initcall(sh7750_devices_setup
);
246 static struct platform_device
*sh7750_early_devices
[] __initdata
= {
250 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
251 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
252 defined(CONFIG_CPU_SUBTYPE_SH7751R)
258 void __init
plat_early_device_setup(void)
260 struct platform_device
*dev
[1];
262 if (mach_is_rts7751r2d()) {
263 scif_platform_data
.scscr
|= SCSCR_CKE1
;
264 dev
[0] = &scif_device
;
265 early_platform_add_devices(dev
, 1);
267 dev
[0] = &sci_device
;
268 early_platform_add_devices(dev
, 1);
269 dev
[0] = &scif_device
;
270 early_platform_add_devices(dev
, 1);
273 early_platform_add_devices(sh7750_early_devices
,
274 ARRAY_SIZE(sh7750_early_devices
));
280 /* interrupt sources */
281 IRL0
, IRL1
, IRL2
, IRL3
, /* only IRLM mode supported */
283 PCIC0_PCISERR
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
284 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
,
285 TMU3
, TMU4
, TMU0
, TMU1
, TMU2
, RTC
, SCI1
, SCIF
, WDT
, REF
,
287 /* interrupt groups */
291 static struct intc_vect vectors
[] __initdata
= {
292 INTC_VECT(HUDI
, 0x600), INTC_VECT(GPIOI
, 0x620),
293 INTC_VECT(TMU0
, 0x400), INTC_VECT(TMU1
, 0x420),
294 INTC_VECT(TMU2
, 0x440), INTC_VECT(TMU2
, 0x460),
295 INTC_VECT(RTC
, 0x480), INTC_VECT(RTC
, 0x4a0),
296 INTC_VECT(RTC
, 0x4c0),
297 INTC_VECT(SCI1
, 0x4e0), INTC_VECT(SCI1
, 0x500),
298 INTC_VECT(SCI1
, 0x520), INTC_VECT(SCI1
, 0x540),
299 INTC_VECT(SCIF
, 0x700), INTC_VECT(SCIF
, 0x720),
300 INTC_VECT(SCIF
, 0x740), INTC_VECT(SCIF
, 0x760),
301 INTC_VECT(WDT
, 0x560),
302 INTC_VECT(REF
, 0x580), INTC_VECT(REF
, 0x5a0),
305 static struct intc_prio_reg prio_registers
[] __initdata
= {
306 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0
, TMU1
, TMU2
, RTC
} },
307 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT
, REF
, SCI1
, 0 } },
308 { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI
, DMAC
, SCIF
, HUDI
} },
309 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0
, IRL1
, IRL2
, IRL3
} },
310 { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { 0, 0, 0, 0,
312 PCIC1
, PCIC0_PCISERR
} },
315 static DECLARE_INTC_DESC(intc_desc
, "sh7750", vectors
, NULL
,
316 NULL
, prio_registers
, NULL
);
318 /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */
319 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
320 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
321 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
322 defined(CONFIG_CPU_SUBTYPE_SH7091)
323 static struct intc_vect vectors_dma4
[] __initdata
= {
324 INTC_VECT(DMAC
, 0x640), INTC_VECT(DMAC
, 0x660),
325 INTC_VECT(DMAC
, 0x680), INTC_VECT(DMAC
, 0x6a0),
326 INTC_VECT(DMAC
, 0x6c0),
329 static DECLARE_INTC_DESC(intc_desc_dma4
, "sh7750_dma4",
331 NULL
, prio_registers
, NULL
);
334 /* SH7750R and SH7751R both have 8-channel DMA controllers */
335 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
336 static struct intc_vect vectors_dma8
[] __initdata
= {
337 INTC_VECT(DMAC
, 0x640), INTC_VECT(DMAC
, 0x660),
338 INTC_VECT(DMAC
, 0x680), INTC_VECT(DMAC
, 0x6a0),
339 INTC_VECT(DMAC
, 0x780), INTC_VECT(DMAC
, 0x7a0),
340 INTC_VECT(DMAC
, 0x7c0), INTC_VECT(DMAC
, 0x7e0),
341 INTC_VECT(DMAC
, 0x6c0),
344 static DECLARE_INTC_DESC(intc_desc_dma8
, "sh7750_dma8",
346 NULL
, prio_registers
, NULL
);
349 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
350 #if defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
351 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
352 defined(CONFIG_CPU_SUBTYPE_SH7751R)
353 static struct intc_vect vectors_tmu34
[] __initdata
= {
354 INTC_VECT(TMU3
, 0xb00), INTC_VECT(TMU4
, 0xb80),
357 static struct intc_mask_reg mask_registers
[] __initdata
= {
358 { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
359 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
360 0, 0, 0, 0, 0, 0, TMU4
, TMU3
,
361 PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
362 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
,
363 PCIC1_PCIDMA3
, PCIC0_PCISERR
} },
366 static DECLARE_INTC_DESC(intc_desc_tmu34
, "sh7750_tmu34",
368 mask_registers
, prio_registers
, NULL
);
371 /* SH7750S, SH7750R, SH7751 and SH7751R all have IRLM priority registers */
372 static struct intc_vect vectors_irlm
[] __initdata
= {
373 INTC_VECT(IRL0
, 0x240), INTC_VECT(IRL1
, 0x2a0),
374 INTC_VECT(IRL2
, 0x300), INTC_VECT(IRL3
, 0x360),
377 static DECLARE_INTC_DESC(intc_desc_irlm
, "sh7750_irlm", vectors_irlm
, NULL
,
378 NULL
, prio_registers
, NULL
);
380 /* SH7751 and SH7751R both have PCI */
381 #if defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7751R)
382 static struct intc_vect vectors_pci
[] __initdata
= {
383 INTC_VECT(PCIC0_PCISERR
, 0xa00), INTC_VECT(PCIC1_PCIERR
, 0xae0),
384 INTC_VECT(PCIC1_PCIPWDWN
, 0xac0), INTC_VECT(PCIC1_PCIPWON
, 0xaa0),
385 INTC_VECT(PCIC1_PCIDMA0
, 0xa80), INTC_VECT(PCIC1_PCIDMA1
, 0xa60),
386 INTC_VECT(PCIC1_PCIDMA2
, 0xa40), INTC_VECT(PCIC1_PCIDMA3
, 0xa20),
389 static struct intc_group groups_pci
[] __initdata
= {
390 INTC_GROUP(PCIC1
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
391 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
),
394 static DECLARE_INTC_DESC(intc_desc_pci
, "sh7750_pci", vectors_pci
, groups_pci
,
395 mask_registers
, prio_registers
, NULL
);
398 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
399 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
400 defined(CONFIG_CPU_SUBTYPE_SH7091)
401 void __init
plat_irq_setup(void)
404 * same vectors for SH7750, SH7750S and SH7091 except for IRLM,
407 register_intc_controller(&intc_desc
);
408 register_intc_controller(&intc_desc_dma4
);
412 #if defined(CONFIG_CPU_SUBTYPE_SH7750R)
413 void __init
plat_irq_setup(void)
415 register_intc_controller(&intc_desc
);
416 register_intc_controller(&intc_desc_dma8
);
417 register_intc_controller(&intc_desc_tmu34
);
421 #if defined(CONFIG_CPU_SUBTYPE_SH7751)
422 void __init
plat_irq_setup(void)
424 register_intc_controller(&intc_desc
);
425 register_intc_controller(&intc_desc_dma4
);
426 register_intc_controller(&intc_desc_tmu34
);
427 register_intc_controller(&intc_desc_pci
);
431 #if defined(CONFIG_CPU_SUBTYPE_SH7751R)
432 void __init
plat_irq_setup(void)
434 register_intc_controller(&intc_desc
);
435 register_intc_controller(&intc_desc_dma8
);
436 register_intc_controller(&intc_desc_tmu34
);
437 register_intc_controller(&intc_desc_pci
);
441 #define INTC_ICR 0xffd00000UL
442 #define INTC_ICR_IRLM (1<<7)
444 void __init
plat_irq_setup_pins(int mode
)
446 #if defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7091)
447 BUG(); /* impossible to mask interrupts on SH7750 and SH7091 */
452 case IRQ_MODE_IRQ
: /* individual interrupt mode for IRL3-0 */
453 __raw_writew(__raw_readw(INTC_ICR
) | INTC_ICR_IRLM
, INTC_ICR
);
454 register_intc_controller(&intc_desc_irlm
);