On Tue, 10 Sept 2024 at 00:04, Elliot Berman <quic_eberman@xxxxxxxxxxx> wrote: > > On Mon, Sep 09, 2024 at 08:38:45PM +0200, Bartosz Golaszewski wrote: > > From: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> > > > > Older platforms don't have an actual SCM device tied into the driver > > model and so there's no struct device which to use with the TZ Mem API. > > We need to fall-back to kcalloc() when allocating the buffer for > > additional SMC arguments on such platforms which don't even probe the SCM > > driver and never create the TZMem pool. > > > > Fixes: 449d0d84bcd8 ("firmware: qcom: scm: smc: switch to using the SCM allocator") > > Reported-by: Rudraksha Gupta <guptarud@xxxxxxxxx> > > Closes: https://lore.kernel.org/lkml/692cfe9a-8c05-4ce4-813e-82b3f310019a@xxxxxxxxx/<S-Del> > > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> > > --- > > drivers/firmware/qcom/qcom_scm-smc.c | 28 ++++++++++++++++++++++++---- > > 1 file changed, 24 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/firmware/qcom/qcom_scm-smc.c b/drivers/firmware/qcom/qcom_scm-smc.c > > index 2b4c2826f572..13f72541033c 100644 > > --- a/drivers/firmware/qcom/qcom_scm-smc.c > > +++ b/drivers/firmware/qcom/qcom_scm-smc.c > > @@ -147,6 +147,15 @@ static int __scm_smc_do(struct device *dev, struct arm_smccc_args *smc, > > return 0; > > } > > > > +static void smc_args_free(void *ptr) > > +{ > > + if (qcom_scm_get_tzmem_pool()) > > I'm a little concerned about this check. I didn't think making SCM calls > without the SCM device probed was possible until this report. We do > worry about that in the downstream kernel. So, I'm not sure if this > scenario is currently possible in the upstream kernel. MSM8960 and MSM8660 don't have SCM devices. For MSM8960 it should be trivial to get it, c&p from apq8064 should. For MSM8660 it might be a bit harder. But even if we add such nodes, we shouldn't break existing DT files. > It's possible that some driver makes SCM call in parallel to SCM device > probing. Then, it might be possible for qcom_scm_get_tzmem_pool() to > return NULL at beginning of function and then a valid pointer by the > time we're freeing the ptr. -- With best wishes Dmitry