4 * Copyright (C) 2006 Paul Mundt
5 * Copyright (C) 2009 Magnus Damm
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>
14 #include <linux/serial_sci.h>
15 #include <linux/sh_timer.h>
18 static struct plat_sci_port sci_platform_data
[] = {
20 .mapbase
= 0xffe80000,
21 .flags
= UPF_BOOT_AUTOCONF
,
23 .irqs
= { 40, 41, 43, 42 },
29 static struct platform_device sci_device
= {
33 .platform_data
= sci_platform_data
,
37 static struct sh_timer_config tmu0_platform_data
= {
39 .channel_offset
= 0x04,
41 .clk
= "peripheral_clk",
42 .clockevent_rating
= 200,
45 static struct resource tmu0_resources
[] = {
50 .flags
= IORESOURCE_MEM
,
54 .flags
= IORESOURCE_IRQ
,
58 static struct platform_device tmu0_device
= {
62 .platform_data
= &tmu0_platform_data
,
64 .resource
= tmu0_resources
,
65 .num_resources
= ARRAY_SIZE(tmu0_resources
),
68 static struct sh_timer_config tmu1_platform_data
= {
70 .channel_offset
= 0x10,
72 .clk
= "peripheral_clk",
73 .clocksource_rating
= 200,
76 static struct resource tmu1_resources
[] = {
81 .flags
= IORESOURCE_MEM
,
85 .flags
= IORESOURCE_IRQ
,
89 static struct platform_device tmu1_device
= {
93 .platform_data
= &tmu1_platform_data
,
95 .resource
= tmu1_resources
,
96 .num_resources
= ARRAY_SIZE(tmu1_resources
),
99 static struct sh_timer_config tmu2_platform_data
= {
101 .channel_offset
= 0x1c,
103 .clk
= "peripheral_clk",
106 static struct resource tmu2_resources
[] = {
111 .flags
= IORESOURCE_MEM
,
115 .flags
= IORESOURCE_IRQ
,
119 static struct platform_device tmu2_device
= {
123 .platform_data
= &tmu2_platform_data
,
125 .resource
= tmu2_resources
,
126 .num_resources
= ARRAY_SIZE(tmu2_resources
),
129 static struct platform_device
*sh4202_devices
[] __initdata
= {
136 static int __init
sh4202_devices_setup(void)
138 return platform_add_devices(sh4202_devices
,
139 ARRAY_SIZE(sh4202_devices
));
141 arch_initcall(sh4202_devices_setup
);
143 static struct platform_device
*sh4202_early_devices
[] __initdata
= {
149 void __init
plat_early_device_setup(void)
151 early_platform_add_devices(sh4202_early_devices
,
152 ARRAY_SIZE(sh4202_early_devices
));
158 /* interrupt sources */
159 IRL0
, IRL1
, IRL2
, IRL3
, /* only IRLM mode supported */
160 HUDI
, TMU0
, TMU1
, TMU2
, RTC
, SCIF
, WDT
,
163 static struct intc_vect vectors
[] __initdata
= {
164 INTC_VECT(HUDI
, 0x600),
165 INTC_VECT(TMU0
, 0x400), INTC_VECT(TMU1
, 0x420),
166 INTC_VECT(TMU2
, 0x440), INTC_VECT(TMU2
, 0x460),
167 INTC_VECT(RTC
, 0x480), INTC_VECT(RTC
, 0x4a0),
168 INTC_VECT(RTC
, 0x4c0),
169 INTC_VECT(SCIF
, 0x700), INTC_VECT(SCIF
, 0x720),
170 INTC_VECT(SCIF
, 0x740), INTC_VECT(SCIF
, 0x760),
171 INTC_VECT(WDT
, 0x560),
174 static struct intc_prio_reg prio_registers
[] __initdata
= {
175 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0
, TMU1
, TMU2
, RTC
} },
176 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT
, 0, 0, 0 } },
177 { 0xffd0000c, 0, 16, 4, /* IPRC */ { 0, 0, SCIF
, HUDI
} },
178 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0
, IRL1
, IRL2
, IRL3
} },
181 static DECLARE_INTC_DESC(intc_desc
, "sh4-202", vectors
, NULL
,
182 NULL
, prio_registers
, NULL
);
184 static struct intc_vect vectors_irlm
[] __initdata
= {
185 INTC_VECT(IRL0
, 0x240), INTC_VECT(IRL1
, 0x2a0),
186 INTC_VECT(IRL2
, 0x300), INTC_VECT(IRL3
, 0x360),
189 static DECLARE_INTC_DESC(intc_desc_irlm
, "sh4-202_irlm", vectors_irlm
, NULL
,
190 NULL
, prio_registers
, NULL
);
192 void __init
plat_irq_setup(void)
194 register_intc_controller(&intc_desc
);
197 #define INTC_ICR 0xffd00000UL
198 #define INTC_ICR_IRLM (1<<7)
200 void __init
plat_irq_setup_pins(int mode
)
203 case IRQ_MODE_IRQ
: /* individual interrupt mode for IRL3-0 */
204 ctrl_outw(ctrl_inw(INTC_ICR
) | INTC_ICR_IRLM
, INTC_ICR
);
205 register_intc_controller(&intc_desc_irlm
);