Tony Lindgren <t...@atomide.com> writes:

> This will allow us to share the code between system timer and
> dmtimer device driver code without having to initialize all
> dmtimers early. It will also make the timer_set_next_event
> more efficient as the inline functions will optimize the code
> better in this case.
>
> Signed-off-by: Tony Lindgren <t...@atomide.com>

[...]

> -static void omap_dm_timer_reset(struct omap_dm_timer *timer)
> +/* Assumes the source clock has been set by caller */
> +void __omap_dm_timer_reset(struct omap_dm_timer *timer, int autoidle,
> +                             int wakeup)
>  {
>       u32 l;
>  
> +     l = omap_dm_timer_read_reg(timer, OMAP_TIMER_OCP_CFG_REG);
> +     l |= 0x02 << 3;  /* Set to smart-idle mode */
> +     l |= 0x2 << 8;   /* Set clock activity to perserve f-clock on idle */
> +
> +     if (autoidle)
> +             l |= 0x1 << 0;
> +
> +     if (wakeup)
> +             l |= 1 << 2;
> +
> +     omap_dm_timer_write_reg(timer, OMAP_TIMER_OCP_CFG_REG, l);
> +
> +     /* Match hardware reset default of posted mode */
> +     omap_dm_timer_write_reg(timer, OMAP_TIMER_IF_CTRL_REG,
> +                     OMAP_TIMER_CTRL_POSTED);
> +     timer->posted = 1;
> +}

The reset code is an example of something that will not be able to be
shared between a system timer driver and a real device driver.  In the
real driver, the reset (as well as smart-idle, autoidle, wakeup
capability, etc.) will all be handled by the hwmod.

With a hwmod conversion, the system timer will have to have
duplicate/alternate compared to the real timer.

Ideally, what we need is a way for the system timer to be early_init
only.  When the real driver is available, it switches to that.  This
could probably be done pretty easily by using the 'rating' field of the
clockevent so when the "real" timer driver becomes available with a
higher rating, the clockevent code would switch to it.

Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to