Merge branch 's3c-move' into devel
[linux-2.6.git] / arch / arm / plat-s3c24xx / irq.c
blob963f7a4f26f23042611426f4e9245337764b566a
1 /* linux/arch/arm/plat-s3c24xx/irq.c
3 * Copyright (c) 2003,2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * Changelog:
22 * 22-Jul-2004 Ben Dooks <ben@simtec.co.uk>
23 * Fixed compile warnings
25 * 22-Jul-2004 Roc Wu <cooloney@yahoo.com.cn>
26 * Fixed s3c_extirq_type
28 * 21-Jul-2004 Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org>
29 * Addition of ADC/TC demux
31 * 04-Oct-2004 Klaus Fetscher <k.fetscher@fetron.de>
32 * Fix for set_irq_type() on low EINT numbers
34 * 05-Oct-2004 Ben Dooks <ben@simtec.co.uk>
35 * Tidy up KF's patch and sort out new release
37 * 05-Oct-2004 Ben Dooks <ben@simtec.co.uk>
38 * Add support for power management controls
40 * 04-Nov-2004 Ben Dooks
41 * Fix standard IRQ wake for EINT0..4 and RTC
43 * 22-Feb-2005 Ben Dooks
44 * Fixed edge-triggering on ADC IRQ
46 * 28-Jun-2005 Ben Dooks
47 * Mark IRQ_LCD valid
49 * 25-Jul-2005 Ben Dooks
50 * Split the S3C2440 IRQ code to separate file
53 #include <linux/init.h>
54 #include <linux/module.h>
55 #include <linux/interrupt.h>
56 #include <linux/ioport.h>
57 #include <linux/sysdev.h>
58 #include <linux/io.h>
60 #include <mach/hardware.h>
61 #include <asm/irq.h>
63 #include <asm/mach/irq.h>
65 #include <mach/regs-irq.h>
66 #include <mach/regs-gpio.h>
68 #include <plat/cpu.h>
69 #include <plat/pm.h>
70 #include <plat/irq.h>
72 /* wakeup irq control */
74 #ifdef CONFIG_PM
76 /* state for IRQs over sleep */
78 /* default is to allow for EINT0..EINT15, and IRQ_RTC as wakeup sources
80 * set bit to 1 in allow bitfield to enable the wakeup settings on it
83 unsigned long s3c_irqwake_intallow = 1L << (IRQ_RTC - IRQ_EINT0) | 0xfL;
84 unsigned long s3c_irqwake_intmask = 0xffffffffL;
85 unsigned long s3c_irqwake_eintallow = 0x0000fff0L;
86 unsigned long s3c_irqwake_eintmask = 0xffffffffL;
88 int
89 s3c_irq_wake(unsigned int irqno, unsigned int state)
91 unsigned long irqbit = 1 << (irqno - IRQ_EINT0);
93 if (!(s3c_irqwake_intallow & irqbit))
94 return -ENOENT;
96 printk(KERN_INFO "wake %s for irq %d\n",
97 state ? "enabled" : "disabled", irqno);
99 if (!state)
100 s3c_irqwake_intmask |= irqbit;
101 else
102 s3c_irqwake_intmask &= ~irqbit;
104 return 0;
107 static int
108 s3c_irqext_wake(unsigned int irqno, unsigned int state)
110 unsigned long bit = 1L << (irqno - EXTINT_OFF);
112 if (!(s3c_irqwake_eintallow & bit))
113 return -ENOENT;
115 printk(KERN_INFO "wake %s for irq %d\n",
116 state ? "enabled" : "disabled", irqno);
118 if (!state)
119 s3c_irqwake_eintmask |= bit;
120 else
121 s3c_irqwake_eintmask &= ~bit;
123 return 0;
126 #else
127 #define s3c_irqext_wake NULL
128 #define s3c_irq_wake NULL
129 #endif
132 static void
133 s3c_irq_mask(unsigned int irqno)
135 unsigned long mask;
137 irqno -= IRQ_EINT0;
139 mask = __raw_readl(S3C2410_INTMSK);
140 mask |= 1UL << irqno;
141 __raw_writel(mask, S3C2410_INTMSK);
144 static inline void
145 s3c_irq_ack(unsigned int irqno)
147 unsigned long bitval = 1UL << (irqno - IRQ_EINT0);
149 __raw_writel(bitval, S3C2410_SRCPND);
150 __raw_writel(bitval, S3C2410_INTPND);
153 static inline void
154 s3c_irq_maskack(unsigned int irqno)
156 unsigned long bitval = 1UL << (irqno - IRQ_EINT0);
157 unsigned long mask;
159 mask = __raw_readl(S3C2410_INTMSK);
160 __raw_writel(mask|bitval, S3C2410_INTMSK);
162 __raw_writel(bitval, S3C2410_SRCPND);
163 __raw_writel(bitval, S3C2410_INTPND);
167 static void
168 s3c_irq_unmask(unsigned int irqno)
170 unsigned long mask;
172 if (irqno != IRQ_TIMER4 && irqno != IRQ_EINT8t23)
173 irqdbf2("s3c_irq_unmask %d\n", irqno);
175 irqno -= IRQ_EINT0;
177 mask = __raw_readl(S3C2410_INTMSK);
178 mask &= ~(1UL << irqno);
179 __raw_writel(mask, S3C2410_INTMSK);
182 struct irq_chip s3c_irq_level_chip = {
183 .name = "s3c-level",
184 .ack = s3c_irq_maskack,
185 .mask = s3c_irq_mask,
186 .unmask = s3c_irq_unmask,
187 .set_wake = s3c_irq_wake
190 struct irq_chip s3c_irq_chip = {
191 .name = "s3c",
192 .ack = s3c_irq_ack,
193 .mask = s3c_irq_mask,
194 .unmask = s3c_irq_unmask,
195 .set_wake = s3c_irq_wake
198 static void
199 s3c_irqext_mask(unsigned int irqno)
201 unsigned long mask;
203 irqno -= EXTINT_OFF;
205 mask = __raw_readl(S3C24XX_EINTMASK);
206 mask |= ( 1UL << irqno);
207 __raw_writel(mask, S3C24XX_EINTMASK);
210 static void
211 s3c_irqext_ack(unsigned int irqno)
213 unsigned long req;
214 unsigned long bit;
215 unsigned long mask;
217 bit = 1UL << (irqno - EXTINT_OFF);
219 mask = __raw_readl(S3C24XX_EINTMASK);
221 __raw_writel(bit, S3C24XX_EINTPEND);
223 req = __raw_readl(S3C24XX_EINTPEND);
224 req &= ~mask;
226 /* not sure if we should be acking the parent irq... */
228 if (irqno <= IRQ_EINT7 ) {
229 if ((req & 0xf0) == 0)
230 s3c_irq_ack(IRQ_EINT4t7);
231 } else {
232 if ((req >> 8) == 0)
233 s3c_irq_ack(IRQ_EINT8t23);
237 static void
238 s3c_irqext_unmask(unsigned int irqno)
240 unsigned long mask;
242 irqno -= EXTINT_OFF;
244 mask = __raw_readl(S3C24XX_EINTMASK);
245 mask &= ~( 1UL << irqno);
246 __raw_writel(mask, S3C24XX_EINTMASK);
250 s3c_irqext_type(unsigned int irq, unsigned int type)
252 void __iomem *extint_reg;
253 void __iomem *gpcon_reg;
254 unsigned long gpcon_offset, extint_offset;
255 unsigned long newvalue = 0, value;
257 if ((irq >= IRQ_EINT0) && (irq <= IRQ_EINT3))
259 gpcon_reg = S3C2410_GPFCON;
260 extint_reg = S3C24XX_EXTINT0;
261 gpcon_offset = (irq - IRQ_EINT0) * 2;
262 extint_offset = (irq - IRQ_EINT0) * 4;
264 else if ((irq >= IRQ_EINT4) && (irq <= IRQ_EINT7))
266 gpcon_reg = S3C2410_GPFCON;
267 extint_reg = S3C24XX_EXTINT0;
268 gpcon_offset = (irq - (EXTINT_OFF)) * 2;
269 extint_offset = (irq - (EXTINT_OFF)) * 4;
271 else if ((irq >= IRQ_EINT8) && (irq <= IRQ_EINT15))
273 gpcon_reg = S3C2410_GPGCON;
274 extint_reg = S3C24XX_EXTINT1;
275 gpcon_offset = (irq - IRQ_EINT8) * 2;
276 extint_offset = (irq - IRQ_EINT8) * 4;
278 else if ((irq >= IRQ_EINT16) && (irq <= IRQ_EINT23))
280 gpcon_reg = S3C2410_GPGCON;
281 extint_reg = S3C24XX_EXTINT2;
282 gpcon_offset = (irq - IRQ_EINT8) * 2;
283 extint_offset = (irq - IRQ_EINT16) * 4;
284 } else
285 return -1;
287 /* Set the GPIO to external interrupt mode */
288 value = __raw_readl(gpcon_reg);
289 value = (value & ~(3 << gpcon_offset)) | (0x02 << gpcon_offset);
290 __raw_writel(value, gpcon_reg);
292 /* Set the external interrupt to pointed trigger type */
293 switch (type)
295 case IRQ_TYPE_NONE:
296 printk(KERN_WARNING "No edge setting!\n");
297 break;
299 case IRQ_TYPE_EDGE_RISING:
300 newvalue = S3C2410_EXTINT_RISEEDGE;
301 break;
303 case IRQ_TYPE_EDGE_FALLING:
304 newvalue = S3C2410_EXTINT_FALLEDGE;
305 break;
307 case IRQ_TYPE_EDGE_BOTH:
308 newvalue = S3C2410_EXTINT_BOTHEDGE;
309 break;
311 case IRQ_TYPE_LEVEL_LOW:
312 newvalue = S3C2410_EXTINT_LOWLEV;
313 break;
315 case IRQ_TYPE_LEVEL_HIGH:
316 newvalue = S3C2410_EXTINT_HILEV;
317 break;
319 default:
320 printk(KERN_ERR "No such irq type %d", type);
321 return -1;
324 value = __raw_readl(extint_reg);
325 value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset);
326 __raw_writel(value, extint_reg);
328 return 0;
331 static struct irq_chip s3c_irqext_chip = {
332 .name = "s3c-ext",
333 .mask = s3c_irqext_mask,
334 .unmask = s3c_irqext_unmask,
335 .ack = s3c_irqext_ack,
336 .set_type = s3c_irqext_type,
337 .set_wake = s3c_irqext_wake
340 static struct irq_chip s3c_irq_eint0t4 = {
341 .name = "s3c-ext0",
342 .ack = s3c_irq_ack,
343 .mask = s3c_irq_mask,
344 .unmask = s3c_irq_unmask,
345 .set_wake = s3c_irq_wake,
346 .set_type = s3c_irqext_type,
349 /* mask values for the parent registers for each of the interrupt types */
351 #define INTMSK_UART0 (1UL << (IRQ_UART0 - IRQ_EINT0))
352 #define INTMSK_UART1 (1UL << (IRQ_UART1 - IRQ_EINT0))
353 #define INTMSK_UART2 (1UL << (IRQ_UART2 - IRQ_EINT0))
354 #define INTMSK_ADCPARENT (1UL << (IRQ_ADCPARENT - IRQ_EINT0))
357 /* UART0 */
359 static void
360 s3c_irq_uart0_mask(unsigned int irqno)
362 s3c_irqsub_mask(irqno, INTMSK_UART0, 7);
365 static void
366 s3c_irq_uart0_unmask(unsigned int irqno)
368 s3c_irqsub_unmask(irqno, INTMSK_UART0);
371 static void
372 s3c_irq_uart0_ack(unsigned int irqno)
374 s3c_irqsub_maskack(irqno, INTMSK_UART0, 7);
377 static struct irq_chip s3c_irq_uart0 = {
378 .name = "s3c-uart0",
379 .mask = s3c_irq_uart0_mask,
380 .unmask = s3c_irq_uart0_unmask,
381 .ack = s3c_irq_uart0_ack,
384 /* UART1 */
386 static void
387 s3c_irq_uart1_mask(unsigned int irqno)
389 s3c_irqsub_mask(irqno, INTMSK_UART1, 7 << 3);
392 static void
393 s3c_irq_uart1_unmask(unsigned int irqno)
395 s3c_irqsub_unmask(irqno, INTMSK_UART1);
398 static void
399 s3c_irq_uart1_ack(unsigned int irqno)
401 s3c_irqsub_maskack(irqno, INTMSK_UART1, 7 << 3);
404 static struct irq_chip s3c_irq_uart1 = {
405 .name = "s3c-uart1",
406 .mask = s3c_irq_uart1_mask,
407 .unmask = s3c_irq_uart1_unmask,
408 .ack = s3c_irq_uart1_ack,
411 /* UART2 */
413 static void
414 s3c_irq_uart2_mask(unsigned int irqno)
416 s3c_irqsub_mask(irqno, INTMSK_UART2, 7 << 6);
419 static void
420 s3c_irq_uart2_unmask(unsigned int irqno)
422 s3c_irqsub_unmask(irqno, INTMSK_UART2);
425 static void
426 s3c_irq_uart2_ack(unsigned int irqno)
428 s3c_irqsub_maskack(irqno, INTMSK_UART2, 7 << 6);
431 static struct irq_chip s3c_irq_uart2 = {
432 .name = "s3c-uart2",
433 .mask = s3c_irq_uart2_mask,
434 .unmask = s3c_irq_uart2_unmask,
435 .ack = s3c_irq_uart2_ack,
438 /* ADC and Touchscreen */
440 static void
441 s3c_irq_adc_mask(unsigned int irqno)
443 s3c_irqsub_mask(irqno, INTMSK_ADCPARENT, 3 << 9);
446 static void
447 s3c_irq_adc_unmask(unsigned int irqno)
449 s3c_irqsub_unmask(irqno, INTMSK_ADCPARENT);
452 static void
453 s3c_irq_adc_ack(unsigned int irqno)
455 s3c_irqsub_ack(irqno, INTMSK_ADCPARENT, 3 << 9);
458 static struct irq_chip s3c_irq_adc = {
459 .name = "s3c-adc",
460 .mask = s3c_irq_adc_mask,
461 .unmask = s3c_irq_adc_unmask,
462 .ack = s3c_irq_adc_ack,
465 /* irq demux for adc */
466 static void s3c_irq_demux_adc(unsigned int irq,
467 struct irq_desc *desc)
469 unsigned int subsrc, submsk;
470 unsigned int offset = 9;
472 /* read the current pending interrupts, and the mask
473 * for what it is available */
475 subsrc = __raw_readl(S3C2410_SUBSRCPND);
476 submsk = __raw_readl(S3C2410_INTSUBMSK);
478 subsrc &= ~submsk;
479 subsrc >>= offset;
480 subsrc &= 3;
482 if (subsrc != 0) {
483 if (subsrc & 1) {
484 generic_handle_irq(IRQ_TC);
486 if (subsrc & 2) {
487 generic_handle_irq(IRQ_ADC);
492 static void s3c_irq_demux_uart(unsigned int start)
494 unsigned int subsrc, submsk;
495 unsigned int offset = start - IRQ_S3CUART_RX0;
497 /* read the current pending interrupts, and the mask
498 * for what it is available */
500 subsrc = __raw_readl(S3C2410_SUBSRCPND);
501 submsk = __raw_readl(S3C2410_INTSUBMSK);
503 irqdbf2("s3c_irq_demux_uart: start=%d (%d), subsrc=0x%08x,0x%08x\n",
504 start, offset, subsrc, submsk);
506 subsrc &= ~submsk;
507 subsrc >>= offset;
508 subsrc &= 7;
510 if (subsrc != 0) {
511 if (subsrc & 1)
512 generic_handle_irq(start);
514 if (subsrc & 2)
515 generic_handle_irq(start+1);
517 if (subsrc & 4)
518 generic_handle_irq(start+2);
522 /* uart demux entry points */
524 static void
525 s3c_irq_demux_uart0(unsigned int irq,
526 struct irq_desc *desc)
528 irq = irq;
529 s3c_irq_demux_uart(IRQ_S3CUART_RX0);
532 static void
533 s3c_irq_demux_uart1(unsigned int irq,
534 struct irq_desc *desc)
536 irq = irq;
537 s3c_irq_demux_uart(IRQ_S3CUART_RX1);
540 static void
541 s3c_irq_demux_uart2(unsigned int irq,
542 struct irq_desc *desc)
544 irq = irq;
545 s3c_irq_demux_uart(IRQ_S3CUART_RX2);
548 static void
549 s3c_irq_demux_extint8(unsigned int irq,
550 struct irq_desc *desc)
552 unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND);
553 unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK);
555 eintpnd &= ~eintmsk;
556 eintpnd &= ~0xff; /* ignore lower irqs */
558 /* we may as well handle all the pending IRQs here */
560 while (eintpnd) {
561 irq = __ffs(eintpnd);
562 eintpnd &= ~(1<<irq);
564 irq += (IRQ_EINT4 - 4);
565 generic_handle_irq(irq);
570 static void
571 s3c_irq_demux_extint4t7(unsigned int irq,
572 struct irq_desc *desc)
574 unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND);
575 unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK);
577 eintpnd &= ~eintmsk;
578 eintpnd &= 0xff; /* only lower irqs */
580 /* we may as well handle all the pending IRQs here */
582 while (eintpnd) {
583 irq = __ffs(eintpnd);
584 eintpnd &= ~(1<<irq);
586 irq += (IRQ_EINT4 - 4);
588 generic_handle_irq(irq);
592 #ifdef CONFIG_PM
594 static struct sleep_save irq_save[] = {
595 SAVE_ITEM(S3C2410_INTMSK),
596 SAVE_ITEM(S3C2410_INTSUBMSK),
599 /* the extint values move between the s3c2410/s3c2440 and the s3c2412
600 * so we use an array to hold them, and to calculate the address of
601 * the register at run-time
604 static unsigned long save_extint[3];
605 static unsigned long save_eintflt[4];
606 static unsigned long save_eintmask;
608 int s3c24xx_irq_suspend(struct sys_device *dev, pm_message_t state)
610 unsigned int i;
612 for (i = 0; i < ARRAY_SIZE(save_extint); i++)
613 save_extint[i] = __raw_readl(S3C24XX_EXTINT0 + (i*4));
615 for (i = 0; i < ARRAY_SIZE(save_eintflt); i++)
616 save_eintflt[i] = __raw_readl(S3C24XX_EINFLT0 + (i*4));
618 s3c2410_pm_do_save(irq_save, ARRAY_SIZE(irq_save));
619 save_eintmask = __raw_readl(S3C24XX_EINTMASK);
621 return 0;
624 int s3c24xx_irq_resume(struct sys_device *dev)
626 unsigned int i;
628 for (i = 0; i < ARRAY_SIZE(save_extint); i++)
629 __raw_writel(save_extint[i], S3C24XX_EXTINT0 + (i*4));
631 for (i = 0; i < ARRAY_SIZE(save_eintflt); i++)
632 __raw_writel(save_eintflt[i], S3C24XX_EINFLT0 + (i*4));
634 s3c2410_pm_do_restore(irq_save, ARRAY_SIZE(irq_save));
635 __raw_writel(save_eintmask, S3C24XX_EINTMASK);
637 return 0;
640 #else
641 #define s3c24xx_irq_suspend NULL
642 #define s3c24xx_irq_resume NULL
643 #endif
645 /* s3c24xx_init_irq
647 * Initialise S3C2410 IRQ system
650 void __init s3c24xx_init_irq(void)
652 unsigned long pend;
653 unsigned long last;
654 int irqno;
655 int i;
657 irqdbf("s3c2410_init_irq: clearing interrupt status flags\n");
659 /* first, clear all interrupts pending... */
661 last = 0;
662 for (i = 0; i < 4; i++) {
663 pend = __raw_readl(S3C24XX_EINTPEND);
665 if (pend == 0 || pend == last)
666 break;
668 __raw_writel(pend, S3C24XX_EINTPEND);
669 printk("irq: clearing pending ext status %08x\n", (int)pend);
670 last = pend;
673 last = 0;
674 for (i = 0; i < 4; i++) {
675 pend = __raw_readl(S3C2410_INTPND);
677 if (pend == 0 || pend == last)
678 break;
680 __raw_writel(pend, S3C2410_SRCPND);
681 __raw_writel(pend, S3C2410_INTPND);
682 printk("irq: clearing pending status %08x\n", (int)pend);
683 last = pend;
686 last = 0;
687 for (i = 0; i < 4; i++) {
688 pend = __raw_readl(S3C2410_SUBSRCPND);
690 if (pend == 0 || pend == last)
691 break;
693 printk("irq: clearing subpending status %08x\n", (int)pend);
694 __raw_writel(pend, S3C2410_SUBSRCPND);
695 last = pend;
698 /* register the main interrupts */
700 irqdbf("s3c2410_init_irq: registering s3c2410 interrupt handlers\n");
702 for (irqno = IRQ_EINT4t7; irqno <= IRQ_ADCPARENT; irqno++) {
703 /* set all the s3c2410 internal irqs */
705 switch (irqno) {
706 /* deal with the special IRQs (cascaded) */
708 case IRQ_EINT4t7:
709 case IRQ_EINT8t23:
710 case IRQ_UART0:
711 case IRQ_UART1:
712 case IRQ_UART2:
713 case IRQ_ADCPARENT:
714 set_irq_chip(irqno, &s3c_irq_level_chip);
715 set_irq_handler(irqno, handle_level_irq);
716 break;
718 case IRQ_RESERVED6:
719 case IRQ_RESERVED24:
720 /* no IRQ here */
721 break;
723 default:
724 //irqdbf("registering irq %d (s3c irq)\n", irqno);
725 set_irq_chip(irqno, &s3c_irq_chip);
726 set_irq_handler(irqno, handle_edge_irq);
727 set_irq_flags(irqno, IRQF_VALID);
731 /* setup the cascade irq handlers */
733 set_irq_chained_handler(IRQ_EINT4t7, s3c_irq_demux_extint4t7);
734 set_irq_chained_handler(IRQ_EINT8t23, s3c_irq_demux_extint8);
736 set_irq_chained_handler(IRQ_UART0, s3c_irq_demux_uart0);
737 set_irq_chained_handler(IRQ_UART1, s3c_irq_demux_uart1);
738 set_irq_chained_handler(IRQ_UART2, s3c_irq_demux_uart2);
739 set_irq_chained_handler(IRQ_ADCPARENT, s3c_irq_demux_adc);
741 /* external interrupts */
743 for (irqno = IRQ_EINT0; irqno <= IRQ_EINT3; irqno++) {
744 irqdbf("registering irq %d (ext int)\n", irqno);
745 set_irq_chip(irqno, &s3c_irq_eint0t4);
746 set_irq_handler(irqno, handle_edge_irq);
747 set_irq_flags(irqno, IRQF_VALID);
750 for (irqno = IRQ_EINT4; irqno <= IRQ_EINT23; irqno++) {
751 irqdbf("registering irq %d (extended s3c irq)\n", irqno);
752 set_irq_chip(irqno, &s3c_irqext_chip);
753 set_irq_handler(irqno, handle_edge_irq);
754 set_irq_flags(irqno, IRQF_VALID);
757 /* register the uart interrupts */
759 irqdbf("s3c2410: registering external interrupts\n");
761 for (irqno = IRQ_S3CUART_RX0; irqno <= IRQ_S3CUART_ERR0; irqno++) {
762 irqdbf("registering irq %d (s3c uart0 irq)\n", irqno);
763 set_irq_chip(irqno, &s3c_irq_uart0);
764 set_irq_handler(irqno, handle_level_irq);
765 set_irq_flags(irqno, IRQF_VALID);
768 for (irqno = IRQ_S3CUART_RX1; irqno <= IRQ_S3CUART_ERR1; irqno++) {
769 irqdbf("registering irq %d (s3c uart1 irq)\n", irqno);
770 set_irq_chip(irqno, &s3c_irq_uart1);
771 set_irq_handler(irqno, handle_level_irq);
772 set_irq_flags(irqno, IRQF_VALID);
775 for (irqno = IRQ_S3CUART_RX2; irqno <= IRQ_S3CUART_ERR2; irqno++) {
776 irqdbf("registering irq %d (s3c uart2 irq)\n", irqno);
777 set_irq_chip(irqno, &s3c_irq_uart2);
778 set_irq_handler(irqno, handle_level_irq);
779 set_irq_flags(irqno, IRQF_VALID);
782 for (irqno = IRQ_TC; irqno <= IRQ_ADC; irqno++) {
783 irqdbf("registering irq %d (s3c adc irq)\n", irqno);
784 set_irq_chip(irqno, &s3c_irq_adc);
785 set_irq_handler(irqno, handle_edge_irq);
786 set_irq_flags(irqno, IRQF_VALID);
789 irqdbf("s3c2410: registered interrupt handlers\n");