4 * Copyright (C) 2009 - 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 * Paul Mundt <paul.mundt@renesas.com>
8 * Based on SH7785 Setup
10 * Copyright (C) 2007 Paul Mundt
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>
19 #include <linux/serial_sci.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/sh_timer.h>
24 #include <linux/sh_dma.h>
25 #include <linux/sh_intc.h>
26 #include <cpu/dma-register.h>
27 #include <asm/mmzone.h>
29 static struct plat_sci_port scif0_platform_data
= {
30 .mapbase
= 0xffea0000,
31 .flags
= UPF_BOOT_AUTOCONF
,
32 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
33 .scbrr_algo_id
= SCBRR_ALGO_1
,
35 .irqs
= { 40, 41, 43, 42 },
36 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
39 static struct platform_device scif0_device
= {
43 .platform_data
= &scif0_platform_data
,
48 * The rest of these all have multiplexed IRQs
50 static struct plat_sci_port scif1_platform_data
= {
51 .mapbase
= 0xffeb0000,
52 .flags
= UPF_BOOT_AUTOCONF
,
53 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
54 .scbrr_algo_id
= SCBRR_ALGO_1
,
56 .irqs
= { 44, 44, 44, 44 },
57 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
60 static struct platform_device scif1_device
= {
64 .platform_data
= &scif1_platform_data
,
68 static struct plat_sci_port scif2_platform_data
= {
69 .mapbase
= 0xffec0000,
70 .flags
= UPF_BOOT_AUTOCONF
,
71 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
72 .scbrr_algo_id
= SCBRR_ALGO_1
,
74 .irqs
= { 50, 50, 50, 50 },
75 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
78 static struct platform_device scif2_device
= {
82 .platform_data
= &scif2_platform_data
,
86 static struct plat_sci_port scif3_platform_data
= {
87 .mapbase
= 0xffed0000,
88 .flags
= UPF_BOOT_AUTOCONF
,
89 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
90 .scbrr_algo_id
= SCBRR_ALGO_1
,
92 .irqs
= { 51, 51, 51, 51 },
93 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
96 static struct platform_device scif3_device
= {
100 .platform_data
= &scif3_platform_data
,
104 static struct plat_sci_port scif4_platform_data
= {
105 .mapbase
= 0xffee0000,
106 .flags
= UPF_BOOT_AUTOCONF
,
107 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
108 .scbrr_algo_id
= SCBRR_ALGO_1
,
110 .irqs
= { 52, 52, 52, 52 },
111 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
114 static struct platform_device scif4_device
= {
118 .platform_data
= &scif4_platform_data
,
122 static struct plat_sci_port scif5_platform_data
= {
123 .mapbase
= 0xffef0000,
124 .flags
= UPF_BOOT_AUTOCONF
,
125 .scscr
= SCSCR_RE
| SCSCR_TE
| SCSCR_REIE
| SCSCR_CKE1
,
126 .scbrr_algo_id
= SCBRR_ALGO_1
,
128 .irqs
= { 53, 53, 53, 53 },
129 .regtype
= SCIx_SH4_SCIF_FIFODATA_REGTYPE
,
132 static struct platform_device scif5_device
= {
136 .platform_data
= &scif5_platform_data
,
140 static struct sh_timer_config tmu0_platform_data
= {
141 .channel_offset
= 0x04,
143 .clockevent_rating
= 200,
146 static struct resource tmu0_resources
[] = {
150 .flags
= IORESOURCE_MEM
,
154 .flags
= IORESOURCE_IRQ
,
158 static struct platform_device tmu0_device
= {
162 .platform_data
= &tmu0_platform_data
,
164 .resource
= tmu0_resources
,
165 .num_resources
= ARRAY_SIZE(tmu0_resources
),
168 static struct sh_timer_config tmu1_platform_data
= {
169 .channel_offset
= 0x10,
171 .clocksource_rating
= 200,
174 static struct resource tmu1_resources
[] = {
178 .flags
= IORESOURCE_MEM
,
182 .flags
= IORESOURCE_IRQ
,
186 static struct platform_device tmu1_device
= {
190 .platform_data
= &tmu1_platform_data
,
192 .resource
= tmu1_resources
,
193 .num_resources
= ARRAY_SIZE(tmu1_resources
),
196 static struct sh_timer_config tmu2_platform_data
= {
197 .channel_offset
= 0x1c,
201 static struct resource tmu2_resources
[] = {
205 .flags
= IORESOURCE_MEM
,
209 .flags
= IORESOURCE_IRQ
,
213 static struct platform_device tmu2_device
= {
217 .platform_data
= &tmu2_platform_data
,
219 .resource
= tmu2_resources
,
220 .num_resources
= ARRAY_SIZE(tmu2_resources
),
223 static struct sh_timer_config tmu3_platform_data
= {
224 .channel_offset
= 0x04,
228 static struct resource tmu3_resources
[] = {
232 .flags
= IORESOURCE_MEM
,
236 .flags
= IORESOURCE_IRQ
,
240 static struct platform_device tmu3_device
= {
244 .platform_data
= &tmu3_platform_data
,
246 .resource
= tmu3_resources
,
247 .num_resources
= ARRAY_SIZE(tmu3_resources
),
250 static struct sh_timer_config tmu4_platform_data
= {
251 .channel_offset
= 0x10,
255 static struct resource tmu4_resources
[] = {
259 .flags
= IORESOURCE_MEM
,
263 .flags
= IORESOURCE_IRQ
,
267 static struct platform_device tmu4_device
= {
271 .platform_data
= &tmu4_platform_data
,
273 .resource
= tmu4_resources
,
274 .num_resources
= ARRAY_SIZE(tmu4_resources
),
277 static struct sh_timer_config tmu5_platform_data
= {
278 .channel_offset
= 0x1c,
282 static struct resource tmu5_resources
[] = {
286 .flags
= IORESOURCE_MEM
,
290 .flags
= IORESOURCE_IRQ
,
294 static struct platform_device tmu5_device
= {
298 .platform_data
= &tmu5_platform_data
,
300 .resource
= tmu5_resources
,
301 .num_resources
= ARRAY_SIZE(tmu5_resources
),
304 static struct sh_timer_config tmu6_platform_data
= {
305 .channel_offset
= 0x04,
309 static struct resource tmu6_resources
[] = {
313 .flags
= IORESOURCE_MEM
,
317 .flags
= IORESOURCE_IRQ
,
321 static struct platform_device tmu6_device
= {
325 .platform_data
= &tmu6_platform_data
,
327 .resource
= tmu6_resources
,
328 .num_resources
= ARRAY_SIZE(tmu6_resources
),
331 static struct sh_timer_config tmu7_platform_data
= {
332 .channel_offset
= 0x10,
336 static struct resource tmu7_resources
[] = {
340 .flags
= IORESOURCE_MEM
,
344 .flags
= IORESOURCE_IRQ
,
348 static struct platform_device tmu7_device
= {
352 .platform_data
= &tmu7_platform_data
,
354 .resource
= tmu7_resources
,
355 .num_resources
= ARRAY_SIZE(tmu7_resources
),
358 static struct sh_timer_config tmu8_platform_data
= {
359 .channel_offset
= 0x1c,
363 static struct resource tmu8_resources
[] = {
367 .flags
= IORESOURCE_MEM
,
371 .flags
= IORESOURCE_IRQ
,
375 static struct platform_device tmu8_device
= {
379 .platform_data
= &tmu8_platform_data
,
381 .resource
= tmu8_resources
,
382 .num_resources
= ARRAY_SIZE(tmu8_resources
),
385 static struct sh_timer_config tmu9_platform_data
= {
386 .channel_offset
= 0x04,
390 static struct resource tmu9_resources
[] = {
394 .flags
= IORESOURCE_MEM
,
398 .flags
= IORESOURCE_IRQ
,
402 static struct platform_device tmu9_device
= {
406 .platform_data
= &tmu9_platform_data
,
408 .resource
= tmu9_resources
,
409 .num_resources
= ARRAY_SIZE(tmu9_resources
),
412 static struct sh_timer_config tmu10_platform_data
= {
413 .channel_offset
= 0x10,
417 static struct resource tmu10_resources
[] = {
421 .flags
= IORESOURCE_MEM
,
425 .flags
= IORESOURCE_IRQ
,
429 static struct platform_device tmu10_device
= {
433 .platform_data
= &tmu10_platform_data
,
435 .resource
= tmu10_resources
,
436 .num_resources
= ARRAY_SIZE(tmu10_resources
),
439 static struct sh_timer_config tmu11_platform_data
= {
440 .channel_offset
= 0x1c,
444 static struct resource tmu11_resources
[] = {
448 .flags
= IORESOURCE_MEM
,
452 .flags
= IORESOURCE_IRQ
,
456 static struct platform_device tmu11_device
= {
460 .platform_data
= &tmu11_platform_data
,
462 .resource
= tmu11_resources
,
463 .num_resources
= ARRAY_SIZE(tmu11_resources
),
466 static const struct sh_dmae_channel dmac0_channels
[] = {
494 static const unsigned int ts_shift
[] = TS_SHIFT
;
496 static struct sh_dmae_pdata dma0_platform_data
= {
497 .channel
= dmac0_channels
,
498 .channel_num
= ARRAY_SIZE(dmac0_channels
),
499 .ts_low_shift
= CHCR_TS_LOW_SHIFT
,
500 .ts_low_mask
= CHCR_TS_LOW_MASK
,
501 .ts_high_shift
= CHCR_TS_HIGH_SHIFT
,
502 .ts_high_mask
= CHCR_TS_HIGH_MASK
,
503 .ts_shift
= ts_shift
,
504 .ts_shift_num
= ARRAY_SIZE(ts_shift
),
505 .dmaor_init
= DMAOR_INIT
,
508 /* Resource order important! */
509 static struct resource dmac0_resources
[] = {
511 /* Channel registers and DMAOR */
514 .flags
= IORESOURCE_MEM
,
519 .flags
= IORESOURCE_MEM
,
522 .start
= evt2irq(0x5c0),
523 .end
= evt2irq(0x5c0),
524 .flags
= IORESOURCE_IRQ
,
526 /* IRQ for channels 0-5 */
527 .start
= evt2irq(0x500),
528 .end
= evt2irq(0x5a0),
529 .flags
= IORESOURCE_IRQ
,
533 static struct platform_device dma0_device
= {
534 .name
= "sh-dma-engine",
536 .resource
= dmac0_resources
,
537 .num_resources
= ARRAY_SIZE(dmac0_resources
),
539 .platform_data
= &dma0_platform_data
,
543 #define USB_EHCI_START 0xffe70000
544 #define USB_OHCI_START 0xffe70400
546 static struct resource usb_ehci_resources
[] = {
548 .start
= USB_EHCI_START
,
549 .end
= USB_EHCI_START
+ 0x3ff,
550 .flags
= IORESOURCE_MEM
,
555 .flags
= IORESOURCE_IRQ
,
559 static struct platform_device usb_ehci_device
= {
563 .dma_mask
= &usb_ehci_device
.dev
.coherent_dma_mask
,
564 .coherent_dma_mask
= DMA_BIT_MASK(32),
566 .num_resources
= ARRAY_SIZE(usb_ehci_resources
),
567 .resource
= usb_ehci_resources
,
570 static struct resource usb_ohci_resources
[] = {
572 .start
= USB_OHCI_START
,
573 .end
= USB_OHCI_START
+ 0x3ff,
574 .flags
= IORESOURCE_MEM
,
579 .flags
= IORESOURCE_IRQ
,
583 static struct platform_device usb_ohci_device
= {
587 .dma_mask
= &usb_ohci_device
.dev
.coherent_dma_mask
,
588 .coherent_dma_mask
= DMA_BIT_MASK(32),
590 .num_resources
= ARRAY_SIZE(usb_ohci_resources
),
591 .resource
= usb_ohci_resources
,
594 static struct platform_device
*sh7786_early_devices
[] __initdata
= {
615 static struct platform_device
*sh7786_devices
[] __initdata
= {
622 * Please call this function if your platform board
623 * use external clock for USB
625 #define USBCTL0 0xffe70858
626 #define CLOCK_MODE_MASK 0xffffff7f
627 #define EXT_CLOCK_MODE 0x00000080
629 void __init
sh7786_usb_use_exclock(void)
631 u32 val
= __raw_readl(USBCTL0
) & CLOCK_MODE_MASK
;
632 __raw_writel(val
| EXT_CLOCK_MODE
, USBCTL0
);
635 #define USBINITREG1 0xffe70094
636 #define USBINITREG2 0xffe7009c
637 #define USBINITVAL1 0x00ff0040
638 #define USBINITVAL2 0x00000001
640 #define USBPCTL1 0xffe70804
641 #define USBST 0xffe70808
642 #define PHY_ENB 0x00000001
643 #define PLL_ENB 0x00000002
644 #define PHY_RST 0x00000004
645 #define ACT_PLL_STATUS 0xc0000000
647 static void __init
sh7786_usb_setup(void)
652 * USB initial settings
654 * The following settings are necessary
655 * for using the USB modules.
657 * see "USB Initial Settings" for detail
659 __raw_writel(USBINITVAL1
, USBINITREG1
);
660 __raw_writel(USBINITVAL2
, USBINITREG2
);
663 * Set the PHY and PLL enable bit
665 __raw_writel(PHY_ENB
| PLL_ENB
, USBPCTL1
);
667 if (ACT_PLL_STATUS
== (__raw_readl(USBST
) & ACT_PLL_STATUS
)) {
668 /* Set the PHY RST bit */
669 __raw_writel(PHY_ENB
| PLL_ENB
| PHY_RST
, USBPCTL1
);
670 printk(KERN_INFO
"sh7786 usb setup done\n");
680 /* interrupt sources */
681 IRL0_LLLL
, IRL0_LLLH
, IRL0_LLHL
, IRL0_LLHH
,
682 IRL0_LHLL
, IRL0_LHLH
, IRL0_LHHL
, IRL0_LHHH
,
683 IRL0_HLLL
, IRL0_HLLH
, IRL0_HLHL
, IRL0_HLHH
,
684 IRL0_HHLL
, IRL0_HHLH
, IRL0_HHHL
,
686 IRL4_LLLL
, IRL4_LLLH
, IRL4_LLHL
, IRL4_LLHH
,
687 IRL4_LHLL
, IRL4_LHLH
, IRL4_LHHL
, IRL4_LHHH
,
688 IRL4_HLLL
, IRL4_HLLH
, IRL4_HLHL
, IRL4_HLHH
,
689 IRL4_HHLL
, IRL4_HHLH
, IRL4_HHHL
,
691 IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
,
693 TMU0_0
, TMU0_1
, TMU0_2
, TMU0_3
,
694 TMU1_0
, TMU1_1
, TMU1_2
,
695 DMAC0_0
, DMAC0_1
, DMAC0_2
, DMAC0_3
, DMAC0_4
, DMAC0_5
, DMAC0_6
,
697 DMAC1_0
, DMAC1_1
, DMAC1_2
, DMAC1_3
,
699 SCIF0_0
, SCIF0_1
, SCIF0_2
, SCIF0_3
,
702 SCIF2
, SCIF3
, SCIF4
, SCIF5
,
704 PCIeC0_0
, PCIeC0_1
, PCIeC0_2
,
705 PCIeC1_0
, PCIeC1_1
, PCIeC1_2
,
709 SSI0
, SSI1
, SSI2
, SSI3
,
710 PCIeC2_0
, PCIeC2_1
, PCIeC2_2
,
716 INTICI0
, INTICI1
, INTICI2
, INTICI3
,
717 INTICI4
, INTICI5
, INTICI6
, INTICI7
,
719 /* Muxed sub-events */
720 TXI1
, BRI1
, RXI1
, ERI1
,
723 static struct intc_vect sh7786_vectors
[] __initdata
= {
724 INTC_VECT(WDT
, 0x3e0),
725 INTC_VECT(TMU0_0
, 0x400), INTC_VECT(TMU0_1
, 0x420),
726 INTC_VECT(TMU0_2
, 0x440), INTC_VECT(TMU0_3
, 0x460),
727 INTC_VECT(TMU1_0
, 0x480), INTC_VECT(TMU1_1
, 0x4a0),
728 INTC_VECT(TMU1_2
, 0x4c0),
729 INTC_VECT(DMAC0_0
, 0x500), INTC_VECT(DMAC0_1
, 0x520),
730 INTC_VECT(DMAC0_2
, 0x540), INTC_VECT(DMAC0_3
, 0x560),
731 INTC_VECT(DMAC0_4
, 0x580), INTC_VECT(DMAC0_5
, 0x5a0),
732 INTC_VECT(DMAC0_6
, 0x5c0),
733 INTC_VECT(HUDI1
, 0x5e0), INTC_VECT(HUDI0
, 0x600),
734 INTC_VECT(DMAC1_0
, 0x620), INTC_VECT(DMAC1_1
, 0x640),
735 INTC_VECT(DMAC1_2
, 0x660), INTC_VECT(DMAC1_3
, 0x680),
736 INTC_VECT(HPB_0
, 0x6a0), INTC_VECT(HPB_1
, 0x6c0),
737 INTC_VECT(HPB_2
, 0x6e0),
738 INTC_VECT(SCIF0_0
, 0x700), INTC_VECT(SCIF0_1
, 0x720),
739 INTC_VECT(SCIF0_2
, 0x740), INTC_VECT(SCIF0_3
, 0x760),
740 INTC_VECT(SCIF1
, 0x780),
741 INTC_VECT(TMU2
, 0x7a0), INTC_VECT(TMU3
, 0x7c0),
742 INTC_VECT(SCIF2
, 0x840), INTC_VECT(SCIF3
, 0x860),
743 INTC_VECT(SCIF4
, 0x880), INTC_VECT(SCIF5
, 0x8a0),
744 INTC_VECT(Eth_0
, 0x8c0), INTC_VECT(Eth_1
, 0x8e0),
745 INTC_VECT(PCIeC0_0
, 0xae0), INTC_VECT(PCIeC0_1
, 0xb00),
746 INTC_VECT(PCIeC0_2
, 0xb20),
747 INTC_VECT(PCIeC1_0
, 0xb40), INTC_VECT(PCIeC1_1
, 0xb60),
748 INTC_VECT(PCIeC1_2
, 0xb80),
749 INTC_VECT(USB
, 0xba0),
750 INTC_VECT(I2C0
, 0xcc0), INTC_VECT(I2C1
, 0xce0),
751 INTC_VECT(DU
, 0xd00),
752 INTC_VECT(SSI0
, 0xd20), INTC_VECT(SSI1
, 0xd40),
753 INTC_VECT(SSI2
, 0xd60), INTC_VECT(SSI3
, 0xd80),
754 INTC_VECT(PCIeC2_0
, 0xda0), INTC_VECT(PCIeC2_1
, 0xdc0),
755 INTC_VECT(PCIeC2_2
, 0xde0),
756 INTC_VECT(HAC0
, 0xe00), INTC_VECT(HAC1
, 0xe20),
757 INTC_VECT(FLCTL
, 0xe40),
758 INTC_VECT(HSPI
, 0xe80),
759 INTC_VECT(GPIO0
, 0xea0), INTC_VECT(GPIO1
, 0xec0),
760 INTC_VECT(Thermal
, 0xee0),
761 INTC_VECT(INTICI0
, 0xf00), INTC_VECT(INTICI1
, 0xf20),
762 INTC_VECT(INTICI2
, 0xf40), INTC_VECT(INTICI3
, 0xf60),
763 INTC_VECT(INTICI4
, 0xf80), INTC_VECT(INTICI5
, 0xfa0),
764 INTC_VECT(INTICI6
, 0xfc0), INTC_VECT(INTICI7
, 0xfe0),
767 #define CnINTMSK0 0xfe410030
768 #define CnINTMSK1 0xfe410040
769 #define CnINTMSKCLR0 0xfe410050
770 #define CnINTMSKCLR1 0xfe410060
771 #define CnINT2MSKR0 0xfe410a20
772 #define CnINT2MSKR1 0xfe410a24
773 #define CnINT2MSKR2 0xfe410a28
774 #define CnINT2MSKR3 0xfe410a2c
775 #define CnINT2MSKCR0 0xfe410a30
776 #define CnINT2MSKCR1 0xfe410a34
777 #define CnINT2MSKCR2 0xfe410a38
778 #define CnINT2MSKCR3 0xfe410a3c
779 #define INTMSK2 0xfe410068
780 #define INTMSKCLR2 0xfe41006c
782 #define INTDISTCR0 0xfe4100b0
783 #define INTDISTCR1 0xfe4100b4
784 #define INT2DISTCR0 0xfe410900
785 #define INT2DISTCR1 0xfe410904
786 #define INT2DISTCR2 0xfe410908
787 #define INT2DISTCR3 0xfe41090c
789 static struct intc_mask_reg sh7786_mask_registers
[] __initdata
= {
790 { CnINTMSK0
, CnINTMSKCLR0
, 32,
791 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
},
792 INTC_SMP_BALANCING(INTDISTCR0
) },
793 { INTMSK2
, INTMSKCLR2
, 32,
794 { IRL0_LLLL
, IRL0_LLLH
, IRL0_LLHL
, IRL0_LLHH
,
795 IRL0_LHLL
, IRL0_LHLH
, IRL0_LHHL
, IRL0_LHHH
,
796 IRL0_HLLL
, IRL0_HLLH
, IRL0_HLHL
, IRL0_HLHH
,
797 IRL0_HHLL
, IRL0_HHLH
, IRL0_HHHL
, 0,
798 IRL4_LLLL
, IRL4_LLLH
, IRL4_LLHL
, IRL4_LLHH
,
799 IRL4_LHLL
, IRL4_LHLH
, IRL4_LHHL
, IRL4_LHHH
,
800 IRL4_HLLL
, IRL4_HLLH
, IRL4_HLHL
, IRL4_HLHH
,
801 IRL4_HHLL
, IRL4_HHLH
, IRL4_HHHL
, 0, } },
802 { CnINT2MSKR0
, CnINT2MSKCR0
, 32,
803 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
804 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, WDT
},
805 INTC_SMP_BALANCING(INT2DISTCR0
) },
806 { CnINT2MSKR1
, CnINT2MSKCR1
, 32,
807 { TMU0_0
, TMU0_1
, TMU0_2
, TMU0_3
, TMU1_0
, TMU1_1
, TMU1_2
, 0,
808 DMAC0_0
, DMAC0_1
, DMAC0_2
, DMAC0_3
, DMAC0_4
, DMAC0_5
, DMAC0_6
,
810 DMAC1_0
, DMAC1_1
, DMAC1_2
, DMAC1_3
,
812 SCIF0_0
, SCIF0_1
, SCIF0_2
, SCIF0_3
,
814 TMU2
, TMU3
, 0, }, INTC_SMP_BALANCING(INT2DISTCR1
) },
815 { CnINT2MSKR2
, CnINT2MSKCR2
, 32,
816 { 0, 0, SCIF2
, SCIF3
, SCIF4
, SCIF5
,
818 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
819 PCIeC0_0
, PCIeC0_1
, PCIeC0_2
,
820 PCIeC1_0
, PCIeC1_1
, PCIeC1_2
,
821 USB
, 0, 0 }, INTC_SMP_BALANCING(INT2DISTCR2
) },
822 { CnINT2MSKR3
, CnINT2MSKCR3
, 32,
825 DU
, SSI0
, SSI1
, SSI2
, SSI3
,
826 PCIeC2_0
, PCIeC2_1
, PCIeC2_2
,
829 HSPI
, GPIO0
, GPIO1
, Thermal
,
830 0, 0, 0, 0, 0, 0, 0, 0 }, INTC_SMP_BALANCING(INT2DISTCR3
) },
833 static struct intc_prio_reg sh7786_prio_registers
[] __initdata
= {
834 { 0xfe410010, 0, 32, 4, /* INTPRI */ { IRQ0
, IRQ1
, IRQ2
, IRQ3
,
835 IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
836 { 0xfe410800, 0, 32, 8, /* INT2PRI0 */ { 0, 0, 0, WDT
} },
837 { 0xfe410804, 0, 32, 8, /* INT2PRI1 */ { TMU0_0
, TMU0_1
,
839 { 0xfe410808, 0, 32, 8, /* INT2PRI2 */ { TMU1_0
, TMU1_1
,
841 { 0xfe41080c, 0, 32, 8, /* INT2PRI3 */ { DMAC0_0
, DMAC0_1
,
842 DMAC0_2
, DMAC0_3
} },
843 { 0xfe410810, 0, 32, 8, /* INT2PRI4 */ { DMAC0_4
, DMAC0_5
,
845 { 0xfe410814, 0, 32, 8, /* INT2PRI5 */ { HUDI0
, DMAC1_0
,
846 DMAC1_1
, DMAC1_2
} },
847 { 0xfe410818, 0, 32, 8, /* INT2PRI6 */ { DMAC1_3
, HPB_0
,
849 { 0xfe41081c, 0, 32, 8, /* INT2PRI7 */ { SCIF0_0
, SCIF0_1
,
850 SCIF0_2
, SCIF0_3
} },
851 { 0xfe410820, 0, 32, 8, /* INT2PRI8 */ { SCIF1
, TMU2
, TMU3
, 0 } },
852 { 0xfe410824, 0, 32, 8, /* INT2PRI9 */ { 0, 0, SCIF2
, SCIF3
} },
853 { 0xfe410828, 0, 32, 8, /* INT2PRI10 */ { SCIF4
, SCIF5
,
855 { 0xfe41082c, 0, 32, 8, /* INT2PRI11 */ { 0, 0, 0, 0 } },
856 { 0xfe410830, 0, 32, 8, /* INT2PRI12 */ { 0, 0, 0, 0 } },
857 { 0xfe410834, 0, 32, 8, /* INT2PRI13 */ { 0, 0, 0, 0 } },
858 { 0xfe410838, 0, 32, 8, /* INT2PRI14 */ { 0, 0, 0, PCIeC0_0
} },
859 { 0xfe41083c, 0, 32, 8, /* INT2PRI15 */ { PCIeC0_1
, PCIeC0_2
,
860 PCIeC1_0
, PCIeC1_1
} },
861 { 0xfe410840, 0, 32, 8, /* INT2PRI16 */ { PCIeC1_2
, USB
, 0, 0 } },
862 { 0xfe410844, 0, 32, 8, /* INT2PRI17 */ { 0, 0, 0, 0 } },
863 { 0xfe410848, 0, 32, 8, /* INT2PRI18 */ { 0, 0, I2C0
, I2C1
} },
864 { 0xfe41084c, 0, 32, 8, /* INT2PRI19 */ { DU
, SSI0
, SSI1
, SSI2
} },
865 { 0xfe410850, 0, 32, 8, /* INT2PRI20 */ { SSI3
, PCIeC2_0
,
866 PCIeC2_1
, PCIeC2_2
} },
867 { 0xfe410854, 0, 32, 8, /* INT2PRI21 */ { HAC0
, HAC1
, FLCTL
, 0 } },
868 { 0xfe410858, 0, 32, 8, /* INT2PRI22 */ { HSPI
, GPIO0
,
870 { 0xfe41085c, 0, 32, 8, /* INT2PRI23 */ { 0, 0, 0, 0 } },
871 { 0xfe410860, 0, 32, 8, /* INT2PRI24 */ { 0, 0, 0, 0 } },
872 { 0xfe410090, 0xfe4100a0, 32, 4, /* CnICIPRI / CnICIPRICLR */
873 { INTICI7
, INTICI6
, INTICI5
, INTICI4
,
874 INTICI3
, INTICI2
, INTICI1
, INTICI0
}, INTC_SMP(4, 2) },
877 static struct intc_subgroup sh7786_subgroups
[] __initdata
= {
878 { 0xfe410c20, 32, SCIF1
,
879 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, TXI1
, BRI1
, RXI1
, ERI1
} },
883 static struct intc_desc sh7786_intc_desc __initdata
= {
886 .vectors
= sh7786_vectors
,
887 .nr_vectors
= ARRAY_SIZE(sh7786_vectors
),
888 .mask_regs
= sh7786_mask_registers
,
889 .nr_mask_regs
= ARRAY_SIZE(sh7786_mask_registers
),
890 .subgroups
= sh7786_subgroups
,
891 .nr_subgroups
= ARRAY_SIZE(sh7786_subgroups
),
892 .prio_regs
= sh7786_prio_registers
,
893 .nr_prio_regs
= ARRAY_SIZE(sh7786_prio_registers
),
897 /* Support for external interrupt pins in IRQ mode */
898 static struct intc_vect vectors_irq0123
[] __initdata
= {
899 INTC_VECT(IRQ0
, 0x200), INTC_VECT(IRQ1
, 0x240),
900 INTC_VECT(IRQ2
, 0x280), INTC_VECT(IRQ3
, 0x2c0),
903 static struct intc_vect vectors_irq4567
[] __initdata
= {
904 INTC_VECT(IRQ4
, 0x300), INTC_VECT(IRQ5
, 0x340),
905 INTC_VECT(IRQ6
, 0x380), INTC_VECT(IRQ7
, 0x3c0),
908 static struct intc_sense_reg sh7786_sense_registers
[] __initdata
= {
909 { 0xfe41001c, 32, 2, /* ICR1 */ { IRQ0
, IRQ1
, IRQ2
, IRQ3
,
910 IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
913 static struct intc_mask_reg sh7786_ack_registers
[] __initdata
= {
914 { 0xfe410024, 0, 32, /* INTREQ */
915 { IRQ0
, IRQ1
, IRQ2
, IRQ3
, IRQ4
, IRQ5
, IRQ6
, IRQ7
} },
918 static DECLARE_INTC_DESC_ACK(intc_desc_irq0123
, "sh7786-irq0123",
919 vectors_irq0123
, NULL
, sh7786_mask_registers
,
920 sh7786_prio_registers
, sh7786_sense_registers
,
921 sh7786_ack_registers
);
923 static DECLARE_INTC_DESC_ACK(intc_desc_irq4567
, "sh7786-irq4567",
924 vectors_irq4567
, NULL
, sh7786_mask_registers
,
925 sh7786_prio_registers
, sh7786_sense_registers
,
926 sh7786_ack_registers
);
928 /* External interrupt pins in IRL mode */
930 static struct intc_vect vectors_irl0123
[] __initdata
= {
931 INTC_VECT(IRL0_LLLL
, 0x200), INTC_VECT(IRL0_LLLH
, 0x220),
932 INTC_VECT(IRL0_LLHL
, 0x240), INTC_VECT(IRL0_LLHH
, 0x260),
933 INTC_VECT(IRL0_LHLL
, 0x280), INTC_VECT(IRL0_LHLH
, 0x2a0),
934 INTC_VECT(IRL0_LHHL
, 0x2c0), INTC_VECT(IRL0_LHHH
, 0x2e0),
935 INTC_VECT(IRL0_HLLL
, 0x300), INTC_VECT(IRL0_HLLH
, 0x320),
936 INTC_VECT(IRL0_HLHL
, 0x340), INTC_VECT(IRL0_HLHH
, 0x360),
937 INTC_VECT(IRL0_HHLL
, 0x380), INTC_VECT(IRL0_HHLH
, 0x3a0),
938 INTC_VECT(IRL0_HHHL
, 0x3c0),
941 static struct intc_vect vectors_irl4567
[] __initdata
= {
942 INTC_VECT(IRL4_LLLL
, 0x900), INTC_VECT(IRL4_LLLH
, 0x920),
943 INTC_VECT(IRL4_LLHL
, 0x940), INTC_VECT(IRL4_LLHH
, 0x960),
944 INTC_VECT(IRL4_LHLL
, 0x980), INTC_VECT(IRL4_LHLH
, 0x9a0),
945 INTC_VECT(IRL4_LHHL
, 0x9c0), INTC_VECT(IRL4_LHHH
, 0x9e0),
946 INTC_VECT(IRL4_HLLL
, 0xa00), INTC_VECT(IRL4_HLLH
, 0xa20),
947 INTC_VECT(IRL4_HLHL
, 0xa40), INTC_VECT(IRL4_HLHH
, 0xa60),
948 INTC_VECT(IRL4_HHLL
, 0xa80), INTC_VECT(IRL4_HHLH
, 0xaa0),
949 INTC_VECT(IRL4_HHHL
, 0xac0),
952 static DECLARE_INTC_DESC(intc_desc_irl0123
, "sh7786-irl0123", vectors_irl0123
,
953 NULL
, sh7786_mask_registers
, NULL
, NULL
);
955 static DECLARE_INTC_DESC(intc_desc_irl4567
, "sh7786-irl4567", vectors_irl4567
,
956 NULL
, sh7786_mask_registers
, NULL
, NULL
);
958 #define INTC_ICR0 0xfe410000
959 #define INTC_INTMSK0 CnINTMSK0
960 #define INTC_INTMSK1 CnINTMSK1
961 #define INTC_INTMSK2 INTMSK2
962 #define INTC_INTMSKCLR1 CnINTMSKCLR1
963 #define INTC_INTMSKCLR2 INTMSKCLR2
965 void __init
plat_irq_setup(void)
967 /* disable IRQ3-0 + IRQ7-4 */
968 __raw_writel(0xff000000, INTC_INTMSK0
);
970 /* disable IRL3-0 + IRL7-4 */
971 __raw_writel(0xc0000000, INTC_INTMSK1
);
972 __raw_writel(0xfffefffe, INTC_INTMSK2
);
974 /* select IRL mode for IRL3-0 + IRL7-4 */
975 __raw_writel(__raw_readl(INTC_ICR0
) & ~0x00c00000, INTC_ICR0
);
977 register_intc_controller(&sh7786_intc_desc
);
980 void __init
plat_irq_setup_pins(int mode
)
983 case IRQ_MODE_IRQ7654
:
984 /* select IRQ mode for IRL7-4 */
985 __raw_writel(__raw_readl(INTC_ICR0
) | 0x00400000, INTC_ICR0
);
986 register_intc_controller(&intc_desc_irq4567
);
988 case IRQ_MODE_IRQ3210
:
989 /* select IRQ mode for IRL3-0 */
990 __raw_writel(__raw_readl(INTC_ICR0
) | 0x00800000, INTC_ICR0
);
991 register_intc_controller(&intc_desc_irq0123
);
993 case IRQ_MODE_IRL7654
:
994 /* enable IRL7-4 but don't provide any masking */
995 __raw_writel(0x40000000, INTC_INTMSKCLR1
);
996 __raw_writel(0x0000fffe, INTC_INTMSKCLR2
);
998 case IRQ_MODE_IRL3210
:
999 /* enable IRL0-3 but don't provide any masking */
1000 __raw_writel(0x80000000, INTC_INTMSKCLR1
);
1001 __raw_writel(0xfffe0000, INTC_INTMSKCLR2
);
1003 case IRQ_MODE_IRL7654_MASK
:
1004 /* enable IRL7-4 and mask using cpu intc controller */
1005 __raw_writel(0x40000000, INTC_INTMSKCLR1
);
1006 register_intc_controller(&intc_desc_irl4567
);
1008 case IRQ_MODE_IRL3210_MASK
:
1009 /* enable IRL0-3 and mask using cpu intc controller */
1010 __raw_writel(0x80000000, INTC_INTMSKCLR1
);
1011 register_intc_controller(&intc_desc_irl0123
);
1018 void __init
plat_mem_setup(void)
1022 static int __init
sh7786_devices_setup(void)
1029 * De-mux SCIF1 IRQs if possible
1031 irq
= intc_irq_lookup(sh7786_intc_desc
.name
, TXI1
);
1033 scif1_platform_data
.irqs
[SCIx_TXI_IRQ
] = irq
;
1034 scif1_platform_data
.irqs
[SCIx_ERI_IRQ
] =
1035 intc_irq_lookup(sh7786_intc_desc
.name
, ERI1
);
1036 scif1_platform_data
.irqs
[SCIx_BRI_IRQ
] =
1037 intc_irq_lookup(sh7786_intc_desc
.name
, BRI1
);
1038 scif1_platform_data
.irqs
[SCIx_RXI_IRQ
] =
1039 intc_irq_lookup(sh7786_intc_desc
.name
, RXI1
);
1042 ret
= platform_add_devices(sh7786_early_devices
,
1043 ARRAY_SIZE(sh7786_early_devices
));
1044 if (unlikely(ret
!= 0))
1047 return platform_add_devices(sh7786_devices
,
1048 ARRAY_SIZE(sh7786_devices
));
1050 arch_initcall(sh7786_devices_setup
);
1052 void __init
plat_early_device_setup(void)
1054 early_platform_add_devices(sh7786_early_devices
,
1055 ARRAY_SIZE(sh7786_early_devices
));