02 Feb, 2018

1 commit


31 Oct, 2017

1 commit

  • When CONFIG_DM_MMC=y, CONFIG_BLK should be selected, otherwise the
    SD/eMMC card cannot be used.

    Also, select CONFIG_DM_USB=y when CONFIG_USB=y to avoid build failure.

    Tested on mx6slevk, mx7dsabresd and mx6ullevk.

    Signed-off-by: Fabio Estevam
    Reviewed-by: Jaehoon Chung
    Tested-by: Adam Ford
    Tested-by: Sébastien Szymanski
    Tested-by: Jagan Teki
    Reviewed-by: Jagan Teki

    Fabio Estevam
     

15 Aug, 2017

1 commit


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
     

30 Apr, 2017

1 commit


20 Mar, 2017

1 commit

  • OPOS6UL is an i.MX6UL based SoM with 256MB RAM, 4GB eMMC and an ethernet
    phy. OPOS6ULDev is carrier board for the OPOS6UL.

    U-Boot SPL 2017.03-rc3-00002-g5085c26 (Mar 07 2017 - 09:48:09)
    Trying to boot from MMC1

    U-Boot 2017.03-rc3-00002-g5085c26 (Mar 07 2017 - 09:48:09 +0100)

    CPU: Freescale i.MX6UL rev1.0 528 MHz (running at 396 MHz)
    CPU: Industrial temperature grade (-40C to 105C) at 40C
    Reset cause: POR
    Model: Armadeus Systems OPOS6UL SoM on OPOS6ULDev board
    DRAM: 256 MiB
    MMC: FSL_SDHC: 0, FSL_SDHC: 1
    Video: 800x480x18
    In: serial
    Out: serial
    Err: serial
    Net: FEC [PRIME]
    Hit any key to stop autoboot: 0

    Signed-off-by: Sébastien Szymanski
    Reviewed-by: Simon Glass

    Sébastien Szymanski