From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Clark Wang <xiaoning.wang@nxp.com>
Cc: conor.culhane@silvaco.com, alexandre.belloni@bootlin.com,
linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org,
linux-imx@nxp.com
Subject: Re: [PATCH V4 8/8] i3c: master: svc: enable the interrupt in the enable ibi function
Date: Mon, 16 Aug 2021 09:02:23 +0200 [thread overview]
Message-ID: <20210816090223.32475a5c@xps13> (raw)
In-Reply-To: <20210809063645.2289988-9-xiaoning.wang@nxp.com>
Hi Clark,
Clark Wang <xiaoning.wang@nxp.com> wrote on Mon, 9 Aug 2021 14:36:45
+0800:
> If enable interrupt in the svc_i3c_master_bus_init() but do not call
> enable ibi in the device driver, it will cause a kernel dump in the
> svc_i3c_master_handle_ibi() when a slave start occurs on the i3c bus,
> because the data->ibi_pool is not initialized.
> So only enable the interrupt in svc_i3c_master_enable_ibi() function.
Is this situation actually happening or is this purely theoretical?
Anyway this doesn't hurt so:
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
>
> Signed-off-by: Clark Wang <xiaoning.wang@nxp.com>
> ---
> V4: New patch in this patchset
> ---
> drivers/i3c/master/svc-i3c-master.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
> index 77f67d407acd..b802afd8eb7d 100644
> --- a/drivers/i3c/master/svc-i3c-master.c
> +++ b/drivers/i3c/master/svc-i3c-master.c
> @@ -569,8 +569,6 @@ static int svc_i3c_master_bus_init(struct i3c_master_controller *m)
> if (ret)
> goto rpm_out;
>
> - svc_i3c_master_enable_interrupts(master, SVC_I3C_MINT_SLVSTART);
> -
> rpm_out:
> pm_runtime_mark_last_busy(master->dev);
> pm_runtime_put_autosuspend(master->dev);
> @@ -1398,6 +1396,8 @@ static int svc_i3c_master_enable_ibi(struct i3c_dev_desc *dev)
> return ret;
> }
>
> + svc_i3c_master_enable_interrupts(master, SVC_I3C_MINT_SLVSTART);
> +
> return i3c_master_enec_locked(m, dev->info.dyn_addr, I3C_CCC_EVENT_SIR);
> }
>
> @@ -1407,6 +1407,8 @@ static int svc_i3c_master_disable_ibi(struct i3c_dev_desc *dev)
> struct svc_i3c_master *master = to_svc_i3c_master(m);
> int ret;
>
> + svc_i3c_master_disable_interrupts(master);
> +
> ret = i3c_master_disec_locked(m, dev->info.dyn_addr, I3C_CCC_EVENT_SIR);
>
> pm_runtime_mark_last_busy(master->dev);
Thanks,
Miquèl
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
WARNING: multiple messages have this Message-ID (diff)
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Clark Wang <xiaoning.wang@nxp.com>
Cc: conor.culhane@silvaco.com, alexandre.belloni@bootlin.com,
linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org,
linux-imx@nxp.com
Subject: Re: [PATCH V4 8/8] i3c: master: svc: enable the interrupt in the enable ibi function
Date: Mon, 16 Aug 2021 09:02:23 +0200 [thread overview]
Message-ID: <20210816090223.32475a5c@xps13> (raw)
In-Reply-To: <20210809063645.2289988-9-xiaoning.wang@nxp.com>
Hi Clark,
Clark Wang <xiaoning.wang@nxp.com> wrote on Mon, 9 Aug 2021 14:36:45
+0800:
> If enable interrupt in the svc_i3c_master_bus_init() but do not call
> enable ibi in the device driver, it will cause a kernel dump in the
> svc_i3c_master_handle_ibi() when a slave start occurs on the i3c bus,
> because the data->ibi_pool is not initialized.
> So only enable the interrupt in svc_i3c_master_enable_ibi() function.
Is this situation actually happening or is this purely theoretical?
Anyway this doesn't hurt so:
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
>
> Signed-off-by: Clark Wang <xiaoning.wang@nxp.com>
> ---
> V4: New patch in this patchset
> ---
> drivers/i3c/master/svc-i3c-master.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
> index 77f67d407acd..b802afd8eb7d 100644
> --- a/drivers/i3c/master/svc-i3c-master.c
> +++ b/drivers/i3c/master/svc-i3c-master.c
> @@ -569,8 +569,6 @@ static int svc_i3c_master_bus_init(struct i3c_master_controller *m)
> if (ret)
> goto rpm_out;
>
> - svc_i3c_master_enable_interrupts(master, SVC_I3C_MINT_SLVSTART);
> -
> rpm_out:
> pm_runtime_mark_last_busy(master->dev);
> pm_runtime_put_autosuspend(master->dev);
> @@ -1398,6 +1396,8 @@ static int svc_i3c_master_enable_ibi(struct i3c_dev_desc *dev)
> return ret;
> }
>
> + svc_i3c_master_enable_interrupts(master, SVC_I3C_MINT_SLVSTART);
> +
> return i3c_master_enec_locked(m, dev->info.dyn_addr, I3C_CCC_EVENT_SIR);
> }
>
> @@ -1407,6 +1407,8 @@ static int svc_i3c_master_disable_ibi(struct i3c_dev_desc *dev)
> struct svc_i3c_master *master = to_svc_i3c_master(m);
> int ret;
>
> + svc_i3c_master_disable_interrupts(master);
> +
> ret = i3c_master_disec_locked(m, dev->info.dyn_addr, I3C_CCC_EVENT_SIR);
>
> pm_runtime_mark_last_busy(master->dev);
Thanks,
Miquèl
next prev parent reply other threads:[~2021-08-16 7:02 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-09 6:36 [PATCH V4 0/8] i3c: master: svc: some bug fixes and add runtime pm support Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-09 6:36 ` [PATCH V4 1/8] i3c: master: svc: move module reset behind clk enable Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-09 6:36 ` [PATCH V4 2/8] i3c: master: svc: fix atomic issue Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-09 6:36 ` [PATCH V4 3/8] i3c: master: svc: separate err, fifo and disable interrupt of reset function Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-16 6:52 ` Miquel Raynal
2021-08-16 6:52 ` Miquel Raynal
2021-08-09 6:36 ` [PATCH V4 4/8] i3c: master: svc: add support for slave to stop returning data Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-16 7:15 ` Miquel Raynal
2021-08-16 7:15 ` Miquel Raynal
2021-08-09 6:36 ` [PATCH V4 5/8] i3c: master: svc: set ODSTOP to let I2C device see the STOP signal Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-09 6:36 ` [PATCH V4 6/8] i3c: master: svc: add runtime pm support Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-16 6:59 ` Miquel Raynal
2021-08-16 6:59 ` Miquel Raynal
2021-08-09 6:36 ` [PATCH V4 7/8] i3c: master: svc: add the missing module device table Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-16 7:00 ` Miquel Raynal
2021-08-16 7:00 ` Miquel Raynal
2021-08-09 6:36 ` [PATCH V4 8/8] i3c: master: svc: enable the interrupt in the enable ibi function Clark Wang
2021-08-09 6:36 ` Clark Wang
2021-08-16 7:02 ` Miquel Raynal [this message]
2021-08-16 7:02 ` Miquel Raynal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210816090223.32475a5c@xps13 \
--to=miquel.raynal@bootlin.com \
--cc=alexandre.belloni@bootlin.com \
--cc=conor.culhane@silvaco.com \
--cc=linux-i3c@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=xiaoning.wang@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.