23 Feb, 2018

1 commit


11 Feb, 2018

1 commit

  • On the NIOS2 and Xtensa architectures, we do not have
    CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current
    values into the defconfig and removing them from the headers.

    I did not attempt to add more default values in and for now will leave
    that to maintainers.

    Signed-off-by: Tom Rini

    Tom Rini
     

06 Nov, 2017

1 commit


11 Oct, 2017

1 commit

  • Having this as a 'default y' is rather annoying because it doesn't
    actually compile unless other options are defined in the board header:

    ../cmd/bootm.c: In function 'do_imls_nor':
    ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
    i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {

    Make it 'default n' so people who develop new boards that start from a
    blank defconfig have one less compilation failure to debug.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

02 Sep, 2017

1 commit

  • This syncs all of the currently Kconfig'd symbols out of the headers and
    into the defconfig files. This has two exceptions, first am335x_evm
    needs to be converted to DM in SPL and then it can stop undef'ing
    CONFIG_DM_USB. Leaving this as-is results in a build failure, and
    without work, run time failure. The other case is am43xx_evm.h and in
    turn am43xx_evm_usbhost_boot. The problem here is that we need DWC3 USB
    host mode in SPL, but still desire to have gadget mode in U-Boot proper.

    Signed-off-by: Tom Rini

    Tom Rini
     

28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


12 Aug, 2017

1 commit


11 Aug, 2017

1 commit


09 Aug, 2017

1 commit


08 Aug, 2017

1 commit


02 Aug, 2017

1 commit


01 Aug, 2017

2 commits


26 Jul, 2017

1 commit

  • This converts the following to Kconfig:
    CONFIG_ENV_IS_IN_MMC
    CONFIG_ENV_IS_IN_NAND
    CONFIG_ENV_IS_IN_UBI
    CONFIG_ENV_IS_NOWHERE

    In fact this already exists for sunxi as a 'choice' config. However not
    all the choices are available in Kconfig yet so we cannot use that. It
    would lead to more than one option being set.

    In addition, one purpose of this series is to allow the environment to be
    stored in more than one place. So the existing choice is converted to a
    normal config allowing each option to be set independently.

    There are not many opportunities for Kconfig updates to reduce the size of
    this patch. This was tested with

    ./tools/moveconfig.py -i CONFIG_ENV_IS_IN_MMC

    And then manual updates. This is because for CHAIN_OF_TRUST boards they
    can only have ENV_IS_NOWHERE set, so we enforce that via Kconfig logic
    now.

    Signed-off-by: Simon Glass
    Signed-off-by: Tom Rini

    Simon Glass
     

02 Jun, 2017

1 commit


01 May, 2017

1 commit


29 Mar, 2017

1 commit


10 Mar, 2017

1 commit

  • In some cases this is absolutely required, so select this for some secure
    features. This also requires migration of RSA_FREESCALE_EXP

    Cc: Ruchika Gupta
    Cc: Poonam Aggrwal
    Cc: Naveen Burmi
    Cc: Po Liu
    Cc: Shengzhou Liu
    Cc: Priyanka Jain
    Cc: Sumit Garg
    Cc: Shaohui Xie
    Cc: Chunhe Lan
    Cc: Feng Li
    Cc: Alison Wang
    Cc: Mingkai Hu
    Cc: York Sun
    Cc: Saksham Jain
    Cc: Prabhakar Kushwaha
    Signed-off-by: Tom Rini

    Tom Rini
     

04 Feb, 2017

1 commit

  • Signed-off-by: Tom Rini

    Conflicts:
    configs/ls1046aqds_defconfig
    configs/ls1046aqds_nand_defconfig
    configs/ls1046aqds_qspi_defconfig
    configs/ls1046aqds_sdcard_ifc_defconfig
    configs/ls1046aqds_sdcard_qspi_defconfig
    configs/ls1046ardb_emmc_defconfig
    configs/ls1046ardb_qspi_defconfig
    configs/ls1046ardb_sdcard_defconfig

    Tom Rini
     

28 Jan, 2017

3 commits


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


19 Jan, 2017

1 commit


05 Jan, 2017

1 commit


19 Nov, 2016

1 commit


24 Oct, 2016

1 commit


26 Sep, 2016

1 commit


15 Sep, 2016

1 commit

  • LS1046ARDB Specification:
    -------------------------
    Memory subsystem:
    * 8GByte DDR4 SDRAM (64bit bus)
    * 512 Mbyte NAND flash
    * Two 64 Mbyte high-speed SPI flash
    * SD connector to interface with the SD memory card
    * On-board 4G eMMC

    Ethernet:
    * Two XFI 10G ports
    * Two SGMII ports
    * Two RGMII ports

    PCIe:
    * PCIe1 (SerDes2 Lane0) to miniPCIe slot
    * PCIe2 (SerDes2 Lane1) to x2 PCIe slot
    * PCIe3 (SerDes2 Lane2) to x4 PCIe slot

    SATA:
    * SerDes2 Lane3 to SATA port

    USB 3.0: one super speed USB 3.0 type A port
    one Micro-AB port

    UART: supports two UARTs up to 115200 bps for console

    Signed-off-by: Mingkai Hu
    Signed-off-by: Shaohui Xie
    Signed-off-by: Gong Qianyu
    Reviewed-by: York Sun

    Mingkai Hu