4 * Copyright (C) 2007 Markus Brunner, Mark Jonas
5 * Copyright (C) 2009 Paul Mundt
7 * Based on arch/sh/kernel/cpu/sh4/setup-sh7750.c:
9 * Copyright (C) 2006 Paul Mundt
10 * Copyright (C) 2006 Jamie Lenehan
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file "COPYING" in the main directory of this archive
16 #include <linux/platform_device.h>
17 #include <linux/init.h>
18 #include <linux/serial.h>
20 #include <linux/serial_sci.h>
21 #include <linux/sh_timer.h>
24 static struct resource rtc_resources
[] = {
27 .end
= 0xa413fec0 + 0x28 - 1,
28 .flags
= IORESOURCE_IO
,
31 /* Shared Period/Carry/Alarm IRQ */
33 .flags
= IORESOURCE_IRQ
,
37 static struct sh_rtc_platform_info rtc_info
= {
38 .capabilities
= RTC_CAP_4_DIGIT_YEAR
,
41 static struct platform_device rtc_device
= {
44 .num_resources
= ARRAY_SIZE(rtc_resources
),
45 .resource
= rtc_resources
,
47 .platform_data
= &rtc_info
,
51 static struct plat_sci_port scif0_platform_data
= {
52 .mapbase
= 0xa4430000,
53 .flags
= UPF_BOOT_AUTOCONF
,
55 .irqs
= { 80, 80, 80, 80 },
58 static struct platform_device scif0_device
= {
62 .platform_data
= &scif0_platform_data
,
66 static struct plat_sci_port scif1_platform_data
= {
67 .mapbase
= 0xa4438000,
68 .flags
= UPF_BOOT_AUTOCONF
,
70 .irqs
= { 81, 81, 81, 81 },
73 static struct platform_device scif1_device
= {
77 .platform_data
= &scif1_platform_data
,
81 static struct resource usb_ohci_resources
[] = {
85 .flags
= IORESOURCE_MEM
,
90 .flags
= IORESOURCE_IRQ
,
94 static u64 usb_ohci_dma_mask
= 0xffffffffUL
;
95 static struct platform_device usb_ohci_device
= {
99 .dma_mask
= &usb_ohci_dma_mask
,
100 .coherent_dma_mask
= 0xffffffff,
102 .num_resources
= ARRAY_SIZE(usb_ohci_resources
),
103 .resource
= usb_ohci_resources
,
106 static struct resource usbf_resources
[] = {
111 .flags
= IORESOURCE_MEM
,
117 .flags
= IORESOURCE_IRQ
,
121 static struct platform_device usbf_device
= {
126 .coherent_dma_mask
= 0xffffffff,
128 .num_resources
= ARRAY_SIZE(usbf_resources
),
129 .resource
= usbf_resources
,
132 static struct sh_timer_config cmt0_platform_data
= {
134 .channel_offset
= 0x10,
136 .clk
= "peripheral_clk",
137 .clockevent_rating
= 125,
138 .clocksource_rating
= 125,
141 static struct resource cmt0_resources
[] = {
146 .flags
= IORESOURCE_MEM
,
150 .flags
= IORESOURCE_IRQ
,
154 static struct platform_device cmt0_device
= {
158 .platform_data
= &cmt0_platform_data
,
160 .resource
= cmt0_resources
,
161 .num_resources
= ARRAY_SIZE(cmt0_resources
),
164 static struct sh_timer_config cmt1_platform_data
= {
166 .channel_offset
= 0x20,
168 .clk
= "peripheral_clk",
171 static struct resource cmt1_resources
[] = {
176 .flags
= IORESOURCE_MEM
,
180 .flags
= IORESOURCE_IRQ
,
184 static struct platform_device cmt1_device
= {
188 .platform_data
= &cmt1_platform_data
,
190 .resource
= cmt1_resources
,
191 .num_resources
= ARRAY_SIZE(cmt1_resources
),
194 static struct sh_timer_config cmt2_platform_data
= {
196 .channel_offset
= 0x30,
198 .clk
= "peripheral_clk",
201 static struct resource cmt2_resources
[] = {
206 .flags
= IORESOURCE_MEM
,
210 .flags
= IORESOURCE_IRQ
,
214 static struct platform_device cmt2_device
= {
218 .platform_data
= &cmt2_platform_data
,
220 .resource
= cmt2_resources
,
221 .num_resources
= ARRAY_SIZE(cmt2_resources
),
224 static struct sh_timer_config cmt3_platform_data
= {
226 .channel_offset
= 0x40,
228 .clk
= "peripheral_clk",
231 static struct resource cmt3_resources
[] = {
236 .flags
= IORESOURCE_MEM
,
240 .flags
= IORESOURCE_IRQ
,
244 static struct platform_device cmt3_device
= {
248 .platform_data
= &cmt3_platform_data
,
250 .resource
= cmt3_resources
,
251 .num_resources
= ARRAY_SIZE(cmt3_resources
),
254 static struct sh_timer_config cmt4_platform_data
= {
256 .channel_offset
= 0x50,
258 .clk
= "peripheral_clk",
261 static struct resource cmt4_resources
[] = {
266 .flags
= IORESOURCE_MEM
,
270 .flags
= IORESOURCE_IRQ
,
274 static struct platform_device cmt4_device
= {
278 .platform_data
= &cmt4_platform_data
,
280 .resource
= cmt4_resources
,
281 .num_resources
= ARRAY_SIZE(cmt4_resources
),
284 static struct sh_timer_config tmu0_platform_data
= {
286 .channel_offset
= 0x02,
288 .clk
= "peripheral_clk",
289 .clockevent_rating
= 200,
292 static struct resource tmu0_resources
[] = {
297 .flags
= IORESOURCE_MEM
,
301 .flags
= IORESOURCE_IRQ
,
305 static struct platform_device tmu0_device
= {
309 .platform_data
= &tmu0_platform_data
,
311 .resource
= tmu0_resources
,
312 .num_resources
= ARRAY_SIZE(tmu0_resources
),
315 static struct sh_timer_config tmu1_platform_data
= {
317 .channel_offset
= 0xe,
319 .clk
= "peripheral_clk",
320 .clocksource_rating
= 200,
323 static struct resource tmu1_resources
[] = {
328 .flags
= IORESOURCE_MEM
,
332 .flags
= IORESOURCE_IRQ
,
336 static struct platform_device tmu1_device
= {
340 .platform_data
= &tmu1_platform_data
,
342 .resource
= tmu1_resources
,
343 .num_resources
= ARRAY_SIZE(tmu1_resources
),
346 static struct sh_timer_config tmu2_platform_data
= {
348 .channel_offset
= 0x1a,
350 .clk
= "peripheral_clk",
353 static struct resource tmu2_resources
[] = {
358 .flags
= IORESOURCE_MEM
,
362 .flags
= IORESOURCE_IRQ
,
366 static struct platform_device tmu2_device
= {
370 .platform_data
= &tmu2_platform_data
,
372 .resource
= tmu2_resources
,
373 .num_resources
= ARRAY_SIZE(tmu2_resources
),
376 static struct platform_device
*sh7720_devices
[] __initdata
= {
392 static int __init
sh7720_devices_setup(void)
394 return platform_add_devices(sh7720_devices
,
395 ARRAY_SIZE(sh7720_devices
));
397 arch_initcall(sh7720_devices_setup
);
399 static struct platform_device
*sh7720_early_devices
[] __initdata
= {
412 void __init
plat_early_device_setup(void)
414 early_platform_add_devices(sh7720_early_devices
,
415 ARRAY_SIZE(sh7720_early_devices
));
421 /* interrupt sources */
422 TMU0
, TMU1
, TMU2
, RTC
,
424 IRQ0
, IRQ1
, IRQ2
, IRQ3
,
425 USBF_SPD
, TMU_SUNI
, IRQ5
, IRQ4
,
427 ADC
, DMAC2
, USBFI
, CMT
,
429 PINT07
, PINT815
, TPU
, IIC
,
430 SIOF0
, SIOF1
, MMC
, PCC
,
435 static struct intc_vect vectors
[] __initdata
= {
436 /* IRQ0->5 are handled in setup-sh3.c */
437 INTC_VECT(TMU0
, 0x400), INTC_VECT(TMU1
, 0x420),
438 INTC_VECT(TMU2
, 0x440), INTC_VECT(RTC
, 0x480),
439 INTC_VECT(RTC
, 0x4a0), INTC_VECT(RTC
, 0x4c0),
440 INTC_VECT(SIM
, 0x4e0), INTC_VECT(SIM
, 0x500),
441 INTC_VECT(SIM
, 0x520), INTC_VECT(SIM
, 0x540),
442 INTC_VECT(WDT
, 0x560), INTC_VECT(REF_RCMI
, 0x580),
443 /* H_UDI cannot be masked */ INTC_VECT(TMU_SUNI
, 0x6c0),
444 INTC_VECT(USBF_SPD
, 0x6e0), INTC_VECT(DMAC1
, 0x800),
445 INTC_VECT(DMAC1
, 0x820), INTC_VECT(DMAC1
, 0x840),
446 INTC_VECT(DMAC1
, 0x860), INTC_VECT(LCDC
, 0x900),
447 #if defined(CONFIG_CPU_SUBTYPE_SH7720)
448 INTC_VECT(SSL
, 0x980),
450 INTC_VECT(USBFI
, 0xa20), INTC_VECT(USBFI
, 0xa40),
451 INTC_VECT(USBHI
, 0xa60),
452 INTC_VECT(DMAC2
, 0xb80), INTC_VECT(DMAC2
, 0xba0),
453 INTC_VECT(ADC
, 0xbe0), INTC_VECT(SCIF0
, 0xc00),
454 INTC_VECT(SCIF1
, 0xc20), INTC_VECT(PINT07
, 0xc80),
455 INTC_VECT(PINT815
, 0xca0), INTC_VECT(SIOF0
, 0xd00),
456 INTC_VECT(SIOF1
, 0xd20), INTC_VECT(TPU
, 0xd80),
457 INTC_VECT(TPU
, 0xda0), INTC_VECT(TPU
, 0xdc0),
458 INTC_VECT(TPU
, 0xde0), INTC_VECT(IIC
, 0xe00),
459 INTC_VECT(MMC
, 0xe80), INTC_VECT(MMC
, 0xea0),
460 INTC_VECT(MMC
, 0xec0), INTC_VECT(MMC
, 0xee0),
461 INTC_VECT(CMT
, 0xf00), INTC_VECT(PCC
, 0xf60),
462 INTC_VECT(AFEIF
, 0xfe0),
465 static struct intc_prio_reg prio_registers
[] __initdata
= {
466 { 0xA414FEE2UL
, 0, 16, 4, /* IPRA */ { TMU0
, TMU1
, TMU2
, RTC
} },
467 { 0xA414FEE4UL
, 0, 16, 4, /* IPRB */ { WDT
, REF_RCMI
, SIM
, 0 } },
468 { 0xA4140016UL
, 0, 16, 4, /* IPRC */ { IRQ3
, IRQ2
, IRQ1
, IRQ0
} },
469 { 0xA4140018UL
, 0, 16, 4, /* IPRD */ { USBF_SPD
, TMU_SUNI
, IRQ5
, IRQ4
} },
470 { 0xA414001AUL
, 0, 16, 4, /* IPRE */ { DMAC1
, 0, LCDC
, SSL
} },
471 { 0xA4080000UL
, 0, 16, 4, /* IPRF */ { ADC
, DMAC2
, USBFI
, CMT
} },
472 { 0xA4080002UL
, 0, 16, 4, /* IPRG */ { SCIF0
, SCIF1
, 0, 0 } },
473 { 0xA4080004UL
, 0, 16, 4, /* IPRH */ { PINT07
, PINT815
, TPU
, IIC
} },
474 { 0xA4080006UL
, 0, 16, 4, /* IPRI */ { SIOF0
, SIOF1
, MMC
, PCC
} },
475 { 0xA4080008UL
, 0, 16, 4, /* IPRJ */ { 0, USBHI
, 0, AFEIF
} },
478 static DECLARE_INTC_DESC(intc_desc
, "sh7720", vectors
, NULL
,
479 NULL
, prio_registers
, NULL
);
481 void __init
plat_irq_setup(void)
483 register_intc_controller(&intc_desc
);
484 plat_irq_setup_sh3();