Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 219c5b98 authored by Kevin Hilman's avatar Kevin Hilman Committed by paul
Browse files

OMAP: dmtimer: enable all timers to be wakeup events



All GP timers on OMAP2/3 can generate wakeup events.  The wakeup status is
cleared in the PRCM interrupt handler.

Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
parent 9198a406
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -321,11 +321,9 @@ static void omap_dm_timer_reset(struct omap_dm_timer *timer)
	l |= 0x2 << 8;   /* Set clock activity to perserve f-clock on idle */

	/*
	 * Enable wake-up only for GPT1 on OMAP2 CPUs.
	 * FIXME: All timers should have wake-up enabled and clear
	 * PRCM status.
	 * Enable wake-up on OMAP2 CPUs.
	 */
	if (cpu_class_is_omap2() && (timer == &dm_timers[0]))
	if (cpu_class_is_omap2())
		l |= 1 << 2;
	omap_dm_timer_write_reg(timer, OMAP_TIMER_OCP_CFG_REG, l);