From: "Madhusudhan" <madhu.cr@ti.com>
To: 'Adrian Hunter' <adrian.hunter@nokia.com>,
'Tony Lindgren' <tony@atomide.com>
Cc: 'Paul Walmsley' <paul@pwsan.com>,
'linux-omap Mailing List' <linux-omap@vger.kernel.org>,
'linux-mmc Mailing List' <linux-mmc@vger.kernel.org>,
'Andrew Morton' <akpm@linux-foundation.org>
Subject: RE: [PATCH V2 0/10] omap_hsmmc changes V2
Date: Thu, 21 Jan 2010 11:29:52 -0600 [thread overview]
Message-ID: <004b01ca9abf$57088e50$544ff780@am.dhcp.ti.com> (raw)
In-Reply-To: <20100117013250.17308.17861.sendpatchset@ahunter-work.research.nokia.com>
> -----Original Message-----
> From: Adrian Hunter [mailto:adrian.hunter@nokia.com]
> Sent: Saturday, January 16, 2010 7:33 PM
> To: Tony Lindgren
> Cc: Adrian Hunter; Madhusudhan Chikkature; Paul Walmsley; linux-omap
> Mailing List; linux-mmc Mailing List; Andrew Morton
> Subject: [PATCH V2 0/10] omap_hsmmc changes V2
>
> Hi
>
> Here are some changes we need for omap_hsmmc. They are dependent on OMAP
> board files so it would be simplest if the patches all went via the OMAP
> tree.
>
> This is version 2 of this patch set. Thank you Tony, Paul and Madhu for
> your comments.
>
> Changes from version 1:
> - amended patch 'omap_hsmmc: Move gpio and regulator control from
> board file' so that system control functions remain in the board
> file
> - for clarity, split patch 'omap: Rename mmc-twl4030 to hsmmc' into
> 'omap: Rename mmc-twl4030 files to hsmmc' and
> 'omap: Rename hsmmc symbols to reflect independence from twl4030'
> - removed patch 'omap_hsmmc: set DVFS/PM constraints'
> - added patch 'omap: Add functions for dynamic remuxing of pins'
> - renamed and reworked patch 'omap: RX51: Remux to pull eMMC lines
> down when powering off' (was 'omap_hsmmc: RX51: set padconfs to pull
> down when powering off eMMC')
> - added patch 'omap_hsmmc: Ensure regulator enable / disable are
> paired'
> - fixed mistakes in patch 'omap_hsmmc: Allow for a shared VccQ'
>
Reviewed the omap_hsmmc changes and did a sanity test on Zoom2.
Acked-by: Madhusudhan Chikkature <madhu.cr@ti.com>
Regards,
Madhu
>
> Adrian Hunter (9):
> omap_hsmmc: Move gpio and regulator control from board file
> omap: Rename mmc-twl4030 files to hsmmc
> omap: Rename hsmmc symbols to reflect independence from twl4030
> omap: Reconnect hsmmc context loss count
> omap: RX51: Remux to pull eMMC lines down when powering off
> omap_hsmmc: Allow for power saving without going off
> omap_hsmmc: Fix disable timeouts
> omap_hsmmc: Ensure regulator enable / disable are paired
> omap_hsmmc: Allow for a shared VccQ
>
> Tony Lindgren (1):
> omap: Add functions for dynamic remuxing of pins
>
> arch/arm/configs/rx51_defconfig | 4 +-
> arch/arm/mach-omap2/Makefile | 28 +-
> arch/arm/mach-omap2/board-2430sdp.c | 6 +-
> arch/arm/mach-omap2/board-3430sdp.c | 6 +-
> arch/arm/mach-omap2/board-cm-t35.c | 6 +-
> arch/arm/mach-omap2/board-igep0020.c | 6 +-
> arch/arm/mach-omap2/board-ldp.c | 6 +-
> arch/arm/mach-omap2/board-omap3beagle.c | 6 +-
> arch/arm/mach-omap2/board-omap3evm.c | 6 +-
> arch/arm/mach-omap2/board-omap3pandora.c | 6 +-
> arch/arm/mach-omap2/board-omap3touchbook.c | 6 +-
> arch/arm/mach-omap2/board-overo.c | 6 +-
> arch/arm/mach-omap2/board-rx51-peripherals.c | 63 +++-
> arch/arm/mach-omap2/board-zoom-peripherals.c | 6 +-
> arch/arm/mach-omap2/hsmmc.c | 261 ++++++++++++
> arch/arm/mach-omap2/{mmc-twl4030.h => hsmmc.h} | 14 +-
> arch/arm/mach-omap2/mmc-twl4030.c | 537 -------------------
> -----
> arch/arm/mach-omap2/mux.c | 22 +-
> arch/arm/mach-omap2/mux.h | 24 +
> arch/arm/plat-omap/include/plat/mmc.h | 35 ++-
> drivers/mmc/host/omap_hsmmc.c | 375 ++++++++++++++++-
> 21 files changed, 788 insertions(+), 641 deletions(-)
> create mode 100644 arch/arm/mach-omap2/hsmmc.c
> rename arch/arm/mach-omap2/{mmc-twl4030.h => hsmmc.h} (63%)
> delete mode 100644 arch/arm/mach-omap2/mmc-twl4030.c
>
>
>
> Regards
> Adrian
next prev parent reply other threads:[~2010-01-21 17:29 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-17 1:32 [PATCH V2 0/10] omap_hsmmc changes V2 Adrian Hunter
2010-01-17 1:32 ` [PATCH V2 1/10] omap_hsmmc: Move gpio and regulator control from board file Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 2/10] omap: Rename mmc-twl4030 files to hsmmc Adrian Hunter
2010-01-20 23:41 ` Madhusudhan
2010-01-20 23:48 ` Madhusudhan
2010-01-21 9:07 ` Adrian Hunter
2010-01-21 17:23 ` Madhusudhan
2010-01-17 1:33 ` [PATCH V2 3/10] omap: Rename hsmmc symbols to reflect independence from twl4030 Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 4/10] omap: Reconnect hsmmc context loss count Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 5/10] omap: Add functions for dynamic remuxing of pins Adrian Hunter
2010-01-20 1:21 ` Tony Lindgren
2010-01-20 8:05 ` Adrian Hunter
2010-01-22 17:17 ` Tony Lindgren
2010-01-17 1:33 ` [PATCH V2 6/10] omap: RX51: Remux to pull eMMC lines down when powering off Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 7/10] omap_hsmmc: Allow for power saving without going off Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 8/10] omap_hsmmc: Fix disable timeouts Adrian Hunter
2010-01-17 1:33 ` [PATCH V2 9/10] omap_hsmmc: Ensure regulator enable / disable are paired Adrian Hunter
2010-01-17 1:34 ` [PATCH V2 10/10] omap_hsmmc: Allow for a shared VccQ Adrian Hunter
2010-01-21 17:29 ` Madhusudhan [this message]
2010-01-22 8:41 ` [PATCH V2 0/10] omap_hsmmc changes V2 Adrian Hunter
[not found] <1264149200.1920.11.camel@Nokia-N900-51-1>
2010-01-22 17:14 ` Tony Lindgren
2010-02-02 3:12 ` Tony Lindgren
2010-02-02 9:22 ` Adrian Hunter
2010-02-03 2:17 ` Tony Lindgren
-- strict thread matches above, loose matches on Subject: below --
2010-01-17 1:28 Adrian Hunter
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='004b01ca9abf$57088e50$544ff780@am.dhcp.ti.com' \
--to=madhu.cr@ti.com \
--cc=adrian.hunter@nokia.com \
--cc=akpm@linux-foundation.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.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