public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@nokia.com>
To: Tony Lindgren <tony@atomide.com>
Cc: linux-mmc Mailing List <linux-mmc@vger.kernel.org>,
	Adrian Hunter <adrian.hunter@nokia.com>,
	linux-omap Mailing List <linux-omap@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Madhusudhan Chikkature <madhu.cr@ti.com>
Subject: [PATCH 0/8] omap_hsmmc changes
Date: Wed, 13 Jan 2010 13:40:10 +0200	[thread overview]
Message-ID: <20100113114010.7615.84920.sendpatchset@ahunter-work.research.nokia.com> (raw)

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.

Adrian Hunter (7):
      omap_hsmmc: move gpio and regulator control from board file
      OMAP: rename mmc-twl4030 to hsmmc
      OMAP: reconnect hsmmc context loss count
      omap_hsmmc: RX51: set padconfs to pull down when powering off eMMC
      omap_hsmmc: allow for power saving without going off
      omap_hsmmc: fix disable timeouts
      omap_hsmmc: allow for a shared VccQ

Denis Karpov (1):
      omap_hsmmc: set DVFS/PM constraints

 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   |   65 +++-
 arch/arm/mach-omap2/board-zoom-peripherals.c   |    4 +-
 arch/arm/mach-omap2/control.c                  |    2 +
 arch/arm/mach-omap2/hsmmc.c                    |  145 +++++++
 arch/arm/mach-omap2/{mmc-twl4030.h => hsmmc.h} |   16 +-
 arch/arm/mach-omap2/mmc-twl4030.c              |  537 ------------------------
 arch/arm/plat-omap/include/plat/control.h      |    6 +
 arch/arm/plat-omap/include/plat/mmc.h          |   12 +-
 drivers/mmc/host/omap_hsmmc.c                  |  456 +++++++++++++++++++-
 21 files changed, 716 insertions(+), 619 deletions(-)
 create mode 100644 arch/arm/mach-omap2/hsmmc.c
 rename arch/arm/mach-omap2/{mmc-twl4030.h => hsmmc.h} (58%)
 delete mode 100644 arch/arm/mach-omap2/mmc-twl4030.c
 
Regards
Adrian


             reply	other threads:[~2010-01-13 11:40 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-13 11:40 Adrian Hunter [this message]
2010-01-13 11:40 ` [PATCH 1/8] omap_hsmmc: move gpio and regulator control from board file Adrian Hunter
2010-01-13 18:54   ` Tony Lindgren
2010-01-14  7:58     ` Adrian Hunter
2010-01-13 22:28   ` Madhusudhan
2010-01-14  8:17     ` Adrian Hunter
2010-01-13 11:40 ` [PATCH 2/8] OMAP: rename mmc-twl4030 to hsmmc Adrian Hunter
2010-01-13 11:40 ` [PATCH 3/8] OMAP: reconnect hsmmc context loss count Adrian Hunter
2010-01-14 19:55   ` Paul Walmsley
2010-01-13 11:40 ` [PATCH 4/8] omap_hsmmc: set DVFS/PM constraints Adrian Hunter
2010-01-13 22:53   ` Paul Walmsley
2010-01-14  8:28     ` Adrian Hunter
2010-01-14 19:53       ` Paul Walmsley
2010-01-15  9:04         ` Adrian Hunter
2010-01-13 11:40 ` [PATCH 5/8] omap_hsmmc: RX51: set padconfs to pull down when powering off eMMC Adrian Hunter
2010-01-13 20:37   ` Tony Lindgren
2010-01-13 20:39     ` Tony Lindgren
2010-01-13 21:00       ` Tony Lindgren
2010-01-13 23:30         ` Nishanth Menon
2010-01-14  7:57           ` Adrian Hunter
2010-01-15 13:11         ` Adrian Hunter
2010-01-13 11:40 ` [PATCH 6/8] omap_hsmmc: allow for power saving without going off Adrian Hunter
2010-01-13 11:41 ` [PATCH 7/8] omap_hsmmc: fix disable timeouts Adrian Hunter
2010-01-13 11:41 ` [PATCH 8/8] omap_hsmmc: allow for a shared VccQ 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=20100113114010.7615.84920.sendpatchset@ahunter-work.research.nokia.com \
    --to=adrian.hunter@nokia.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=madhu.cr@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