From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Poirier To: op-tee@lists.trustedfirmware.org Subject: Re: [PATCH v9 4/7] remoteproc: core: Add TEE interface support for firmware release Date: Mon, 23 Sep 2024 08:53:43 -0600 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0058408996244334851==" List-Id: --===============0058408996244334851== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Tue, Sep 17, 2024 at 06:56:58PM +0200, Arnaud POULIQUEN wrote: > Hello Mathieu, >=20 > On 9/12/24 17:26, Mathieu Poirier wrote: > > On Fri, Aug 30, 2024 at 11:51:44AM +0200, Arnaud Pouliquen wrote: > >> Add support for releasing remote processor firmware through > >> the Trusted Execution Environment (TEE) interface. > >> > >> The tee_rproc_release_fw() function is called in the following cases: > >> > >> - An error occurs in rproc_start() between the loading of the segments a= nd > >> the start of the remote processor. > >> - When rproc_release_fw is called on error or after stopping the remote > >> processor. > >> > >> Signed-off-by: Arnaud Pouliquen > >> --- > >> drivers/remoteproc/remoteproc_core.c | 10 ++++++++-- > >> 1 file changed, 8 insertions(+), 2 deletions(-) > >> > >> diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/r= emoteproc_core.c > >> index 7694817f25d4..32052dedc149 100644 > >> --- a/drivers/remoteproc/remoteproc_core.c > >> +++ b/drivers/remoteproc/remoteproc_core.c > >> @@ -29,6 +29,7 @@ > >> #include > >> #include > >> #include > >> +#include > >> #include > >> #include > >> #include > >> @@ -1258,6 +1259,9 @@ static int rproc_alloc_registered_carveouts(struct= rproc *rproc) > >> =20 > >> static void rproc_release_fw(struct rproc *rproc) > >> { > >> + if (rproc->state =3D=3D RPROC_OFFLINE && rproc->tee_interface) > >> + tee_rproc_release_fw(rproc); > >=20 > > Function tee_rproc_release_fw() returns a value that is ignored. I don't= know > > how it passes the Sparse checker but I already see patches coming in my I= nbox to > > deal with that. In this case there is nothing else to do if there is an = error > > releasing the firware. As such I would put a (void) in front and add a c= omment > > about the return value being ignore on purpose. >=20 > Instead of ignoring the error, I wonder if we should panic in > tee_rproc_release_fw(). Indeed, we would be in an unexpected state without = any > possible action to return to a normal state. Nowadays a call to panic() is only used in very dire situations and I don't s= ee this meeting that requirement. I would just call a dev_err() and let it be. >=20 > Regards, > Arnaud >=20 > >=20 > >> + > >> /* Free the copy of the resource table */ > >> kfree(rproc->cached_table); > >> rproc->cached_table =3D NULL; > >> @@ -1348,7 +1352,7 @@ static int rproc_start(struct rproc *rproc, const = struct firmware *fw) > >> if (ret) { > >> dev_err(dev, "failed to prepare subdevices for %s: %d\n", > >> rproc->name, ret); > >> - goto reset_table_ptr; > >> + goto release_fw; > >> } > >> =20 > >> /* power up the remote processor */ > >> @@ -1376,7 +1380,9 @@ static int rproc_start(struct rproc *rproc, const = struct firmware *fw) > >> rproc->ops->stop(rproc); > >> unprepare_subdevices: > >> rproc_unprepare_subdevices(rproc); > >> -reset_table_ptr: > >> +release_fw: > >> + if (rproc->tee_interface) > >> + tee_rproc_release_fw(rproc); > >=20 > > Same here. > >=20 > >> rproc->table_ptr =3D rproc->cached_table; > >> =20 > >> return ret; > >> --=20 > >> 2.25.1 > >> --===============0058408996244334851==--