All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP
@ 2017-11-15 14:32 Wolfram Sang
  2017-11-17 10:05 ` jacopo mondi
  2017-11-27 17:57 ` Wolfram Sang
  0 siblings, 2 replies; 3+ messages in thread
From: Wolfram Sang @ 2017-11-15 14:32 UTC (permalink / raw)
  To: linux-i2c
  Cc: linux-renesas-soc, Yoshihiro Shimoda, Jacopo Mondi, Wolfram Sang

The datasheet was a bit vague, but after consultation with HW designers,
we came to the conclusion that we should set the SCP bit always when
dealing only with the ICE bit. A set SCP bit is ignored, and thus fine,
a cleared one may trigger STOP on the bus.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---

Jacopo: another to test, please. On top of all the other patches. Thank you!

 drivers/i2c/busses/i2c-sh_mobile.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c
index 9012d5f8fb38b8..c2841a4f5807c0 100644
--- a/drivers/i2c/busses/i2c-sh_mobile.c
+++ b/drivers/i2c/busses/i2c-sh_mobile.c
@@ -604,10 +604,10 @@ static int start_ch(struct sh_mobile_i2c_data *pd, struct i2c_msg *usr_msg,
 
 	if (do_init) {
 		/* Initialize channel registers */
-		iic_wr(pd, ICCR, 0);
+		iic_wr(pd, ICCR, ICCR_SCP);
 
 		/* Enable channel and configure rx ack */
-		iic_wr(pd, ICCR, ICCR_ICE);
+		iic_wr(pd, ICCR, ICCR_ICE | ICCR_SCP);
 
 		/* Set the clock */
 		iic_wr(pd, ICCL, pd->iccl & 0xff);
@@ -723,7 +723,7 @@ static int sh_mobile_i2c_xfer(struct i2c_adapter *adapter,
 	}
 
 	/* Disable channel */
-	iic_wr(pd, ICCR, 0);
+	iic_wr(pd, ICCR, ICCR_SCP);
 
 	/* Disable clock and mark device as idle */
 	pm_runtime_put_sync(pd->dev);
-- 
2.11.0

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

* Re: [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP
  2017-11-15 14:32 [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP Wolfram Sang
@ 2017-11-17 10:05 ` jacopo mondi
  2017-11-27 17:57 ` Wolfram Sang
  1 sibling, 0 replies; 3+ messages in thread
From: jacopo mondi @ 2017-11-17 10:05 UTC (permalink / raw)
  To: Wolfram Sang; +Cc: linux-i2c, linux-renesas-soc, Yoshihiro Shimoda

Hi Wolfram,

On Wed, Nov 15, 2017 at 03:32:21PM +0100, Wolfram Sang wrote:
> The datasheet was a bit vague, but after consultation with HW designers,
> we came to the conclusion that we should set the SCP bit always when
> dealing only with the ICE bit. A set SCP bit is ignored, and thus fine,
> a cleared one may trigger STOP on the bus.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
>
> Jacopo: another to test, please. On top of all the other patches. Thank you!

and for this one as well, on Migo-R no visible regressions. I2c sensor
probes properly, and I can capture images.

Tested-by: Jacopo Mondi <jacopo+renesas@jmondi.org>

Thanks
  j

>
>  drivers/i2c/busses/i2c-sh_mobile.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c
> index 9012d5f8fb38b8..c2841a4f5807c0 100644
> --- a/drivers/i2c/busses/i2c-sh_mobile.c
> +++ b/drivers/i2c/busses/i2c-sh_mobile.c
> @@ -604,10 +604,10 @@ static int start_ch(struct sh_mobile_i2c_data *pd, struct i2c_msg *usr_msg,
>
>  	if (do_init) {
>  		/* Initialize channel registers */
> -		iic_wr(pd, ICCR, 0);
> +		iic_wr(pd, ICCR, ICCR_SCP);
>
>  		/* Enable channel and configure rx ack */
> -		iic_wr(pd, ICCR, ICCR_ICE);
> +		iic_wr(pd, ICCR, ICCR_ICE | ICCR_SCP);
>
>  		/* Set the clock */
>  		iic_wr(pd, ICCL, pd->iccl & 0xff);
> @@ -723,7 +723,7 @@ static int sh_mobile_i2c_xfer(struct i2c_adapter *adapter,
>  	}
>
>  	/* Disable channel */
> -	iic_wr(pd, ICCR, 0);
> +	iic_wr(pd, ICCR, ICCR_SCP);
>
>  	/* Disable clock and mark device as idle */
>  	pm_runtime_put_sync(pd->dev);
> --
> 2.11.0
>

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

* Re: [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP
  2017-11-15 14:32 [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP Wolfram Sang
  2017-11-17 10:05 ` jacopo mondi
@ 2017-11-27 17:57 ` Wolfram Sang
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2017-11-27 17:57 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: linux-i2c, linux-renesas-soc, Yoshihiro Shimoda, Jacopo Mondi

[-- Attachment #1: Type: text/plain, Size: 436 bytes --]

On Wed, Nov 15, 2017 at 03:32:21PM +0100, Wolfram Sang wrote:
> The datasheet was a bit vague, but after consultation with HW designers,
> we came to the conclusion that we should set the SCP bit always when
> dealing only with the ICE bit. A set SCP bit is ignored, and thus fine,
> a cleared one may trigger STOP on the bus.
> 
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2017-11-27 17:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-15 14:32 [PATCH RFT] i2c: sh_mobile: make sure to not accidently trigger STOP Wolfram Sang
2017-11-17 10:05 ` jacopo mondi
2017-11-27 17:57 ` Wolfram Sang

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.