All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shubhrajyoti <shubhrajyoti@ti.com>
To: "Hebbar, Gururaja" <gururaja.hebbar@ti.com>
Cc: "linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	"Hilman, Kevin" <khilman@ti.com>,
	"linux-i2c@vger.kernel.org" <linux-i2c@vger.kernel.org>,
	Ben Dooks <ben-linux@fluff.org>,
	"khali@linux-fr.org" <khali@linux-fr.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 00/10] I2C updates
Date: Tue, 14 Feb 2012 14:41:32 +0530	[thread overview]
Message-ID: <4F3A2544.2000407@ti.com> (raw)
In-Reply-To: <1BAFE6F6C881BF42822005164F1491C3317B26A0@DBDE01.ent.ti.com>

On Tuesday 14 February 2012 11:42 AM, Hebbar, Gururaja wrote:
> Hi,
>
> I am interested in testing these patches on AM335x.

Thanks for your interest in testin.
>  Do you have a tree with these
> patches applied so that I can pull.

tree        : git://gitorious.org/linus-tree/linus-tree.git
branch    : i2c_misc_fixes

let me know if that works for you
> On Fri, Feb 10, 2012 at 19:29:55, Datta, Shubhrajyoti wrote:
>> This patch series colates the various i2c updates into
>> a series.  Since it is collection of various patches
>> the version info is not retained, however most of them undergone
>> multiple versions.
>>
>> This is rebased to linus head commit 63082402968f4b73f10b28a8ac1f3da821aeb82d
>>
>> The patch series does the following 
>>
>> - Warn fixes if CONFIG_PM_RUNTIME is not selected.
>> - I2C register restore only if context if the context is lost
>> - Bus busy recovery mechanism.
>> - the reset is not done in init.
>>
>> Tested on omap4sdp and omap3sdp. 
>>
>>
>> Cc: Kevin Hilman <khilman@ti.com>
>> Cc: Ben Dooks <ben-linux@fluff.org>
>>
>> Jon Hunter (1):
>>   I2C: OMAP: Correct I2C revision for OMAP3
>>
>> Shubhrajyoti D (8):
>>   I2C : OMAP : make omap_i2c_unidle/idle functions depend on
>>     CONFIG_PM_RUNTIME
>>   OMAP : I2C : Remove reset at init
>>   OMAP: I2C: I2C register restore only if context is lost
>>   OMAP: I2C: Fix the interrupt clearing in OMAP4
>>   OMAP: I2C: Fix the mismatch of pm_runtime enable and disable
>>   OMAP: I2C: Optimise the remove code
>>   OMAP: I2C: Fix the error handling
>>   I2C: OMAP: Don't check if wait_for_completion_timeout() returns less
>>     than zero
>>
>> Vikram Pandita (1):
>>   I2C: OMAP: Recover from Bus Busy condition
>>
>>  drivers/i2c/busses/i2c-omap.c |  173 ++++++++++++++++++++++++-----------------
>>  1 files changed, 101 insertions(+), 72 deletions(-)
>
>
> Regards, 
> Gururaja


WARNING: multiple messages have this Message-ID (diff)
From: shubhrajyoti@ti.com (Shubhrajyoti)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/10] I2C updates
Date: Tue, 14 Feb 2012 14:41:32 +0530	[thread overview]
Message-ID: <4F3A2544.2000407@ti.com> (raw)
In-Reply-To: <1BAFE6F6C881BF42822005164F1491C3317B26A0@DBDE01.ent.ti.com>

On Tuesday 14 February 2012 11:42 AM, Hebbar, Gururaja wrote:
> Hi,
>
> I am interested in testing these patches on AM335x.

Thanks for your interest in testin.
>  Do you have a tree with these
> patches applied so that I can pull.

tree        : git://gitorious.org/linus-tree/linus-tree.git
branch    : i2c_misc_fixes

let me know if that works for you
> On Fri, Feb 10, 2012 at 19:29:55, Datta, Shubhrajyoti wrote:
>> This patch series colates the various i2c updates into
>> a series.  Since it is collection of various patches
>> the version info is not retained, however most of them undergone
>> multiple versions.
>>
>> This is rebased to linus head commit 63082402968f4b73f10b28a8ac1f3da821aeb82d
>>
>> The patch series does the following 
>>
>> - Warn fixes if CONFIG_PM_RUNTIME is not selected.
>> - I2C register restore only if context if the context is lost
>> - Bus busy recovery mechanism.
>> - the reset is not done in init.
>>
>> Tested on omap4sdp and omap3sdp. 
>>
>>
>> Cc: Kevin Hilman <khilman@ti.com>
>> Cc: Ben Dooks <ben-linux@fluff.org>
>>
>> Jon Hunter (1):
>>   I2C: OMAP: Correct I2C revision for OMAP3
>>
>> Shubhrajyoti D (8):
>>   I2C : OMAP : make omap_i2c_unidle/idle functions depend on
>>     CONFIG_PM_RUNTIME
>>   OMAP : I2C : Remove reset at init
>>   OMAP: I2C: I2C register restore only if context is lost
>>   OMAP: I2C: Fix the interrupt clearing in OMAP4
>>   OMAP: I2C: Fix the mismatch of pm_runtime enable and disable
>>   OMAP: I2C: Optimise the remove code
>>   OMAP: I2C: Fix the error handling
>>   I2C: OMAP: Don't check if wait_for_completion_timeout() returns less
>>     than zero
>>
>> Vikram Pandita (1):
>>   I2C: OMAP: Recover from Bus Busy condition
>>
>>  drivers/i2c/busses/i2c-omap.c |  173 ++++++++++++++++++++++++-----------------
>>  1 files changed, 101 insertions(+), 72 deletions(-)
>
>
> Regards, 
> Gururaja

  reply	other threads:[~2012-02-14  9:11 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-10 13:59 [PATCH 00/10] I2C updates Shubhrajyoti D
2012-02-10 13:59 ` Shubhrajyoti D
2012-02-10 13:59 ` [PATCH 01/10] I2C : OMAP : make omap_i2c_unidle/idle functions depend on CONFIG_PM_RUNTIME Shubhrajyoti D
2012-02-10 13:59   ` Shubhrajyoti D
2012-02-10 13:59 ` [PATCH 02/10] OMAP : I2C : Remove reset at init Shubhrajyoti D
2012-02-10 13:59   ` Shubhrajyoti D
     [not found] ` <1328882405-15284-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2012-02-10 13:59   ` [PATCH 03/10] I2C: OMAP: Recover from Bus Busy condition Shubhrajyoti D
2012-02-10 13:59     ` Shubhrajyoti D
2012-02-10 13:59   ` [PATCH 04/10] OMAP: I2C: I2C register restore only if context is lost Shubhrajyoti D
2012-02-10 13:59     ` Shubhrajyoti D
2012-02-10 14:00   ` [PATCH 05/10] OMAP: I2C: Fix the interrupt clearing in OMAP4 Shubhrajyoti D
2012-02-10 14:00     ` Shubhrajyoti D
2012-02-10 14:00   ` [PATCH 08/10] OMAP: I2C: Fix the error handling Shubhrajyoti D
2012-02-10 14:00     ` Shubhrajyoti D
2012-02-24  9:30   ` [PATCH 00/10] I2C updates Shubhrajyoti
2012-02-24  9:30     ` Shubhrajyoti
2012-02-10 14:00 ` [PATCH 06/10] OMAP: I2C: Fix the mismatch of pm_runtime enable and disable Shubhrajyoti D
2012-02-10 14:00   ` Shubhrajyoti D
2012-02-10 14:00 ` [PATCH 07/10] OMAP: I2C: add devexit to the remove code Shubhrajyoti D
2012-02-10 14:00   ` Shubhrajyoti D
2012-02-10 14:00 ` [PATCH 09/10] I2C: OMAP: Correct I2C revision for OMAP3 Shubhrajyoti D
2012-02-10 14:00   ` Shubhrajyoti D
2012-02-10 14:00 ` [PATCH 10/10] I2C: OMAP: Don't check if wait_for_completion_timeout() returns less than zero Shubhrajyoti D
2012-02-10 14:00   ` Shubhrajyoti D
2012-02-14  6:12 ` [PATCH 00/10] I2C updates Hebbar, Gururaja
2012-02-14  6:12   ` Hebbar, Gururaja
2012-02-14  9:11   ` Shubhrajyoti [this message]
2012-02-14  9:11     ` Shubhrajyoti
2012-02-24  9:31 ` Shubhrajyoti
2012-02-24  9:31   ` Shubhrajyoti

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=4F3A2544.2000407@ti.com \
    --to=shubhrajyoti@ti.com \
    --cc=ben-linux@fluff.org \
    --cc=gururaja.hebbar@ti.com \
    --cc=khali@linux-fr.org \
    --cc=khilman@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-omap@vger.kernel.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 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.