Merge branches 'sh/serial-rework' and 'sh/oprofile'
[pandora-kernel.git] / arch / arm / plat-s3c24xx / irq.c
1 /* linux/arch/arm/plat-s3c24xx/irq.c
2  *
3  * Copyright (c) 2003,2004 Simtec Electronics
4  *      Ben Dooks <ben@simtec.co.uk>
5  *
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.
10  *
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.
15  *
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
19  *
20  * Changelog:
21  *
22  *   22-Jul-2004  Ben Dooks <ben@simtec.co.uk>
23  *                Fixed compile warnings
24  *
25  *   22-Jul-2004  Roc Wu <cooloney@yahoo.com.cn>
26  *                Fixed s3c_extirq_type
27  *
28  *   21-Jul-2004  Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org>
29  *                Addition of ADC/TC demux
30  *
31  *   04-Oct-2004  Klaus Fetscher <k.fetscher@fetron.de>
32  *                Fix for set_irq_type() on low EINT numbers
33  *
34  *   05-Oct-2004  Ben Dooks <ben@simtec.co.uk>
35  *                Tidy up KF's patch and sort out new release
36  *
37  *   05-Oct-2004  Ben Dooks <ben@simtec.co.uk>
38  *                Add support for power management controls
39  *
40  *   04-Nov-2004  Ben Dooks
41  *                Fix standard IRQ wake for EINT0..4 and RTC
42  *
43  *   22-Feb-2005  Ben Dooks
44  *                Fixed edge-triggering on ADC IRQ
45  *
46  *   28-Jun-2005  Ben Dooks
47  *                Mark IRQ_LCD valid
48  *
49  *   25-Jul-2005  Ben Dooks
50  *                Split the S3C2440 IRQ code to separate file
51 */
52
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>
59
60 #include <mach/hardware.h>
61 #include <asm/irq.h>
62
63 #include <asm/mach/irq.h>
64
65 #include <mach/regs-irq.h>
66 #include <mach/regs-gpio.h>
67
68 #include <plat/cpu.h>
69 #include <plat/pm.h>
70 #include <plat/irq.h>
71
72 /* wakeup irq control */
73
74 #ifdef CONFIG_PM
75
76 /* state for IRQs over sleep */
77
78 /* default is to allow for EINT0..EINT15, and IRQ_RTC as wakeup sources
79  *
80  * set bit to 1 in allow bitfield to enable the wakeup settings on it
81 */
82
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;
87
88 int
89 s3c_irq_wake(unsigned int irqno, unsigned int state)
90 {
91         unsigned long irqbit = 1 << (irqno - IRQ_EINT0);
92
93         if (!(s3c_irqwake_intallow & irqbit))
94                 return -ENOENT;
95
96         printk(KERN_INFO "wake %s for irq %d\n",
97                state ? "enabled" : "disabled", irqno);
98
99         if (!state)
100                 s3c_irqwake_intmask |= irqbit;
101         else
102                 s3c_irqwake_intmask &= ~irqbit;
103
104         return 0;
105 }
106
107 static int
108 s3c_irqext_wake(unsigned int irqno, unsigned int state)
109 {
110         unsigned long bit = 1L << (irqno - EXTINT_OFF);
111
112         if (!(s3c_irqwake_eintallow & bit))
113                 return -ENOENT;
114
115         printk(KERN_INFO "wake %s for irq %d\n",
116                state ? "enabled" : "disabled", irqno);
117
118         if (!state)
119                 s3c_irqwake_eintmask |= bit;
120         else
121                 s3c_irqwake_eintmask &= ~bit;
122
123         return 0;
124 }
125
126 #else
127 #define s3c_irqext_wake NULL
128 #define s3c_irq_wake NULL
129 #endif
130
131
132 static void
133 s3c_irq_mask(unsigned int irqno)
134 {
135         unsigned long mask;
136
137         irqno -= IRQ_EINT0;
138
139         mask = __raw_readl(S3C2410_INTMSK);
140         mask |= 1UL << irqno;
141         __raw_writel(mask, S3C2410_INTMSK);
142 }
143
144 static inline void
145 s3c_irq_ack(unsigned int irqno)
146 {
147         unsigned long bitval = 1UL << (irqno - IRQ_EINT0);
148
149         __raw_writel(bitval, S3C2410_SRCPND);
150         __raw_writel(bitval, S3C2410_INTPND);
151 }
152
153 static inline void
154 s3c_irq_maskack(unsigned int irqno)
155 {
156         unsigned long bitval = 1UL << (irqno - IRQ_EINT0);
157         unsigned long mask;
158
159         mask = __raw_readl(S3C2410_INTMSK);
160         __raw_writel(mask|bitval, S3C2410_INTMSK);
161
162         __raw_writel(bitval, S3C2410_SRCPND);
163         __raw_writel(bitval, S3C2410_INTPND);
164 }
165
166
167 static void
168 s3c_irq_unmask(unsigned int irqno)
169 {
170         unsigned long mask;
171
172         if (irqno != IRQ_TIMER4 && irqno != IRQ_EINT8t23)
173                 irqdbf2("s3c_irq_unmask %d\n", irqno);
174
175         irqno -= IRQ_EINT0;
176
177         mask = __raw_readl(S3C2410_INTMSK);
178         mask &= ~(1UL << irqno);
179         __raw_writel(mask, S3C2410_INTMSK);
180 }
181
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
188 };
189
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
196 };
197
198 static void
199 s3c_irqext_mask(unsigned int irqno)
200 {
201         unsigned long mask;
202
203         irqno -= EXTINT_OFF;
204
205         mask = __raw_readl(S3C24XX_EINTMASK);
206         mask |= ( 1UL << irqno);
207         __raw_writel(mask, S3C24XX_EINTMASK);
208 }
209
210 static void
211 s3c_irqext_ack(unsigned int irqno)
212 {
213         unsigned long req;
214         unsigned long bit;
215         unsigned long mask;
216
217         bit = 1UL << (irqno - EXTINT_OFF);
218
219         mask = __raw_readl(S3C24XX_EINTMASK);
220
221         __raw_writel(bit, S3C24XX_EINTPEND);
222
223         req = __raw_readl(S3C24XX_EINTPEND);
224         req &= ~mask;
225
226         /* not sure if we should be acking the parent irq... */
227
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);
234         }
235 }
236
237 static void
238 s3c_irqext_unmask(unsigned int irqno)
239 {
240         unsigned long mask;
241
242         irqno -= EXTINT_OFF;
243
244         mask = __raw_readl(S3C24XX_EINTMASK);
245         mask &= ~( 1UL << irqno);
246         __raw_writel(mask, S3C24XX_EINTMASK);
247 }
248
249 int
250 s3c_irqext_type(unsigned int irq, unsigned int type)
251 {
252         void __iomem *extint_reg;
253         void __iomem *gpcon_reg;
254         unsigned long gpcon_offset, extint_offset;
255         unsigned long newvalue = 0, value;
256
257         if ((irq >= IRQ_EINT0) && (irq <= IRQ_EINT3))
258         {
259                 gpcon_reg = S3C2410_GPFCON;
260                 extint_reg = S3C24XX_EXTINT0;
261                 gpcon_offset = (irq - IRQ_EINT0) * 2;
262                 extint_offset = (irq - IRQ_EINT0) * 4;
263         }
264         else if ((irq >= IRQ_EINT4) && (irq <= IRQ_EINT7))
265         {
266                 gpcon_reg = S3C2410_GPFCON;
267                 extint_reg = S3C24XX_EXTINT0;
268                 gpcon_offset = (irq - (EXTINT_OFF)) * 2;
269                 extint_offset = (irq - (EXTINT_OFF)) * 4;
270         }
271         else if ((irq >= IRQ_EINT8) && (irq <= IRQ_EINT15))
272         {
273                 gpcon_reg = S3C2410_GPGCON;
274                 extint_reg = S3C24XX_EXTINT1;
275                 gpcon_offset = (irq - IRQ_EINT8) * 2;
276                 extint_offset = (irq - IRQ_EINT8) * 4;
277         }
278         else if ((irq >= IRQ_EINT16) && (irq <= IRQ_EINT23))
279         {
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;
286
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);
291
292         /* Set the external interrupt to pointed trigger type */
293         switch (type)
294         {
295                 case IRQ_TYPE_NONE:
296                         printk(KERN_WARNING "No edge setting!\n");
297                         break;
298
299                 case IRQ_TYPE_EDGE_RISING:
300                         newvalue = S3C2410_EXTINT_RISEEDGE;
301                         break;
302
303                 case IRQ_TYPE_EDGE_FALLING:
304                         newvalue = S3C2410_EXTINT_FALLEDGE;
305                         break;
306
307                 case IRQ_TYPE_EDGE_BOTH:
308                         newvalue = S3C2410_EXTINT_BOTHEDGE;
309                         break;
310
311                 case IRQ_TYPE_LEVEL_LOW:
312                         newvalue = S3C2410_EXTINT_LOWLEV;
313                         break;
314
315                 case IRQ_TYPE_LEVEL_HIGH:
316                         newvalue = S3C2410_EXTINT_HILEV;
317                         break;
318
319                 default:
320                         printk(KERN_ERR "No such irq type %d", type);
321                         return -1;
322         }
323
324         value = __raw_readl(extint_reg);
325         value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset);
326         __raw_writel(value, extint_reg);
327
328         return 0;
329 }
330
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
338 };
339
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,
347 };
348
349 /* mask values for the parent registers for each of the interrupt types */
350
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))
355
356
357 /* UART0 */
358
359 static void
360 s3c_irq_uart0_mask(unsigned int irqno)
361 {
362         s3c_irqsub_mask(irqno, INTMSK_UART0, 7);
363 }
364
365 static void
366 s3c_irq_uart0_unmask(unsigned int irqno)
367 {
368         s3c_irqsub_unmask(irqno, INTMSK_UART0);
369 }
370
371 static void
372 s3c_irq_uart0_ack(unsigned int irqno)
373 {
374         s3c_irqsub_maskack(irqno, INTMSK_UART0, 7);
375 }
376
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,
382 };
383
384 /* UART1 */
385
386 static void
387 s3c_irq_uart1_mask(unsigned int irqno)
388 {
389         s3c_irqsub_mask(irqno, INTMSK_UART1, 7 << 3);
390 }
391
392 static void
393 s3c_irq_uart1_unmask(unsigned int irqno)
394 {
395         s3c_irqsub_unmask(irqno, INTMSK_UART1);
396 }
397
398 static void
399 s3c_irq_uart1_ack(unsigned int irqno)
400 {
401         s3c_irqsub_maskack(irqno, INTMSK_UART1, 7 << 3);
402 }
403
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,
409 };
410
411 /* UART2 */
412
413 static void
414 s3c_irq_uart2_mask(unsigned int irqno)
415 {
416         s3c_irqsub_mask(irqno, INTMSK_UART2, 7 << 6);
417 }
418
419 static void
420 s3c_irq_uart2_unmask(unsigned int irqno)
421 {
422         s3c_irqsub_unmask(irqno, INTMSK_UART2);
423 }
424
425 static void
426 s3c_irq_uart2_ack(unsigned int irqno)
427 {
428         s3c_irqsub_maskack(irqno, INTMSK_UART2, 7 << 6);
429 }
430
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,
436 };
437
438 /* ADC and Touchscreen */
439
440 static void
441 s3c_irq_adc_mask(unsigned int irqno)
442 {
443         s3c_irqsub_mask(irqno, INTMSK_ADCPARENT, 3 << 9);
444 }
445
446 static void
447 s3c_irq_adc_unmask(unsigned int irqno)
448 {
449         s3c_irqsub_unmask(irqno, INTMSK_ADCPARENT);
450 }
451
452 static void
453 s3c_irq_adc_ack(unsigned int irqno)
454 {
455         s3c_irqsub_ack(irqno, INTMSK_ADCPARENT, 3 << 9);
456 }
457
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,
463 };
464
465 /* irq demux for adc */
466 static void s3c_irq_demux_adc(unsigned int irq,
467                               struct irq_desc *desc)
468 {
469         unsigned int subsrc, submsk;
470         unsigned int offset = 9;
471
472         /* read the current pending interrupts, and the mask
473          * for what it is available */
474
475         subsrc = __raw_readl(S3C2410_SUBSRCPND);
476         submsk = __raw_readl(S3C2410_INTSUBMSK);
477
478         subsrc &= ~submsk;
479         subsrc >>= offset;
480         subsrc &= 3;
481
482         if (subsrc != 0) {
483                 if (subsrc & 1) {
484                         generic_handle_irq(IRQ_TC);
485                 }
486                 if (subsrc & 2) {
487                         generic_handle_irq(IRQ_ADC);
488                 }
489         }
490 }
491
492 static void s3c_irq_demux_uart(unsigned int start)
493 {
494         unsigned int subsrc, submsk;
495         unsigned int offset = start - IRQ_S3CUART_RX0;
496
497         /* read the current pending interrupts, and the mask
498          * for what it is available */
499
500         subsrc = __raw_readl(S3C2410_SUBSRCPND);
501         submsk = __raw_readl(S3C2410_INTSUBMSK);
502
503         irqdbf2("s3c_irq_demux_uart: start=%d (%d), subsrc=0x%08x,0x%08x\n",
504                 start, offset, subsrc, submsk);
505
506         subsrc &= ~submsk;
507         subsrc >>= offset;
508         subsrc &= 7;
509
510         if (subsrc != 0) {
511                 if (subsrc & 1)
512                         generic_handle_irq(start);
513
514                 if (subsrc & 2)
515                         generic_handle_irq(start+1);
516
517                 if (subsrc & 4)
518                         generic_handle_irq(start+2);
519         }
520 }
521
522 /* uart demux entry points */
523
524 static void
525 s3c_irq_demux_uart0(unsigned int irq,
526                     struct irq_desc *desc)
527 {
528         irq = irq;
529         s3c_irq_demux_uart(IRQ_S3CUART_RX0);
530 }
531
532 static void
533 s3c_irq_demux_uart1(unsigned int irq,
534                     struct irq_desc *desc)
535 {
536         irq = irq;
537         s3c_irq_demux_uart(IRQ_S3CUART_RX1);
538 }
539
540 static void
541 s3c_irq_demux_uart2(unsigned int irq,
542                     struct irq_desc *desc)
543 {
544         irq = irq;
545         s3c_irq_demux_uart(IRQ_S3CUART_RX2);
546 }
547
548 static void
549 s3c_irq_demux_extint8(unsigned int irq,
550                       struct irq_desc *desc)
551 {
552         unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND);
553         unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK);
554
555         eintpnd &= ~eintmsk;
556         eintpnd &= ~0xff;       /* ignore lower irqs */
557
558         /* we may as well handle all the pending IRQs here */
559
560         while (eintpnd) {
561                 irq = __ffs(eintpnd);
562                 eintpnd &= ~(1<<irq);
563
564                 irq += (IRQ_EINT4 - 4);
565                 generic_handle_irq(irq);
566         }
567
568 }
569
570 static void
571 s3c_irq_demux_extint4t7(unsigned int irq,
572                         struct irq_desc *desc)
573 {
574         unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND);
575         unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK);
576
577         eintpnd &= ~eintmsk;
578         eintpnd &= 0xff;        /* only lower irqs */
579
580         /* we may as well handle all the pending IRQs here */
581
582         while (eintpnd) {
583                 irq = __ffs(eintpnd);
584                 eintpnd &= ~(1<<irq);
585
586                 irq += (IRQ_EINT4 - 4);
587
588                 generic_handle_irq(irq);
589         }
590 }
591
592 #ifdef CONFIG_PM
593
594 static struct sleep_save irq_save[] = {
595         SAVE_ITEM(S3C2410_INTMSK),
596         SAVE_ITEM(S3C2410_INTSUBMSK),
597 };
598
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
602 */
603
604 static unsigned long save_extint[3];
605 static unsigned long save_eintflt[4];
606 static unsigned long save_eintmask;
607
608 int s3c24xx_irq_suspend(struct sys_device *dev, pm_message_t state)
609 {
610         unsigned int i;
611
612         for (i = 0; i < ARRAY_SIZE(save_extint); i++)
613                 save_extint[i] = __raw_readl(S3C24XX_EXTINT0 + (i*4));
614
615         for (i = 0; i < ARRAY_SIZE(save_eintflt); i++)
616                 save_eintflt[i] = __raw_readl(S3C24XX_EINFLT0 + (i*4));
617
618         s3c2410_pm_do_save(irq_save, ARRAY_SIZE(irq_save));
619         save_eintmask = __raw_readl(S3C24XX_EINTMASK);
620
621         return 0;
622 }
623
624 int s3c24xx_irq_resume(struct sys_device *dev)
625 {
626         unsigned int i;
627
628         for (i = 0; i < ARRAY_SIZE(save_extint); i++)
629                 __raw_writel(save_extint[i], S3C24XX_EXTINT0 + (i*4));
630
631         for (i = 0; i < ARRAY_SIZE(save_eintflt); i++)
632                 __raw_writel(save_eintflt[i], S3C24XX_EINFLT0 + (i*4));
633
634         s3c2410_pm_do_restore(irq_save, ARRAY_SIZE(irq_save));
635         __raw_writel(save_eintmask, S3C24XX_EINTMASK);
636
637         return 0;
638 }
639
640 #else
641 #define s3c24xx_irq_suspend NULL
642 #define s3c24xx_irq_resume  NULL
643 #endif
644
645 /* s3c24xx_init_irq
646  *
647  * Initialise S3C2410 IRQ system
648 */
649
650 void __init s3c24xx_init_irq(void)
651 {
652         unsigned long pend;
653         unsigned long last;
654         int irqno;
655         int i;
656
657         irqdbf("s3c2410_init_irq: clearing interrupt status flags\n");
658
659         /* first, clear all interrupts pending... */
660
661         last = 0;
662         for (i = 0; i < 4; i++) {
663                 pend = __raw_readl(S3C24XX_EINTPEND);
664
665                 if (pend == 0 || pend == last)
666                         break;
667
668                 __raw_writel(pend, S3C24XX_EINTPEND);
669                 printk("irq: clearing pending ext status %08x\n", (int)pend);
670                 last = pend;
671         }
672
673         last = 0;
674         for (i = 0; i < 4; i++) {
675                 pend = __raw_readl(S3C2410_INTPND);
676
677                 if (pend == 0 || pend == last)
678                         break;
679
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;
684         }
685
686         last = 0;
687         for (i = 0; i < 4; i++) {
688                 pend = __raw_readl(S3C2410_SUBSRCPND);
689
690                 if (pend == 0 || pend == last)
691                         break;
692
693                 printk("irq: clearing subpending status %08x\n", (int)pend);
694                 __raw_writel(pend, S3C2410_SUBSRCPND);
695                 last = pend;
696         }
697
698         /* register the main interrupts */
699
700         irqdbf("s3c2410_init_irq: registering s3c2410 interrupt handlers\n");
701
702         for (irqno = IRQ_EINT4t7; irqno <= IRQ_ADCPARENT; irqno++) {
703                 /* set all the s3c2410 internal irqs */
704
705                 switch (irqno) {
706                         /* deal with the special IRQs (cascaded) */
707
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;
717
718                 case IRQ_RESERVED6:
719                 case IRQ_RESERVED24:
720                         /* no IRQ here */
721                         break;
722
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);
728                 }
729         }
730
731         /* setup the cascade irq handlers */
732
733         set_irq_chained_handler(IRQ_EINT4t7, s3c_irq_demux_extint4t7);
734         set_irq_chained_handler(IRQ_EINT8t23, s3c_irq_demux_extint8);
735
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);
740
741         /* external interrupts */
742
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);
748         }
749
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);
755         }
756
757         /* register the uart interrupts */
758
759         irqdbf("s3c2410: registering external interrupts\n");
760
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);
766         }
767
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);
773         }
774
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);
780         }
781
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);
787         }
788
789         irqdbf("s3c2410: registered interrupt handlers\n");
790 }