
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
e1000: Allow direct access to the E1000 SPI EEPROM device (2011-10-28 00:37:01 +0200)
are available in the git repository at: git://www.denx.de/git/u-boot-mmc.git master
Ajay Bhargav (1): mmc: CMD7:MMC_CMD_SELECT_CARD response fix
Lei Wen (9): mmc: retry the cmd8 to meet 74 clocks requirement in the spec mmc: mv_sdhci: fix 8bus width access for 88SV331xV5 mmc: change magic number to macro define mmc: test mmc bus width on startup mmc: sdhci: fix cache flush mmc: sdhci: fix build warning mmc: sdhci: add mmc structure for host mmc: sdhci: add timeout for data transfer mmc: sdhci: fix sdma bug for large file transfer
Marek Vasut (1): PXA: Add MMC driver using the generic MMC framework
Stephen Warren (1): tegra2: Move MMC clock initialization into MMC driver
arch/arm/include/asm/arch-pxa/regs-mmc.h | 154 +++++++++++ board/nvidia/common/board.c | 13 +- drivers/mmc/Makefile | 1 + drivers/mmc/mmc.c | 83 ++++-- drivers/mmc/mv_sdhci.c | 33 +++ drivers/mmc/pxa_mmc_gen.c | 442 ++++++++++++++++++++++++++++++ drivers/mmc/sdhci.c | 14 +- drivers/mmc/tegra2_mmc.c | 12 +- include/mmc.h | 16 +- include/sdhci.h | 6 + 10 files changed, 719 insertions(+), 55 deletions(-) create mode 100644 arch/arm/include/asm/arch-pxa/regs-mmc.h create mode 100644 drivers/mmc/pxa_mmc_gen.c