[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191112062819.GQ3108315@builder>
Date: Mon, 11 Nov 2019 22:28:19 -0800
From: Bjorn Andersson <bjorn.andersson@...aro.org>
To: Tero Kristo <t-kristo@...com>
Cc: ohad@...ery.com, linux-remoteproc@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-omap@...r.kernel.org,
s-anna@...com
Subject: Re: [PATCH 17/17] remoteproc/omap: fix auto-suspend failure warning
during crashed state
On Mon 28 Oct 05:42 PDT 2019, Tero Kristo wrote:
> From: Suman Anna <s-anna@...com>
>
> The runtime autosuspend on a OMAP remoteproc device is attempted when
> the suspend timer expires (autosuspend delay elapsed since the last
> time the device is busy). This is the normal autosuspend scenario
> for a device functioning normally. This timer can also expire during
> the debugging of a remoteproc crash when the remoteproc recovery is
> disabled. This is an invalid pre-condition though, so check for the
> RPROC_CRASHED state and bail out before the actual check for the
> RPROC_RUNNING state. The auto-suspend is also not re-attempted until
> the remoteproc is recovered and restored to normal functional state.
>
> Signed-off-by: Suman Anna <s-anna@...com>
> Signed-off-by: Tero Kristo <t-kristo@...com>
This should be folded back into the previous patch (which I have yet to
review).
Regards,
Bjorn
> ---
> drivers/remoteproc/omap_remoteproc.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/remoteproc/omap_remoteproc.c b/drivers/remoteproc/omap_remoteproc.c
> index 2eb05d7a4dec..1dfac82224f7 100644
> --- a/drivers/remoteproc/omap_remoteproc.c
> +++ b/drivers/remoteproc/omap_remoteproc.c
> @@ -945,6 +945,11 @@ static int omap_rproc_runtime_suspend(struct device *dev)
> struct omap_rproc *oproc = rproc->priv;
> int ret;
>
> + if (rproc->state == RPROC_CRASHED) {
> + dev_dbg(dev, "rproc cannot be runtime suspended when crashed!\n");
> + return -EBUSY;
> + }
> +
> if (WARN_ON(rproc->state != RPROC_RUNNING)) {
> dev_err(dev, "rproc cannot be runtime suspended when not running!\n");
> return -EBUSY;
> --
> 2.17.1
>
> --
> Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
Powered by blists - more mailing lists