mbox

[U-Boot] Pull request: u-boot-mmc #2

Message ID 097C5438-D75F-4649-98FC-8533736C260B@antoniou-consulting.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-mmc.git master

Message

Pantelis Antoniou Sept. 20, 2013, 4:12 p.m. UTC
Hi Tom,

The following changes since commit 46ef4faed18196472eb95216b2f74c1397ecf024:

  Prepare v2013.10-rc3 (2013-09-16 20:08:33 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-mmc.git master

for you to fetch changes up to 2c011847c129491084a19c753a039a3441b7dce4:

  Fix wrong sdhci host control register read and write (2013-09-20 19:02:29 +0300)

----------------------------------------------------------------
Jaehoon Chung (1):
      mmc: sdhci: use the SDHCI_QUIRK_USE_WIDE8 for samsung SoC

Juhyun \(Justin\) Oh (1):
      Fix wrong sdhci host control register read and write

Lubomir Popov (1):
      ARM: OMAP: Enable 8-bit eMMC access for OMAP4/5/DRA7xx

Mischa Jonker (3):
      mmc/dw_mmc: Fix DMA descriptor corruption
      mmc/dw_mmc: Allocate the correct amount of descriptors
      Add parentheses to ALLOC_ALIGN_BUFFER macro's

Oleksandr Tyshchenko (2):
      mmc: Remove unused variable backup from mmc_send_cmd()
      omap_hsmmc: omap4+/am335x: modify MMC controller internal fsm reset func

Paul Burton (5):
      spl: remove unnecessary (& ARM specific) include of asm/utils.h
      spl_mmc: only call printf or puts with CONFIG_SPL_LIBCOMMON_SUPPORT
      mmc: don't call *printf or puts when SPL & !CONFIG_SPL_LIBCOMMON_SUPPORT
      mmc: size optimization when !CONFIG_MMC_SPI
      mmc: don't support write & erase for SPL builds

 common/spl/spl_mmc.c      |  17 +++++++++-
 drivers/mmc/Makefile      |   2 ++
 drivers/mmc/dw_mmc.c      |   9 +++---
 drivers/mmc/mmc.c         | 205 +++++++++++++++++----------------------------------------------------------------------------------------------------
 drivers/mmc/mmc_private.h |  45 ++++++++++++++++++++++++++
 drivers/mmc/mmc_write.c   | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mmc/omap_hsmmc.c  |  41 ++++++++++++++++++++++--
 drivers/mmc/s5p_sdhci.c   |   4 ++-
 drivers/mmc/sdhci.c       |  18 +++++------
 include/common.h          |   4 +--
 include/mmc.h             |   4 +++
 include/sdhci.h           |   3 ++
 12 files changed, 336 insertions(+), 195 deletions(-)
 create mode 100644 drivers/mmc/mmc_private.h
 create mode 100644 drivers/mmc/mmc_write.c

Regards

-- Pantelis

Comments

Tom Rini Sept. 21, 2013, 12:05 p.m. UTC | #1
On Fri, Sep 20, 2013 at 07:12:49PM +0300, Pantelis Antoniou wrote:

> Hi Tom,
> 
> The following changes since commit 46ef4faed18196472eb95216b2f74c1397ecf024:
> 
>   Prepare v2013.10-rc3 (2013-09-16 20:08:33 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 2c011847c129491084a19c753a039a3441b7dce4:
> 
>   Fix wrong sdhci host control register read and write (2013-09-20 19:02:29 +0300)
> 
> ----------------------------------------------------------------
> Jaehoon Chung (1):
>       mmc: sdhci: use the SDHCI_QUIRK_USE_WIDE8 for samsung SoC
> 
> Juhyun \(Justin\) Oh (1):
>       Fix wrong sdhci host control register read and write
> 
> Lubomir Popov (1):
>       ARM: OMAP: Enable 8-bit eMMC access for OMAP4/5/DRA7xx
> 
> Mischa Jonker (3):
>       mmc/dw_mmc: Fix DMA descriptor corruption
>       mmc/dw_mmc: Allocate the correct amount of descriptors
>       Add parentheses to ALLOC_ALIGN_BUFFER macro's
> 
> Oleksandr Tyshchenko (2):
>       mmc: Remove unused variable backup from mmc_send_cmd()
>       omap_hsmmc: omap4+/am335x: modify MMC controller internal fsm reset func
> 
> Paul Burton (5):
>       spl: remove unnecessary (& ARM specific) include of asm/utils.h
>       spl_mmc: only call printf or puts with CONFIG_SPL_LIBCOMMON_SUPPORT
>       mmc: don't call *printf or puts when SPL & !CONFIG_SPL_LIBCOMMON_SUPPORT
>       mmc: size optimization when !CONFIG_MMC_SPI
>       mmc: don't support write & erase for SPL builds
> 
>  common/spl/spl_mmc.c      |  17 +++++++++-
>  drivers/mmc/Makefile      |   2 ++
>  drivers/mmc/dw_mmc.c      |   9 +++---
>  drivers/mmc/mmc.c         | 205 +++++++++++++++++----------------------------------------------------------------------------------------------------
>  drivers/mmc/mmc_private.h |  45 ++++++++++++++++++++++++++
>  drivers/mmc/mmc_write.c   | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/mmc/omap_hsmmc.c  |  41 ++++++++++++++++++++++--
>  drivers/mmc/s5p_sdhci.c   |   4 ++-
>  drivers/mmc/sdhci.c       |  18 +++++------
>  include/common.h          |   4 +--
>  include/mmc.h             |   4 +++
>  include/sdhci.h           |   3 ++
>  12 files changed, 336 insertions(+), 195 deletions(-)
>  create mode 100644 drivers/mmc/mmc_private.h
>  create mode 100644 drivers/mmc/mmc_write.c

Applied to u-boot/master, thanks!