Linux-i3c Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@nxp.com>
To: nxf24178 <ravindra.yashvant.shinde@nxp.com>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>,
	"moderated list:I3C SUBSYSTEM" <linux-i3c@lists.infradead.org>,
	open list <linux-kernel@vger.kernel.org>,
	imx@lists.linux.dev
Subject: Re: [PATCH] i3c: master: Avoid sending DISEC command with old device address.
Date: Tue, 20 Aug 2024 10:49:13 -0400	[thread overview]
Message-ID: <ZsSs6W8ds67NZqRL@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20240820043818.3352614-1-ravindra.yashvant.shinde@nxp.com>

On Tue, Aug 20, 2024 at 10:08:17AM +0530, nxf24178 wrote:

Avoid use nxp nxf24178 as your name, please update it with your real name.

> When a new device hotjoins, a new dynamic address is assigned.
> i3c_master_add_i3c_dev_locked() identifies that the device was previously
> attached to the bus and locates the olddev.
>
> i3c_master_add_i3c_dev_locked()
> {
>     ...
>     olddev = i3c_master_search_i3c_dev_duplicate(newdev);
>     ...
>     if (olddev) {
>         enable_ibi = true;
>         ...
>     }
>     i3c_dev_free_ibi_locked(olddev);
>     ^^^^^^^^
>     This function internally calls i3c_dev_disable_ibi_locked(addr)
>     function causing to send DISEC command with old Address.
>
>     The olddev should not receive any commands on the i3c bus as it
>     does not exist and has been assigned a new address. This will
>     result in NACK or timeout. So, update the olddev->ibi->enabled
>     flag to false to avoid DISEC with OldAddr.
>     ...
> }
>
> Signed-off-by: Ravindra Yashvant Shinde <ravindra.yashvant.shinde@nxp.com>
> ---
>  drivers/i3c/master.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c
> index 7028f03c2c42..07ccb2c00074 100644
> --- a/drivers/i3c/master.c
> +++ b/drivers/i3c/master.c
> @@ -2042,6 +2042,7 @@ int i3c_master_add_i3c_dev_locked(struct i3c_master_controller *master,
>  			if (olddev->ibi->enabled) {
>  				enable_ibi = true;
>  				i3c_dev_disable_ibi_locked(olddev);
> +				olddev->ibi->enabled = false;
>  			}

you can set olddev->ibi->enable = false unconditional. and add comments
about why set it to false here.

Frank

>
>  			i3c_dev_free_ibi_locked(olddev);
> --
> 2.46.0
>

-- 
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

      reply	other threads:[~2024-08-20 14:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-20  4:38 [PATCH] i3c: master: Avoid sending DISEC command with old device address nxf24178
2024-08-20 14:49 ` Frank Li [this message]

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=ZsSs6W8ds67NZqRL@lizhi-Precision-Tower-5810 \
    --to=frank.li@nxp.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=imx@lists.linux.dev \
    --cc=linux-i3c@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ravindra.yashvant.shinde@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox