From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrian Hunter Subject: Re: [PATCH V2 0/10] omap_hsmmc changes V2 Date: Fri, 22 Jan 2010 10:41:29 +0200 Message-ID: <4B5964B9.1030509@nokia.com> References: <20100117013250.17308.17861.sendpatchset@ahunter-work.research.nokia.com> <004b01ca9abf$57088e50$544ff780@am.dhcp.ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from smtp.nokia.com ([192.100.105.134]:26068 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750742Ab0AVIlu (ORCPT ); Fri, 22 Jan 2010 03:41:50 -0500 In-Reply-To: <004b01ca9abf$57088e50$544ff780@am.dhcp.ti.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Madhusudhan Cc: 'Tony Lindgren' , 'Paul Walmsley' , 'linux-omap Mailing List' , 'linux-mmc Mailing List' , 'Andrew Morton' Madhusudhan wrote: > >> -----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 > > Regards, > Madhu Thanks Madhu. Tony, are you ok taking these patches into your tree? >> 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 > > >