12 Jan, 2018

5 commits


15 Sep, 2017

1 commit

  • All these places seem to inherit the codes from the MMC driver where
    a FIXME was put in the comment. However the correct operation after
    read should be cache invalidate, not flush.

    The underlying drivers should be responsible for the cache operation.
    Remove these codes completely.

    Signed-off-by: Bin Meng
    Reviewed-by: Stefan Roese
    Reviewed-by: York Sun
    Reviewed-by: Joe Hershberger
    Reviewed-by: Simon Glass
    Tested-by: York Sun

    Bin Meng
     

17 Aug, 2017

1 commit

  • This patch allows to show the EXT_CSD[179] partition_config
    register info, just by specifying the dev param:

    U-Boot> mmc partconf 0
    EXT_CSD[179], PARTITION_CONFIG:
    BOOT_ACK: 0x0
    BOOT_PARTITION_ENABLE: 0x0
    PARTITION_ACCESS: 0x0

    Signed-off-by: Angelo Dureghello
    Signed-off-by: Anatolij Gustschin

    Angelo Dureghello
     

19 Jul, 2017

1 commit


13 Apr, 2017

1 commit

  • The handler do_setdsr receives only the dsr parameter,
    the action is parsed before.

    Error was introduced when restructuring the mmc command
    implementation in commit 1fd93c6e7d8a1e4d6261058cefab11b875ded252.

    Reported-by: Michael Krummsdorf
    Signed-off-by: Markus Niebel

    Markus Niebel
     

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