2 * include/asm-arm/arch-s3c2410/entry-macro.S
4 * Low-level IRQ helper macros for S3C2410-based platforms
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 /* We have a problem that the INTOFFSET register does not always
12 * show one interrupt. Occasionally we get two interrupts through
13 * the prioritiser, and this causes the INTOFFSET register to show
14 * what looks like the logical-or of the two interrupt numbers.
16 * Thanks to Klaus, Shannon, et al for helping to debug this problem
20 #define INTOFFSET (0x14)
21 #define EXTINTPEND (0xa8)
22 #define EXTINTMASK (0xa4)
24 #include <asm/hardware.h>
25 #include <asm/arch/irqs.h>
27 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
29 mov \base, #S3C24XX_VA_IRQ
31 ldr \irqstat, [ \base, #INTPND]
32 bics \irqnr, \irqstat, #3<<4 @@ only an GPIO IRQ
35 @@ try the interrupt offset register, since it is there
37 ldr \irqnr, [ \base, #INTOFFSET ]
39 tst \irqstat, \tmp, lsl \irqnr
40 addne \irqnr, \irqnr, #IRQ_EINT0
43 @@ the number specified is not a valid irq, so try
44 @@ and work it out for ourselves
46 mov \irqnr, #IRQ_EINT0 @@ start here
50 @@ load the GPIO interrupt register, and check it
52 add \tmp, \base, #S3C24XX_VA_GPIO - S3C24XX_VA_IRQ
53 ldr \irqstat, [ \tmp, # EXTINTPEND ]
54 ldr \irqnr, [ \tmp, # EXTINTMASK ]
55 bics \irqstat, \irqstat, \irqnr
58 mov \irqnr, #(IRQ_EINT4 - 4)
60 @@ work out which irq (if any) we got
62 movs \tmp, \irqstat, lsl#16
63 addeq \irqnr, \irqnr, #16
64 moveq \irqstat, \irqstat, lsr#16
66 addeq \irqnr, \irqnr, #8
67 moveq \irqstat, \irqstat, lsr#8
69 addeq \irqnr, \irqnr, #4
70 moveq \irqstat, \irqstat, lsr#4
72 addeq \irqnr, \irqnr, #2
73 moveq \irqstat, \irqstat, lsr#2
75 addeq \irqnr, \irqnr, #1
81 @@ exit here, Z flag unset if IRQ
85 /* currently don't need an disable_fiq macro */