public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] add support for sd host controller v3.00
@ 2011-02-15  9:34 Arindam Nath
  2011-02-15  9:34 ` [PATCH 01/12] mmc: sdhci: add support for auto CMD23 Arindam Nath
                   ` (13 more replies)
  0 siblings, 14 replies; 45+ messages in thread
From: Arindam Nath @ 2011-02-15  9:34 UTC (permalink / raw)
  To: cjb; +Cc: linux-mmc, henry.su, aaron.lu, anath.amd, Arindam Nath

The patches below add support for Host Controller v3.00 as per the
spec v3.00. It also adds support for UHS-I cards as per Physical
Layer Specification v3.01.

Thanks for review.

Regards,
Arindam

Arindam Nath (12):
  [PATCH 01/12] mmc: sdhci: add support for auto CMD23
  [PATCH 02/12] mmc: sd: add support for signal voltage switch procedure
  [PATCH 03/12] mmc: sd: query function modes for uhs cards
  [PATCH 04/12] mmc: sd: add support for driver type selection
  [PATCH 05/12] mmc: sdhci: reset sdclk before setting high speed enable
  [PATCH 06/12] mmc: sd: add support for uhs bus speed mode selection
  [PATCH 07/12] mmc: sd: set current limit for uhs cards
  [PATCH 08/12] mmc: sd: report correct speed and capacity of uhs cards
  [PATCH 09/12] mmc: sd: add support for tuning during uhs initialization
  [PATCH 10/12] mmc: sdhci: enable preset value after uhs initialization
  [PATCH 11/12] mmc: sdhci: add support for programmable clock mode
  [PATCH 12/12] mmc: sdhci: add support for retuning mode 1

 drivers/mmc/core/bus.c    |   11 +-
 drivers/mmc/core/core.c   |    9 +
 drivers/mmc/core/core.h   |    1 +
 drivers/mmc/core/sd.c     |  420 +++++++++++++++++++++++++---
 drivers/mmc/core/sd.h     |    3 +-
 drivers/mmc/core/sd_ops.c |   25 ++
 drivers/mmc/core/sd_ops.h |    1 +
 drivers/mmc/core/sdio.c   |    3 +-
 drivers/mmc/host/sdhci.c  |  692 ++++++++++++++++++++++++++++++++++++++++++---
 drivers/mmc/host/sdhci.h  |   45 +++-
 include/linux/mmc/card.h  |   43 +++
 include/linux/mmc/host.h  |   24 ++
 include/linux/mmc/mmc.h   |    1 +
 include/linux/mmc/sd.h    |    3 +-
 include/linux/mmc/sdhci.h |   11 +
 15 files changed, 1200 insertions(+), 92 deletions(-)


^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2011-03-09 21:46 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-15  9:34 [PATCH 00/12] add support for sd host controller v3.00 Arindam Nath
2011-02-15  9:34 ` [PATCH 01/12] mmc: sdhci: add support for auto CMD23 Arindam Nath
2011-02-15 20:58   ` Nicolas Pitre
2011-02-16  8:04     ` Nath, Arindam
2011-02-18 10:45   ` zhangfei gao
2011-02-18 10:50     ` Arnd Bergmann
2011-02-18 12:08       ` Nath, Arindam
2011-02-18 13:08         ` Arnd Bergmann
2011-02-18 13:35           ` Nath, Arindam
2011-02-18 15:40             ` Arnd Bergmann
2011-02-18 15:49               ` [PATCH 01/12] mmc: sdhci: add support for SD Host Controller 3.0 Philip Rakity
2011-02-18 17:17                 ` Nath, Arindam
2011-02-18 18:55                   ` Nicolas Pitre
2011-02-18 19:08                     ` Philip Rakity
2011-02-18 19:06                   ` Philip Rakity
2011-02-18 11:53     ` [PATCH 01/12] mmc: sdhci: add support for auto CMD23 Nath, Arindam
2011-02-15  9:35 ` [PATCH 02/12] mmc: sd: add support for signal voltage switch procedure Arindam Nath
2011-02-15 10:16   ` Wolfram Sang
2011-02-16  7:55     ` Nath, Arindam
2011-02-15 21:18   ` Nicolas Pitre
2011-02-16  8:08     ` Nath, Arindam
2011-03-01 16:02   ` subhashj
2011-03-02  8:06     ` Nath, Arindam
2011-03-03 13:16       ` subhashj
2011-03-03 13:34         ` Nath, Arindam
2011-03-03 21:08           ` subhashj
2011-03-03 22:49             ` Philip Rakity
2011-03-04  6:10               ` Nath, Arindam
2011-02-15  9:35 ` [PATCH 03/12] mmc: sd: query function modes for uhs cards Arindam Nath
2011-02-15  9:35 ` [PATCH 04/12] mmc: sd: add support for driver type selection Arindam Nath
2011-02-15  9:35 ` [PATCH 05/12] mmc: sdhci: reset sdclk before setting high speed enable Arindam Nath
2011-02-15  9:35 ` [PATCH 06/12] mmc: sd: add support for uhs bus speed mode selection Arindam Nath
2011-03-09 21:43   ` Philip Rakity
2011-02-15  9:35 ` [PATCH 07/12] mmc: sd: set current limit for uhs cards Arindam Nath
2011-02-15  9:35 ` [PATCH 08/12] mmc: sd: report correct speed and capacity of " Arindam Nath
2011-02-15  9:35 ` [PATCH 09/12] mmc: sd: add support for tuning during uhs initialization Arindam Nath
2011-02-18 10:50   ` zhangfei gao
2011-02-18 11:33     ` Nath, Arindam
2011-02-15  9:35 ` [PATCH 10/12] mmc: sdhci: enable preset value after " Arindam Nath
2011-02-15  9:35 ` [PATCH 11/12] mmc: sdhci: add support for programmable clock mode Arindam Nath
2011-02-15  9:35 ` [PATCH 12/12] mmc: sdhci: add support for retuning mode 1 Arindam Nath
2011-02-15 19:43 ` [PATCH 00/12] add support for sd host controller v3.00 Chris Ball
2011-02-16  8:00   ` Nath, Arindam
2011-02-16 20:55 ` Chris Ball
2011-02-17  2:03   ` Nath, Arindam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox