14 Jan, 2020

1 commit


05 Dec, 2019

1 commit


21 Nov, 2019

1 commit

  • Today in initr_reloc_global_data() we use some non-obvious tests to
    determine if we need to relocate the env_addr within gd or not. In
    order to facilitate migration of other symbols to Kconfig we need to
    introduce a new symbol for this particular use case.

    Cc: Wolfgang Denk
    Cc: Joe Hershberger
    Signed-off-by: Tom Rini

    Tom Rini
     

08 Oct, 2019

1 commit


12 Jul, 2019

1 commit


18 May, 2019

1 commit

  • CONFIG_SYS_[DI]CACHE_OFF had been partially converted to Kconfig
    parameters; only for the ARC architecture. This patch turns these two
    parameters into Kconfig items everywhere else they are found.

    All of the include/configs/* and defconfig changes in this patch are
    for arm machines only. The Kconfig changes for arc, nds32, riscv,
    and xtensa have been included since these symbols are found in code
    under arch/{arc,nds32,riscv,xtensa}, however, no currently-defined
    include/configs/* or defconfigs for these architectures exist which
    include these symbols.

    These results have been confirmed with tools/moveconfig.py.

    Acked-by: Alexey Brodkin
    Signed-off-by: Trevor Woerner
    [trini: Re-migrate for a few more boards]
    Signed-off-by: Tom Rini

    Trevor Woerner
     

30 Nov, 2018

1 commit

  • This configuration is useful when you want to run small u-boot and
    perform DDR memory test to make sure that DDR is properly configured.
    It is use for board bringup because alternative u-boot memory tests is
    quite good.
    Configuration is running out of OCM.

    As is done for others mini configurations 0x80 bytes for variables is
    enough and only default variables are stored there.

    Alternative memtest is enabled and also 2GB of DDR via DTS files.
    Configuration is enabling ZYNQMP_PSU_INIT_ENABLED and include psu_init()
    from zcu102 for testing purpose.
    In case of size issue this can be moved to SPL configuration as is done
    for mini_qspi configuration but it is not a problem now.

    Log:
    U-Boot 2018.11-00268-gbd58b8ba8915 (Nov 29 2018 - 15:33:35 +0100)

    Model: ZynqMP MINI
    Board: Xilinx ZynqMP
    DRAM: WARNING: Initializing TCM overwrites TCM content
    2 GiB
    EL Level: EL3
    In: dcc
    Out: dcc
    Err: dcc
    ZynqMP>

    Signed-off-by: Michal Simek

    Michal Simek