blob: 5d14f849aea3f9b632902cfdcf7bfe0c735f5a30 [file] [log] [blame]
Yoshinori Sato9d4436a2006-11-05 15:40:13 +09001/*
2 * SH7206 Setup
3 *
4 * Copyright (C) 2006 Yoshinori Sato
Paul Mundtf858abb2009-03-06 18:34:15 +09005 * Copyright (C) 2009 Paul Mundt
Yoshinori Sato9d4436a2006-11-05 15:40:13 +09006 *
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.
10 */
11#include <linux/platform_device.h>
12#include <linux/init.h>
13#include <linux/serial.h>
Paul Mundt96de1a82008-02-26 14:52:45 +090014#include <linux/serial_sci.h>
Paul Mundt46a12f72009-05-03 17:57:17 +090015#include <linux/sh_timer.h>
Magnus Damm698aa992009-04-30 04:08:18 +000016#include <linux/io.h>
Yoshinori Sato9d4436a2006-11-05 15:40:13 +090017
Magnus Damm2eb03032007-08-17 00:53:41 +090018enum {
19 UNUSED = 0,
20
21 /* interrupt sources */
22 IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7,
23 PINT0, PINT1, PINT2, PINT3, PINT4, PINT5, PINT6, PINT7,
24 ADC_ADI0, ADC_ADI1,
Magnus Damm2eb03032007-08-17 00:53:41 +090025
Paul Mundtf858abb2009-03-06 18:34:15 +090026 DMAC0, DMAC1, DMAC2, DMAC3, DMAC4, DMAC5, DMAC6, DMAC7,
27
Magnus Damm2eb03032007-08-17 00:53:41 +090028 MTU0_ABCD, MTU0_VEF, MTU1_AB, MTU1_VU, MTU2_AB, MTU2_VU,
29 MTU3_ABCD, MTU4_ABCD, MTU5, POE2_12, MTU3S_ABCD, MTU4S_ABCD, MTU5S,
Paul Mundtf858abb2009-03-06 18:34:15 +090030 IIC3,
31
32 CMT0, CMT1, BSC, WDT,
33
34 MTU2_TCI3V, MTU2_TCI4V, MTU2S_TCI3V, MTU2S_TCI4V,
35
36 POE2_OEI3,
37
38 SCIF0, SCIF1, SCIF2, SCIF3,
39
40 /* interrupt groups */
41 PINT,
Magnus Damm2eb03032007-08-17 00:53:41 +090042};
43
44static struct intc_vect vectors[] __initdata = {
45 INTC_IRQ(IRQ0, 64), INTC_IRQ(IRQ1, 65),
46 INTC_IRQ(IRQ2, 66), INTC_IRQ(IRQ3, 67),
47 INTC_IRQ(IRQ4, 68), INTC_IRQ(IRQ5, 69),
48 INTC_IRQ(IRQ6, 70), INTC_IRQ(IRQ7, 71),
49 INTC_IRQ(PINT0, 80), INTC_IRQ(PINT1, 81),
50 INTC_IRQ(PINT2, 82), INTC_IRQ(PINT3, 83),
51 INTC_IRQ(PINT4, 84), INTC_IRQ(PINT5, 85),
52 INTC_IRQ(PINT6, 86), INTC_IRQ(PINT7, 87),
53 INTC_IRQ(ADC_ADI0, 92), INTC_IRQ(ADC_ADI1, 96),
Paul Mundtf858abb2009-03-06 18:34:15 +090054 INTC_IRQ(DMAC0, 108), INTC_IRQ(DMAC0, 109),
55 INTC_IRQ(DMAC1, 112), INTC_IRQ(DMAC1, 113),
56 INTC_IRQ(DMAC2, 116), INTC_IRQ(DMAC2, 117),
57 INTC_IRQ(DMAC3, 120), INTC_IRQ(DMAC3, 121),
58 INTC_IRQ(DMAC4, 124), INTC_IRQ(DMAC4, 125),
59 INTC_IRQ(DMAC5, 128), INTC_IRQ(DMAC5, 129),
60 INTC_IRQ(DMAC6, 132), INTC_IRQ(DMAC6, 133),
61 INTC_IRQ(DMAC7, 136), INTC_IRQ(DMAC7, 137),
Magnus Damm2eb03032007-08-17 00:53:41 +090062 INTC_IRQ(CMT0, 140), INTC_IRQ(CMT1, 144),
63 INTC_IRQ(BSC, 148), INTC_IRQ(WDT, 152),
Paul Mundtf858abb2009-03-06 18:34:15 +090064 INTC_IRQ(MTU0_ABCD, 156), INTC_IRQ(MTU0_ABCD, 157),
65 INTC_IRQ(MTU0_ABCD, 158), INTC_IRQ(MTU0_ABCD, 159),
66 INTC_IRQ(MTU0_VEF, 160), INTC_IRQ(MTU0_VEF, 161),
67 INTC_IRQ(MTU0_VEF, 162),
68 INTC_IRQ(MTU1_AB, 164), INTC_IRQ(MTU1_AB, 165),
69 INTC_IRQ(MTU1_VU, 168), INTC_IRQ(MTU1_VU, 169),
70 INTC_IRQ(MTU2_AB, 172), INTC_IRQ(MTU2_AB, 173),
71 INTC_IRQ(MTU2_VU, 176), INTC_IRQ(MTU2_VU, 177),
72 INTC_IRQ(MTU3_ABCD, 180), INTC_IRQ(MTU3_ABCD, 181),
73 INTC_IRQ(MTU3_ABCD, 182), INTC_IRQ(MTU3_ABCD, 183),
Magnus Damm2eb03032007-08-17 00:53:41 +090074 INTC_IRQ(MTU2_TCI3V, 184),
Paul Mundtf858abb2009-03-06 18:34:15 +090075 INTC_IRQ(MTU4_ABCD, 188), INTC_IRQ(MTU4_ABCD, 189),
76 INTC_IRQ(MTU4_ABCD, 190), INTC_IRQ(MTU4_ABCD, 191),
Magnus Damm2eb03032007-08-17 00:53:41 +090077 INTC_IRQ(MTU2_TCI4V, 192),
Paul Mundtf858abb2009-03-06 18:34:15 +090078 INTC_IRQ(MTU5, 196), INTC_IRQ(MTU5, 197),
79 INTC_IRQ(MTU5, 198),
80 INTC_IRQ(POE2_12, 200), INTC_IRQ(POE2_12, 201),
81 INTC_IRQ(MTU3S_ABCD, 204), INTC_IRQ(MTU3S_ABCD, 205),
82 INTC_IRQ(MTU3S_ABCD, 206), INTC_IRQ(MTU3S_ABCD, 207),
Magnus Damm2eb03032007-08-17 00:53:41 +090083 INTC_IRQ(MTU2S_TCI3V, 208),
Paul Mundtf858abb2009-03-06 18:34:15 +090084 INTC_IRQ(MTU4S_ABCD, 212), INTC_IRQ(MTU4S_ABCD, 213),
85 INTC_IRQ(MTU4S_ABCD, 214), INTC_IRQ(MTU4S_ABCD, 215),
Magnus Damm2eb03032007-08-17 00:53:41 +090086 INTC_IRQ(MTU2S_TCI4V, 216),
Paul Mundtf858abb2009-03-06 18:34:15 +090087 INTC_IRQ(MTU5S, 220), INTC_IRQ(MTU5S, 221),
88 INTC_IRQ(MTU5S, 222),
Magnus Damm2eb03032007-08-17 00:53:41 +090089 INTC_IRQ(POE2_OEI3, 224),
Paul Mundtf858abb2009-03-06 18:34:15 +090090 INTC_IRQ(IIC3, 228), INTC_IRQ(IIC3, 229),
91 INTC_IRQ(IIC3, 230), INTC_IRQ(IIC3, 231),
92 INTC_IRQ(IIC3, 232),
93 INTC_IRQ(SCIF0, 240), INTC_IRQ(SCIF0, 241),
94 INTC_IRQ(SCIF0, 242), INTC_IRQ(SCIF0, 243),
95 INTC_IRQ(SCIF1, 244), INTC_IRQ(SCIF1, 245),
96 INTC_IRQ(SCIF1, 246), INTC_IRQ(SCIF1, 247),
97 INTC_IRQ(SCIF2, 248), INTC_IRQ(SCIF2, 249),
98 INTC_IRQ(SCIF2, 250), INTC_IRQ(SCIF2, 251),
99 INTC_IRQ(SCIF3, 252), INTC_IRQ(SCIF3, 253),
100 INTC_IRQ(SCIF3, 254), INTC_IRQ(SCIF3, 255),
Magnus Damm2eb03032007-08-17 00:53:41 +0900101};
102
103static struct intc_group groups[] __initdata = {
104 INTC_GROUP(PINT, PINT0, PINT1, PINT2, PINT3,
105 PINT4, PINT5, PINT6, PINT7),
Magnus Damm2eb03032007-08-17 00:53:41 +0900106};
107
108static struct intc_prio_reg prio_registers[] __initdata = {
109 { 0xfffe0818, 0, 16, 4, /* IPR01 */ { IRQ0, IRQ1, IRQ2, IRQ3 } },
110 { 0xfffe081a, 0, 16, 4, /* IPR02 */ { IRQ4, IRQ5, IRQ6, IRQ7 } },
111 { 0xfffe0820, 0, 16, 4, /* IPR05 */ { PINT, 0, ADC_ADI0, ADC_ADI1 } },
112 { 0xfffe0c00, 0, 16, 4, /* IPR06 */ { DMAC0, DMAC1, DMAC2, DMAC3 } },
113 { 0xfffe0c02, 0, 16, 4, /* IPR07 */ { DMAC4, DMAC5, DMAC6, DMAC7 } },
114 { 0xfffe0c04, 0, 16, 4, /* IPR08 */ { CMT0, CMT1, BSC, WDT } },
115 { 0xfffe0c06, 0, 16, 4, /* IPR09 */ { MTU0_ABCD, MTU0_VEF,
116 MTU1_AB, MTU1_VU } },
117 { 0xfffe0c08, 0, 16, 4, /* IPR10 */ { MTU2_AB, MTU2_VU,
118 MTU3_ABCD, MTU2_TCI3V } },
119 { 0xfffe0c0a, 0, 16, 4, /* IPR11 */ { MTU4_ABCD, MTU2_TCI4V,
120 MTU5, POE2_12 } },
121 { 0xfffe0c0c, 0, 16, 4, /* IPR12 */ { MTU3S_ABCD, MTU2S_TCI3V,
122 MTU4S_ABCD, MTU2S_TCI4V } },
123 { 0xfffe0c0e, 0, 16, 4, /* IPR13 */ { MTU5S, POE2_OEI3, IIC3, 0 } },
124 { 0xfffe0c10, 0, 16, 4, /* IPR14 */ { SCIF0, SCIF1, SCIF2, SCIF3 } },
125};
126
127static struct intc_mask_reg mask_registers[] __initdata = {
128 { 0xfffe0808, 0, 16, /* PINTER */
129 { 0, 0, 0, 0, 0, 0, 0, 0,
130 PINT7, PINT6, PINT5, PINT4, PINT3, PINT2, PINT1, PINT0 } },
131};
132
133static DECLARE_INTC_DESC(intc_desc, "sh7206", vectors, groups,
Magnus Damm7f3edee2008-01-10 14:08:55 +0900134 mask_registers, prio_registers, NULL);
Magnus Damm2eb03032007-08-17 00:53:41 +0900135
Magnus Dammbe091d22009-12-14 12:29:56 +0000136static struct plat_sci_port scif0_platform_data = {
137 .mapbase = 0xfffe8000,
138 .flags = UPF_BOOT_AUTOCONF,
Paul Mundtf43dc232011-01-13 15:06:28 +0900139 .scscr = SCSCR_RE | SCSCR_TE | SCSCR_REIE,
140 .scbrr_algo_id = SCBRR_ALGO_2,
Magnus Dammbe091d22009-12-14 12:29:56 +0000141 .type = PORT_SCIF,
142 .irqs = { 240, 240, 240, 240 },
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900143};
144
Magnus Dammbe091d22009-12-14 12:29:56 +0000145static struct platform_device scif0_device = {
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900146 .name = "sh-sci",
Magnus Dammbe091d22009-12-14 12:29:56 +0000147 .id = 0,
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900148 .dev = {
Magnus Dammbe091d22009-12-14 12:29:56 +0000149 .platform_data = &scif0_platform_data,
150 },
151};
152
153static struct plat_sci_port scif1_platform_data = {
154 .mapbase = 0xfffe8800,
155 .flags = UPF_BOOT_AUTOCONF,
Paul Mundtf43dc232011-01-13 15:06:28 +0900156 .scscr = SCSCR_RE | SCSCR_TE | SCSCR_REIE,
157 .scbrr_algo_id = SCBRR_ALGO_2,
Magnus Dammbe091d22009-12-14 12:29:56 +0000158 .type = PORT_SCIF,
159 .irqs = { 244, 244, 244, 244 },
160};
161
162static struct platform_device scif1_device = {
163 .name = "sh-sci",
164 .id = 1,
165 .dev = {
166 .platform_data = &scif1_platform_data,
167 },
168};
169
170static struct plat_sci_port scif2_platform_data = {
171 .mapbase = 0xfffe9000,
172 .flags = UPF_BOOT_AUTOCONF,
Paul Mundtf43dc232011-01-13 15:06:28 +0900173 .scscr = SCSCR_RE | SCSCR_TE | SCSCR_REIE,
174 .scbrr_algo_id = SCBRR_ALGO_2,
Magnus Dammbe091d22009-12-14 12:29:56 +0000175 .type = PORT_SCIF,
176 .irqs = { 248, 248, 248, 248 },
177};
178
179static struct platform_device scif2_device = {
180 .name = "sh-sci",
181 .id = 2,
182 .dev = {
183 .platform_data = &scif2_platform_data,
184 },
185};
186
187static struct plat_sci_port scif3_platform_data = {
188 .mapbase = 0xfffe9800,
189 .flags = UPF_BOOT_AUTOCONF,
Paul Mundtf43dc232011-01-13 15:06:28 +0900190 .scscr = SCSCR_RE | SCSCR_TE | SCSCR_REIE,
191 .scbrr_algo_id = SCBRR_ALGO_2,
Magnus Dammbe091d22009-12-14 12:29:56 +0000192 .type = PORT_SCIF,
193 .irqs = { 252, 252, 252, 252 },
194};
195
196static struct platform_device scif3_device = {
197 .name = "sh-sci",
198 .id = 3,
199 .dev = {
200 .platform_data = &scif3_platform_data,
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900201 },
202};
203
Paul Mundt46a12f72009-05-03 17:57:17 +0900204static struct sh_timer_config cmt0_platform_data = {
Magnus Damm698aa992009-04-30 04:08:18 +0000205 .channel_offset = 0x02,
206 .timer_bit = 0,
Magnus Damm698aa992009-04-30 04:08:18 +0000207 .clockevent_rating = 125,
208 .clocksource_rating = 0, /* disabled due to code generation issues */
209};
210
211static struct resource cmt0_resources[] = {
212 [0] = {
Magnus Damm698aa992009-04-30 04:08:18 +0000213 .start = 0xfffec002,
214 .end = 0xfffec007,
215 .flags = IORESOURCE_MEM,
216 },
217 [1] = {
218 .start = 140,
219 .flags = IORESOURCE_IRQ,
220 },
221};
222
223static struct platform_device cmt0_device = {
224 .name = "sh_cmt",
225 .id = 0,
226 .dev = {
227 .platform_data = &cmt0_platform_data,
228 },
229 .resource = cmt0_resources,
230 .num_resources = ARRAY_SIZE(cmt0_resources),
231};
232
Paul Mundt46a12f72009-05-03 17:57:17 +0900233static struct sh_timer_config cmt1_platform_data = {
Magnus Damm698aa992009-04-30 04:08:18 +0000234 .channel_offset = 0x08,
235 .timer_bit = 1,
Magnus Damm698aa992009-04-30 04:08:18 +0000236 .clockevent_rating = 125,
237 .clocksource_rating = 0, /* disabled due to code generation issues */
238};
239
240static struct resource cmt1_resources[] = {
241 [0] = {
Magnus Damm698aa992009-04-30 04:08:18 +0000242 .start = 0xfffec008,
243 .end = 0xfffec00d,
244 .flags = IORESOURCE_MEM,
245 },
246 [1] = {
247 .start = 144,
248 .flags = IORESOURCE_IRQ,
249 },
250};
251
252static struct platform_device cmt1_device = {
253 .name = "sh_cmt",
254 .id = 1,
255 .dev = {
256 .platform_data = &cmt1_platform_data,
257 },
258 .resource = cmt1_resources,
259 .num_resources = ARRAY_SIZE(cmt1_resources),
260};
261
Paul Mundt46a12f72009-05-03 17:57:17 +0900262static struct sh_timer_config mtu2_0_platform_data = {
Magnus Dammda107c62009-04-30 07:06:26 +0000263 .channel_offset = -0x80,
264 .timer_bit = 0,
Magnus Dammda107c62009-04-30 07:06:26 +0000265 .clockevent_rating = 200,
266};
267
268static struct resource mtu2_0_resources[] = {
269 [0] = {
Magnus Dammda107c62009-04-30 07:06:26 +0000270 .start = 0xfffe4300,
271 .end = 0xfffe4326,
272 .flags = IORESOURCE_MEM,
273 },
274 [1] = {
275 .start = 156,
276 .flags = IORESOURCE_IRQ,
277 },
278};
279
280static struct platform_device mtu2_0_device = {
281 .name = "sh_mtu2",
282 .id = 0,
283 .dev = {
284 .platform_data = &mtu2_0_platform_data,
285 },
286 .resource = mtu2_0_resources,
287 .num_resources = ARRAY_SIZE(mtu2_0_resources),
288};
289
Paul Mundt46a12f72009-05-03 17:57:17 +0900290static struct sh_timer_config mtu2_1_platform_data = {
Magnus Dammda107c62009-04-30 07:06:26 +0000291 .channel_offset = -0x100,
292 .timer_bit = 1,
Magnus Dammda107c62009-04-30 07:06:26 +0000293 .clockevent_rating = 200,
294};
295
296static struct resource mtu2_1_resources[] = {
297 [0] = {
Magnus Dammda107c62009-04-30 07:06:26 +0000298 .start = 0xfffe4380,
299 .end = 0xfffe4390,
300 .flags = IORESOURCE_MEM,
301 },
302 [1] = {
303 .start = 164,
304 .flags = IORESOURCE_IRQ,
305 },
306};
307
308static struct platform_device mtu2_1_device = {
309 .name = "sh_mtu2",
310 .id = 1,
311 .dev = {
312 .platform_data = &mtu2_1_platform_data,
313 },
314 .resource = mtu2_1_resources,
315 .num_resources = ARRAY_SIZE(mtu2_1_resources),
316};
317
Paul Mundt46a12f72009-05-03 17:57:17 +0900318static struct sh_timer_config mtu2_2_platform_data = {
Magnus Dammda107c62009-04-30 07:06:26 +0000319 .channel_offset = 0x80,
320 .timer_bit = 2,
Magnus Dammda107c62009-04-30 07:06:26 +0000321 .clockevent_rating = 200,
322};
323
324static struct resource mtu2_2_resources[] = {
325 [0] = {
Magnus Dammda107c62009-04-30 07:06:26 +0000326 .start = 0xfffe4000,
327 .end = 0xfffe400a,
328 .flags = IORESOURCE_MEM,
329 },
330 [1] = {
331 .start = 180,
332 .flags = IORESOURCE_IRQ,
333 },
334};
335
336static struct platform_device mtu2_2_device = {
337 .name = "sh_mtu2",
338 .id = 2,
339 .dev = {
340 .platform_data = &mtu2_2_platform_data,
341 },
342 .resource = mtu2_2_resources,
343 .num_resources = ARRAY_SIZE(mtu2_2_resources),
344};
345
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900346static struct platform_device *sh7206_devices[] __initdata = {
Magnus Dammbe091d22009-12-14 12:29:56 +0000347 &scif0_device,
348 &scif1_device,
349 &scif2_device,
350 &scif3_device,
Magnus Damm698aa992009-04-30 04:08:18 +0000351 &cmt0_device,
352 &cmt1_device,
Magnus Dammda107c62009-04-30 07:06:26 +0000353 &mtu2_0_device,
354 &mtu2_1_device,
355 &mtu2_2_device,
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900356};
357
358static int __init sh7206_devices_setup(void)
359{
360 return platform_add_devices(sh7206_devices,
361 ARRAY_SIZE(sh7206_devices));
362}
Magnus Dammba9a6332009-07-22 15:14:29 +0000363arch_initcall(sh7206_devices_setup);
Yoshinori Sato780a1562006-12-07 18:01:23 +0900364
Magnus Damm90015c82007-07-18 17:57:34 +0900365void __init plat_irq_setup(void)
Yoshinori Sato780a1562006-12-07 18:01:23 +0900366{
Magnus Damm2eb03032007-08-17 00:53:41 +0900367 register_intc_controller(&intc_desc);
Yoshinori Sato780a1562006-12-07 18:01:23 +0900368}
Magnus Damm698aa992009-04-30 04:08:18 +0000369
370static struct platform_device *sh7206_early_devices[] __initdata = {
Magnus Dammbe091d22009-12-14 12:29:56 +0000371 &scif0_device,
372 &scif1_device,
373 &scif2_device,
374 &scif3_device,
Magnus Damm698aa992009-04-30 04:08:18 +0000375 &cmt0_device,
376 &cmt1_device,
Magnus Dammda107c62009-04-30 07:06:26 +0000377 &mtu2_0_device,
378 &mtu2_1_device,
379 &mtu2_2_device,
Magnus Damm698aa992009-04-30 04:08:18 +0000380};
381
Magnus Dammda107c62009-04-30 07:06:26 +0000382#define STBCR3 0xfffe0408
Magnus Damm698aa992009-04-30 04:08:18 +0000383#define STBCR4 0xfffe040c
384
385void __init plat_early_device_setup(void)
386{
387 /* enable CMT clock */
388 __raw_writeb(__raw_readb(STBCR4) & ~0x04, STBCR4);
389
Magnus Dammda107c62009-04-30 07:06:26 +0000390 /* enable MTU2 clock */
391 __raw_writeb(__raw_readb(STBCR3) & ~0x20, STBCR3);
392
Magnus Damm698aa992009-04-30 04:08:18 +0000393 early_platform_add_devices(sh7206_early_devices,
394 ARRAY_SIZE(sh7206_early_devices));
395}