10 May, 2017

1 commit

  • Fix division by zero in sprintf_speed() when not even
    a single mmc write has happened, and "mmc info" is
    invoked.

    This causes division-by-zero error because total_time
    in write statistic is still 0.

    Fixes: 7a0a68ac5b5b ("cmd: mmc: make command "mmc info" show the statistics")
    Signed-off-by: Sekhar Nori

    Sekhar Nori
     

21 Apr, 2017

1 commit


01 Dec, 2016

1 commit

  • Add new command that provides possibility to enable the
    background operations handshake functionality
    (BKOPS_EN, EXT_CSD byte [163]) on eMMC devices.

    This is an optional feature of eMMCs, the setting is write-once.
    The command must be explicitly taken into use with
    CONFIG_CMD_BKOPS_ENABLE.

    Signed-off-by: Tomas Melin

    Tomas Melin
     

27 May, 2016

1 commit


17 May, 2016

3 commits


06 May, 2016

1 commit

  • Since we do not build any board with CONFIG_SUPPORT_EMMC_RPMB , this
    piece of code evaded conversion. Fix the following compiler error:

    cmd/mmc.c: In function 'do_mmcrpmb':
    cmd/mmc.c:316:32: error: 'struct blk_desc' has no member named 'part_num'
    original_part = mmc->block_dev.part_num;
    ^

    Signed-off-by: Marek Vasut
    Cc: Pantelis Antoniou
    Cc: Tom Rini

    Marek Vasut
     

02 Apr, 2016

1 commit


15 Mar, 2016

2 commits


25 Jan, 2016

1 commit

  • Now that they are in their own directory, we can remove this prefix.
    This makes it easier to find a file since the prefix does not get in the
    way.

    Signed-off-by: Simon Glass
    Reviewed-by: Bin Meng
    Reviewed-by: Heiko Schocher
    Acked-by: Stefan Roese
    Acked-by: Przemyslaw Marczak

    Simon Glass