All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors
@ 2020-09-30 12:24 Lad Prabhakar
  2020-09-30 23:02 ` Marek Vasut
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Lad Prabhakar @ 2020-09-30 12:24 UTC (permalink / raw)
  To: u-boot

commit 7c8f821e ("i2c: rcar_i2c: Set the slave address from
rcar_i2c_xfer") blindly called rcar_i2c_set_addr() with read argument
always set to 1 during xfer which introduced read/write errors, whereas
earlier rcar_i2c_read_common() called rcar_i2c_set_addr() with read set to
1 and rcar_i2c_write_common() called rcar_i2c_set_addr() with read set 0.

Fixes: 7c8f821e ("i2c: rcar_i2c: Set the slave address from rcar_i2c_xfer")
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
v2->v3
* Made sure value of read is ether 0/1 as pointed by Marek

v1->v2
* Incorporated suggestion from Heiko

v1:
 https://patchwork.ozlabs.org/project/uboot/patch/
 20200921163353.5540-1-prabhakar.mahadev-lad.rj at bp.renesas.com/

Without this patch below errors are seen:
 => i2c probe
Valid chip addresses: 34 47 68
=> i2c md 0x47 0 100
Error reading the chip: -110
=> i2c mw 0x47 0x0a 0x06
Error writing the chip: -110
=>
---
 drivers/i2c/rcar_i2c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/rcar_i2c.c b/drivers/i2c/rcar_i2c.c
index 4267bbfa5a..663c342cd8 100644
--- a/drivers/i2c/rcar_i2c.c
+++ b/drivers/i2c/rcar_i2c.c
@@ -211,7 +211,7 @@ static int rcar_i2c_xfer(struct udevice *dev, struct i2c_msg *msg, int nmsgs)
 	int ret;
 
 	for (; nmsgs > 0; nmsgs--, msg++) {
-		ret = rcar_i2c_set_addr(dev, msg->addr, 1);
+		ret = rcar_i2c_set_addr(dev, msg->addr, !!(msg->flags & I2C_M_RD));
 		if (ret)
 			return ret;
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors
  2020-09-30 12:24 [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors Lad Prabhakar
@ 2020-09-30 23:02 ` Marek Vasut
  2020-10-01  3:37 ` Heiko Schocher
  2020-10-01  3:47 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2020-09-30 23:02 UTC (permalink / raw)
  To: u-boot

On 9/30/20 2:24 PM, Lad Prabhakar wrote:
> commit 7c8f821e ("i2c: rcar_i2c: Set the slave address from
> rcar_i2c_xfer") blindly called rcar_i2c_set_addr() with read argument
> always set to 1 during xfer which introduced read/write errors, whereas
> earlier rcar_i2c_read_common() called rcar_i2c_set_addr() with read set to
> 1 and rcar_i2c_write_common() called rcar_i2c_set_addr() with read set 0.

It would be good to explain in the commit message why the previous code
was correct.

> Fixes: 7c8f821e ("i2c: rcar_i2c: Set the slave address from rcar_i2c_xfer")
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Marek Vasut <marek.vasut+renesas@gmail.com>

[...]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors
  2020-09-30 12:24 [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors Lad Prabhakar
  2020-09-30 23:02 ` Marek Vasut
@ 2020-10-01  3:37 ` Heiko Schocher
  2020-10-01  3:47 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Heiko Schocher @ 2020-10-01  3:37 UTC (permalink / raw)
  To: u-boot

Hello Lad,

Am 30.09.2020 um 14:24 schrieb Lad Prabhakar:
> commit 7c8f821e ("i2c: rcar_i2c: Set the slave address from
> rcar_i2c_xfer") blindly called rcar_i2c_set_addr() with read argument
> always set to 1 during xfer which introduced read/write errors, whereas
> earlier rcar_i2c_read_common() called rcar_i2c_set_addr() with read set to
> 1 and rcar_i2c_write_common() called rcar_i2c_set_addr() with read set 0.
> 
> Fixes: 7c8f821e ("i2c: rcar_i2c: Set the slave address from rcar_i2c_xfer")
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> ---
> v2->v3
> * Made sure value of read is ether 0/1 as pointed by Marek
> 
> v1->v2
> * Incorporated suggestion from Heiko
> 
> v1:
>   https://patchwork.ozlabs.org/project/uboot/patch/
>   20200921163353.5540-1-prabhakar.mahadev-lad.rj at bp.renesas.com/

Thanks!

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52   Fax: +49-8142-66989-80   Email: hs at denx.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors
  2020-09-30 12:24 [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors Lad Prabhakar
  2020-09-30 23:02 ` Marek Vasut
  2020-10-01  3:37 ` Heiko Schocher
@ 2020-10-01  3:47 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Heiko Schocher @ 2020-10-01  3:47 UTC (permalink / raw)
  To: u-boot

Hello Lad,

Am 30.09.2020 um 14:24 schrieb Lad Prabhakar:
> commit 7c8f821e ("i2c: rcar_i2c: Set the slave address from
> rcar_i2c_xfer") blindly called rcar_i2c_set_addr() with read argument
> always set to 1 during xfer which introduced read/write errors, whereas
> earlier rcar_i2c_read_common() called rcar_i2c_set_addr() with read set to
> 1 and rcar_i2c_write_common() called rcar_i2c_set_addr() with read set 0.
> 
> Fixes: 7c8f821e ("i2c: rcar_i2c: Set the slave address from rcar_i2c_xfer")
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> ---
> v2->v3
> * Made sure value of read is ether 0/1 as pointed by Marek
> 
> v1->v2
> * Incorporated suggestion from Heiko
> 
> v1:
>   https://patchwork.ozlabs.org/project/uboot/patch/
>   20200921163353.5540-1-prabhakar.mahadev-lad.rj at bp.renesas.com/
> 
> Without this patch below errors are seen:
>   => i2c probe
> Valid chip addresses: 34 47 68
> => i2c md 0x47 0 100
> Error reading the chip: -110
> => i2c mw 0x47 0x0a 0x06
> Error writing the chip: -110
> =>
> ---
>   drivers/i2c/rcar_i2c.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-i2c master after fixing the commit id length
to 12 digits.

@Tom: I started travis build and if all build fine I think, this
patch should go into 2020.10 (Late I know....) is this okay for you?

bye,
Heiko
> 
> diff --git a/drivers/i2c/rcar_i2c.c b/drivers/i2c/rcar_i2c.c
> index 4267bbfa5a..663c342cd8 100644
> --- a/drivers/i2c/rcar_i2c.c
> +++ b/drivers/i2c/rcar_i2c.c
> @@ -211,7 +211,7 @@ static int rcar_i2c_xfer(struct udevice *dev, struct i2c_msg *msg, int nmsgs)
>   	int ret;
>   
>   	for (; nmsgs > 0; nmsgs--, msg++) {
> -		ret = rcar_i2c_set_addr(dev, msg->addr, 1);
> +		ret = rcar_i2c_set_addr(dev, msg->addr, !!(msg->flags & I2C_M_RD));
>   		if (ret)
>   			return ret;
>   
> 

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52   Fax: +49-8142-66989-80   Email: hs at denx.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-10-01  3:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-30 12:24 [PATCH v3] i2c: rcar_i2c: Fix i2c read/write errors Lad Prabhakar
2020-09-30 23:02 ` Marek Vasut
2020-10-01  3:37 ` Heiko Schocher
2020-10-01  3:47 ` Heiko Schocher

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.