2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* include/asm-arm/arch-s3c2410/entry-macro.S
|
|
|
|
*
|
|
|
|
* Low-level IRQ helper macros for S3C2410-based platforms
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
2006-04-02 01:09:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* We have a problem that the INTOFFSET register does not always
|
|
|
|
* show one interrupt. Occasionally we get two interrupts through
|
|
|
|
* the prioritiser, and this causes the INTOFFSET register to show
|
|
|
|
* what looks like the logical-or of the two interrupt numbers.
|
|
|
|
*
|
|
|
|
* Thanks to Klaus, Shannon, et al for helping to debug this problem
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define INTPND (0x10)
|
|
|
|
#define INTOFFSET (0x14)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-03 18:39:34 +01:00
|
|
|
#include <asm/hardware.h>
|
2006-12-27 22:56:44 +01:00
|
|
|
#include <asm/irq.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
.macro get_irqnr_and_base, irqnr, irqstat, base, tmp
|
|
|
|
|
2006-04-02 01:09:26 +02:00
|
|
|
mov \base, #S3C24XX_VA_IRQ
|
|
|
|
|
|
|
|
@@ try the interrupt offset register, since it is there
|
|
|
|
|
2006-06-24 22:21:37 +02:00
|
|
|
ldr \irqstat, [ \base, #INTPND ]
|
|
|
|
teq \irqstat, #0
|
|
|
|
beq 1002f
|
2006-04-02 01:09:26 +02:00
|
|
|
ldr \irqnr, [ \base, #INTOFFSET ]
|
|
|
|
mov \tmp, #1
|
|
|
|
tst \irqstat, \tmp, lsl \irqnr
|
|
|
|
bne 1001f
|
|
|
|
|
|
|
|
@@ the number specified is not a valid irq, so try
|
|
|
|
@@ and work it out for ourselves
|
|
|
|
|
2006-06-24 22:21:37 +02:00
|
|
|
mov \irqnr, #0 @@ start here
|
2006-04-02 01:09:26 +02:00
|
|
|
|
|
|
|
@@ work out which irq (if any) we got
|
2006-06-24 22:21:37 +02:00
|
|
|
|
2006-04-02 01:09:26 +02:00
|
|
|
movs \tmp, \irqstat, lsl#16
|
|
|
|
addeq \irqnr, \irqnr, #16
|
|
|
|
moveq \irqstat, \irqstat, lsr#16
|
|
|
|
tst \irqstat, #0xff
|
|
|
|
addeq \irqnr, \irqnr, #8
|
|
|
|
moveq \irqstat, \irqstat, lsr#8
|
|
|
|
tst \irqstat, #0xf
|
|
|
|
addeq \irqnr, \irqnr, #4
|
|
|
|
moveq \irqstat, \irqstat, lsr#4
|
|
|
|
tst \irqstat, #0x3
|
|
|
|
addeq \irqnr, \irqnr, #2
|
|
|
|
moveq \irqstat, \irqstat, lsr#2
|
|
|
|
tst \irqstat, #0x1
|
|
|
|
addeq \irqnr, \irqnr, #1
|
|
|
|
|
|
|
|
@@ we have the value
|
2005-04-17 00:20:36 +02:00
|
|
|
1001:
|
2006-06-24 22:21:37 +02:00
|
|
|
adds \irqnr, \irqnr, #IRQ_EINT0
|
|
|
|
1002:
|
2006-04-02 01:09:26 +02:00
|
|
|
@@ exit here, Z flag unset if IRQ
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-04-02 01:09:26 +02:00
|
|
|
.endm
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* currently don't need an disable_fiq macro */
|
|
|
|
|
|
|
|
.macro disable_fiq
|
|
|
|
.endm
|