From: Francesco Dolcini <francesco@dolcini.it>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: "Primoz Fiser" <primoz.fiser@norik.com>,
"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
linux-kernel@vger.kernel.org, "Shawn Guo" <shawnguo@kernel.org>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
upstream@lists.phytec.de,
"Marco Felsch" <m.felsch@pengutronix.de>,
"Oleksij Rempel" <linux@rempel-privat.de>,
"NXP Linux Team" <linux-imx@nxp.com>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Fabio Estevam" <festevam@gmail.com>,
linux-arm-kernel@lists.infradead.org, linux-i2c@vger.kernel.org,
francesco.dolcini@toradex.com, wsa@kernel.org,
"Francesco Dolcini" <francesco@dolcini.it>
Subject: Re: [PATCH] i2c: imx: increase retries on arbitration loss
Date: Fri, 30 Dec 2022 18:09:57 +0100 [thread overview]
Message-ID: <Y68bZXhv2gJsF74O@francesco-nb.int.toradex.com> (raw)
In-Reply-To: <Y68WGcdQNQkD0vfa@francesco-nb.int.toradex.com>
On Fri, Dec 30, 2022 at 05:47:42PM +0100, Francesco Dolcini wrote:
> On Fri, Dec 30, 2022 at 05:12:09PM +0100, Oleksij Rempel wrote:
> > On Fri, Dec 30, 2022 at 03:40:58PM +0100, Francesco Dolcini wrote:
> > > +Wolfram
> > >
> > > On Wed, Dec 28, 2022 at 09:01:46AM +0100, Primoz Fiser wrote:
> > > > On 16. 12. 22 13:51, Francesco Dolcini wrote:
> > > > > On Fri, Dec 16, 2022 at 01:23:29PM +0100, Primoz Fiser wrote:
> > > > > > The only solid point in the thread seems to be that in that case we are not
> > > > > > covering up the potential i2c hardware issues?
> > > > >
> > > > > I believe that in this case we should just have a warning in the kernel.
> > > > > The retry potentially work-around a transient issue and we do not hide any hardware
> > > > > issue at the same time. It seems an easy win-win solution.
> > > >
> > > > I would agree about throwing a warning message in retry case.
> > > >
> > > > Not sure how would it affect other i2c bus drivers using retries > 0.
> > > > Retries might be pretty rare with i2c-imx but some other drivers set this to
> > > > 5 for example. At least using _ratelimited printk is a must using this
> > > > approach.
> > >
> > > Wolfram, Uwe, Oleksij
> > >
> > > Would it be acceptable to have a warning when we have I2C retries, and
> > > with that in place enabling retries on the imx driver?
> > >
> > > It exists hardware that requires this to work correctly,
> >
> > Well, this is persistent confusion in this monolog. It will not make it
> > correctly.
> >
> > > and at a
> > > minimum setting the retry count from user space is not going to solve
> > > potential issues during initial driver probe.
> >
> > I assume it is not clear from programmer point of view. Lets try other way:
> >
> > - The I2C slave could not correctly interpret the data on SDA because the SDA
> > high or low-level voltages do not reach its appropriate input
> > thresholds.
> >
> > This means:
> >
> > You have this:
> >
> > /-\ /-\ ----- 2.5Vcc
> > ___/ \__/ \___
> >
> > Instead of this:
> >
> > /-\ /-\ ----- 3.3Vcc
> > / \ / \
> > ___/ \__/ \___
> >
> > This is bad, because master or slave will not be able to interpret the pick level
> > correctly. It may see some times 0 instead of 1. This means, what ever we are
> > writing we are to the slave or reading from the slave is potentially corrupt
> > and only __sometimes__ the master was able to detect it.
> >
> > - The I2C slave missed an SCL cycle because the SCL high or low-level voltages
> > do not reach its appropriate input thresholds.
> >
> > This means, the bus frequency is too high for current configured or physical PCB
> > designed. So, you will have different kind of corruptions and some times they
> > will be detected.
> >
> > - The I2C slave accidently interpreted a spike etc. as an SCL cycle.
> >
> > This means the noise level is to high. The driver strange should be increased
> > or PCB redesign should be made. May be there are more options. If not done,
> > data corruption can be expected.
> >
> > None of this issue can be "fixed" by retries or made more "robust".
> > Doing more retries means: we do what ever we do until the system was not able to
> > detect the error.
>
> Hello Oleksij,
> thanks for the detailed explanation, appreciated.
>
> Given that is it correct that the i2c imx driver return EAGAIN in such a
> case (arbitration error)? You made it crystal clear that there is no
> such thing as try again for this error, I would be inclined to prepare a
> patch to fix this.
>
> diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c
> index cf5bacf3a488..a2a581c8ae07 100644
> --- a/drivers/i2c/busses/i2c-imx.c
> +++ b/drivers/i2c/busses/i2c-imx.c
> @@ -492,7 +492,7 @@ static int i2c_imx_bus_busy(struct imx_i2c_struct *i2c_imx, int for_busy, bool a
> /* check for arbitration lost */
> if (temp & I2SR_IAL) {
> i2c_imx_clear_irq(i2c_imx, I2SR_IAL);
> - return -EAGAIN;
> + return -EIO;
> }
>
> if (for_busy && (temp & I2SR_IBB)) {
>
Just a small addition, the tegra i2c driver is interesting.
It returns EAGAIN only when an arbitration error is detected on multi master
node, otherwise it tries the bus recovery procedure.
/* start recovery upon arbitration loss in single master mode */
if (i2c_dev->msg_err == I2C_ERR_ARBITRATION_LOST) {
if (!i2c_dev->multimaster_mode)
return i2c_recover_bus(&i2c_dev->adapter);
return -EAGAIN;
}
Francesco
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-12-30 18:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-16 8:45 [PATCH] i2c: imx: increase retries on arbitration loss Primoz Fiser
2022-12-16 9:45 ` Marco Felsch
2022-12-16 10:41 ` Primoz Fiser
2022-12-16 11:02 ` Oleksij Rempel
2022-12-16 11:13 ` Uwe Kleine-König
2022-12-16 12:23 ` Primoz Fiser
2022-12-16 12:51 ` Francesco Dolcini
2022-12-28 8:01 ` Primoz Fiser
2022-12-30 14:40 ` Francesco Dolcini
2022-12-30 16:12 ` Oleksij Rempel
2022-12-30 16:47 ` Francesco Dolcini
2022-12-30 17:09 ` Francesco Dolcini [this message]
2022-12-30 17:25 ` Oleksij Rempel
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=Y68bZXhv2gJsF74O@francesco-nb.int.toradex.com \
--to=francesco@dolcini.it \
--cc=festevam@gmail.com \
--cc=francesco.dolcini@toradex.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rempel-privat.de \
--cc=m.felsch@pengutronix.de \
--cc=o.rempel@pengutronix.de \
--cc=primoz.fiser@norik.com \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=u.kleine-koenig@pengutronix.de \
--cc=upstream@lists.phytec.de \
--cc=wsa@kernel.org \
/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