* [PATCH v2] i2c: xiic: improve error message when transfer fails to start
@ 2024-05-13 16:03 marc.ferland
2024-05-24 9:35 ` Michal Simek
2024-07-04 6:27 ` Andi Shyti
0 siblings, 2 replies; 4+ messages in thread
From: marc.ferland @ 2024-05-13 16:03 UTC (permalink / raw)
To: michal.simek
Cc: andi.shyti, linux-arm-kernel, linux-i2c, linux-kernel,
Marc Ferland
From: Marc Ferland <marc.ferland@sonatest.com>
xiic_start_xfer can fail for different reasons:
- EBUSY: bus is busy or i2c messages still in tx_msg or rx_msg
- ETIMEDOUT: timed-out trying to clear the RX fifo
- EINVAL: wrong clock settings
Both EINVAL and ETIMEDOUT will currently print a specific error
message followed by a generic one, for example:
Failed to clear rx fifo
Error xiic_start_xfer
however EBUSY will simply output the generic message:
Error xiic_start_xfer
which is not really helpful.
This commit adds a new error message when a busy condition is detected
and also removes the generic message since it does not provide any
relevant information to the user.
Signed-off-by: Marc Ferland <marc.ferland@sonatest.com>
---
Changes in v2:
- add a message where the error actually occurs (suggested by
Andi Shyti)
- remove the generic message completely (Andi Shyti)
drivers/i2c/busses/i2c-xiic.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
index b9ad935d7ff3..afb242be456d 100644
--- a/drivers/i2c/busses/i2c-xiic.c
+++ b/drivers/i2c/busses/i2c-xiic.c
@@ -1114,8 +1114,11 @@ static int xiic_start_xfer(struct xiic_i2c *i2c, struct i2c_msg *msgs, int num)
mutex_lock(&i2c->lock);
ret = xiic_busy(i2c);
- if (ret)
+ if (ret) {
+ dev_err(i2c->adap.dev.parent,
+ "cannot start a transfer while busy\n");
goto out;
+ }
i2c->tx_msg = msgs;
i2c->rx_msg = NULL;
@@ -1173,10 +1176,8 @@ static int xiic_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
return err;
err = xiic_start_xfer(i2c, msgs, num);
- if (err < 0) {
- dev_err(adap->dev.parent, "Error xiic_start_xfer\n");
+ if (err < 0)
goto out;
- }
err = wait_for_completion_timeout(&i2c->completion, XIIC_XFER_TIMEOUT);
mutex_lock(&i2c->lock);
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i2c: xiic: improve error message when transfer fails to start
2024-05-13 16:03 [PATCH v2] i2c: xiic: improve error message when transfer fails to start marc.ferland
@ 2024-05-24 9:35 ` Michal Simek
2024-07-04 3:43 ` Wolfram Sang
2024-07-04 6:27 ` Andi Shyti
1 sibling, 1 reply; 4+ messages in thread
From: Michal Simek @ 2024-05-24 9:35 UTC (permalink / raw)
To: marc.ferland
Cc: andi.shyti, linux-arm-kernel, linux-i2c, linux-kernel,
Marc Ferland
On 5/13/24 18:03, marc.ferland@gmail.com wrote:
> From: Marc Ferland <marc.ferland@sonatest.com>
>
> xiic_start_xfer can fail for different reasons:
>
> - EBUSY: bus is busy or i2c messages still in tx_msg or rx_msg
> - ETIMEDOUT: timed-out trying to clear the RX fifo
> - EINVAL: wrong clock settings
>
> Both EINVAL and ETIMEDOUT will currently print a specific error
> message followed by a generic one, for example:
>
> Failed to clear rx fifo
> Error xiic_start_xfer
>
> however EBUSY will simply output the generic message:
>
> Error xiic_start_xfer
>
> which is not really helpful.
>
> This commit adds a new error message when a busy condition is detected
> and also removes the generic message since it does not provide any
> relevant information to the user.
>
> Signed-off-by: Marc Ferland <marc.ferland@sonatest.com>
> ---
> Changes in v2:
> - add a message where the error actually occurs (suggested by
> Andi Shyti)
> - remove the generic message completely (Andi Shyti)
>
> drivers/i2c/busses/i2c-xiic.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
> index b9ad935d7ff3..afb242be456d 100644
> --- a/drivers/i2c/busses/i2c-xiic.c
> +++ b/drivers/i2c/busses/i2c-xiic.c
> @@ -1114,8 +1114,11 @@ static int xiic_start_xfer(struct xiic_i2c *i2c, struct i2c_msg *msgs, int num)
> mutex_lock(&i2c->lock);
>
> ret = xiic_busy(i2c);
> - if (ret)
> + if (ret) {
> + dev_err(i2c->adap.dev.parent,
> + "cannot start a transfer while busy\n");
> goto out;
> + }
>
> i2c->tx_msg = msgs;
> i2c->rx_msg = NULL;
> @@ -1173,10 +1176,8 @@ static int xiic_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
> return err;
>
> err = xiic_start_xfer(i2c, msgs, num);
> - if (err < 0) {
> - dev_err(adap->dev.parent, "Error xiic_start_xfer\n");
> + if (err < 0)
> goto out;
> - }
>
> err = wait_for_completion_timeout(&i2c->completion, XIIC_XFER_TIMEOUT);
> mutex_lock(&i2c->lock);
Acked-by: Michal Simek <michal.simek@amd.com>
Thanks,
Michal
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i2c: xiic: improve error message when transfer fails to start
2024-05-24 9:35 ` Michal Simek
@ 2024-07-04 3:43 ` Wolfram Sang
0 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2024-07-04 3:43 UTC (permalink / raw)
To: Michal Simek
Cc: marc.ferland, andi.shyti, linux-arm-kernel, linux-i2c,
linux-kernel, Marc Ferland
[-- Attachment #1: Type: text/plain, Size: 78 bytes --]
> Acked-by: Michal Simek <michal.simek@amd.com>
Andi, can we pick this up?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i2c: xiic: improve error message when transfer fails to start
2024-05-13 16:03 [PATCH v2] i2c: xiic: improve error message when transfer fails to start marc.ferland
2024-05-24 9:35 ` Michal Simek
@ 2024-07-04 6:27 ` Andi Shyti
1 sibling, 0 replies; 4+ messages in thread
From: Andi Shyti @ 2024-07-04 6:27 UTC (permalink / raw)
To: marc.ferland
Cc: michal.simek, linux-arm-kernel, linux-i2c, linux-kernel,
Marc Ferland
Hi Marc,
On Mon, May 13, 2024 at 12:03:24PM GMT, marc.ferland@gmail.com wrote:
> From: Marc Ferland <marc.ferland@sonatest.com>
>
> xiic_start_xfer can fail for different reasons:
>
> - EBUSY: bus is busy or i2c messages still in tx_msg or rx_msg
> - ETIMEDOUT: timed-out trying to clear the RX fifo
> - EINVAL: wrong clock settings
>
> Both EINVAL and ETIMEDOUT will currently print a specific error
> message followed by a generic one, for example:
>
> Failed to clear rx fifo
> Error xiic_start_xfer
>
> however EBUSY will simply output the generic message:
>
> Error xiic_start_xfer
>
> which is not really helpful.
>
> This commit adds a new error message when a busy condition is detected
> and also removes the generic message since it does not provide any
> relevant information to the user.
>
> Signed-off-by: Marc Ferland <marc.ferland@sonatest.com>
> ---
> Changes in v2:
> - add a message where the error actually occurs (suggested by
> Andi Shyti)
> - remove the generic message completely (Andi Shyti)
Thanks! Pushed to i2c/i2c-host.
Thanks,
Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-04 6:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13 16:03 [PATCH v2] i2c: xiic: improve error message when transfer fails to start marc.ferland
2024-05-24 9:35 ` Michal Simek
2024-07-04 3:43 ` Wolfram Sang
2024-07-04 6:27 ` Andi Shyti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).