blob: 139c050918c54378bf90511971819060da46aeb0 [file] [log] [blame]
Jongpill Lee0df04f82010-05-17 16:56:26 +09001/* linux/arch/arm/plat-s5p/irq-eint.c
2 *
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
5 *
6 * S5P - IRQ EINT support
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11*/
12
13#include <linux/kernel.h>
14#include <linux/interrupt.h>
15#include <linux/irq.h>
16#include <linux/io.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080017#include <linux/device.h>
Jongpill Lee0df04f82010-05-17 16:56:26 +090018#include <linux/gpio.h>
19
20#include <asm/hardware/vic.h>
21
22#include <plat/regs-irqtype.h>
23
24#include <mach/map.h>
25#include <plat/cpu.h>
26#include <plat/pm.h>
27
28#include <plat/gpio-cfg.h>
29#include <mach/regs-gpio.h>
30
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010031static inline void s5p_irq_eint_mask(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +090032{
33 u32 mask;
34
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010035 mask = __raw_readl(S5P_EINT_MASK(EINT_REG_NR(data->irq)));
36 mask |= eint_irq_to_bit(data->irq);
37 __raw_writel(mask, S5P_EINT_MASK(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +090038}
39
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010040static void s5p_irq_eint_unmask(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +090041{
42 u32 mask;
43
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010044 mask = __raw_readl(S5P_EINT_MASK(EINT_REG_NR(data->irq)));
45 mask &= ~(eint_irq_to_bit(data->irq));
46 __raw_writel(mask, S5P_EINT_MASK(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +090047}
48
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010049static inline void s5p_irq_eint_ack(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +090050{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010051 __raw_writel(eint_irq_to_bit(data->irq),
52 S5P_EINT_PEND(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +090053}
54
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010055static void s5p_irq_eint_maskack(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +090056{
57 /* compiler should in-line these */
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010058 s5p_irq_eint_mask(data);
59 s5p_irq_eint_ack(data);
Jongpill Lee0df04f82010-05-17 16:56:26 +090060}
61
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010062static int s5p_irq_eint_set_type(struct irq_data *data, unsigned int type)
Jongpill Lee0df04f82010-05-17 16:56:26 +090063{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010064 int offs = EINT_OFFSET(data->irq);
Jongpill Lee0df04f82010-05-17 16:56:26 +090065 int shift;
66 u32 ctrl, mask;
67 u32 newvalue = 0;
68
69 switch (type) {
70 case IRQ_TYPE_EDGE_RISING:
Marek Szyprowski9adf5d22010-10-02 11:48:09 +090071 newvalue = S5P_IRQ_TYPE_EDGE_RISING;
Jongpill Lee0df04f82010-05-17 16:56:26 +090072 break;
73
74 case IRQ_TYPE_EDGE_FALLING:
Marek Szyprowski9adf5d22010-10-02 11:48:09 +090075 newvalue = S5P_IRQ_TYPE_EDGE_FALLING;
Jongpill Lee0df04f82010-05-17 16:56:26 +090076 break;
77
78 case IRQ_TYPE_EDGE_BOTH:
Marek Szyprowski9adf5d22010-10-02 11:48:09 +090079 newvalue = S5P_IRQ_TYPE_EDGE_BOTH;
Jongpill Lee0df04f82010-05-17 16:56:26 +090080 break;
81
82 case IRQ_TYPE_LEVEL_LOW:
Marek Szyprowski9adf5d22010-10-02 11:48:09 +090083 newvalue = S5P_IRQ_TYPE_LEVEL_LOW;
Jongpill Lee0df04f82010-05-17 16:56:26 +090084 break;
85
86 case IRQ_TYPE_LEVEL_HIGH:
Marek Szyprowski9adf5d22010-10-02 11:48:09 +090087 newvalue = S5P_IRQ_TYPE_LEVEL_HIGH;
Jongpill Lee0df04f82010-05-17 16:56:26 +090088 break;
89
90 default:
91 printk(KERN_ERR "No such irq type %d", type);
92 return -EINVAL;
93 }
94
95 shift = (offs & 0x7) * 4;
96 mask = 0x7 << shift;
97
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +010098 ctrl = __raw_readl(S5P_EINT_CON(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +090099 ctrl &= ~mask;
100 ctrl |= newvalue << shift;
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100101 __raw_writel(ctrl, S5P_EINT_CON(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +0900102
103 if ((0 <= offs) && (offs < 8))
104 s3c_gpio_cfgpin(EINT_GPIO_0(offs & 0x7), EINT_MODE);
105
106 else if ((8 <= offs) && (offs < 16))
107 s3c_gpio_cfgpin(EINT_GPIO_1(offs & 0x7), EINT_MODE);
108
109 else if ((16 <= offs) && (offs < 24))
110 s3c_gpio_cfgpin(EINT_GPIO_2(offs & 0x7), EINT_MODE);
111
112 else if ((24 <= offs) && (offs < 32))
113 s3c_gpio_cfgpin(EINT_GPIO_3(offs & 0x7), EINT_MODE);
114
115 else
116 printk(KERN_ERR "No such irq number %d", offs);
117
118 return 0;
119}
120
121static struct irq_chip s5p_irq_eint = {
122 .name = "s5p-eint",
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100123 .irq_mask = s5p_irq_eint_mask,
124 .irq_unmask = s5p_irq_eint_unmask,
125 .irq_mask_ack = s5p_irq_eint_maskack,
126 .irq_ack = s5p_irq_eint_ack,
127 .irq_set_type = s5p_irq_eint_set_type,
Jongpill Lee0df04f82010-05-17 16:56:26 +0900128#ifdef CONFIG_PM
Mark Brownf5aeffb2010-12-02 14:35:38 +0900129 .irq_set_wake = s3c_irqext_wake,
Jongpill Lee0df04f82010-05-17 16:56:26 +0900130#endif
131};
132
133/* s5p_irq_demux_eint
134 *
135 * This function demuxes the IRQ from the group0 external interrupts,
136 * from EINTs 16 to 31. It is designed to be inlined into the specific
137 * handler s5p_irq_demux_eintX_Y.
138 *
139 * Each EINT pend/mask registers handle eight of them.
140 */
141static inline void s5p_irq_demux_eint(unsigned int start)
142{
Pannaga Bhushan5fae4052010-05-24 15:08:31 +0900143 u32 status = __raw_readl(S5P_EINT_PEND(EINT_REG_NR(start)));
Jongpill Lee0df04f82010-05-17 16:56:26 +0900144 u32 mask = __raw_readl(S5P_EINT_MASK(EINT_REG_NR(start)));
145 unsigned int irq;
146
Jongpill Lee0df04f82010-05-17 16:56:26 +0900147 status &= ~mask;
148 status &= 0xff;
149
150 while (status) {
Pannaga Bhushan5fae4052010-05-24 15:08:31 +0900151 irq = fls(status) - 1;
152 generic_handle_irq(irq + start);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900153 status &= ~(1 << irq);
154 }
155}
156
157static void s5p_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc)
158{
159 s5p_irq_demux_eint(IRQ_EINT(16));
160 s5p_irq_demux_eint(IRQ_EINT(24));
161}
162
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100163static inline void s5p_irq_vic_eint_mask(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +0900164{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100165 void __iomem *base = irq_data_get_irq_chip_data(data);
Pannaga Bhushan5fae4052010-05-24 15:08:31 +0900166
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100167 s5p_irq_eint_mask(data);
168 writel(1 << EINT_OFFSET(data->irq), base + VIC_INT_ENABLE_CLEAR);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900169}
170
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100171static void s5p_irq_vic_eint_unmask(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +0900172{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100173 void __iomem *base = irq_data_get_irq_chip_data(data);
Pannaga Bhushan5fae4052010-05-24 15:08:31 +0900174
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100175 s5p_irq_eint_unmask(data);
176 writel(1 << EINT_OFFSET(data->irq), base + VIC_INT_ENABLE);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900177}
178
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100179static inline void s5p_irq_vic_eint_ack(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +0900180{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100181 __raw_writel(eint_irq_to_bit(data->irq),
182 S5P_EINT_PEND(EINT_REG_NR(data->irq)));
Jongpill Lee0df04f82010-05-17 16:56:26 +0900183}
184
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100185static void s5p_irq_vic_eint_maskack(struct irq_data *data)
Jongpill Lee0df04f82010-05-17 16:56:26 +0900186{
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100187 s5p_irq_vic_eint_mask(data);
188 s5p_irq_vic_eint_ack(data);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900189}
190
191static struct irq_chip s5p_irq_vic_eint = {
192 .name = "s5p_vic_eint",
Lennert Buytenhekbb0b2372010-12-14 22:55:26 +0100193 .irq_mask = s5p_irq_vic_eint_mask,
194 .irq_unmask = s5p_irq_vic_eint_unmask,
195 .irq_mask_ack = s5p_irq_vic_eint_maskack,
196 .irq_ack = s5p_irq_vic_eint_ack,
197 .irq_set_type = s5p_irq_eint_set_type,
Jongpill Lee0df04f82010-05-17 16:56:26 +0900198#ifdef CONFIG_PM
Mark Brownf5aeffb2010-12-02 14:35:38 +0900199 .irq_set_wake = s3c_irqext_wake,
Jongpill Lee0df04f82010-05-17 16:56:26 +0900200#endif
201};
202
Kukjin Kim6d259a22012-01-21 12:00:13 +0900203static int __init s5p_init_irq_eint(void)
Jongpill Lee0df04f82010-05-17 16:56:26 +0900204{
205 int irq;
206
207 for (irq = IRQ_EINT(0); irq <= IRQ_EINT(15); irq++)
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100208 irq_set_chip(irq, &s5p_irq_vic_eint);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900209
210 for (irq = IRQ_EINT(16); irq <= IRQ_EINT(31); irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100211 irq_set_chip_and_handler(irq, &s5p_irq_eint, handle_level_irq);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900212 set_irq_flags(irq, IRQF_VALID);
213 }
214
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100215 irq_set_chained_handler(IRQ_EINT16_31, s5p_irq_demux_eint16_31);
Jongpill Lee0df04f82010-05-17 16:56:26 +0900216 return 0;
217}
218
219arch_initcall(s5p_init_irq_eint);