mbox

[U-Boot] Pull request: u-boot-mmc 23052014

Message ID 32BAD85E-4A4E-451A-A40D-53580759A65B@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 May 23, 2014, 9:37 a.m. UTC
Hi Tom,

The following changes since commit d7782d06534fe4fa47a49fa7c106de5ba85a9687:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-05-16 18:30: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 df348d8245922adbb03a3a979429c5e70342973c:

  cmd_mmc: use new mmc_select_hwpart() function (2014-05-23 12:23:28 +0300)

----------------------------------------------------------------
Andrew Gabbasov (1):
      mmc: Handle switch error status bit in MMC card status

Hannes Petermaier (1):
      Add board_mmc_init(...) function for init mmc1 only

Mateusz Zalega (1):
      mmc: postponed needless timer initialization

Pierre Aubert (3):
      eMMC: add support for operations in RPMB partition
      Add the function 'confirm_yesno' for interactive
      eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

Stephen Warren (4):
      cmd_part: fix typo in part command help text
      disk: support devices with HW partitions
      mmc: provide a select_hwpart implementation for get_device()
      cmd_mmc: use new mmc_select_hwpart() function

Ye.Li (1):
      esdhc/usdhc: Fix PIO mode bug in fsl_esdhc driver

 README                    |  10 ++
 board/BuR/common/common.c |   7 +
 common/cmd_fuse.c         |  11 +-
 common/cmd_mmc.c          | 799 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------
 common/cmd_nand.c         |  16 +--
 common/cmd_otp.c          |  18 +--
 common/cmd_part.c         |   2 +-
 common/console.c          |  28 +++-
 disk/part.c               |  80 +++++++++--
 drivers/mmc/Makefile      |   1 +
 drivers/mmc/fsl_esdhc.c   |  23 ++-
 drivers/mmc/mmc.c         |  35 ++++-
 drivers/mmc/rpmb.c        | 323 ++++++++++++++++++++++++++++++++++++++++++
 include/common.h          |   2 +-
 include/configs/kwb.h     |   2 +-
 include/configs/tseries.h |   2 +-
 include/mmc.h             |  12 +-
 include/part.h            |   2 +
 lib/Makefile              |   1 +
 19 files changed, 1009 insertions(+), 365 deletions(-)
 create mode 100644 drivers/mmc/rpmb.c

Regards

-- Pantelis

Comments

Tom Rini May 23, 2014, 2:11 p.m. UTC | #1
On Fri, May 23, 2014 at 12:37:06PM +0300, Pantelis Antoniou wrote:

> Hi Tom,
> 
> The following changes since commit d7782d06534fe4fa47a49fa7c106de5ba85a9687:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-05-16 18:30: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 df348d8245922adbb03a3a979429c5e70342973c:
> 
>   cmd_mmc: use new mmc_select_hwpart() function (2014-05-23 12:23:28 +0300)
> 
> ----------------------------------------------------------------
> Andrew Gabbasov (1):
>       mmc: Handle switch error status bit in MMC card status
> 
> Hannes Petermaier (1):
>       Add board_mmc_init(...) function for init mmc1 only
> 
> Mateusz Zalega (1):
>       mmc: postponed needless timer initialization
> 
> Pierre Aubert (3):
>       eMMC: add support for operations in RPMB partition
>       Add the function 'confirm_yesno' for interactive
>       eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command
> 
> Stephen Warren (4):
>       cmd_part: fix typo in part command help text
>       disk: support devices with HW partitions
>       mmc: provide a select_hwpart implementation for get_device()
>       cmd_mmc: use new mmc_select_hwpart() function
> 
> Ye.Li (1):
>       esdhc/usdhc: Fix PIO mode bug in fsl_esdhc driver
> 
>  README                    |  10 ++
>  board/BuR/common/common.c |   7 +
>  common/cmd_fuse.c         |  11 +-
>  common/cmd_mmc.c          | 799 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------
>  common/cmd_nand.c         |  16 +--
>  common/cmd_otp.c          |  18 +--
>  common/cmd_part.c         |   2 +-
>  common/console.c          |  28 +++-
>  disk/part.c               |  80 +++++++++--
>  drivers/mmc/Makefile      |   1 +
>  drivers/mmc/fsl_esdhc.c   |  23 ++-
>  drivers/mmc/mmc.c         |  35 ++++-
>  drivers/mmc/rpmb.c        | 323 ++++++++++++++++++++++++++++++++++++++++++
>  include/common.h          |   2 +-
>  include/configs/kwb.h     |   2 +-
>  include/configs/tseries.h |   2 +-
>  include/mmc.h             |  12 +-
>  include/part.h            |   2 +
>  lib/Makefile              |   1 +
>  19 files changed, 1009 insertions(+), 365 deletions(-)
>  create mode 100644 drivers/mmc/rpmb.c

Applied to u-boot/master, thanks!