diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2012-11-17 17:57:15 +0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-11-21 09:57:42 -0800 |
commit | 197926108cc837474f8807678d6220bdce281620 (patch) | |
tree | 49f97a2bd9f5b7419f9634944eb4b227eaf87196 /arch/arm/mach-clps711x/include/mach | |
parent | 99f04c8f69753e4032059eeb0c21197948e459f7 (diff) | |
download | blackbird-op-linux-197926108cc837474f8807678d6220bdce281620.tar.gz blackbird-op-linux-197926108cc837474f8807678d6220bdce281620.zip |
ARM: clps711x: Add FIQ interrupt handling
CLPS711X-target CPU can have a several FIQ interrupts. With this patch
we adds handling for a one which will be used for ALSA PCM later.
Since FIQ have a separate handler we only add "mask" and "unmask" calls
which will used for enable/disable_irq functions.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-clps711x/include/mach')
-rw-r--r-- | arch/arm/mach-clps711x/include/mach/clps711x.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-clps711x/include/mach/clps711x.h b/arch/arm/mach-clps711x/include/mach/clps711x.h index 1f4728d414d7..01d1b9559710 100644 --- a/arch/arm/mach-clps711x/include/mach/clps711x.h +++ b/arch/arm/mach-clps711x/include/mach/clps711x.h @@ -298,4 +298,7 @@ #define IRQ_UTXINT2 (16 + 12) #define IRQ_URXINT2 (16 + 13) +/* INTSR3 Interrupts */ +#define IRQ_DAIINT (32 + 0) + #endif /* __MACH_CLPS711X_H */ |