aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/pm24xx.c
diff options
context:
space:
mode:
authorJouni Hogander <jouni.hogander@nokia.com>2009-02-03 18:49:04 -0500
committerKevin Hilman <khilman@deeprootsystems.com>2009-05-28 13:59:04 -0400
commit94434535bd36ca010a81e1199f954beef2c4de64 (patch)
tree7abfddf6812d4b88bb4cc8bff5a6acbbc0664a1b /arch/arm/mach-omap2/pm24xx.c
parent8bd229492209c0c7d050e2f9a600c12f035d72f7 (diff)
OMAP: Add new function to check wether there is irq pending
Add common omap2/3 function to check wether there is irq pending. Switch to use it in omap2 pm code instead of its own. Signed-off-by: Jouni Hogander <jouni.hogander@nokia.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm24xx.c')
-rw-r--r--arch/arm/mach-omap2/pm24xx.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c
index 232b9f6032e8..d38f3121dde9 100644
--- a/arch/arm/mach-omap2/pm24xx.c
+++ b/arch/arm/mach-omap2/pm24xx.c
@@ -76,19 +76,6 @@ static int omap2_fclks_active(void)
76 return 0; 76 return 0;
77} 77}
78 78
79static int omap2_irq_pending(void)
80{
81 u32 pending_reg = 0x480fe098;
82 int i;
83
84 for (i = 0; i < 4; i++) {
85 if (omap_readl(pending_reg))
86 return 1;
87 pending_reg += 0x20;
88 }
89 return 0;
90}
91
92static void omap2_enter_full_retention(void) 79static void omap2_enter_full_retention(void)
93{ 80{
94 u32 l; 81 u32 l;
@@ -127,7 +114,7 @@ static void omap2_enter_full_retention(void)
127 114
128 /* One last check for pending IRQs to avoid extra latency due 115 /* One last check for pending IRQs to avoid extra latency due
129 * to sleeping unnecessarily. */ 116 * to sleeping unnecessarily. */
130 if (omap2_irq_pending()) 117 if (omap_irq_pending())
131 goto no_sleep; 118 goto no_sleep;
132 119
133 /* Jump to SRAM suspend code */ 120 /* Jump to SRAM suspend code */
@@ -262,13 +249,13 @@ static void omap2_pm_idle(void)
262 local_fiq_disable(); 249 local_fiq_disable();
263 250
264 if (!omap2_can_sleep()) { 251 if (!omap2_can_sleep()) {
265 if (omap2_irq_pending()) 252 if (omap_irq_pending())
266 goto out; 253 goto out;
267 omap2_enter_mpu_retention(); 254 omap2_enter_mpu_retention();
268 goto out; 255 goto out;
269 } 256 }
270 257
271 if (omap2_irq_pending()) 258 if (omap_irq_pending())
272 goto out; 259 goto out;
273 260
274 omap2_enter_full_retention(); 261 omap2_enter_full_retention();