diff options
author | Rajendra Nayak <rnayak@ti.com> | 2008-09-26 16:18:20 +0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-11-12 01:40:12 +0300 |
commit | 0addd61bc2028842bdcbd92c622d1110fc29c5a3 (patch) | |
tree | 635cb985ccb9190666feb822b362d3e0281af2ca /arch/arm/plat-omap/include/plat/irqs.h | |
parent | 40c670f0314c3c9463ce9c2f2b9b1085884837f6 (diff) | |
download | linux-0addd61bc2028842bdcbd92c622d1110fc29c5a3.tar.xz |
OMAP3: PM: INTC context save/restore
Add context save and restore for the INTC module to support off-mode.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/plat-omap/include/plat/irqs.h')
-rw-r--r-- | arch/arm/plat-omap/include/plat/irqs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/plat/irqs.h b/arch/arm/plat-omap/include/plat/irqs.h index 6a6d0281e1d5..ce5dd2d1dc21 100644 --- a/arch/arm/plat-omap/include/plat/irqs.h +++ b/arch/arm/plat-omap/include/plat/irqs.h @@ -477,9 +477,14 @@ #define OMAP_IRQ_BIT(irq) (1 << ((irq) % 32)) +#define INTCPS_NR_MIR_REGS 3 +#define INTCPS_NR_IRQS 96 + #ifndef __ASSEMBLY__ extern void omap_init_irq(void); extern int omap_irq_pending(void); +void omap_intc_save_context(void); +void omap_intc_restore_context(void); #endif #include <mach/hardware.h> |