linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "DebBarma, Tarun Kanti" <tarun.kanti@ti.com>
To: "Shilimkar, Santosh" <santosh.shilimkar@ti.com>
Cc: linux-omap@vger.kernel.org, khilman@ti.com, tony@atomide.com,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v9 00/31] gpio/omap: driver cleanup and fixes
Date: Fri, 16 Dec 2011 13:54:00 +0530	[thread overview]
Message-ID: <CAC83ZvLYea_8u2erdKaBe+mA3unLSWuga6cdeqUvimpppT3xcA@mail.gmail.com> (raw)
In-Reply-To: <CAMQu2gyZtuW3HLbWH5wH-YjB4SpLD9tz5kpVdRHi2j9RsXLA2w@mail.gmail.com>

On Fri, Dec 16, 2011 at 12:58 PM, Shilimkar, Santosh
<santosh.shilimkar@ti.com> wrote:
> Tarun,
>
> On Wed, Dec 14, 2011 at 1:50 AM, Tarun Kanti DebBarma
> <tarun.kanti@ti.com> wrote:
>> This series is continuation of cleanup of OMAP GPIO driver and fixes.
>> The cleanup include getting rid of cpu_is_* checks wherever possible,
>> use of gpio_bank list instead of static array, use of unique platform
>> specific value associated data member to OMAP platforms to avoid
>> cpu_is_* checks. The series also include PM runtime support.
>>
>> Baseline: git://github.com/khilman/linux-omap-pm.git
>> Branch: for_3.3/gpio-base
>>
>> Baseline: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
>> Branch: master
>> Commit: b835c0f
>>
>> Power Tests
>> a) OMAP3430SDP
>> - Modify board-3430sdp.c file to have multiple GPIO modules active
>>  with debounce timeout enabled.
>> - Enable CPU-Idle
>> - Enable UART timeouts
>> - Enable offmode
>> - echo mem > /sys/power/state
>> - Verify retention and offmode count increment
>>
>> b) ZOOM3
>> - Enable CPU-Idle
>> - Enable UART timeout
>> - echo mem > /sys/power/state
>> - Wakeup system using serial keyboard
>> - Verify retention count increment
>>
>> Functional Tests
>> - Done on OMAP2430, OMAP3430SDP, ZOOM3, OMAP4430
>>
>> Bootup Test
>> - Done on OMAP1710
>>
>> v9:
>> - Summary of Comments/Issues fixed
>>  * GPIO wakeup does not work
>>  * Call debounce clock enable/disable functions from PM runtime callbacks.
>>    This will avoid calling the functions from multiple places.
>>  * Modify description of following patch to match latest changes.
>>    gpio/omap: save and restore debounce registers
>>  * Use (bank->regs->set_dataout && bank->regs->clr_dataout) together instead
>>    of using only one of them.
>>  * Remove cpu_is_omapxxxx() checks from set_gpio_trigger().
>>  * _gpio_dbck_enable() in runtime callback triggered from omap_gpio_request
>>    does not enable dbck because dbck_enable_mask is not set at this point.
>>  * Workaround associated with an errata got missed in v8. This has been
>>      included.
>>
> As reported by Kevin ( off-the list), only 25 patches out of 31
> reached to the list.
> The rest 8, for some reason didn't reached to the list.
>
> Also since you have added few additional bug fixes in this series on top of
> the v8, the v9 becomes slightly different.
>
> So here is what I suggest.
> 1. Repost your v9 only with those 25 reworked patches.
Ok.

> 2. Create a separate series for additional bug fixes which will apply on top
> of 1)
Sure.

>
> That way it's easier to line up the patches since the 25 ones have gone though
> few review cycles where as the new 8 has only gone through the internal review.
Yes, I will re-base on the mainline latest, test and re-post.
--
Tarun
>
> Regards
> Santosh
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2011-12-16  8:24 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-13 20:20 [PATCH v9 00/31] gpio/omap: driver cleanup and fixes Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 01/31] gpio/omap: remove dependency on gpio_bank_count Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 02/31] gpio/omap: use flag to identify wakeup domain Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 03/31] gpio/omap: make gpio_context part of gpio_bank structure Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 04/31] gpio/omap: handle save/restore context in GPIO driver Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 05/31] gpio/omap: make non-wakeup GPIO part of pdata Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 06/31] gpio/omap: avoid cpu checks during module ena/disable Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 07/31] gpio/omap: further cleanup using wkup_en register Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 08/31] gpio/omap: use level/edge detect reg offsets Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 09/31] gpio/omap: remove hardcoded offsets in context save/restore Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 10/31] gpio/omap: cleanup set_gpio_triggering function Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 11/31] gpio/omap: cleanup omap_gpio_mod_init function Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 12/31] gpio/omap: use pinctrl offset instead of macro Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 13/31] gpio/omap: remove unnecessary bit-masking for read access Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 14/31] gpio/omap: remove bank->method & METHOD_* macros Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 15/31] gpio/omap: fix bankwidth for OMAP7xx MPUIO Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 16/31] gpio/omap: use pm-runtime framework Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 17/31] gpio/omap: optimize suspend and resume functions Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 18/31] gpio/omap: cleanup prepare_for_idle and resume_after_idle Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 19/31] gpio/omap: fix debounce clock handling Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 20/31] gpio/omap: fix incorrect access of debounce module Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 21/31] gpio/omap: remove omap_gpio_save_context overhead Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 22/31] gpio/omap: save and restore debounce registers Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 23/31] gpio/omap: enable irq at the end of all configuration in restore Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 24/31] gpio/omap: restore OE only after setting the output level Tarun Kanti DebBarma
2011-12-13 20:20 ` [PATCH v9 25/31] gpio/omap: handle set_dataout reg capable IP on restore Tarun Kanti DebBarma
2011-12-16  7:28 ` [PATCH v9 00/31] gpio/omap: driver cleanup and fixes Shilimkar, Santosh
2011-12-16  8:24   ` DebBarma, Tarun Kanti [this message]

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=CAC83ZvLYea_8u2erdKaBe+mA3unLSWuga6cdeqUvimpppT3xcA@mail.gmail.com \
    --to=tarun.kanti@ti.com \
    --cc=khilman@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=santosh.shilimkar@ti.com \
    --cc=tony@atomide.com \
    /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).