[PATCH 2/3] ARM: OMAP3+: PM: VP: check to ensure VP is idle before forceupdate
Nishanth Menon
nm at ti.com
Thu May 31 19:37:01 EDT 2012
On 16:23-20120531, Kevin Hilman wrote:
> Nishanth Menon <nm at ti.com> writes:
>
> > Ideally in the flow of DVFS programming, VP should be in idle state
> > (since we disabled it) before entering forceupdate. Ensure that
> > this is the case. Not doing this could cause VP statemachine
> > to enter invalid states.
> >
> > Cc: Tony Lindgren <tony at atomide.com>
> > Cc: Kevin Hilman <khilman at ti.com>
> > Cc: linux-omap at vger.kernel.org
> > Cc: linux-arm-kernel at lists.infradead.org
> >
> > Signed-off-by: Vinay Amancha <vinaykumar at ti.com>
> > Signed-off-by: Nishanth Menon <nm at ti.com>
> > ---
> > arch/arm/mach-omap2/vp.c | 12 ++++++++++++
> > 1 file changed, 12 insertions(+)
> >
> > diff --git a/arch/arm/mach-omap2/vp.c b/arch/arm/mach-omap2/vp.c
> > index 925d869..985091b 100644
> > --- a/arch/arm/mach-omap2/vp.c
> > +++ b/arch/arm/mach-omap2/vp.c
> > @@ -123,6 +123,18 @@ int omap_vp_forceupdate_scale(struct voltagedomain *voltdm,
> > u8 target_vsel, current_vsel;
> > int ret, timeout = 0;
> >
> > +/*
>
> missing indent
oops. will fix
>
> > + * Wait for VP idle Typical latency is <2us. Maximum latency is ~100us
> > + * This is an additional allowance to ensure we are in proper state
> > + * to enter into forceupdate state transition.
> > + */
> > + omap_test_timeout((voltdm->read(vp->vstatus)),
> > + VP_IDLE_TIMEOUT, timeout);
> > +
> > + if (timeout >= VP_IDLE_TIMEOUT)
> > + pr_warning("%s: vdd_%s idle timedout forceupdate(v=%ld)\n",
> > + __func__, voltdm->name, target_volt);
> > +
>
> Again, some clean failure and error recovery should be done here instead
> of just a print and bail.
thx - we should at least refuse to do forceupdate at this point.
--
Regards,
Nishanth Menon
More information about the linux-arm-kernel
mailing list