]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-shmobile/setup-sh7372.c
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/linux-arm-soc
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-shmobile / setup-sh7372.c
CommitLineData
2b7eda63
MD
1/*
2 * sh7372 processor support
3 *
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2008 Yoshihiro Shimoda
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/irq.h>
24#include <linux/platform_device.h>
6822471e 25#include <linux/uio_driver.h>
2b7eda63
MD
26#include <linux/delay.h>
27#include <linux/input.h>
28#include <linux/io.h>
29#include <linux/serial_sci.h>
69bf6f45 30#include <linux/sh_dma.h>
2b7eda63
MD
31#include <linux/sh_intc.h>
32#include <linux/sh_timer.h>
33#include <mach/hardware.h>
69bf6f45 34#include <mach/sh7372.h>
2b7eda63
MD
35#include <asm/mach-types.h>
36#include <asm/mach/arch.h>
37
33c9607a 38/* SCIFA0 */
2b7eda63
MD
39static struct plat_sci_port scif0_platform_data = {
40 .mapbase = 0xe6c40000,
41 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
42 .scscr = SCSCR_RE | SCSCR_TE,
43 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 44 .type = PORT_SCIFA,
33c9607a
MD
45 .irqs = { evt2irq(0x0c00), evt2irq(0x0c00),
46 evt2irq(0x0c00), evt2irq(0x0c00) },
2b7eda63
MD
47};
48
49static struct platform_device scif0_device = {
50 .name = "sh-sci",
51 .id = 0,
52 .dev = {
53 .platform_data = &scif0_platform_data,
54 },
55};
56
33c9607a 57/* SCIFA1 */
2b7eda63
MD
58static struct plat_sci_port scif1_platform_data = {
59 .mapbase = 0xe6c50000,
60 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
61 .scscr = SCSCR_RE | SCSCR_TE,
62 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 63 .type = PORT_SCIFA,
33c9607a
MD
64 .irqs = { evt2irq(0x0c20), evt2irq(0x0c20),
65 evt2irq(0x0c20), evt2irq(0x0c20) },
2b7eda63
MD
66};
67
68static struct platform_device scif1_device = {
69 .name = "sh-sci",
70 .id = 1,
71 .dev = {
72 .platform_data = &scif1_platform_data,
73 },
74};
75
33c9607a 76/* SCIFA2 */
2b7eda63
MD
77static struct plat_sci_port scif2_platform_data = {
78 .mapbase = 0xe6c60000,
79 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
80 .scscr = SCSCR_RE | SCSCR_TE,
81 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 82 .type = PORT_SCIFA,
33c9607a
MD
83 .irqs = { evt2irq(0x0c40), evt2irq(0x0c40),
84 evt2irq(0x0c40), evt2irq(0x0c40) },
2b7eda63
MD
85};
86
87static struct platform_device scif2_device = {
88 .name = "sh-sci",
89 .id = 2,
90 .dev = {
91 .platform_data = &scif2_platform_data,
92 },
93};
94
33c9607a 95/* SCIFA3 */
2b7eda63
MD
96static struct plat_sci_port scif3_platform_data = {
97 .mapbase = 0xe6c70000,
98 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
99 .scscr = SCSCR_RE | SCSCR_TE,
100 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 101 .type = PORT_SCIFA,
33c9607a
MD
102 .irqs = { evt2irq(0x0c60), evt2irq(0x0c60),
103 evt2irq(0x0c60), evt2irq(0x0c60) },
2b7eda63
MD
104};
105
106static struct platform_device scif3_device = {
107 .name = "sh-sci",
108 .id = 3,
109 .dev = {
110 .platform_data = &scif3_platform_data,
111 },
112};
113
33c9607a 114/* SCIFA4 */
2b7eda63
MD
115static struct plat_sci_port scif4_platform_data = {
116 .mapbase = 0xe6c80000,
117 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
118 .scscr = SCSCR_RE | SCSCR_TE,
119 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 120 .type = PORT_SCIFA,
33c9607a
MD
121 .irqs = { evt2irq(0x0d20), evt2irq(0x0d20),
122 evt2irq(0x0d20), evt2irq(0x0d20) },
2b7eda63
MD
123};
124
125static struct platform_device scif4_device = {
126 .name = "sh-sci",
127 .id = 4,
128 .dev = {
129 .platform_data = &scif4_platform_data,
130 },
131};
132
33c9607a 133/* SCIFA5 */
2b7eda63
MD
134static struct plat_sci_port scif5_platform_data = {
135 .mapbase = 0xe6cb0000,
136 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
137 .scscr = SCSCR_RE | SCSCR_TE,
138 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 139 .type = PORT_SCIFA,
33c9607a
MD
140 .irqs = { evt2irq(0x0d40), evt2irq(0x0d40),
141 evt2irq(0x0d40), evt2irq(0x0d40) },
2b7eda63
MD
142};
143
144static struct platform_device scif5_device = {
145 .name = "sh-sci",
146 .id = 5,
147 .dev = {
148 .platform_data = &scif5_platform_data,
149 },
150};
151
33c9607a 152/* SCIFB */
2b7eda63
MD
153static struct plat_sci_port scif6_platform_data = {
154 .mapbase = 0xe6c30000,
155 .flags = UPF_BOOT_AUTOCONF,
f43dc23d
PM
156 .scscr = SCSCR_RE | SCSCR_TE,
157 .scbrr_algo_id = SCBRR_ALGO_4,
eb6e8605 158 .type = PORT_SCIFB,
33c9607a
MD
159 .irqs = { evt2irq(0x0d60), evt2irq(0x0d60),
160 evt2irq(0x0d60), evt2irq(0x0d60) },
2b7eda63
MD
161};
162
163static struct platform_device scif6_device = {
164 .name = "sh-sci",
165 .id = 6,
166 .dev = {
167 .platform_data = &scif6_platform_data,
168 },
169};
170
c1909cc1 171/* CMT */
0ed61fc9
MD
172static struct sh_timer_config cmt2_platform_data = {
173 .name = "CMT2",
174 .channel_offset = 0x40,
175 .timer_bit = 5,
2b7eda63
MD
176 .clockevent_rating = 125,
177 .clocksource_rating = 125,
178};
179
0ed61fc9 180static struct resource cmt2_resources[] = {
2b7eda63 181 [0] = {
0ed61fc9
MD
182 .name = "CMT2",
183 .start = 0xe6130040,
184 .end = 0xe613004b,
2b7eda63
MD
185 .flags = IORESOURCE_MEM,
186 },
187 [1] = {
0ed61fc9 188 .start = evt2irq(0x0b80), /* CMT2 */
2b7eda63
MD
189 .flags = IORESOURCE_IRQ,
190 },
191};
192
0ed61fc9 193static struct platform_device cmt2_device = {
2b7eda63 194 .name = "sh_cmt",
0ed61fc9 195 .id = 2,
2b7eda63 196 .dev = {
0ed61fc9 197 .platform_data = &cmt2_platform_data,
2b7eda63 198 },
0ed61fc9
MD
199 .resource = cmt2_resources,
200 .num_resources = ARRAY_SIZE(cmt2_resources),
2b7eda63
MD
201};
202
c6c049ec
MD
203/* TMU */
204static struct sh_timer_config tmu00_platform_data = {
205 .name = "TMU00",
206 .channel_offset = 0x4,
207 .timer_bit = 0,
208 .clockevent_rating = 200,
209};
210
211static struct resource tmu00_resources[] = {
212 [0] = {
213 .name = "TMU00",
214 .start = 0xfff60008,
215 .end = 0xfff60013,
216 .flags = IORESOURCE_MEM,
217 },
218 [1] = {
219 .start = intcs_evt2irq(0xe80), /* TMU_TUNI0 */
220 .flags = IORESOURCE_IRQ,
221 },
222};
223
224static struct platform_device tmu00_device = {
225 .name = "sh_tmu",
226 .id = 0,
227 .dev = {
228 .platform_data = &tmu00_platform_data,
229 },
230 .resource = tmu00_resources,
231 .num_resources = ARRAY_SIZE(tmu00_resources),
232};
233
234static struct sh_timer_config tmu01_platform_data = {
235 .name = "TMU01",
236 .channel_offset = 0x10,
237 .timer_bit = 1,
238 .clocksource_rating = 200,
239};
240
241static struct resource tmu01_resources[] = {
242 [0] = {
243 .name = "TMU01",
244 .start = 0xfff60014,
245 .end = 0xfff6001f,
246 .flags = IORESOURCE_MEM,
247 },
248 [1] = {
249 .start = intcs_evt2irq(0xea0), /* TMU_TUNI1 */
250 .flags = IORESOURCE_IRQ,
251 },
252};
253
254static struct platform_device tmu01_device = {
255 .name = "sh_tmu",
256 .id = 1,
257 .dev = {
258 .platform_data = &tmu01_platform_data,
259 },
260 .resource = tmu01_resources,
261 .num_resources = ARRAY_SIZE(tmu01_resources),
262};
263
c1909cc1
KM
264/* I2C */
265static struct resource iic0_resources[] = {
266 [0] = {
267 .name = "IIC0",
268 .start = 0xFFF20000,
269 .end = 0xFFF20425 - 1,
270 .flags = IORESOURCE_MEM,
271 },
272 [1] = {
33c9607a
MD
273 .start = intcs_evt2irq(0xe00), /* IIC0_ALI0 */
274 .end = intcs_evt2irq(0xe60), /* IIC0_DTEI0 */
c1909cc1
KM
275 .flags = IORESOURCE_IRQ,
276 },
277};
278
279static struct platform_device iic0_device = {
280 .name = "i2c-sh_mobile",
281 .id = 0, /* "i2c0" clock */
282 .num_resources = ARRAY_SIZE(iic0_resources),
283 .resource = iic0_resources,
284};
285
286static struct resource iic1_resources[] = {
287 [0] = {
288 .name = "IIC1",
289 .start = 0xE6C20000,
290 .end = 0xE6C20425 - 1,
291 .flags = IORESOURCE_MEM,
292 },
293 [1] = {
33c9607a
MD
294 .start = evt2irq(0x780), /* IIC1_ALI1 */
295 .end = evt2irq(0x7e0), /* IIC1_DTEI1 */
c1909cc1
KM
296 .flags = IORESOURCE_IRQ,
297 },
298};
299
300static struct platform_device iic1_device = {
301 .name = "i2c-sh_mobile",
302 .id = 1, /* "i2c1" clock */
303 .num_resources = ARRAY_SIZE(iic1_resources),
304 .resource = iic1_resources,
305};
306
69bf6f45
GL
307/* DMA */
308/* Transmit sizes and respective CHCR register values */
309enum {
310 XMIT_SZ_8BIT = 0,
311 XMIT_SZ_16BIT = 1,
312 XMIT_SZ_32BIT = 2,
313 XMIT_SZ_64BIT = 7,
314 XMIT_SZ_128BIT = 3,
315 XMIT_SZ_256BIT = 4,
316 XMIT_SZ_512BIT = 5,
317};
318
319/* log2(size / 8) - used to calculate number of transfers */
320#define TS_SHIFT { \
321 [XMIT_SZ_8BIT] = 0, \
322 [XMIT_SZ_16BIT] = 1, \
323 [XMIT_SZ_32BIT] = 2, \
324 [XMIT_SZ_64BIT] = 3, \
325 [XMIT_SZ_128BIT] = 4, \
326 [XMIT_SZ_256BIT] = 5, \
327 [XMIT_SZ_512BIT] = 6, \
328}
329
330#define TS_INDEX2VAL(i) ((((i) & 3) << 3) | \
331 (((i) & 0xc) << (20 - 2)))
332
333static const struct sh_dmae_slave_config sh7372_dmae_slaves[] = {
334 {
8d3e17ba
GL
335 .slave_id = SHDMA_SLAVE_SCIF0_TX,
336 .addr = 0xe6c40020,
337 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
338 .mid_rid = 0x21,
339 }, {
340 .slave_id = SHDMA_SLAVE_SCIF0_RX,
341 .addr = 0xe6c40024,
342 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
343 .mid_rid = 0x22,
344 }, {
345 .slave_id = SHDMA_SLAVE_SCIF1_TX,
346 .addr = 0xe6c50020,
347 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
348 .mid_rid = 0x25,
349 }, {
350 .slave_id = SHDMA_SLAVE_SCIF1_RX,
351 .addr = 0xe6c50024,
352 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
353 .mid_rid = 0x26,
354 }, {
355 .slave_id = SHDMA_SLAVE_SCIF2_TX,
356 .addr = 0xe6c60020,
357 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
358 .mid_rid = 0x29,
359 }, {
360 .slave_id = SHDMA_SLAVE_SCIF2_RX,
361 .addr = 0xe6c60024,
362 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
363 .mid_rid = 0x2a,
364 }, {
365 .slave_id = SHDMA_SLAVE_SCIF3_TX,
366 .addr = 0xe6c70020,
367 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
368 .mid_rid = 0x2d,
369 }, {
370 .slave_id = SHDMA_SLAVE_SCIF3_RX,
371 .addr = 0xe6c70024,
372 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
373 .mid_rid = 0x2e,
374 }, {
375 .slave_id = SHDMA_SLAVE_SCIF4_TX,
376 .addr = 0xe6c80020,
377 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
378 .mid_rid = 0x39,
379 }, {
380 .slave_id = SHDMA_SLAVE_SCIF4_RX,
381 .addr = 0xe6c80024,
382 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
383 .mid_rid = 0x3a,
384 }, {
385 .slave_id = SHDMA_SLAVE_SCIF5_TX,
386 .addr = 0xe6cb0020,
387 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
388 .mid_rid = 0x35,
389 }, {
390 .slave_id = SHDMA_SLAVE_SCIF5_RX,
391 .addr = 0xe6cb0024,
392 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
393 .mid_rid = 0x36,
394 }, {
395 .slave_id = SHDMA_SLAVE_SCIF6_TX,
396 .addr = 0xe6c30040,
397 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
398 .mid_rid = 0x3d,
399 }, {
400 .slave_id = SHDMA_SLAVE_SCIF6_RX,
401 .addr = 0xe6c30060,
402 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT),
403 .mid_rid = 0x3e,
404 }, {
69bf6f45
GL
405 .slave_id = SHDMA_SLAVE_SDHI0_TX,
406 .addr = 0xe6850030,
407 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
408 .mid_rid = 0xc1,
409 }, {
410 .slave_id = SHDMA_SLAVE_SDHI0_RX,
411 .addr = 0xe6850030,
412 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
413 .mid_rid = 0xc2,
414 }, {
415 .slave_id = SHDMA_SLAVE_SDHI1_TX,
416 .addr = 0xe6860030,
417 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
418 .mid_rid = 0xc9,
419 }, {
420 .slave_id = SHDMA_SLAVE_SDHI1_RX,
421 .addr = 0xe6860030,
422 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
423 .mid_rid = 0xca,
424 }, {
425 .slave_id = SHDMA_SLAVE_SDHI2_TX,
426 .addr = 0xe6870030,
427 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
428 .mid_rid = 0xcd,
429 }, {
430 .slave_id = SHDMA_SLAVE_SDHI2_RX,
431 .addr = 0xe6870030,
432 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT),
433 .mid_rid = 0xce,
6d11dc14
GL
434 }, {
435 .slave_id = SHDMA_SLAVE_MMCIF_TX,
436 .addr = 0xe6bd0034,
437 .chcr = DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL(XMIT_SZ_32BIT),
438 .mid_rid = 0xd1,
439 }, {
440 .slave_id = SHDMA_SLAVE_MMCIF_RX,
441 .addr = 0xe6bd0034,
442 .chcr = DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL(XMIT_SZ_32BIT),
443 .mid_rid = 0xd2,
69bf6f45
GL
444 },
445};
446
447static const struct sh_dmae_channel sh7372_dmae_channels[] = {
448 {
449 .offset = 0,
450 .dmars = 0,
451 .dmars_bit = 0,
452 }, {
453 .offset = 0x10,
454 .dmars = 0,
455 .dmars_bit = 8,
456 }, {
457 .offset = 0x20,
458 .dmars = 4,
459 .dmars_bit = 0,
460 }, {
461 .offset = 0x30,
462 .dmars = 4,
463 .dmars_bit = 8,
464 }, {
465 .offset = 0x50,
466 .dmars = 8,
467 .dmars_bit = 0,
468 }, {
469 .offset = 0x60,
470 .dmars = 8,
471 .dmars_bit = 8,
472 }
473};
474
475static const unsigned int ts_shift[] = TS_SHIFT;
476
477static struct sh_dmae_pdata dma_platform_data = {
478 .slave = sh7372_dmae_slaves,
479 .slave_num = ARRAY_SIZE(sh7372_dmae_slaves),
480 .channel = sh7372_dmae_channels,
481 .channel_num = ARRAY_SIZE(sh7372_dmae_channels),
482 .ts_low_shift = 3,
483 .ts_low_mask = 0x18,
484 .ts_high_shift = (20 - 2), /* 2 bits for shifted low TS */
485 .ts_high_mask = 0x00300000,
486 .ts_shift = ts_shift,
487 .ts_shift_num = ARRAY_SIZE(ts_shift),
488 .dmaor_init = DMAOR_DME,
489};
490
491/* Resource order important! */
492static struct resource sh7372_dmae0_resources[] = {
493 {
494 /* Channel registers and DMAOR */
495 .start = 0xfe008020,
496 .end = 0xfe00808f,
497 .flags = IORESOURCE_MEM,
498 },
499 {
500 /* DMARSx */
501 .start = 0xfe009000,
502 .end = 0xfe00900b,
503 .flags = IORESOURCE_MEM,
504 },
505 {
506 /* DMA error IRQ */
f989ae5b
MD
507 .start = evt2irq(0x20c0),
508 .end = evt2irq(0x20c0),
69bf6f45
GL
509 .flags = IORESOURCE_IRQ,
510 },
511 {
512 /* IRQ for channels 0-5 */
f989ae5b
MD
513 .start = evt2irq(0x2000),
514 .end = evt2irq(0x20a0),
69bf6f45
GL
515 .flags = IORESOURCE_IRQ,
516 },
517};
518
519/* Resource order important! */
520static struct resource sh7372_dmae1_resources[] = {
521 {
522 /* Channel registers and DMAOR */
523 .start = 0xfe018020,
524 .end = 0xfe01808f,
525 .flags = IORESOURCE_MEM,
526 },
527 {
528 /* DMARSx */
529 .start = 0xfe019000,
530 .end = 0xfe01900b,
531 .flags = IORESOURCE_MEM,
532 },
533 {
534 /* DMA error IRQ */
f989ae5b
MD
535 .start = evt2irq(0x21c0),
536 .end = evt2irq(0x21c0),
69bf6f45
GL
537 .flags = IORESOURCE_IRQ,
538 },
539 {
540 /* IRQ for channels 0-5 */
f989ae5b
MD
541 .start = evt2irq(0x2100),
542 .end = evt2irq(0x21a0),
69bf6f45
GL
543 .flags = IORESOURCE_IRQ,
544 },
545};
546
547/* Resource order important! */
548static struct resource sh7372_dmae2_resources[] = {
549 {
550 /* Channel registers and DMAOR */
551 .start = 0xfe028020,
552 .end = 0xfe02808f,
553 .flags = IORESOURCE_MEM,
554 },
555 {
556 /* DMARSx */
557 .start = 0xfe029000,
558 .end = 0xfe02900b,
559 .flags = IORESOURCE_MEM,
560 },
561 {
562 /* DMA error IRQ */
f989ae5b
MD
563 .start = evt2irq(0x22c0),
564 .end = evt2irq(0x22c0),
69bf6f45
GL
565 .flags = IORESOURCE_IRQ,
566 },
567 {
568 /* IRQ for channels 0-5 */
f989ae5b
MD
569 .start = evt2irq(0x2200),
570 .end = evt2irq(0x22a0),
69bf6f45
GL
571 .flags = IORESOURCE_IRQ,
572 },
573};
574
575static struct platform_device dma0_device = {
576 .name = "sh-dma-engine",
577 .id = 0,
578 .resource = sh7372_dmae0_resources,
579 .num_resources = ARRAY_SIZE(sh7372_dmae0_resources),
580 .dev = {
581 .platform_data = &dma_platform_data,
582 },
583};
584
585static struct platform_device dma1_device = {
586 .name = "sh-dma-engine",
587 .id = 1,
588 .resource = sh7372_dmae1_resources,
589 .num_resources = ARRAY_SIZE(sh7372_dmae1_resources),
590 .dev = {
591 .platform_data = &dma_platform_data,
592 },
593};
594
595static struct platform_device dma2_device = {
596 .name = "sh-dma-engine",
597 .id = 2,
598 .resource = sh7372_dmae2_resources,
599 .num_resources = ARRAY_SIZE(sh7372_dmae2_resources),
600 .dev = {
601 .platform_data = &dma_platform_data,
602 },
603};
604
afe48049
KM
605/*
606 * USB-DMAC
607 */
608
609unsigned int usbts_shift[] = {3, 4, 5};
610
611enum {
612 XMIT_SZ_8BYTE = 0,
613 XMIT_SZ_16BYTE = 1,
614 XMIT_SZ_32BYTE = 2,
615};
616
617#define USBTS_INDEX2VAL(i) (((i) & 3) << 6)
618
619static const struct sh_dmae_channel sh7372_usb_dmae_channels[] = {
620 {
621 .offset = 0,
622 }, {
623 .offset = 0x20,
624 },
625};
626
627/* USB DMAC0 */
628static const struct sh_dmae_slave_config sh7372_usb_dmae0_slaves[] = {
629 {
630 .slave_id = SHDMA_SLAVE_USB0_TX,
631 .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE),
632 }, {
633 .slave_id = SHDMA_SLAVE_USB0_RX,
634 .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE),
635 },
636};
637
638static struct sh_dmae_pdata usb_dma0_platform_data = {
639 .slave = sh7372_usb_dmae0_slaves,
640 .slave_num = ARRAY_SIZE(sh7372_usb_dmae0_slaves),
641 .channel = sh7372_usb_dmae_channels,
642 .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels),
643 .ts_low_shift = 6,
644 .ts_low_mask = 0xc0,
645 .ts_high_shift = 0,
646 .ts_high_mask = 0,
647 .ts_shift = usbts_shift,
648 .ts_shift_num = ARRAY_SIZE(usbts_shift),
649 .dmaor_init = DMAOR_DME,
650 .chcr_offset = 0x14,
651 .chcr_ie_bit = 1 << 5,
652 .dmaor_is_32bit = 1,
653 .needs_tend_set = 1,
654 .no_dmars = 1,
655};
656
657static struct resource sh7372_usb_dmae0_resources[] = {
658 {
659 /* Channel registers and DMAOR */
660 .start = 0xe68a0020,
661 .end = 0xe68a0064 - 1,
662 .flags = IORESOURCE_MEM,
663 },
664 {
665 /* VCR/SWR/DMICR */
666 .start = 0xe68a0000,
667 .end = 0xe68a0014 - 1,
668 .flags = IORESOURCE_MEM,
669 },
670 {
671 /* IRQ for channels */
672 .start = evt2irq(0x0a00),
673 .end = evt2irq(0x0a00),
674 .flags = IORESOURCE_IRQ,
675 },
676};
677
678static struct platform_device usb_dma0_device = {
679 .name = "sh-dma-engine",
680 .id = 3,
681 .resource = sh7372_usb_dmae0_resources,
682 .num_resources = ARRAY_SIZE(sh7372_usb_dmae0_resources),
683 .dev = {
684 .platform_data = &usb_dma0_platform_data,
685 },
686};
687
688/* USB DMAC1 */
689static const struct sh_dmae_slave_config sh7372_usb_dmae1_slaves[] = {
690 {
691 .slave_id = SHDMA_SLAVE_USB1_TX,
692 .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE),
693 }, {
694 .slave_id = SHDMA_SLAVE_USB1_RX,
695 .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE),
696 },
697};
698
699static struct sh_dmae_pdata usb_dma1_platform_data = {
700 .slave = sh7372_usb_dmae1_slaves,
701 .slave_num = ARRAY_SIZE(sh7372_usb_dmae1_slaves),
702 .channel = sh7372_usb_dmae_channels,
703 .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels),
704 .ts_low_shift = 6,
705 .ts_low_mask = 0xc0,
706 .ts_high_shift = 0,
707 .ts_high_mask = 0,
708 .ts_shift = usbts_shift,
709 .ts_shift_num = ARRAY_SIZE(usbts_shift),
710 .dmaor_init = DMAOR_DME,
711 .chcr_offset = 0x14,
712 .chcr_ie_bit = 1 << 5,
713 .dmaor_is_32bit = 1,
714 .needs_tend_set = 1,
715 .no_dmars = 1,
716};
717
718static struct resource sh7372_usb_dmae1_resources[] = {
719 {
720 /* Channel registers and DMAOR */
721 .start = 0xe68c0020,
722 .end = 0xe68c0064 - 1,
723 .flags = IORESOURCE_MEM,
724 },
725 {
726 /* VCR/SWR/DMICR */
727 .start = 0xe68c0000,
728 .end = 0xe68c0014 - 1,
729 .flags = IORESOURCE_MEM,
730 },
731 {
732 /* IRQ for channels */
733 .start = evt2irq(0x1d00),
734 .end = evt2irq(0x1d00),
735 .flags = IORESOURCE_IRQ,
736 },
737};
738
739static struct platform_device usb_dma1_device = {
740 .name = "sh-dma-engine",
741 .id = 4,
742 .resource = sh7372_usb_dmae1_resources,
743 .num_resources = ARRAY_SIZE(sh7372_usb_dmae1_resources),
744 .dev = {
745 .platform_data = &usb_dma1_platform_data,
746 },
747};
748
6822471e
MD
749/* VPU */
750static struct uio_info vpu_platform_data = {
751 .name = "VPU5HG",
752 .version = "0",
753 .irq = intcs_evt2irq(0x980),
754};
755
756static struct resource vpu_resources[] = {
757 [0] = {
758 .name = "VPU",
759 .start = 0xfe900000,
760 .end = 0xfe900157,
761 .flags = IORESOURCE_MEM,
762 },
763};
764
765static struct platform_device vpu_device = {
766 .name = "uio_pdrv_genirq",
767 .id = 0,
768 .dev = {
769 .platform_data = &vpu_platform_data,
770 },
771 .resource = vpu_resources,
772 .num_resources = ARRAY_SIZE(vpu_resources),
773};
774
775/* VEU0 */
776static struct uio_info veu0_platform_data = {
777 .name = "VEU0",
778 .version = "0",
779 .irq = intcs_evt2irq(0x700),
780};
781
782static struct resource veu0_resources[] = {
783 [0] = {
784 .name = "VEU0",
785 .start = 0xfe920000,
786 .end = 0xfe9200cb,
787 .flags = IORESOURCE_MEM,
788 },
789};
790
791static struct platform_device veu0_device = {
792 .name = "uio_pdrv_genirq",
793 .id = 1,
794 .dev = {
795 .platform_data = &veu0_platform_data,
796 },
797 .resource = veu0_resources,
798 .num_resources = ARRAY_SIZE(veu0_resources),
799};
800
801/* VEU1 */
802static struct uio_info veu1_platform_data = {
803 .name = "VEU1",
804 .version = "0",
805 .irq = intcs_evt2irq(0x720),
806};
807
808static struct resource veu1_resources[] = {
809 [0] = {
810 .name = "VEU1",
811 .start = 0xfe924000,
812 .end = 0xfe9240cb,
813 .flags = IORESOURCE_MEM,
814 },
815};
816
817static struct platform_device veu1_device = {
818 .name = "uio_pdrv_genirq",
819 .id = 2,
820 .dev = {
821 .platform_data = &veu1_platform_data,
822 },
823 .resource = veu1_resources,
824 .num_resources = ARRAY_SIZE(veu1_resources),
825};
826
827/* VEU2 */
828static struct uio_info veu2_platform_data = {
829 .name = "VEU2",
830 .version = "0",
831 .irq = intcs_evt2irq(0x740),
832};
833
834static struct resource veu2_resources[] = {
835 [0] = {
836 .name = "VEU2",
837 .start = 0xfe928000,
838 .end = 0xfe928307,
839 .flags = IORESOURCE_MEM,
840 },
841};
842
843static struct platform_device veu2_device = {
844 .name = "uio_pdrv_genirq",
845 .id = 3,
846 .dev = {
847 .platform_data = &veu2_platform_data,
848 },
849 .resource = veu2_resources,
850 .num_resources = ARRAY_SIZE(veu2_resources),
851};
852
853/* VEU3 */
854static struct uio_info veu3_platform_data = {
855 .name = "VEU3",
856 .version = "0",
857 .irq = intcs_evt2irq(0x760),
858};
859
860static struct resource veu3_resources[] = {
861 [0] = {
862 .name = "VEU3",
863 .start = 0xfe92c000,
864 .end = 0xfe92c307,
865 .flags = IORESOURCE_MEM,
866 },
867};
868
869static struct platform_device veu3_device = {
870 .name = "uio_pdrv_genirq",
871 .id = 4,
872 .dev = {
873 .platform_data = &veu3_platform_data,
874 },
875 .resource = veu3_resources,
876 .num_resources = ARRAY_SIZE(veu3_resources),
877};
878
879/* JPU */
880static struct uio_info jpu_platform_data = {
881 .name = "JPU",
882 .version = "0",
883 .irq = intcs_evt2irq(0x560),
884};
885
886static struct resource jpu_resources[] = {
887 [0] = {
888 .name = "JPU",
889 .start = 0xfe980000,
890 .end = 0xfe9902d3,
891 .flags = IORESOURCE_MEM,
892 },
893};
894
895static struct platform_device jpu_device = {
896 .name = "uio_pdrv_genirq",
897 .id = 5,
898 .dev = {
899 .platform_data = &jpu_platform_data,
900 },
901 .resource = jpu_resources,
902 .num_resources = ARRAY_SIZE(jpu_resources),
903};
904
905/* SPU2DSP0 */
906static struct uio_info spu0_platform_data = {
907 .name = "SPU2DSP0",
908 .version = "0",
909 .irq = evt2irq(0x1800),
910};
911
912static struct resource spu0_resources[] = {
913 [0] = {
914 .name = "SPU2DSP0",
915 .start = 0xfe200000,
916 .end = 0xfe2fffff,
917 .flags = IORESOURCE_MEM,
918 },
919};
920
921static struct platform_device spu0_device = {
922 .name = "uio_pdrv_genirq",
923 .id = 6,
924 .dev = {
925 .platform_data = &spu0_platform_data,
926 },
927 .resource = spu0_resources,
928 .num_resources = ARRAY_SIZE(spu0_resources),
929};
930
931/* SPU2DSP1 */
932static struct uio_info spu1_platform_data = {
933 .name = "SPU2DSP1",
934 .version = "0",
935 .irq = evt2irq(0x1820),
936};
937
938static struct resource spu1_resources[] = {
939 [0] = {
940 .name = "SPU2DSP1",
941 .start = 0xfe300000,
942 .end = 0xfe3fffff,
943 .flags = IORESOURCE_MEM,
944 },
945};
946
947static struct platform_device spu1_device = {
948 .name = "uio_pdrv_genirq",
949 .id = 7,
950 .dev = {
951 .platform_data = &spu1_platform_data,
952 },
953 .resource = spu1_resources,
954 .num_resources = ARRAY_SIZE(spu1_resources),
955};
956
2b7eda63
MD
957static struct platform_device *sh7372_early_devices[] __initdata = {
958 &scif0_device,
959 &scif1_device,
960 &scif2_device,
961 &scif3_device,
962 &scif4_device,
963 &scif5_device,
964 &scif6_device,
0ed61fc9 965 &cmt2_device,
c6c049ec
MD
966 &tmu00_device,
967 &tmu01_device,
934e4078
MD
968};
969
970static struct platform_device *sh7372_late_devices[] __initdata = {
c1909cc1
KM
971 &iic0_device,
972 &iic1_device,
69bf6f45
GL
973 &dma0_device,
974 &dma1_device,
975 &dma2_device,
afe48049
KM
976 &usb_dma0_device,
977 &usb_dma1_device,
6822471e
MD
978 &vpu_device,
979 &veu0_device,
980 &veu1_device,
981 &veu2_device,
982 &veu3_device,
983 &jpu_device,
984 &spu0_device,
985 &spu1_device,
2b7eda63
MD
986};
987
988void __init sh7372_add_standard_devices(void)
989{
96f7934e 990 sh7372_init_pm_domain(&sh7372_a4lc);
c1ba5bb5 991 sh7372_init_pm_domain(&sh7372_a4mp);
d24771de 992 sh7372_init_pm_domain(&sh7372_d4);
33afebf3 993 sh7372_init_pm_domain(&sh7372_a3rv);
082517aa 994 sh7372_init_pm_domain(&sh7372_a3ri);
c47586b6 995 sh7372_init_pm_domain(&sh7372_a3sg);
96f7934e 996
2b7eda63
MD
997 platform_add_devices(sh7372_early_devices,
998 ARRAY_SIZE(sh7372_early_devices));
934e4078
MD
999
1000 platform_add_devices(sh7372_late_devices,
1001 ARRAY_SIZE(sh7372_late_devices));
33afebf3
MD
1002
1003 sh7372_add_device_to_domain(&sh7372_a3rv, &vpu_device);
c1ba5bb5
KM
1004 sh7372_add_device_to_domain(&sh7372_a4mp, &spu0_device);
1005 sh7372_add_device_to_domain(&sh7372_a4mp, &spu1_device);
2b7eda63
MD
1006}
1007
2b7eda63
MD
1008void __init sh7372_add_early_devices(void)
1009{
2b7eda63
MD
1010 early_platform_add_devices(sh7372_early_devices,
1011 ARRAY_SIZE(sh7372_early_devices));
1012}