4 * Copyright (C) 2008 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #include <linux/platform_device.h>
11 #include <linux/init.h>
12 #include <linux/serial.h>
14 #include <linux/serial_sci.h>
15 #include <linux/uio_driver.h>
16 #include <linux/usb/r8a66597.h>
17 #include <linux/sh_timer.h>
18 #include <linux/sh_intc.h>
20 #include <asm/clock.h>
21 #include <asm/mmzone.h>
22 #include <cpu/sh7723.h>
25 static struct plat_sci_port scif0_platform_data
= {
26 .mapbase
= 0xffe00000,
27 .port_reg
= 0xa4050160,
28 .flags
= UPF_BOOT_AUTOCONF
,
29 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
30 .scbrr_algo_id
= SCBRR_ALGO_2
,
32 .irqs
= SCIx_IRQ_MUXED(evt2irq(0xc00)),
33 .regtype
= SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE
,
36 static struct platform_device scif0_device
= {
40 .platform_data
= &scif0_platform_data
,
44 static struct plat_sci_port scif1_platform_data
= {
45 .mapbase
= 0xffe10000,
46 .port_reg
= SCIx_NOT_SUPPORTED
,
47 .flags
= UPF_BOOT_AUTOCONF
,
48 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
49 .scbrr_algo_id
= SCBRR_ALGO_2
,
51 .irqs
= SCIx_IRQ_MUXED(evt2irq(0xc20)),
52 .regtype
= SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE
,
55 static struct platform_device scif1_device
= {
59 .platform_data
= &scif1_platform_data
,
63 static struct plat_sci_port scif2_platform_data
= {
64 .mapbase
= 0xffe20000,
65 .port_reg
= SCIx_NOT_SUPPORTED
,
66 .flags
= UPF_BOOT_AUTOCONF
,
67 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
68 .scbrr_algo_id
= SCBRR_ALGO_2
,
70 .irqs
= SCIx_IRQ_MUXED(evt2irq(0xc40)),
71 .regtype
= SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE
,
74 static struct platform_device scif2_device
= {
78 .platform_data
= &scif2_platform_data
,
82 static struct plat_sci_port scif3_platform_data
= {
83 .mapbase
= 0xa4e30000,
84 .flags
= UPF_BOOT_AUTOCONF
,
85 .port_reg
= SCIx_NOT_SUPPORTED
,
86 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
87 .scbrr_algo_id
= SCBRR_ALGO_3
,
89 .irqs
= SCIx_IRQ_MUXED(evt2irq(0x900)),
92 static struct platform_device scif3_device
= {
96 .platform_data
= &scif3_platform_data
,
100 static struct plat_sci_port scif4_platform_data
= {
101 .mapbase
= 0xa4e40000,
102 .port_reg
= SCIx_NOT_SUPPORTED
,
103 .flags
= UPF_BOOT_AUTOCONF
,
104 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
105 .scbrr_algo_id
= SCBRR_ALGO_3
,
107 .irqs
= SCIx_IRQ_MUXED(evt2irq(0xd00)),
110 static struct platform_device scif4_device
= {
114 .platform_data
= &scif4_platform_data
,
118 static struct plat_sci_port scif5_platform_data
= {
119 .mapbase
= 0xa4e50000,
120 .port_reg
= SCIx_NOT_SUPPORTED
,
121 .flags
= UPF_BOOT_AUTOCONF
,
122 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
,
123 .scbrr_algo_id
= SCBRR_ALGO_3
,
125 .irqs
= SCIx_IRQ_MUXED(evt2irq(0xfa0)),
128 static struct platform_device scif5_device
= {
132 .platform_data
= &scif5_platform_data
,
136 static struct uio_info vpu_platform_data
= {
139 .irq
= evt2irq(0x980),
142 static struct resource vpu_resources
[] = {
147 .flags
= IORESOURCE_MEM
,
150 /* place holder for contiguous memory */
154 static struct platform_device vpu_device
= {
155 .name
= "uio_pdrv_genirq",
158 .platform_data
= &vpu_platform_data
,
160 .resource
= vpu_resources
,
161 .num_resources
= ARRAY_SIZE(vpu_resources
),
164 static struct uio_info veu0_platform_data
= {
167 .irq
= evt2irq(0x8c0),
170 static struct resource veu0_resources
[] = {
175 .flags
= IORESOURCE_MEM
,
178 /* place holder for contiguous memory */
182 static struct platform_device veu0_device
= {
183 .name
= "uio_pdrv_genirq",
186 .platform_data
= &veu0_platform_data
,
188 .resource
= veu0_resources
,
189 .num_resources
= ARRAY_SIZE(veu0_resources
),
192 static struct uio_info veu1_platform_data
= {
195 .irq
= evt2irq(0x560),
198 static struct resource veu1_resources
[] = {
203 .flags
= IORESOURCE_MEM
,
206 /* place holder for contiguous memory */
210 static struct platform_device veu1_device
= {
211 .name
= "uio_pdrv_genirq",
214 .platform_data
= &veu1_platform_data
,
216 .resource
= veu1_resources
,
217 .num_resources
= ARRAY_SIZE(veu1_resources
),
220 static struct sh_timer_config cmt_platform_data
= {
221 .channel_offset
= 0x60,
223 .clockevent_rating
= 125,
224 .clocksource_rating
= 125,
227 static struct resource cmt_resources
[] = {
231 .flags
= IORESOURCE_MEM
,
234 .start
= evt2irq(0xf00),
235 .flags
= IORESOURCE_IRQ
,
239 static struct platform_device cmt_device
= {
243 .platform_data
= &cmt_platform_data
,
245 .resource
= cmt_resources
,
246 .num_resources
= ARRAY_SIZE(cmt_resources
),
249 static struct sh_timer_config tmu0_platform_data
= {
250 .channel_offset
= 0x04,
252 .clockevent_rating
= 200,
255 static struct resource tmu0_resources
[] = {
259 .flags
= IORESOURCE_MEM
,
262 .start
= evt2irq(0x400),
263 .flags
= IORESOURCE_IRQ
,
267 static struct platform_device tmu0_device
= {
271 .platform_data
= &tmu0_platform_data
,
273 .resource
= tmu0_resources
,
274 .num_resources
= ARRAY_SIZE(tmu0_resources
),
277 static struct sh_timer_config tmu1_platform_data
= {
278 .channel_offset
= 0x10,
280 .clocksource_rating
= 200,
283 static struct resource tmu1_resources
[] = {
287 .flags
= IORESOURCE_MEM
,
290 .start
= evt2irq(0x420),
291 .flags
= IORESOURCE_IRQ
,
295 static struct platform_device tmu1_device
= {
299 .platform_data
= &tmu1_platform_data
,
301 .resource
= tmu1_resources
,
302 .num_resources
= ARRAY_SIZE(tmu1_resources
),
305 static struct sh_timer_config tmu2_platform_data
= {
306 .channel_offset
= 0x1c,
310 static struct resource tmu2_resources
[] = {
314 .flags
= IORESOURCE_MEM
,
317 .start
= evt2irq(0x440),
318 .flags
= IORESOURCE_IRQ
,
322 static struct platform_device tmu2_device
= {
326 .platform_data
= &tmu2_platform_data
,
328 .resource
= tmu2_resources
,
329 .num_resources
= ARRAY_SIZE(tmu2_resources
),
332 static struct sh_timer_config tmu3_platform_data
= {
333 .channel_offset
= 0x04,
337 static struct resource tmu3_resources
[] = {
341 .flags
= IORESOURCE_MEM
,
344 .start
= evt2irq(0x920),
345 .flags
= IORESOURCE_IRQ
,
349 static struct platform_device tmu3_device
= {
353 .platform_data
= &tmu3_platform_data
,
355 .resource
= tmu3_resources
,
356 .num_resources
= ARRAY_SIZE(tmu3_resources
),
359 static struct sh_timer_config tmu4_platform_data
= {
360 .channel_offset
= 0x10,
364 static struct resource tmu4_resources
[] = {
368 .flags
= IORESOURCE_MEM
,
371 .start
= evt2irq(0x940),
372 .flags
= IORESOURCE_IRQ
,
376 static struct platform_device tmu4_device
= {
380 .platform_data
= &tmu4_platform_data
,
382 .resource
= tmu4_resources
,
383 .num_resources
= ARRAY_SIZE(tmu4_resources
),
386 static struct sh_timer_config tmu5_platform_data
= {
387 .channel_offset
= 0x1c,
391 static struct resource tmu5_resources
[] = {
395 .flags
= IORESOURCE_MEM
,
398 .start
= evt2irq(0x920),
399 .flags
= IORESOURCE_IRQ
,
403 static struct platform_device tmu5_device
= {
407 .platform_data
= &tmu5_platform_data
,
409 .resource
= tmu5_resources
,
410 .num_resources
= ARRAY_SIZE(tmu5_resources
),
413 static struct resource rtc_resources
[] = {
416 .end
= 0xa465fec0 + 0x58 - 1,
417 .flags
= IORESOURCE_IO
,
421 .start
= evt2irq(0xaa0),
422 .flags
= IORESOURCE_IRQ
,
426 .start
= evt2irq(0xac0),
427 .flags
= IORESOURCE_IRQ
,
431 .start
= evt2irq(0xa80),
432 .flags
= IORESOURCE_IRQ
,
436 static struct platform_device rtc_device
= {
439 .num_resources
= ARRAY_SIZE(rtc_resources
),
440 .resource
= rtc_resources
,
443 static struct r8a66597_platdata r8a66597_data
= {
447 static struct resource sh7723_usb_host_resources
[] = {
451 .flags
= IORESOURCE_MEM
,
454 .start
= evt2irq(0xa20),
455 .end
= evt2irq(0xa20),
456 .flags
= IORESOURCE_IRQ
| IRQF_TRIGGER_LOW
,
460 static struct platform_device sh7723_usb_host_device
= {
461 .name
= "r8a66597_hcd",
464 .dma_mask
= NULL
, /* not use dma */
465 .coherent_dma_mask
= 0xffffffff,
466 .platform_data
= &r8a66597_data
,
468 .num_resources
= ARRAY_SIZE(sh7723_usb_host_resources
),
469 .resource
= sh7723_usb_host_resources
,
472 static struct resource iic_resources
[] = {
477 .flags
= IORESOURCE_MEM
,
480 .start
= evt2irq(0xe00),
481 .end
= evt2irq(0xe60),
482 .flags
= IORESOURCE_IRQ
,
486 static struct platform_device iic_device
= {
487 .name
= "i2c-sh_mobile",
488 .id
= 0, /* "i2c0" clock */
489 .num_resources
= ARRAY_SIZE(iic_resources
),
490 .resource
= iic_resources
,
493 static struct platform_device
*sh7723_devices
[] __initdata
= {
509 &sh7723_usb_host_device
,
515 static int __init
sh7723_devices_setup(void)
517 platform_resource_setup_memory(&vpu_device
, "vpu", 2 << 20);
518 platform_resource_setup_memory(&veu0_device
, "veu0", 2 << 20);
519 platform_resource_setup_memory(&veu1_device
, "veu1", 2 << 20);
521 return platform_add_devices(sh7723_devices
,
522 ARRAY_SIZE(sh7723_devices
));
524 arch_initcall(sh7723_devices_setup
);
526 static struct platform_device
*sh7723_early_devices
[] __initdata
= {
542 void __init
plat_early_device_setup(void)
544 early_platform_add_devices(sh7723_early_devices
,
545 ARRAY_SIZE(sh7723_early_devices
));
548 #define RAMCR_CACHE_L2FC 0x0002
549 #define RAMCR_CACHE_L2E 0x0001
550 #define L2_CACHE_ENABLE (RAMCR_CACHE_L2E|RAMCR_CACHE_L2FC)
552 void l2_cache_init(void)
554 /* Enable L2 cache */
555 __raw_writel(L2_CACHE_ENABLE
, RAMCR
);
563 /* interrupt sources */
564 IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
,
566 DMAC1A_DEI0
,DMAC1A_DEI1
,DMAC1A_DEI2
,DMAC1A_DEI3
,
567 _2DG_TRI
,_2DG_INI
,_2DG_CEI
,
568 DMAC0A_DEI0
,DMAC0A_DEI1
,DMAC0A_DEI2
,DMAC0A_DEI3
,
569 VIO_CEUI
,VIO_BEUI
,VIO_VEU2HI
,VIO_VOUI
,
575 RTC_ATI
,RTC_PRI
,RTC_CUI
,
576 DMAC1B_DEI4
,DMAC1B_DEI5
,DMAC1B_DADERR
,
577 DMAC0B_DEI4
,DMAC0B_DEI5
,DMAC0B_DADERR
,
579 SCIF_SCIF0
,SCIF_SCIF1
,SCIF_SCIF2
,
580 MSIOF_MSIOFI0
,MSIOF_MSIOFI1
,
582 FLCTL_FLSTEI
,FLCTL_FLTENDI
,FLCTL_FLTREQ0I
,FLCTL_FLTREQ1I
,
583 I2C_ALI
,I2C_TACKI
,I2C_WAITI
,I2C_DTEI
,
588 TMU0_TUNI0
, TMU0_TUNI1
, TMU0_TUNI2
,
593 TMU1_TUNI0
,TMU1_TUNI1
,TMU1_TUNI2
,
595 /* interrupt groups */
596 DMAC1A
, DMAC0A
, VIO
, DMAC0B
, FLCTL
, I2C
, _2DG
,
597 SDHI1
, RTC
, DMAC1B
, SDHI0
,
600 static struct intc_vect vectors
[] __initdata
= {
601 INTC_VECT(IRQ0
, 0x600), INTC_VECT(IRQ1
, 0x620),
602 INTC_VECT(IRQ2
, 0x640), INTC_VECT(IRQ3
, 0x660),
603 INTC_VECT(IRQ4
, 0x680), INTC_VECT(IRQ5
, 0x6a0),
604 INTC_VECT(IRQ6
, 0x6c0), INTC_VECT(IRQ7
, 0x6e0),
606 INTC_VECT(DMAC1A_DEI0
,0x700),
607 INTC_VECT(DMAC1A_DEI1
,0x720),
608 INTC_VECT(DMAC1A_DEI2
,0x740),
609 INTC_VECT(DMAC1A_DEI3
,0x760),
611 INTC_VECT(_2DG_TRI
, 0x780),
612 INTC_VECT(_2DG_INI
, 0x7A0),
613 INTC_VECT(_2DG_CEI
, 0x7C0),
615 INTC_VECT(DMAC0A_DEI0
,0x800),
616 INTC_VECT(DMAC0A_DEI1
,0x820),
617 INTC_VECT(DMAC0A_DEI2
,0x840),
618 INTC_VECT(DMAC0A_DEI3
,0x860),
620 INTC_VECT(VIO_CEUI
,0x880),
621 INTC_VECT(VIO_BEUI
,0x8A0),
622 INTC_VECT(VIO_VEU2HI
,0x8C0),
623 INTC_VECT(VIO_VOUI
,0x8E0),
625 INTC_VECT(SCIFA_SCIFA0
,0x900),
626 INTC_VECT(VPU_VPUI
,0x980),
627 INTC_VECT(TPU_TPUI
,0x9A0),
628 INTC_VECT(ADC_ADI
,0x9E0),
629 INTC_VECT(USB_USI0
,0xA20),
631 INTC_VECT(RTC_ATI
,0xA80),
632 INTC_VECT(RTC_PRI
,0xAA0),
633 INTC_VECT(RTC_CUI
,0xAC0),
635 INTC_VECT(DMAC1B_DEI4
,0xB00),
636 INTC_VECT(DMAC1B_DEI5
,0xB20),
637 INTC_VECT(DMAC1B_DADERR
,0xB40),
639 INTC_VECT(DMAC0B_DEI4
,0xB80),
640 INTC_VECT(DMAC0B_DEI5
,0xBA0),
641 INTC_VECT(DMAC0B_DADERR
,0xBC0),
643 INTC_VECT(KEYSC_KEYI
,0xBE0),
644 INTC_VECT(SCIF_SCIF0
,0xC00),
645 INTC_VECT(SCIF_SCIF1
,0xC20),
646 INTC_VECT(SCIF_SCIF2
,0xC40),
647 INTC_VECT(MSIOF_MSIOFI0
,0xC80),
648 INTC_VECT(MSIOF_MSIOFI1
,0xCA0),
649 INTC_VECT(SCIFA_SCIFA1
,0xD00),
651 INTC_VECT(FLCTL_FLSTEI
,0xD80),
652 INTC_VECT(FLCTL_FLTENDI
,0xDA0),
653 INTC_VECT(FLCTL_FLTREQ0I
,0xDC0),
654 INTC_VECT(FLCTL_FLTREQ1I
,0xDE0),
656 INTC_VECT(I2C_ALI
,0xE00),
657 INTC_VECT(I2C_TACKI
,0xE20),
658 INTC_VECT(I2C_WAITI
,0xE40),
659 INTC_VECT(I2C_DTEI
,0xE60),
661 INTC_VECT(SDHI0
, 0xE80),
662 INTC_VECT(SDHI0
, 0xEA0),
663 INTC_VECT(SDHI0
, 0xEC0),
665 INTC_VECT(CMT_CMTI
,0xF00),
666 INTC_VECT(TSIF_TSIFI
,0xF20),
667 INTC_VECT(SIU_SIUI
,0xF80),
668 INTC_VECT(SCIFA_SCIFA2
,0xFA0),
670 INTC_VECT(TMU0_TUNI0
,0x400),
671 INTC_VECT(TMU0_TUNI1
,0x420),
672 INTC_VECT(TMU0_TUNI2
,0x440),
674 INTC_VECT(IRDA_IRDAI
,0x480),
675 INTC_VECT(ATAPI_ATAPII
,0x4A0),
677 INTC_VECT(SDHI1
, 0x4E0),
678 INTC_VECT(SDHI1
, 0x500),
679 INTC_VECT(SDHI1
, 0x520),
681 INTC_VECT(VEU2H1_VEU2HI
,0x560),
682 INTC_VECT(LCDC_LCDCI
,0x580),
684 INTC_VECT(TMU1_TUNI0
,0x920),
685 INTC_VECT(TMU1_TUNI1
,0x940),
686 INTC_VECT(TMU1_TUNI2
,0x960),
690 static struct intc_group groups
[] __initdata
= {
691 INTC_GROUP(DMAC1A
,DMAC1A_DEI0
,DMAC1A_DEI1
,DMAC1A_DEI2
,DMAC1A_DEI3
),
692 INTC_GROUP(DMAC0A
,DMAC0A_DEI0
,DMAC0A_DEI1
,DMAC0A_DEI2
,DMAC0A_DEI3
),
693 INTC_GROUP(VIO
, VIO_CEUI
,VIO_BEUI
,VIO_VEU2HI
,VIO_VOUI
),
694 INTC_GROUP(DMAC0B
, DMAC0B_DEI4
,DMAC0B_DEI5
,DMAC0B_DADERR
),
695 INTC_GROUP(FLCTL
,FLCTL_FLSTEI
,FLCTL_FLTENDI
,FLCTL_FLTREQ0I
,FLCTL_FLTREQ1I
),
696 INTC_GROUP(I2C
,I2C_ALI
,I2C_TACKI
,I2C_WAITI
,I2C_DTEI
),
697 INTC_GROUP(_2DG
, _2DG_TRI
,_2DG_INI
,_2DG_CEI
),
698 INTC_GROUP(RTC
, RTC_ATI
,RTC_PRI
,RTC_CUI
),
699 INTC_GROUP(DMAC1B
, DMAC1B_DEI4
,DMAC1B_DEI5
,DMAC1B_DADERR
),
702 static struct intc_mask_reg mask_registers
[] __initdata
= {
703 { 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */
704 { 0, TMU1_TUNI2
, TMU1_TUNI1
, TMU1_TUNI0
,
705 0, ENABLED
, ENABLED
, ENABLED
} },
706 { 0xa4080084, 0xa40800c4, 8, /* IMR1 / IMCR1 */
707 { VIO_VOUI
, VIO_VEU2HI
,VIO_BEUI
,VIO_CEUI
,DMAC0A_DEI3
,DMAC0A_DEI2
,DMAC0A_DEI1
,DMAC0A_DEI0
} },
708 { 0xa4080088, 0xa40800c8, 8, /* IMR2 / IMCR2 */
709 { 0, 0, 0, VPU_VPUI
,0,0,0,SCIFA_SCIFA0
} },
710 { 0xa408008c, 0xa40800cc, 8, /* IMR3 / IMCR3 */
711 { DMAC1A_DEI3
,DMAC1A_DEI2
,DMAC1A_DEI1
,DMAC1A_DEI0
,0,0,0,IRDA_IRDAI
} },
712 { 0xa4080090, 0xa40800d0, 8, /* IMR4 / IMCR4 */
713 { 0,TMU0_TUNI2
,TMU0_TUNI1
,TMU0_TUNI0
,VEU2H1_VEU2HI
,0,0,LCDC_LCDCI
} },
714 { 0xa4080094, 0xa40800d4, 8, /* IMR5 / IMCR5 */
715 { KEYSC_KEYI
,DMAC0B_DADERR
,DMAC0B_DEI5
,DMAC0B_DEI4
,0,SCIF_SCIF2
,SCIF_SCIF1
,SCIF_SCIF0
} },
716 { 0xa4080098, 0xa40800d8, 8, /* IMR6 / IMCR6 */
717 { 0,0,0,SCIFA_SCIFA1
,ADC_ADI
,0,MSIOF_MSIOFI1
,MSIOF_MSIOFI0
} },
718 { 0xa408009c, 0xa40800dc, 8, /* IMR7 / IMCR7 */
719 { I2C_DTEI
, I2C_WAITI
, I2C_TACKI
, I2C_ALI
,
720 FLCTL_FLTREQ1I
, FLCTL_FLTREQ0I
, FLCTL_FLTENDI
, FLCTL_FLSTEI
} },
721 { 0xa40800a0, 0xa40800e0, 8, /* IMR8 / IMCR8 */
722 { 0, ENABLED
, ENABLED
, ENABLED
,
723 0, 0, SCIFA_SCIFA2
, SIU_SIUI
} },
724 { 0xa40800a4, 0xa40800e4, 8, /* IMR9 / IMCR9 */
725 { 0, 0, 0, CMT_CMTI
, 0, 0, USB_USI0
,0 } },
726 { 0xa40800a8, 0xa40800e8, 8, /* IMR10 / IMCR10 */
727 { 0, DMAC1B_DADERR
,DMAC1B_DEI5
,DMAC1B_DEI4
,0,RTC_ATI
,RTC_PRI
,RTC_CUI
} },
728 { 0xa40800ac, 0xa40800ec, 8, /* IMR11 / IMCR11 */
729 { 0,_2DG_CEI
,_2DG_INI
,_2DG_TRI
,0,TPU_TPUI
,0,TSIF_TSIFI
} },
730 { 0xa40800b0, 0xa40800f0, 8, /* IMR12 / IMCR12 */
731 { 0,0,0,0,0,0,0,ATAPI_ATAPII
} },
732 { 0xa4140044, 0xa4140064, 8, /* INTMSK00 / INTMSKCLR00 */
733 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
736 static struct intc_prio_reg prio_registers
[] __initdata
= {
737 { 0xa4080000, 0, 16, 4, /* IPRA */ { TMU0_TUNI0
, TMU0_TUNI1
, TMU0_TUNI2
, IRDA_IRDAI
} },
738 { 0xa4080004, 0, 16, 4, /* IPRB */ { VEU2H1_VEU2HI
, LCDC_LCDCI
, DMAC1A
, 0} },
739 { 0xa4080008, 0, 16, 4, /* IPRC */ { TMU1_TUNI0
, TMU1_TUNI1
, TMU1_TUNI2
, 0} },
740 { 0xa408000c, 0, 16, 4, /* IPRD */ { } },
741 { 0xa4080010, 0, 16, 4, /* IPRE */ { DMAC0A
, VIO
, SCIFA_SCIFA0
, VPU_VPUI
} },
742 { 0xa4080014, 0, 16, 4, /* IPRF */ { KEYSC_KEYI
, DMAC0B
, USB_USI0
, CMT_CMTI
} },
743 { 0xa4080018, 0, 16, 4, /* IPRG */ { SCIF_SCIF0
, SCIF_SCIF1
, SCIF_SCIF2
,0 } },
744 { 0xa408001c, 0, 16, 4, /* IPRH */ { MSIOF_MSIOFI0
,MSIOF_MSIOFI1
, FLCTL
, I2C
} },
745 { 0xa4080020, 0, 16, 4, /* IPRI */ { SCIFA_SCIFA1
,0,TSIF_TSIFI
,_2DG
} },
746 { 0xa4080024, 0, 16, 4, /* IPRJ */ { ADC_ADI
,0,SIU_SIUI
,SDHI1
} },
747 { 0xa4080028, 0, 16, 4, /* IPRK */ { RTC
,DMAC1B
,0,SDHI0
} },
748 { 0xa408002c, 0, 16, 4, /* IPRL */ { SCIFA_SCIFA2
,0,TPU_TPUI
,ATAPI_ATAPII
} },
749 { 0xa4140010, 0, 32, 4, /* INTPRI00 */
750 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
753 static struct intc_sense_reg sense_registers
[] __initdata
= {
754 { 0xa414001c, 16, 2, /* ICR1 */
755 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
758 static struct intc_mask_reg ack_registers
[] __initdata
= {
759 { 0xa4140024, 0, 8, /* INTREQ00 */
760 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
763 static struct intc_desc intc_desc __initdata
= {
765 .force_enable
= ENABLED
,
766 .force_disable
= DISABLED
,
767 .hw
= INTC_HW_DESC(vectors
, groups
, mask_registers
,
768 prio_registers
, sense_registers
, ack_registers
),
771 void __init
plat_irq_setup(void)
773 register_intc_controller(&intc_desc
);