]> rtime.felk.cvut.cz Git - hercules2020/nv-tegra/linux-4.4.git/commitdiff
ARM: OMAP: Force dmtimer restore if context loss is not detectable
authorJon Hunter <jon-hunter@ti.com>
Tue, 19 Mar 2013 17:38:16 +0000 (12:38 -0500)
committerBenoit Cousson <benoit.cousson@linaro.org>
Mon, 8 Apr 2013 22:21:30 +0000 (00:21 +0200)
When booting with device-tree the function pointer for detecting context
loss is not populated. Ideally, the pm_runtime framework should be
enhanced to allow a means for reporting context/state loss and we could
avoid populating such function pointers altogether. In the interim until
a generic non-device specific solution is in place, force a restore of
the dmtimer when enabling the timer.

Signed-off-by: Jon Hunter <jon-hunter@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
arch/arm/plat-omap/dmtimer.c

index 5cae1dd1f365482c857ad427fc26f458c6a7d419..725d9720dd2bb9f6952659712babee23f0d25671 100644 (file)
@@ -326,6 +326,8 @@ void omap_dm_timer_enable(struct omap_dm_timer *timer)
                                omap_timer_restore_context(timer);
                                timer->ctx_loss_count = c;
                        }
+               } else {
+                       omap_timer_restore_context(timer);
                }
        }
 }