blob: e09a6b8ec1535fc8929cd6a0ec4d1a82bc3528f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-arm/arch-s3c2410/entry-macro.S
3 *
4 * Low-level IRQ helper macros for S3C2410-based platforms
5 *
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.
Ben Dooks26f91fd2006-04-02 00:09:26 +01009*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Ben Dooks26f91fd2006-04-02 00:09:26 +010011/* 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.
15 *
16 * Thanks to Klaus, Shannon, et al for helping to debug this problem
17*/
18
19#define INTPND (0x10)
20#define INTOFFSET (0x14)
Ben Dooks26f91fd2006-04-02 00:09:26 +010021
Russell King78ff18a2006-01-03 17:39:34 +000022#include <asm/hardware.h>
23#include <asm/arch/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
26
Ben Dooks26f91fd2006-04-02 00:09:26 +010027 mov \base, #S3C24XX_VA_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Ben Dooks26f91fd2006-04-02 00:09:26 +010029 @@ try the interrupt offset register, since it is there
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Ben Dooksa019f4a2006-06-24 21:21:37 +010031 ldr \irqstat, [ \base, #INTPND ]
32 teq \irqstat, #0
33 beq 1002f
Ben Dooks26f91fd2006-04-02 00:09:26 +010034 ldr \irqnr, [ \base, #INTOFFSET ]
35 mov \tmp, #1
36 tst \irqstat, \tmp, lsl \irqnr
Ben Dooks26f91fd2006-04-02 00:09:26 +010037 bne 1001f
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ben Dooks26f91fd2006-04-02 00:09:26 +010039 @@ the number specified is not a valid irq, so try
40 @@ and work it out for ourselves
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Ben Dooksa019f4a2006-06-24 21:21:37 +010042 mov \irqnr, #0 @@ start here
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ben Dooks26f91fd2006-04-02 00:09:26 +010044 @@ work out which irq (if any) we got
Ben Dooksa019f4a2006-06-24 21:21:37 +010045
Ben Dooks26f91fd2006-04-02 00:09:26 +010046 movs \tmp, \irqstat, lsl#16
47 addeq \irqnr, \irqnr, #16
48 moveq \irqstat, \irqstat, lsr#16
49 tst \irqstat, #0xff
50 addeq \irqnr, \irqnr, #8
51 moveq \irqstat, \irqstat, lsr#8
52 tst \irqstat, #0xf
53 addeq \irqnr, \irqnr, #4
54 moveq \irqstat, \irqstat, lsr#4
55 tst \irqstat, #0x3
56 addeq \irqnr, \irqnr, #2
57 moveq \irqstat, \irqstat, lsr#2
58 tst \irqstat, #0x1
59 addeq \irqnr, \irqnr, #1
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ben Dooks26f91fd2006-04-02 00:09:26 +010061 @@ we have the value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621001:
Ben Dooksa019f4a2006-06-24 21:21:37 +010063 adds \irqnr, \irqnr, #IRQ_EINT0
641002:
Ben Dooks26f91fd2006-04-02 00:09:26 +010065 @@ exit here, Z flag unset if IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Ben Dooks26f91fd2006-04-02 00:09:26 +010067 .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* currently don't need an disable_fiq macro */
70
71 .macro disable_fiq
72 .endm