blob: e43214461960f53597c49ab8fb596bb26b5137a5 [file] [log] [blame]
Heiko Stuebner1f629b72013-01-29 10:25:22 -08001/*
2 * S3C24XX IRQ handling
Ben Dooksa21765a2007-02-11 18:31:01 +01003 *
Ben Dookse02f8662009-11-13 22:54:13 +00004 * Copyright (c) 2003-2004 Simtec Electronics
Ben Dooksa21765a2007-02-11 18:31:01 +01005 * Ben Dooks <ben@simtec.co.uk>
Heiko Stuebner1f629b72013-01-29 10:25:22 -08006 * Copyright (c) 2012 Heiko Stuebner <heiko@sntech.de>
Ben Dooksa21765a2007-02-11 18:31:01 +01007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Ben Dooksa21765a2007-02-11 18:31:01 +010017*/
18
19#include <linux/init.h>
Heiko Stuebner1f629b72013-01-29 10:25:22 -080020#include <linux/slab.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010021#include <linux/module.h>
Heiko Stuebner1f629b72013-01-29 10:25:22 -080022#include <linux/io.h>
23#include <linux/err.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010024#include <linux/interrupt.h>
25#include <linux/ioport.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080026#include <linux/device.h>
Heiko Stuebner1f629b72013-01-29 10:25:22 -080027#include <linux/irqdomain.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010028
Ben Dooksa21765a2007-02-11 18:31:01 +010029#include <asm/mach/irq.h>
30
Heiko Stuebner1f629b72013-01-29 10:25:22 -080031#include <mach/regs-irq.h>
32#include <mach/regs-gpio.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010033
Ben Dooksa2b7ba92008-10-07 22:26:09 +010034#include <plat/cpu.h>
Heiko Stuebner1f629b72013-01-29 10:25:22 -080035#include <plat/regs-irqtype.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010036#include <plat/pm.h>
37#include <plat/irq.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010038
Heiko Stuebner1f629b72013-01-29 10:25:22 -080039#define S3C_IRQTYPE_NONE 0
40#define S3C_IRQTYPE_EINT 1
41#define S3C_IRQTYPE_EDGE 2
42#define S3C_IRQTYPE_LEVEL 3
Ben Dooksa21765a2007-02-11 18:31:01 +010043
Heiko Stuebner1f629b72013-01-29 10:25:22 -080044struct s3c_irq_data {
45 unsigned int type;
46 unsigned long parent_irq;
Ben Dooksa21765a2007-02-11 18:31:01 +010047
Heiko Stuebner1f629b72013-01-29 10:25:22 -080048 /* data gets filled during init */
49 struct s3c_irq_intc *intc;
50 unsigned long sub_bits;
51 struct s3c_irq_intc *sub_intc;
Ben Dooksa21765a2007-02-11 18:31:01 +010052};
53
Heiko Stuebner1f629b72013-01-29 10:25:22 -080054/*
55 * Sructure holding the controller data
56 * @reg_pending register holding pending irqs
57 * @reg_intpnd special register intpnd in main intc
58 * @reg_mask mask register
59 * @domain irq_domain of the controller
60 * @parent parent controller for ext and sub irqs
61 * @irqs irq-data, always s3c_irq_data[32]
62 */
63struct s3c_irq_intc {
64 void __iomem *reg_pending;
65 void __iomem *reg_intpnd;
66 void __iomem *reg_mask;
67 struct irq_domain *domain;
68 struct s3c_irq_intc *parent;
69 struct s3c_irq_data *irqs;
Ben Dooksa21765a2007-02-11 18:31:01 +010070};
71
Heiko Stuebner1f629b72013-01-29 10:25:22 -080072static void s3c_irq_mask(struct irq_data *data)
Ben Dooksa21765a2007-02-11 18:31:01 +010073{
Heiko Stuebner1f629b72013-01-29 10:25:22 -080074 struct s3c_irq_intc *intc = data->domain->host_data;
75 struct s3c_irq_intc *parent_intc = intc->parent;
76 struct s3c_irq_data *irq_data = &intc->irqs[data->hwirq];
77 struct s3c_irq_data *parent_data;
Ben Dooksa21765a2007-02-11 18:31:01 +010078 unsigned long mask;
Heiko Stuebner1f629b72013-01-29 10:25:22 -080079 unsigned int irqno;
Ben Dooksa21765a2007-02-11 18:31:01 +010080
Heiko Stuebner1f629b72013-01-29 10:25:22 -080081 mask = __raw_readl(intc->reg_mask);
82 mask |= (1UL << data->hwirq);
83 __raw_writel(mask, intc->reg_mask);
Ben Dooksa21765a2007-02-11 18:31:01 +010084
Heiko Stuebner1f629b72013-01-29 10:25:22 -080085 if (parent_intc && irq_data->parent_irq) {
86 parent_data = &parent_intc->irqs[irq_data->parent_irq];
Ben Dooksa21765a2007-02-11 18:31:01 +010087
Heiko Stuebner1f629b72013-01-29 10:25:22 -080088 /* check to see if we need to mask the parent IRQ */
89 if ((mask & parent_data->sub_bits) == parent_data->sub_bits) {
90 irqno = irq_find_mapping(parent_intc->domain,
91 irq_data->parent_irq);
92 s3c_irq_mask(irq_get_irq_data(irqno));
93 }
Ben Dooksa21765a2007-02-11 18:31:01 +010094 }
95}
96
Heiko Stuebner1f629b72013-01-29 10:25:22 -080097static void s3c_irq_unmask(struct irq_data *data)
Ben Dooksa21765a2007-02-11 18:31:01 +010098{
Heiko Stuebner1f629b72013-01-29 10:25:22 -080099 struct s3c_irq_intc *intc = data->domain->host_data;
100 struct s3c_irq_intc *parent_intc = intc->parent;
101 struct s3c_irq_data *irq_data = &intc->irqs[data->hwirq];
Ben Dooksa21765a2007-02-11 18:31:01 +0100102 unsigned long mask;
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800103 unsigned int irqno;
Ben Dooksa21765a2007-02-11 18:31:01 +0100104
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800105 mask = __raw_readl(intc->reg_mask);
106 mask &= ~(1UL << data->hwirq);
107 __raw_writel(mask, intc->reg_mask);
108
109 if (parent_intc && irq_data->parent_irq) {
110 irqno = irq_find_mapping(parent_intc->domain,
111 irq_data->parent_irq);
112 s3c_irq_unmask(irq_get_irq_data(irqno));
113 }
Ben Dooksa21765a2007-02-11 18:31:01 +0100114}
115
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800116static inline void s3c_irq_ack(struct irq_data *data)
Ben Dooksa21765a2007-02-11 18:31:01 +0100117{
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800118 struct s3c_irq_intc *intc = data->domain->host_data;
119 unsigned long bitval = 1UL << data->hwirq;
120
121 __raw_writel(bitval, intc->reg_pending);
122 if (intc->reg_intpnd)
123 __raw_writel(bitval, intc->reg_intpnd);
124}
125
126static int s3c_irqext_type_set(void __iomem *gpcon_reg,
127 void __iomem *extint_reg,
128 unsigned long gpcon_offset,
129 unsigned long extint_offset,
130 unsigned int type)
131{
Ben Dooksa21765a2007-02-11 18:31:01 +0100132 unsigned long newvalue = 0, value;
133
Ben Dooksa21765a2007-02-11 18:31:01 +0100134 /* Set the GPIO to external interrupt mode */
135 value = __raw_readl(gpcon_reg);
136 value = (value & ~(3 << gpcon_offset)) | (0x02 << gpcon_offset);
137 __raw_writel(value, gpcon_reg);
138
139 /* Set the external interrupt to pointed trigger type */
140 switch (type)
141 {
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100142 case IRQ_TYPE_NONE:
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800143 pr_warn("No edge setting!\n");
Ben Dooksa21765a2007-02-11 18:31:01 +0100144 break;
145
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100146 case IRQ_TYPE_EDGE_RISING:
Ben Dooksa21765a2007-02-11 18:31:01 +0100147 newvalue = S3C2410_EXTINT_RISEEDGE;
148 break;
149
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100150 case IRQ_TYPE_EDGE_FALLING:
Ben Dooksa21765a2007-02-11 18:31:01 +0100151 newvalue = S3C2410_EXTINT_FALLEDGE;
152 break;
153
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100154 case IRQ_TYPE_EDGE_BOTH:
Ben Dooksa21765a2007-02-11 18:31:01 +0100155 newvalue = S3C2410_EXTINT_BOTHEDGE;
156 break;
157
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100158 case IRQ_TYPE_LEVEL_LOW:
Ben Dooksa21765a2007-02-11 18:31:01 +0100159 newvalue = S3C2410_EXTINT_LOWLEV;
160 break;
161
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100162 case IRQ_TYPE_LEVEL_HIGH:
Ben Dooksa21765a2007-02-11 18:31:01 +0100163 newvalue = S3C2410_EXTINT_HILEV;
164 break;
165
166 default:
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800167 pr_err("No such irq type %d", type);
168 return -EINVAL;
Ben Dooksa21765a2007-02-11 18:31:01 +0100169 }
170
171 value = __raw_readl(extint_reg);
172 value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset);
173 __raw_writel(value, extint_reg);
174
175 return 0;
176}
177
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800178/* FIXME: make static when it's out of plat-samsung/irq.h */
179int s3c_irqext_type(struct irq_data *data, unsigned int type)
180{
181 void __iomem *extint_reg;
182 void __iomem *gpcon_reg;
183 unsigned long gpcon_offset, extint_offset;
184
185 if ((data->hwirq >= 4) && (data->hwirq <= 7)) {
186 gpcon_reg = S3C2410_GPFCON;
187 extint_reg = S3C24XX_EXTINT0;
188 gpcon_offset = (data->hwirq) * 2;
189 extint_offset = (data->hwirq) * 4;
190 } else if ((data->hwirq >= 8) && (data->hwirq <= 15)) {
191 gpcon_reg = S3C2410_GPGCON;
192 extint_reg = S3C24XX_EXTINT1;
193 gpcon_offset = (data->hwirq - 8) * 2;
194 extint_offset = (data->hwirq - 8) * 4;
195 } else if ((data->hwirq >= 16) && (data->hwirq <= 23)) {
196 gpcon_reg = S3C2410_GPGCON;
197 extint_reg = S3C24XX_EXTINT2;
198 gpcon_offset = (data->hwirq - 8) * 2;
199 extint_offset = (data->hwirq - 16) * 4;
200 } else {
201 return -EINVAL;
202 }
203
204 return s3c_irqext_type_set(gpcon_reg, extint_reg, gpcon_offset,
205 extint_offset, type);
206}
207
208static int s3c_irqext0_type(struct irq_data *data, unsigned int type)
209{
210 void __iomem *extint_reg;
211 void __iomem *gpcon_reg;
212 unsigned long gpcon_offset, extint_offset;
213
214 if ((data->hwirq >= 0) && (data->hwirq <= 3)) {
215 gpcon_reg = S3C2410_GPFCON;
216 extint_reg = S3C24XX_EXTINT0;
217 gpcon_offset = (data->hwirq) * 2;
218 extint_offset = (data->hwirq) * 4;
219 } else {
220 return -EINVAL;
221 }
222
223 return s3c_irqext_type_set(gpcon_reg, extint_reg, gpcon_offset,
224 extint_offset, type);
225}
226
227struct irq_chip s3c_irq_chip = {
228 .name = "s3c",
229 .irq_ack = s3c_irq_ack,
230 .irq_mask = s3c_irq_mask,
231 .irq_unmask = s3c_irq_unmask,
232 .irq_set_wake = s3c_irq_wake
233};
234
235struct irq_chip s3c_irq_level_chip = {
236 .name = "s3c-level",
237 .irq_mask = s3c_irq_mask,
238 .irq_unmask = s3c_irq_unmask,
239 .irq_ack = s3c_irq_ack,
240};
241
Ben Dooksa21765a2007-02-11 18:31:01 +0100242static struct irq_chip s3c_irqext_chip = {
243 .name = "s3c-ext",
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800244 .irq_mask = s3c_irq_mask,
245 .irq_unmask = s3c_irq_unmask,
246 .irq_ack = s3c_irq_ack,
Lennert Buytenhek57436c2d2011-01-03 19:15:54 +0900247 .irq_set_type = s3c_irqext_type,
Mark Brownf5aeffb2010-12-02 14:35:38 +0900248 .irq_set_wake = s3c_irqext_wake
Ben Dooksa21765a2007-02-11 18:31:01 +0100249};
250
251static struct irq_chip s3c_irq_eint0t4 = {
252 .name = "s3c-ext0",
Lennert Buytenhek57436c2d2011-01-03 19:15:54 +0900253 .irq_ack = s3c_irq_ack,
254 .irq_mask = s3c_irq_mask,
255 .irq_unmask = s3c_irq_unmask,
256 .irq_set_wake = s3c_irq_wake,
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800257 .irq_set_type = s3c_irqext0_type,
Ben Dooksa21765a2007-02-11 18:31:01 +0100258};
259
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800260static void s3c_irq_demux(unsigned int irq, struct irq_desc *desc)
Ben Dooksa21765a2007-02-11 18:31:01 +0100261{
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800262 struct irq_chip *chip = irq_desc_get_chip(desc);
263 struct s3c_irq_intc *intc = desc->irq_data.domain->host_data;
264 struct s3c_irq_data *irq_data = &intc->irqs[desc->irq_data.hwirq];
265 struct s3c_irq_intc *sub_intc = irq_data->sub_intc;
266 unsigned long src;
267 unsigned long msk;
268 unsigned int n;
Ben Dooksa21765a2007-02-11 18:31:01 +0100269
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800270 chained_irq_enter(chip, desc);
Ben Dooksa21765a2007-02-11 18:31:01 +0100271
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800272 src = __raw_readl(sub_intc->reg_pending);
273 msk = __raw_readl(sub_intc->reg_mask);
Ben Dooksa21765a2007-02-11 18:31:01 +0100274
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800275 src &= ~msk;
276 src &= irq_data->sub_bits;
Ben Dooksa21765a2007-02-11 18:31:01 +0100277
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800278 while (src) {
279 n = __ffs(src);
280 src &= ~(1 << n);
281 generic_handle_irq(irq_find_mapping(sub_intc->domain, n));
Ben Dooksa21765a2007-02-11 18:31:01 +0100282 }
283
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800284 chained_irq_exit(chip, desc);
Ben Dooksa21765a2007-02-11 18:31:01 +0100285}
286
Ben Dooks229fd8f2009-08-03 17:26:57 +0100287#ifdef CONFIG_FIQ
288/**
289 * s3c24xx_set_fiq - set the FIQ routing
290 * @irq: IRQ number to route to FIQ on processor.
291 * @on: Whether to route @irq to the FIQ, or to remove the FIQ routing.
292 *
293 * Change the state of the IRQ to FIQ routing depending on @irq and @on. If
294 * @on is true, the @irq is checked to see if it can be routed and the
295 * interrupt controller updated to route the IRQ. If @on is false, the FIQ
296 * routing is cleared, regardless of which @irq is specified.
297 */
298int s3c24xx_set_fiq(unsigned int irq, bool on)
299{
300 u32 intmod;
301 unsigned offs;
302
303 if (on) {
304 offs = irq - FIQ_START;
305 if (offs > 31)
306 return -EINVAL;
307
308 intmod = 1 << offs;
309 } else {
310 intmod = 0;
311 }
312
313 __raw_writel(intmod, S3C2410_INTMOD);
314 return 0;
315}
Ben Dooks0f13c822009-12-07 14:51:38 +0000316
317EXPORT_SYMBOL_GPL(s3c24xx_set_fiq);
Ben Dooks229fd8f2009-08-03 17:26:57 +0100318#endif
319
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800320static int s3c24xx_irq_map(struct irq_domain *h, unsigned int virq,
321 irq_hw_number_t hw)
322{
323 struct s3c_irq_intc *intc = h->host_data;
324 struct s3c_irq_data *irq_data = &intc->irqs[hw];
325 struct s3c_irq_intc *parent_intc;
326 struct s3c_irq_data *parent_irq_data;
327 unsigned int irqno;
328
329 if (!intc) {
330 pr_err("irq-s3c24xx: no controller found for hwirq %lu\n", hw);
331 return -EINVAL;
332 }
333
334 if (!irq_data) {
335 pr_err("irq-s3c24xx: no irq data found for hwirq %lu\n", hw);
336 return -EINVAL;
337 }
338
339 /* attach controller pointer to irq_data */
340 irq_data->intc = intc;
341
342 /* set handler and flags */
343 switch (irq_data->type) {
344 case S3C_IRQTYPE_NONE:
345 return 0;
346 case S3C_IRQTYPE_EINT:
347 if (irq_data->parent_irq)
348 irq_set_chip_and_handler(virq, &s3c_irqext_chip,
349 handle_edge_irq);
350 else
351 irq_set_chip_and_handler(virq, &s3c_irq_eint0t4,
352 handle_edge_irq);
353 break;
354 case S3C_IRQTYPE_EDGE:
355 if (irq_data->parent_irq)
356 irq_set_chip_and_handler(virq, &s3c_irq_level_chip,
357 handle_edge_irq);
358 else
359 irq_set_chip_and_handler(virq, &s3c_irq_chip,
360 handle_edge_irq);
361 break;
362 case S3C_IRQTYPE_LEVEL:
363 if (irq_data->parent_irq)
364 irq_set_chip_and_handler(virq, &s3c_irq_level_chip,
365 handle_level_irq);
366 else
367 irq_set_chip_and_handler(virq, &s3c_irq_chip,
368 handle_level_irq);
369 break;
370 default:
371 pr_err("irq-s3c24xx: unsupported irqtype %d\n", irq_data->type);
372 return -EINVAL;
373 }
374 set_irq_flags(virq, IRQF_VALID);
375
376 if (irq_data->parent_irq) {
377 parent_intc = intc->parent;
378 if (!parent_intc) {
379 pr_err("irq-s3c24xx: no parent controller found for hwirq %lu\n",
380 hw);
381 goto err;
382 }
383
384 parent_irq_data = &parent_intc->irqs[irq_data->parent_irq];
385 if (!irq_data) {
386 pr_err("irq-s3c24xx: no irq data found for hwirq %lu\n",
387 hw);
388 goto err;
389 }
390
391 parent_irq_data->sub_intc = intc;
392 parent_irq_data->sub_bits |= (1UL << hw);
393
394 /* attach the demuxer to the parent irq */
395 irqno = irq_find_mapping(parent_intc->domain,
396 irq_data->parent_irq);
397 if (!irqno) {
398 pr_err("irq-s3c24xx: could not find mapping for parent irq %lu\n",
399 irq_data->parent_irq);
400 goto err;
401 }
402 irq_set_chained_handler(irqno, s3c_irq_demux);
403 }
404
405 return 0;
406
407err:
408 set_irq_flags(virq, 0);
409
410 /* the only error can result from bad mapping data*/
411 return -EINVAL;
412}
413
414static struct irq_domain_ops s3c24xx_irq_ops = {
415 .map = s3c24xx_irq_map,
416 .xlate = irq_domain_xlate_twocell,
417};
418
419static void s3c24xx_clear_intc(struct s3c_irq_intc *intc)
420{
421 void __iomem *reg_source;
422 unsigned long pend;
423 unsigned long last;
424 int i;
425
426 /* if intpnd is set, read the next pending irq from there */
427 reg_source = intc->reg_intpnd ? intc->reg_intpnd : intc->reg_pending;
428
429 last = 0;
430 for (i = 0; i < 4; i++) {
431 pend = __raw_readl(reg_source);
432
433 if (pend == 0 || pend == last)
434 break;
435
436 __raw_writel(pend, intc->reg_pending);
437 if (intc->reg_intpnd)
438 __raw_writel(pend, intc->reg_intpnd);
439
440 pr_info("irq: clearing pending status %08x\n", (int)pend);
441 last = pend;
442 }
443}
444
445struct s3c_irq_intc *s3c24xx_init_intc(struct device_node *np,
446 struct s3c_irq_data *irq_data,
447 struct s3c_irq_intc *parent,
448 unsigned long address)
449{
450 struct s3c_irq_intc *intc;
451 void __iomem *base = (void *)0xf6000000; /* static mapping */
452 int irq_num;
453 int irq_start;
454 int irq_offset;
455 int ret;
456
457 intc = kzalloc(sizeof(struct s3c_irq_intc), GFP_KERNEL);
458 if (!intc)
459 return ERR_PTR(-ENOMEM);
460
461 intc->irqs = irq_data;
462
463 if (parent)
464 intc->parent = parent;
465
466 /* select the correct data for the controller.
467 * Need to hard code the irq num start and offset
468 * to preserve the static mapping for now
469 */
470 switch (address) {
471 case 0x4a000000:
472 pr_debug("irq: found main intc\n");
473 intc->reg_pending = base;
474 intc->reg_mask = base + 0x08;
475 intc->reg_intpnd = base + 0x10;
476 irq_num = 32;
477 irq_start = S3C2410_IRQ(0);
478 irq_offset = 0;
479 break;
480 case 0x4a000018:
481 pr_debug("irq: found subintc\n");
482 intc->reg_pending = base + 0x18;
483 intc->reg_mask = base + 0x1c;
484 irq_num = 29;
485 irq_start = S3C2410_IRQSUB(0);
486 irq_offset = 0;
487 break;
488 case 0x4a000040:
489 pr_debug("irq: found intc2\n");
490 intc->reg_pending = base + 0x40;
491 intc->reg_mask = base + 0x48;
492 intc->reg_intpnd = base + 0x50;
493 irq_num = 8;
494 irq_start = S3C2416_IRQ(0);
495 irq_offset = 0;
496 break;
497 case 0x560000a4:
498 pr_debug("irq: found eintc\n");
499 base = (void *)0xfd000000;
500
501 intc->reg_mask = base + 0xa4;
502 intc->reg_pending = base + 0x08;
503 irq_num = 20;
504 irq_start = S3C2410_IRQ(32);
505 irq_offset = 4;
506 break;
507 default:
508 pr_err("irq: unsupported controller address\n");
509 ret = -EINVAL;
510 goto err;
511 }
512
513 /* now that all the data is complete, init the irq-domain */
514 s3c24xx_clear_intc(intc);
515 intc->domain = irq_domain_add_legacy(np, irq_num, irq_start,
516 irq_offset, &s3c24xx_irq_ops,
517 intc);
518 if (!intc->domain) {
519 pr_err("irq: could not create irq-domain\n");
520 ret = -EINVAL;
521 goto err;
522 }
523
524 return intc;
525
526err:
527 kfree(intc);
528 return ERR_PTR(ret);
529}
Ben Dooks229fd8f2009-08-03 17:26:57 +0100530
Ben Dooksa21765a2007-02-11 18:31:01 +0100531/* s3c24xx_init_irq
532 *
533 * Initialise S3C2410 IRQ system
534*/
535
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800536static struct s3c_irq_data init_base[32] = {
537 { .type = S3C_IRQTYPE_EINT, }, /* EINT0 */
538 { .type = S3C_IRQTYPE_EINT, }, /* EINT1 */
539 { .type = S3C_IRQTYPE_EINT, }, /* EINT2 */
540 { .type = S3C_IRQTYPE_EINT, }, /* EINT3 */
541 { .type = S3C_IRQTYPE_LEVEL, }, /* EINT4to7 */
542 { .type = S3C_IRQTYPE_LEVEL, }, /* EINT8to23 */
543 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
544 { .type = S3C_IRQTYPE_EDGE, }, /* nBATT_FLT */
545 { .type = S3C_IRQTYPE_EDGE, }, /* TICK */
546 { .type = S3C_IRQTYPE_EDGE, }, /* WDT */
547 { .type = S3C_IRQTYPE_EDGE, }, /* TIMER0 */
548 { .type = S3C_IRQTYPE_EDGE, }, /* TIMER1 */
549 { .type = S3C_IRQTYPE_EDGE, }, /* TIMER2 */
550 { .type = S3C_IRQTYPE_EDGE, }, /* TIMER3 */
551 { .type = S3C_IRQTYPE_EDGE, }, /* TIMER4 */
552 { .type = S3C_IRQTYPE_LEVEL, }, /* UART2 */
553 { .type = S3C_IRQTYPE_EDGE, }, /* LCD */
554 { .type = S3C_IRQTYPE_EDGE, }, /* DMA0 */
555 { .type = S3C_IRQTYPE_EDGE, }, /* DMA1 */
556 { .type = S3C_IRQTYPE_EDGE, }, /* DMA2 */
557 { .type = S3C_IRQTYPE_EDGE, }, /* DMA3 */
558 { .type = S3C_IRQTYPE_EDGE, }, /* SDI */
559 { .type = S3C_IRQTYPE_EDGE, }, /* SPI0 */
560 { .type = S3C_IRQTYPE_LEVEL, }, /* UART1 */
561 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
562 { .type = S3C_IRQTYPE_EDGE, }, /* USBD */
563 { .type = S3C_IRQTYPE_EDGE, }, /* USBH */
564 { .type = S3C_IRQTYPE_EDGE, }, /* IIC */
565 { .type = S3C_IRQTYPE_LEVEL, }, /* UART0 */
566 { .type = S3C_IRQTYPE_EDGE, }, /* SPI1 */
567 { .type = S3C_IRQTYPE_EDGE, }, /* RTC */
568 { .type = S3C_IRQTYPE_LEVEL, }, /* ADCPARENT */
569};
570
571static struct s3c_irq_data init_eint[32] = {
572 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
573 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
574 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
575 { .type = S3C_IRQTYPE_NONE, }, /* reserved */
576 { .type = S3C_IRQTYPE_EINT, .parent_irq = 4 }, /* EINT4 */
577 { .type = S3C_IRQTYPE_EINT, .parent_irq = 4 }, /* EINT5 */
578 { .type = S3C_IRQTYPE_EINT, .parent_irq = 4 }, /* EINT6 */
579 { .type = S3C_IRQTYPE_EINT, .parent_irq = 4 }, /* EINT7 */
580 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT8 */
581 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT9 */
582 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT10 */
583 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT11 */
584 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT12 */
585 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT13 */
586 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT14 */
587 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT15 */
588 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT16 */
589 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT17 */
590 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT18 */
591 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT19 */
592 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT20 */
593 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT21 */
594 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT22 */
595 { .type = S3C_IRQTYPE_EINT, .parent_irq = 5 }, /* EINT23 */
596};
597
598static struct s3c_irq_data init_subint[32] = {
599 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 28 }, /* UART0-RX */
600 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 28 }, /* UART0-TX */
601 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 28 }, /* UART0-ERR */
602 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 23 }, /* UART1-RX */
603 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 23 }, /* UART1-TX */
604 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 23 }, /* UART1-ERR */
605 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 15 }, /* UART2-RX */
606 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 15 }, /* UART2-TX */
607 { .type = S3C_IRQTYPE_LEVEL, .parent_irq = 15 }, /* UART2-ERR */
608 { .type = S3C_IRQTYPE_EDGE, .parent_irq = 31 }, /* TC */
609 { .type = S3C_IRQTYPE_EDGE, .parent_irq = 31 }, /* ADC */
610};
611
Ben Dooksa21765a2007-02-11 18:31:01 +0100612void __init s3c24xx_init_irq(void)
613{
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800614 struct s3c_irq_intc *main_intc;
Ben Dooksa21765a2007-02-11 18:31:01 +0100615
Ben Dooks229fd8f2009-08-03 17:26:57 +0100616#ifdef CONFIG_FIQ
Shawn Guobc896632012-06-28 14:42:08 +0800617 init_FIQ(FIQ_START);
Ben Dooks229fd8f2009-08-03 17:26:57 +0100618#endif
619
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800620 main_intc = s3c24xx_init_intc(NULL, &init_base[0], NULL, 0x4a000000);
621 if (IS_ERR(main_intc)) {
622 pr_err("irq: could not create main interrupt controller\n");
623 return;
Ben Dooksa21765a2007-02-11 18:31:01 +0100624 }
625
Heiko Stuebner1f629b72013-01-29 10:25:22 -0800626 s3c24xx_init_intc(NULL, &init_subint[0], main_intc, 0x4a000018);
627 s3c24xx_init_intc(NULL, &init_eint[0], main_intc, 0x560000a4);
Ben Dooksa21765a2007-02-11 18:31:01 +0100628}
Heiko Stuebneref602eb2013-01-29 10:25:22 -0800629
630#ifdef CONFIG_CPU_S3C2416
631#define INTMSK(start, end) ((1 << ((end) + 1 - (start))) - 1)
632
633static inline void s3c2416_irq_demux(unsigned int irq, unsigned int len)
634{
635 unsigned int subsrc, submsk;
636 unsigned int end;
637
638 /* read the current pending interrupts, and the mask
639 * for what it is available */
640
641 subsrc = __raw_readl(S3C2410_SUBSRCPND);
642 submsk = __raw_readl(S3C2410_INTSUBMSK);
643
644 subsrc &= ~submsk;
645 subsrc >>= (irq - S3C2410_IRQSUB(0));
646 subsrc &= (1 << len)-1;
647
648 end = len + irq;
649
650 for (; irq < end && subsrc; irq++) {
651 if (subsrc & 1)
652 generic_handle_irq(irq);
653
654 subsrc >>= 1;
655 }
656}
657
658/* WDT/AC97 sub interrupts */
659
660static void s3c2416_irq_demux_wdtac97(unsigned int irq, struct irq_desc *desc)
661{
662 s3c2416_irq_demux(IRQ_S3C2443_WDT, 4);
663}
664
665#define INTMSK_WDTAC97 (1UL << (IRQ_WDT - IRQ_EINT0))
666#define SUBMSK_WDTAC97 INTMSK(IRQ_S3C2443_WDT, IRQ_S3C2443_AC97)
667
668static void s3c2416_irq_wdtac97_mask(struct irq_data *data)
669{
670 s3c_irqsub_mask(data->irq, INTMSK_WDTAC97, SUBMSK_WDTAC97);
671}
672
673static void s3c2416_irq_wdtac97_unmask(struct irq_data *data)
674{
675 s3c_irqsub_unmask(data->irq, INTMSK_WDTAC97);
676}
677
678static void s3c2416_irq_wdtac97_ack(struct irq_data *data)
679{
680 s3c_irqsub_maskack(data->irq, INTMSK_WDTAC97, SUBMSK_WDTAC97);
681}
682
683static struct irq_chip s3c2416_irq_wdtac97 = {
684 .irq_mask = s3c2416_irq_wdtac97_mask,
685 .irq_unmask = s3c2416_irq_wdtac97_unmask,
686 .irq_ack = s3c2416_irq_wdtac97_ack,
687};
688
689/* LCD sub interrupts */
690
691static void s3c2416_irq_demux_lcd(unsigned int irq, struct irq_desc *desc)
692{
693 s3c2416_irq_demux(IRQ_S3C2443_LCD1, 4);
694}
695
696#define INTMSK_LCD (1UL << (IRQ_LCD - IRQ_EINT0))
697#define SUBMSK_LCD INTMSK(IRQ_S3C2443_LCD1, IRQ_S3C2443_LCD4)
698
699static void s3c2416_irq_lcd_mask(struct irq_data *data)
700{
701 s3c_irqsub_mask(data->irq, INTMSK_LCD, SUBMSK_LCD);
702}
703
704static void s3c2416_irq_lcd_unmask(struct irq_data *data)
705{
706 s3c_irqsub_unmask(data->irq, INTMSK_LCD);
707}
708
709static void s3c2416_irq_lcd_ack(struct irq_data *data)
710{
711 s3c_irqsub_maskack(data->irq, INTMSK_LCD, SUBMSK_LCD);
712}
713
714static struct irq_chip s3c2416_irq_lcd = {
715 .irq_mask = s3c2416_irq_lcd_mask,
716 .irq_unmask = s3c2416_irq_lcd_unmask,
717 .irq_ack = s3c2416_irq_lcd_ack,
718};
719
720/* DMA sub interrupts */
721
722static void s3c2416_irq_demux_dma(unsigned int irq, struct irq_desc *desc)
723{
724 s3c2416_irq_demux(IRQ_S3C2443_DMA0, 6);
725}
726
727#define INTMSK_DMA (1UL << (IRQ_S3C2443_DMA - IRQ_EINT0))
728#define SUBMSK_DMA INTMSK(IRQ_S3C2443_DMA0, IRQ_S3C2443_DMA5)
729
730
731static void s3c2416_irq_dma_mask(struct irq_data *data)
732{
733 s3c_irqsub_mask(data->irq, INTMSK_DMA, SUBMSK_DMA);
734}
735
736static void s3c2416_irq_dma_unmask(struct irq_data *data)
737{
738 s3c_irqsub_unmask(data->irq, INTMSK_DMA);
739}
740
741static void s3c2416_irq_dma_ack(struct irq_data *data)
742{
743 s3c_irqsub_maskack(data->irq, INTMSK_DMA, SUBMSK_DMA);
744}
745
746static struct irq_chip s3c2416_irq_dma = {
747 .irq_mask = s3c2416_irq_dma_mask,
748 .irq_unmask = s3c2416_irq_dma_unmask,
749 .irq_ack = s3c2416_irq_dma_ack,
750};
751
752/* UART3 sub interrupts */
753
754static void s3c2416_irq_demux_uart3(unsigned int irq, struct irq_desc *desc)
755{
756 s3c2416_irq_demux(IRQ_S3C2443_RX3, 3);
757}
758
759#define INTMSK_UART3 (1UL << (IRQ_S3C2443_UART3 - IRQ_EINT0))
760#define SUBMSK_UART3 (0x7 << (IRQ_S3C2443_RX3 - S3C2410_IRQSUB(0)))
761
762static void s3c2416_irq_uart3_mask(struct irq_data *data)
763{
764 s3c_irqsub_mask(data->irq, INTMSK_UART3, SUBMSK_UART3);
765}
766
767static void s3c2416_irq_uart3_unmask(struct irq_data *data)
768{
769 s3c_irqsub_unmask(data->irq, INTMSK_UART3);
770}
771
772static void s3c2416_irq_uart3_ack(struct irq_data *data)
773{
774 s3c_irqsub_maskack(data->irq, INTMSK_UART3, SUBMSK_UART3);
775}
776
777static struct irq_chip s3c2416_irq_uart3 = {
778 .irq_mask = s3c2416_irq_uart3_mask,
779 .irq_unmask = s3c2416_irq_uart3_unmask,
780 .irq_ack = s3c2416_irq_uart3_ack,
781};
782
783/* second interrupt register */
784
785static inline void s3c2416_irq_ack_second(struct irq_data *data)
786{
787 unsigned long bitval = 1UL << (data->irq - IRQ_S3C2416_2D);
788
789 __raw_writel(bitval, S3C2416_SRCPND2);
790 __raw_writel(bitval, S3C2416_INTPND2);
791}
792
793static void s3c2416_irq_mask_second(struct irq_data *data)
794{
795 unsigned long bitval = 1UL << (data->irq - IRQ_S3C2416_2D);
796 unsigned long mask;
797
798 mask = __raw_readl(S3C2416_INTMSK2);
799 mask |= bitval;
800 __raw_writel(mask, S3C2416_INTMSK2);
801}
802
803static void s3c2416_irq_unmask_second(struct irq_data *data)
804{
805 unsigned long bitval = 1UL << (data->irq - IRQ_S3C2416_2D);
806 unsigned long mask;
807
808 mask = __raw_readl(S3C2416_INTMSK2);
809 mask &= ~bitval;
810 __raw_writel(mask, S3C2416_INTMSK2);
811}
812
813static struct irq_chip s3c2416_irq_second = {
814 .irq_ack = s3c2416_irq_ack_second,
815 .irq_mask = s3c2416_irq_mask_second,
816 .irq_unmask = s3c2416_irq_unmask_second,
817};
818
819
820/* IRQ initialisation code */
821
822static int s3c2416_add_sub(unsigned int base,
823 void (*demux)(unsigned int,
824 struct irq_desc *),
825 struct irq_chip *chip,
826 unsigned int start, unsigned int end)
827{
828 unsigned int irqno;
829
830 irq_set_chip_and_handler(base, &s3c_irq_level_chip, handle_level_irq);
831 irq_set_chained_handler(base, demux);
832
833 for (irqno = start; irqno <= end; irqno++) {
834 irq_set_chip_and_handler(irqno, chip, handle_level_irq);
835 set_irq_flags(irqno, IRQF_VALID);
836 }
837
838 return 0;
839}
840
841static void s3c2416_irq_add_second(void)
842{
843 unsigned long pend;
844 unsigned long last;
845 int irqno;
846 int i;
847
848 /* first, clear all interrupts pending... */
849 last = 0;
850 for (i = 0; i < 4; i++) {
851 pend = __raw_readl(S3C2416_INTPND2);
852
853 if (pend == 0 || pend == last)
854 break;
855
856 __raw_writel(pend, S3C2416_SRCPND2);
857 __raw_writel(pend, S3C2416_INTPND2);
858 printk(KERN_INFO "irq: clearing pending status %08x\n",
859 (int)pend);
860 last = pend;
861 }
862
863 for (irqno = IRQ_S3C2416_2D; irqno <= IRQ_S3C2416_I2S1; irqno++) {
864 switch (irqno) {
865 case IRQ_S3C2416_RESERVED2:
866 case IRQ_S3C2416_RESERVED3:
867 /* no IRQ here */
868 break;
869 default:
870 irq_set_chip_and_handler(irqno, &s3c2416_irq_second,
871 handle_edge_irq);
872 set_irq_flags(irqno, IRQF_VALID);
873 }
874 }
875}
876
877static int s3c2416_irq_add(struct device *dev,
878 struct subsys_interface *sif)
879{
880 printk(KERN_INFO "S3C2416: IRQ Support\n");
881
882 s3c2416_add_sub(IRQ_LCD, s3c2416_irq_demux_lcd, &s3c2416_irq_lcd,
883 IRQ_S3C2443_LCD2, IRQ_S3C2443_LCD4);
884
885 s3c2416_add_sub(IRQ_S3C2443_DMA, s3c2416_irq_demux_dma,
886 &s3c2416_irq_dma, IRQ_S3C2443_DMA0, IRQ_S3C2443_DMA5);
887
888 s3c2416_add_sub(IRQ_S3C2443_UART3, s3c2416_irq_demux_uart3,
889 &s3c2416_irq_uart3,
890 IRQ_S3C2443_RX3, IRQ_S3C2443_ERR3);
891
892 s3c2416_add_sub(IRQ_WDT, s3c2416_irq_demux_wdtac97,
893 &s3c2416_irq_wdtac97,
894 IRQ_S3C2443_WDT, IRQ_S3C2443_AC97);
895
896 s3c2416_irq_add_second();
897
898 return 0;
899}
900
901static struct subsys_interface s3c2416_irq_interface = {
902 .name = "s3c2416_irq",
903 .subsys = &s3c2416_subsys,
904 .add_dev = s3c2416_irq_add,
905};
906
907static int __init s3c2416_irq_init(void)
908{
909 return subsys_interface_register(&s3c2416_irq_interface);
910}
911
912arch_initcall(s3c2416_irq_init);
913
914#endif