09 Apr, 2015

1 commit

  • Since commit 326a682358c1 (malloc_f: enable SYS_MALLOC_F by default
    if DM is on), Zynq MMC boot hangs up after printing the following:

    U-Boot SPL 2015.04-rc5-00053-gadcc570 (Apr 08 2015 - 12:59:11)
    mmc boot
    reading system.dtb

    Prior to commit 326a682358c1, Zynq boards enabled CONFIG_DM, but
    not CONFIG_SYS_MALLOC_F. That commit forcibly turned on
    CONFIG_SYS_MALLOC_F. I have not figured out the root cause, but
    anyway it looks like CONFIG_SYS_MALLOC_F gave a bad impact on the
    Zynq MMC boot.

    We are planning to have the v2015.04 release in a few days.
    I know this is a defensive fixup, but what I can do now is to add
    # CONFIG_SYS_MALLOC_F is not set
    to every Zynq defconfig file to get back the original behavior.

    Tested on:
    - Zedboard
    - ZC706 board

    Signed-off-by: Masahiro Yamada
    Tested-by: Michal Simek
    Cc: Simon Glass

    Masahiro Yamada
     

16 Mar, 2015

1 commit


30 Jan, 2015

2 commits

  • Modify rsa_verify to use the rsa driver of DM library .The tools
    will continue to use the same RSA sw library.

    CONFIG_RSA is now dependent on CONFIG_DM. All configurations which
    enable FIT based signatures have been modified to enable CONFIG_DM
    by default.

    Signed-off-by: Ruchika Gupta
    CC: Simon Glass
    Acked-by: Simon Glass

    Ruchika Gupta
     
  • For the platforms which use,CONFIG_FIT_SIGNATURE, the required configs are
    moved to the platform's defconfig file. Selecting CONFIG_FIT_SIGNATURE using
    defconfig automatically resolves the dependencies for signature verification.
    The RSA library gets automatically selected and user does not have to define
    CONFIG_RSA manually.

    Signed-off-by: Ruchika Gupta
    CC: Simon Glass
    Acked-by: Simon Glass

    Ruchika Gupta
     

25 Sep, 2014

2 commits

  • This option specifies the default Device Tree used for the run-time
    configuration of U-Boot.

    Signed-off-by: Masahiro Yamada
    Cc: Simon Glass
    Cc: Stephen Warren
    Cc: Minkyu Kang
    Cc: Michal Simek

    Masahiro Yamada
     
  • This commit moves:
    CONFIG_OF_CONTROL
    CONFIG_OF_SEPARATE
    CONFIG_OF_EMBED
    CONFIG_OF_HOSTFILE

    Because these options are currently not supported for SPL,
    the "Device Tree Control" menu does not appear in the SPL
    configuration.

    Note:
    zynq-common.h should be adjusted so as not to change the
    default value of CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass
    Cc: Stephen Warren
    Cc: Minkyu Kang
    Acked-by: Michal Simek

    Masahiro Yamada
     

31 Aug, 2014

1 commit


30 Jul, 2014

1 commit

  • This commit adds:
    - arch/${ARCH}/Kconfig
    provide a menu to select target boards
    - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
    set CONFIG macros to the appropriate values for each board
    - configs/${TARGET_BOARD}_defconfig
    default setting of each board

    (This commit was automatically generated by a conversion script
    based on boards.cfg)

    In Linux Kernel, defconfig files are located under
    arch/${ARCH}/configs/ directory.
    It works in Linux Kernel since ARCH is always given from the
    command line for cross compile.

    But in U-Boot, ARCH is not given from the command line.
    Which means we cannot know ARCH until the board configuration is done.
    That is why all the "*_defconfig" files should be gathered into a
    single directory ./configs/.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass

    Masahiro Yamada