2 * r8a7779 processor support - INTC hardware block
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
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.
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.
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
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/platform_device.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
26 #include <linux/irqchip/arm-gic.h>
27 #include <linux/platform_data/irq-renesas-intc-irqpin.h>
28 #include <linux/irqchip.h>
29 #include <mach/common.h>
30 #include <mach/irqs.h>
31 #include <mach/r8a7779.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
35 #define INT2SMSKCR0 IOMEM(0xfe7822a0)
36 #define INT2SMSKCR1 IOMEM(0xfe7822a4)
37 #define INT2SMSKCR2 IOMEM(0xfe7822a8)
38 #define INT2SMSKCR3 IOMEM(0xfe7822ac)
39 #define INT2SMSKCR4 IOMEM(0xfe7822b0)
41 #define INT2NTSR0 IOMEM(0xfe700060)
42 #define INT2NTSR1 IOMEM(0xfe700064)
44 static struct renesas_intc_irqpin_config irqpin0_platform_data
= {
45 .irq_base
= irq_pin(0), /* IRQ0 -> IRQ3 */
46 .sense_bitfield_width
= 2,
49 static struct resource irqpin0_resources
[] = {
50 DEFINE_RES_MEM(0xfe78001c, 4), /* ICR1 */
51 DEFINE_RES_MEM(0xfe780010, 4), /* INTPRI */
52 DEFINE_RES_MEM(0xfe780024, 4), /* INTREQ */
53 DEFINE_RES_MEM(0xfe780044, 4), /* INTMSK0 */
54 DEFINE_RES_MEM(0xfe780064, 4), /* INTMSKCLR0 */
55 DEFINE_RES_IRQ(gic_spi(27)), /* IRQ0 */
56 DEFINE_RES_IRQ(gic_spi(28)), /* IRQ1 */
57 DEFINE_RES_IRQ(gic_spi(29)), /* IRQ2 */
58 DEFINE_RES_IRQ(gic_spi(30)), /* IRQ3 */
61 static struct platform_device irqpin0_device
= {
62 .name
= "renesas_intc_irqpin",
64 .resource
= irqpin0_resources
,
65 .num_resources
= ARRAY_SIZE(irqpin0_resources
),
67 .platform_data
= &irqpin0_platform_data
,
71 void __init
r8a7779_init_irq_extpin(int irlm
)
73 void __iomem
*icr0
= ioremap_nocache(0xfe780000, PAGE_SIZE
);
79 tmp
|= 1 << 23; /* IRQ0 -> IRQ3 as individual pins */
81 tmp
&= ~(1 << 23); /* IRL mode - not supported */
82 tmp
|= (1 << 21); /* LVLMODE = 1 */
87 platform_device_register(&irqpin0_device
);
89 pr_warn("r8a7779: unable to setup external irq pin mode\n");
93 static int r8a7779_set_wake(struct irq_data
*data
, unsigned int on
)
95 return 0; /* always allow wakeup */
98 void __init
r8a7779_init_irq_dt(void)
100 gic_arch_extn
.irq_set_wake
= r8a7779_set_wake
;
104 /* route all interrupts to ARM */
105 __raw_writel(0xffffffff, INT2NTSR0
);
106 __raw_writel(0x3fffffff, INT2NTSR1
);
108 /* unmask all known interrupts in INTCS2 */
109 __raw_writel(0xfffffff0, INT2SMSKCR0
);
110 __raw_writel(0xfff7ffff, INT2SMSKCR1
);
111 __raw_writel(0xfffbffdf, INT2SMSKCR2
);
112 __raw_writel(0xbffffffc, INT2SMSKCR3
);
113 __raw_writel(0x003fee3f, INT2SMSKCR4
);