All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jisheng Zhang <jszhang@marvell.com>
To: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Cc: wsa@the-dreams.de, linux-kernel@vger.kernel.org,
	linux-i2c@vger.kernel.org, andriy.shevchenko@linux.intel.com,
	mika.westerberg@linux.intel.com,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] i2c: designware: Don't mask TX_EMPTY if write is in progress
Date: Mon, 2 Nov 2015 11:33:47 +0800	[thread overview]
Message-ID: <20151102113347.34d20434@xhacker> (raw)
In-Reply-To: <56335CA9.7080105@linux.intel.com>

Dear Jarkko,

On Fri, 30 Oct 2015 14:03:53 +0200
Jarkko Nikula wrote:

> Hi
> 
> On 10/30/2015 09:37 AM, Jisheng Zhang wrote:
> > Currently when i2c_msg index search is completed, TX_EMPTY interrupt
> > will be masked. But if the size of i2c_msg data is longer than the size
> > of the tx buffer, we still need TX_EMPTY interrupt, otherwise we will
> > get "controller timed out" error.
> >
> > This patch fixes this issue by only masking TX_EMPTY if i2c_msg index
> > search is completed and write is not in progress.
> >
> > Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
> > ---
> >   drivers/i2c/busses/i2c-designware-core.c | 7 ++++---
> >   1 file changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
> > index 7441cdc..a2eb212 100644
> > --- a/drivers/i2c/busses/i2c-designware-core.c
> > +++ b/drivers/i2c/busses/i2c-designware-core.c
> > @@ -542,10 +542,11 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
> >   	}
> >
> >   	/*
> > -	 * If i2c_msg index search is completed, we don't need TX_EMPTY
> > -	 * interrupt any more.
> > +	 * If i2c_msg index search is completed and writing is not in progress,
> > +	 * we don't need TX_EMPTY interrupt any more.
> >   	 */
> > -	if (dev->msg_write_idx == dev->msgs_num)
> > +	if (dev->msg_write_idx == dev->msgs_num &&
> > +			!(dev->status & STATUS_WRITE_IN_PROGRESS))
> >   		intr_mask &= ~DW_IC_INTR_TX_EMPTY;
> >  
> This looks a possible scenario here. What I'm wondering how is the 
> transfer ending and what condition in i2c_dw_isr() causes the complete() 
> call?
> 
> Assuming we break the for loop in i2c_dw_xfer_msg() with buf_len > 0 and 
> dev->msg_write_idx == dev->msgs_num how we get back inside the for loop 
> for writing the remaining bytes and stop command?

This is a good question. After more consideration, I think the following
condition can't exist:

  (msg_write_idx == dev->msgs_num) && (dev->status & STATUS_WRITE_IN_PROGRESS)

so this patch isn't necessary.

Thanks for your review,
Jisheng

WARNING: multiple messages have this Message-ID (diff)
From: jszhang@marvell.com (Jisheng Zhang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] i2c: designware: Don't mask TX_EMPTY if write is in progress
Date: Mon, 2 Nov 2015 11:33:47 +0800	[thread overview]
Message-ID: <20151102113347.34d20434@xhacker> (raw)
In-Reply-To: <56335CA9.7080105@linux.intel.com>

Dear Jarkko,

On Fri, 30 Oct 2015 14:03:53 +0200
Jarkko Nikula wrote:

> Hi
> 
> On 10/30/2015 09:37 AM, Jisheng Zhang wrote:
> > Currently when i2c_msg index search is completed, TX_EMPTY interrupt
> > will be masked. But if the size of i2c_msg data is longer than the size
> > of the tx buffer, we still need TX_EMPTY interrupt, otherwise we will
> > get "controller timed out" error.
> >
> > This patch fixes this issue by only masking TX_EMPTY if i2c_msg index
> > search is completed and write is not in progress.
> >
> > Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
> > ---
> >   drivers/i2c/busses/i2c-designware-core.c | 7 ++++---
> >   1 file changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
> > index 7441cdc..a2eb212 100644
> > --- a/drivers/i2c/busses/i2c-designware-core.c
> > +++ b/drivers/i2c/busses/i2c-designware-core.c
> > @@ -542,10 +542,11 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
> >   	}
> >
> >   	/*
> > -	 * If i2c_msg index search is completed, we don't need TX_EMPTY
> > -	 * interrupt any more.
> > +	 * If i2c_msg index search is completed and writing is not in progress,
> > +	 * we don't need TX_EMPTY interrupt any more.
> >   	 */
> > -	if (dev->msg_write_idx == dev->msgs_num)
> > +	if (dev->msg_write_idx == dev->msgs_num &&
> > +			!(dev->status & STATUS_WRITE_IN_PROGRESS))
> >   		intr_mask &= ~DW_IC_INTR_TX_EMPTY;
> >  
> This looks a possible scenario here. What I'm wondering how is the 
> transfer ending and what condition in i2c_dw_isr() causes the complete() 
> call?
> 
> Assuming we break the for loop in i2c_dw_xfer_msg() with buf_len > 0 and 
> dev->msg_write_idx == dev->msgs_num how we get back inside the for loop 
> for writing the remaining bytes and stop command?

This is a good question. After more consideration, I think the following
condition can't exist:

  (msg_write_idx == dev->msgs_num) && (dev->status & STATUS_WRITE_IN_PROGRESS)

so this patch isn't necessary.

Thanks for your review,
Jisheng

WARNING: multiple messages have this Message-ID (diff)
From: Jisheng Zhang <jszhang@marvell.com>
To: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Cc: <andriy.shevchenko@linux.intel.com>,
	<mika.westerberg@linux.intel.com>, <wsa@the-dreams.de>,
	<linux-i2c@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] i2c: designware: Don't mask TX_EMPTY if write is in progress
Date: Mon, 2 Nov 2015 11:33:47 +0800	[thread overview]
Message-ID: <20151102113347.34d20434@xhacker> (raw)
In-Reply-To: <56335CA9.7080105@linux.intel.com>

Dear Jarkko,

On Fri, 30 Oct 2015 14:03:53 +0200
Jarkko Nikula wrote:

> Hi
> 
> On 10/30/2015 09:37 AM, Jisheng Zhang wrote:
> > Currently when i2c_msg index search is completed, TX_EMPTY interrupt
> > will be masked. But if the size of i2c_msg data is longer than the size
> > of the tx buffer, we still need TX_EMPTY interrupt, otherwise we will
> > get "controller timed out" error.
> >
> > This patch fixes this issue by only masking TX_EMPTY if i2c_msg index
> > search is completed and write is not in progress.
> >
> > Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
> > ---
> >   drivers/i2c/busses/i2c-designware-core.c | 7 ++++---
> >   1 file changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
> > index 7441cdc..a2eb212 100644
> > --- a/drivers/i2c/busses/i2c-designware-core.c
> > +++ b/drivers/i2c/busses/i2c-designware-core.c
> > @@ -542,10 +542,11 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
> >   	}
> >
> >   	/*
> > -	 * If i2c_msg index search is completed, we don't need TX_EMPTY
> > -	 * interrupt any more.
> > +	 * If i2c_msg index search is completed and writing is not in progress,
> > +	 * we don't need TX_EMPTY interrupt any more.
> >   	 */
> > -	if (dev->msg_write_idx == dev->msgs_num)
> > +	if (dev->msg_write_idx == dev->msgs_num &&
> > +			!(dev->status & STATUS_WRITE_IN_PROGRESS))
> >   		intr_mask &= ~DW_IC_INTR_TX_EMPTY;
> >  
> This looks a possible scenario here. What I'm wondering how is the 
> transfer ending and what condition in i2c_dw_isr() causes the complete() 
> call?
> 
> Assuming we break the for loop in i2c_dw_xfer_msg() with buf_len > 0 and 
> dev->msg_write_idx == dev->msgs_num how we get back inside the for loop 
> for writing the remaining bytes and stop command?

This is a good question. After more consideration, I think the following
condition can't exist:

  (msg_write_idx == dev->msgs_num) && (dev->status & STATUS_WRITE_IN_PROGRESS)

so this patch isn't necessary.

Thanks for your review,
Jisheng


  reply	other threads:[~2015-11-02  3:33 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-30  7:37 [PATCH] i2c: designware: Don't mask TX_EMPTY if write is in progress Jisheng Zhang
2015-10-30  7:37 ` Jisheng Zhang
2015-10-30  7:37 ` Jisheng Zhang
2015-10-30 12:03 ` Jarkko Nikula
2015-10-30 12:03   ` Jarkko Nikula
2015-11-02  3:33   ` Jisheng Zhang [this message]
2015-11-02  3:33     ` Jisheng Zhang
2015-11-02  3:33     ` Jisheng Zhang

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=20151102113347.34d20434@xhacker \
    --to=jszhang@marvell.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=jarkko.nikula@linux.intel.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mika.westerberg@linux.intel.com \
    --cc=wsa@the-dreams.de \
    /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 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.