linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Wang, Jiada" <jiada_wang@mentor.com>
To: Dmitry Osipenko <digetx@gmail.com>, <nick@shmanahar.org>,
	<dmitry.torokhov@gmail.com>
Cc: <linux-input@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<erosca@de.adit-jv.com>, <Andrew_Gabbasov@mentor.com>
Subject: Re: [PATCH 1/1] Input: atmel_mxt_ts - implement I2C retries
Date: Thu, 3 Sep 2020 23:44:21 +0900	[thread overview]
Message-ID: <2c8ed5c8-f95b-dce4-f964-ac16f12c3f20@mentor.com> (raw)
In-Reply-To: <64c77ff9-6d20-abcf-f549-7d5c85fba28d@gmail.com>

Hi Dmitry

On 2020/08/28 17:19, Dmitry Osipenko wrote:
> 21.08.2020 11:22, Jiada Wang пишет:
>> From: Nick Dyer <nick.dyer@itdev.co.uk>
>>
>> Some maXTouch chips (eg mXT1386) will not respond on the first I2C request
>> when they are in a sleep state. It must be retried after a delay for the
>> chip to wake up.
>>
>> Signed-off-by: Nick Dyer <nick.dyer@itdev.co.uk>
>> Acked-by: Yufeng Shen <miletus@chromium.org>
>> (cherry picked from ndyer/linux/for-upstream commit 63fd7a2cd03c3a572a5db39c52f4856819e1835d)
>> [gdavis: Forward port and fix conflicts.]
>> Signed-off-by: George G. Davis <george_davis@mentor.com>
>> Signed-off-by: Jiada Wang <jiada_wang@mentor.com>
>> ---
>>   drivers/input/touchscreen/atmel_mxt_ts.c | 45 ++++++++++++++++--------
>>   1 file changed, 30 insertions(+), 15 deletions(-)
> 
> Hello, Jiada!
> 
> I tested this patch on Acer A500 that has mXT1386 controller which
> requires the I2C retrying and everything working good, no problems
> spotted! Touchscreen doesn't work without this patch!
> 
> Tested-by: Dmitry Osipenko <digetx@gmail.com>
> 
> I have one minor comment, please see it below!
> 
>> diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
>> index a2189739e30f..e93eda1f3d59 100644
>> --- a/drivers/input/touchscreen/atmel_mxt_ts.c
>> +++ b/drivers/input/touchscreen/atmel_mxt_ts.c
>> @@ -196,6 +196,7 @@ enum t100_type {
>>   #define MXT_CRC_TIMEOUT		1000	/* msec */
>>   #define MXT_FW_RESET_TIME	3000	/* msec */
>>   #define MXT_FW_CHG_TIMEOUT	300	/* msec */
>> +#define MXT_WAKEUP_TIME		25	/* msec */
>>   
>>   /* Command to unlock bootloader */
>>   #define MXT_UNLOCK_CMD_MSB	0xaa
>> @@ -626,6 +627,7 @@ static int __mxt_read_reg(struct i2c_client *client,
>>   	struct i2c_msg xfer[2];
>>   	u8 buf[2];
>>   	int ret;
>> +	bool retry = false;
>>   
>>   	buf[0] = reg & 0xff;
>>   	buf[1] = (reg >> 8) & 0xff;
>> @@ -642,17 +644,22 @@ static int __mxt_read_reg(struct i2c_client *client,
>>   	xfer[1].len = len;
>>   	xfer[1].buf = val;
>>   
>> -	ret = i2c_transfer(client->adapter, xfer, 2);
>> -	if (ret == 2) {
>> -		ret = 0;
>> -	} else {
>> -		if (ret >= 0)
>> -			ret = -EIO;
>> -		dev_err(&client->dev, "%s: i2c transfer failed (%d)\n",
>> -			__func__, ret);
>> +retry_read:
>> +	ret = i2c_transfer(client->adapter, xfer, ARRAY_SIZE(xfer));
>> +	if (ret != ARRAY_SIZE(xfer)) {
> 
> Is it really possible to get a positive ret != 2 from i2c_transfer()?
> 
> Maybe it's better to keep the old code behaviour by returning the "ret"
> value directly if it's not equal to ARRAY_SIZE(xfer)?
> 
I think, theoretically i2c_transfer() may return positive value but != 
number to transfer,
original behavior is,
when ret >= 0, it returns -EIO, when ret < 0, it just returns ret,

current behavior is, when ret != 2, it returns -EIO, after retry.

I am OK to change the behavior exactly as same original one.

Thanks,
Jiada

  reply	other threads:[~2020-09-03 14:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-21  8:22 [PATCH 1/1] Input: atmel_mxt_ts - implement I2C retries Jiada Wang
2020-08-28  8:19 ` Dmitry Osipenko
2020-09-03 14:44   ` Wang, Jiada [this message]
2020-09-03 15:06     ` Dmitry Osipenko

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=2c8ed5c8-f95b-dce4-f964-ac16f12c3f20@mentor.com \
    --to=jiada_wang@mentor.com \
    --cc=Andrew_Gabbasov@mentor.com \
    --cc=digetx@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=erosca@de.adit-jv.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nick@shmanahar.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;
as well as URLs for NNTP newsgroup(s).