2 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * S5P - IRQ EINT support
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
16 #include <linux/device.h>
17 #include <linux/gpio.h>
18 #include <linux/irqchip/arm-vic.h>
20 #include <plat/regs-irqtype.h>
26 #include <plat/gpio-cfg.h>
27 #include <mach/regs-gpio.h>
29 static inline void s5p_irq_eint_mask(struct irq_data
*data
)
33 mask
= __raw_readl(S5P_EINT_MASK(EINT_REG_NR(data
->irq
)));
34 mask
|= eint_irq_to_bit(data
->irq
);
35 __raw_writel(mask
, S5P_EINT_MASK(EINT_REG_NR(data
->irq
)));
38 static void s5p_irq_eint_unmask(struct irq_data
*data
)
42 mask
= __raw_readl(S5P_EINT_MASK(EINT_REG_NR(data
->irq
)));
43 mask
&= ~(eint_irq_to_bit(data
->irq
));
44 __raw_writel(mask
, S5P_EINT_MASK(EINT_REG_NR(data
->irq
)));
47 static inline void s5p_irq_eint_ack(struct irq_data
*data
)
49 __raw_writel(eint_irq_to_bit(data
->irq
),
50 S5P_EINT_PEND(EINT_REG_NR(data
->irq
)));
53 static void s5p_irq_eint_maskack(struct irq_data
*data
)
55 /* compiler should in-line these */
56 s5p_irq_eint_mask(data
);
57 s5p_irq_eint_ack(data
);
60 static int s5p_irq_eint_set_type(struct irq_data
*data
, unsigned int type
)
62 int offs
= EINT_OFFSET(data
->irq
);
68 case IRQ_TYPE_EDGE_RISING
:
69 newvalue
= S5P_IRQ_TYPE_EDGE_RISING
;
72 case IRQ_TYPE_EDGE_FALLING
:
73 newvalue
= S5P_IRQ_TYPE_EDGE_FALLING
;
76 case IRQ_TYPE_EDGE_BOTH
:
77 newvalue
= S5P_IRQ_TYPE_EDGE_BOTH
;
80 case IRQ_TYPE_LEVEL_LOW
:
81 newvalue
= S5P_IRQ_TYPE_LEVEL_LOW
;
84 case IRQ_TYPE_LEVEL_HIGH
:
85 newvalue
= S5P_IRQ_TYPE_LEVEL_HIGH
;
89 printk(KERN_ERR
"No such irq type %d", type
);
93 shift
= (offs
& 0x7) * 4;
96 ctrl
= __raw_readl(S5P_EINT_CON(EINT_REG_NR(data
->irq
)));
98 ctrl
|= newvalue
<< shift
;
99 __raw_writel(ctrl
, S5P_EINT_CON(EINT_REG_NR(data
->irq
)));
101 if ((0 <= offs
) && (offs
< 8))
102 s3c_gpio_cfgpin(EINT_GPIO_0(offs
& 0x7), EINT_MODE
);
104 else if ((8 <= offs
) && (offs
< 16))
105 s3c_gpio_cfgpin(EINT_GPIO_1(offs
& 0x7), EINT_MODE
);
107 else if ((16 <= offs
) && (offs
< 24))
108 s3c_gpio_cfgpin(EINT_GPIO_2(offs
& 0x7), EINT_MODE
);
110 else if ((24 <= offs
) && (offs
< 32))
111 s3c_gpio_cfgpin(EINT_GPIO_3(offs
& 0x7), EINT_MODE
);
114 printk(KERN_ERR
"No such irq number %d", offs
);
119 static struct irq_chip s5p_irq_eint
= {
121 .irq_mask
= s5p_irq_eint_mask
,
122 .irq_unmask
= s5p_irq_eint_unmask
,
123 .irq_mask_ack
= s5p_irq_eint_maskack
,
124 .irq_ack
= s5p_irq_eint_ack
,
125 .irq_set_type
= s5p_irq_eint_set_type
,
127 .irq_set_wake
= s3c_irqext_wake
,
131 /* s5p_irq_demux_eint
133 * This function demuxes the IRQ from the group0 external interrupts,
134 * from EINTs 16 to 31. It is designed to be inlined into the specific
135 * handler s5p_irq_demux_eintX_Y.
137 * Each EINT pend/mask registers handle eight of them.
139 static inline void s5p_irq_demux_eint(unsigned int start
)
141 u32 status
= __raw_readl(S5P_EINT_PEND(EINT_REG_NR(start
)));
142 u32 mask
= __raw_readl(S5P_EINT_MASK(EINT_REG_NR(start
)));
149 irq
= fls(status
) - 1;
150 generic_handle_irq(irq
+ start
);
151 status
&= ~(1 << irq
);
155 static void s5p_irq_demux_eint16_31(unsigned int irq
, struct irq_desc
*desc
)
157 s5p_irq_demux_eint(IRQ_EINT(16));
158 s5p_irq_demux_eint(IRQ_EINT(24));
161 static inline void s5p_irq_vic_eint_mask(struct irq_data
*data
)
163 void __iomem
*base
= irq_data_get_irq_chip_data(data
);
165 s5p_irq_eint_mask(data
);
166 writel(1 << EINT_OFFSET(data
->irq
), base
+ VIC_INT_ENABLE_CLEAR
);
169 static void s5p_irq_vic_eint_unmask(struct irq_data
*data
)
171 void __iomem
*base
= irq_data_get_irq_chip_data(data
);
173 s5p_irq_eint_unmask(data
);
174 writel(1 << EINT_OFFSET(data
->irq
), base
+ VIC_INT_ENABLE
);
177 static inline void s5p_irq_vic_eint_ack(struct irq_data
*data
)
179 __raw_writel(eint_irq_to_bit(data
->irq
),
180 S5P_EINT_PEND(EINT_REG_NR(data
->irq
)));
183 static void s5p_irq_vic_eint_maskack(struct irq_data
*data
)
185 s5p_irq_vic_eint_mask(data
);
186 s5p_irq_vic_eint_ack(data
);
189 static struct irq_chip s5p_irq_vic_eint
= {
190 .name
= "s5p_vic_eint",
191 .irq_mask
= s5p_irq_vic_eint_mask
,
192 .irq_unmask
= s5p_irq_vic_eint_unmask
,
193 .irq_mask_ack
= s5p_irq_vic_eint_maskack
,
194 .irq_ack
= s5p_irq_vic_eint_ack
,
195 .irq_set_type
= s5p_irq_eint_set_type
,
197 .irq_set_wake
= s3c_irqext_wake
,
201 static int __init
s5p_init_irq_eint(void)
205 for (irq
= IRQ_EINT(0); irq
<= IRQ_EINT(15); irq
++)
206 irq_set_chip(irq
, &s5p_irq_vic_eint
);
208 for (irq
= IRQ_EINT(16); irq
<= IRQ_EINT(31); irq
++) {
209 irq_set_chip_and_handler(irq
, &s5p_irq_eint
, handle_level_irq
);
210 set_irq_flags(irq
, IRQF_VALID
);
213 irq_set_chained_handler(IRQ_EINT16_31
, s5p_irq_demux_eint16_31
);
217 arch_initcall(s5p_init_irq_eint
);