11 Sep, 2018

1 commit


09 Jul, 2018

1 commit

  • The u-boot changed to check CONFIG_IS_ENABLED for SYS_CONSOLE_IS_IN_ENV,
    so we have to set the configuration in defconfig not in header file,
    otherwise the checking will fail and lead to use vga for stdout and stderr
    when video is enabled.

    Fix the issue by moving CONFIG_VIDEO and CONFIG_SYS_CONSOLE_IS_IN_ENV to
    defconfig and remove duplicated configurations from header file.

    Signed-off-by: Ye Li

    Ye Li
     

27 Apr, 2018

1 commit


24 Feb, 2018

1 commit

  • This converts the following to Kconfig:
    CONFIG_BOOTP_BOOTPATH
    CONFIG_BOOTP_DNS
    CONFIG_BOOTP_GATEWAY
    CONFIG_BOOTP_HOSTNAME
    CONFIG_BOOTP_PXE
    CONFIG_BOOTP_SUBNETMASK
    CONFIG_CMDLINE_EDITING
    CONFIG_AUTO_COMPLETE
    CONFIG_SYS_LONGHELP
    CONFIG_SUPPORT_RAW_INITRD
    CONFIG_ENV_VARS_UBOOT_CONFIG

    Signed-off-by: Adam Ford
    [trini: Re-run the migration]
    Signed-off-by: Tom Rini

    Adam Ford
     

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
     

08 Feb, 2018

1 commit


29 Dec, 2017

1 commit

  • In order to provide a consistent user experience for imx board users,
    remove the custom CONFIG_BOOTDELAY values from defconfig files, so that
    all boards can use the default two second delay.

    Signed-off-by: Fabio Estevam
    Reviewed-by: Lukasz Majewski

    Fabio Estevam
     

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
     

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
     

08 Sep, 2017

2 commits


17 Aug, 2017

1 commit


15 Aug, 2017

1 commit


08 Aug, 2017

1 commit


01 Aug, 2017

1 commit

  • Migrate all remaining instances of CMD_NAND, CMD_NAND_TRIMFFS
    CMD_NAND_LOCK_UNLOCK and CMD_NAND_TORTURE from the headers into the
    defconfig files.

    Tested-by: Adam Ford
    Signed-off-by: Tom Rini
    Reviewed-by: Bin Meng

    Tom Rini
     

30 Apr, 2017

1 commit


27 Jan, 2017

3 commits

  • Enable MMC/I2C/GPIO/PMIC/REGULATOR/PCA953X DM drivers
    for mx6sxsabreauto board. Drop non-DM code.

    Note:
    The i.MX DM drivers has such dependency.
    MXC GPIO -> MXC I2C -> PFUZE/REGULATOR
    MXC GPIO -> PCA953X
    MXC GPIO -> FSL_USDHC

    So the drivers needs to be enabled all to avoid
    compiling error.

    The uboot dm tree log:
    => dm tree
    Class Probed Name
    ----------------------------------------
    root [ + ] root_driver
    thermal [ ] |-- imx_thermal
    simple_bus [ + ] |-- soc
    simple_bus [ + ] | |-- aips-bus@02000000
    simple_bus [ ] | | |-- spba-bus@02000000
    gpio [ + ] | | |-- gpio@0209c000
    gpio [ + ] | | |-- gpio@020a0000
    gpio [ + ] | | |-- gpio@020a4000
    gpio [ + ] | | |-- gpio@020a8000
    gpio [ + ] | | |-- gpio@020ac000
    gpio [ + ] | | |-- gpio@020b0000
    gpio [ + ] | | |-- gpio@020b4000
    simple_bus [ ] | | |-- anatop@020c8000
    simple_bus [ ] | | |-- snvs@020cc000
    pinctrl [ + ] | | `-- iomuxc@020e0000
    pinconfig [ + ] | | `-- imx6x-sabreauto
    pinconfig [ + ] | | |-- i2c2grp-1
    pinconfig [ + ] | | |-- i2c3grp-2
    pinconfig [ ] | | |-- uart1grp
    pinconfig [ + ] | | |-- usdhc3grp
    pinconfig [ ] | | |-- usdhc3grp-100mhz
    pinconfig [ ] | | |-- usdhc3grp-200mhz
    pinconfig [ + ] | | |-- usdhc4grp
    pinconfig [ + ] | | `-- vccsd3grp
    simple_bus [ + ] | |-- aips-bus@02100000
    mmc [ + ] | | |-- usdhc@02198000
    mmc [ + ] | | |-- usdhc@0219c000
    i2c [ + ] | | |-- i2c@021a4000
    i2c_generic [ + ] | | | |-- generic_8
    i2c_generic [ + ] | | | `-- generic_4e
    i2c [ + ] | | `-- i2c@021a8000
    gpio [ + ] | | |-- gpio@30
    gpio [ + ] | | `-- gpio@32
    simple_bus [ ] | `-- aips-bus@02200000
    simple_bus [ ] | `-- spba-bus@02200000
    simple_bus [ + ] `-- regulators
    regulator [ + ] `-- regulator@0

    Signed-off-by: Peng Fan
    Cc: Stefano Babic

    Peng Fan
     
  • Enable pinctrl driver for mx6sxsabreauto board.

    Signed-off-by: Peng Fan
    Cc: Stefano Babic

    Peng Fan
     
  • Add dts for mx6sxsabreauto board.
    dts related files imported fro Linux (commit e5517c2a5a4).

    Signed-off-by: Peng Fan
    Cc: Stefano Babic

    Peng Fan
     

24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


24 Oct, 2016

1 commit


22 Sep, 2016

1 commit


10 Sep, 2016

1 commit


17 Jun, 2016

1 commit


26 Apr, 2016

3 commits


26 Mar, 2016

1 commit

  • If including MX6SX in CONFIG_SYS_EXTRA_OPTIONS, CONFIG_ROM_UNIFIED_SECTIONS
    will not effect.So move MX6SX to Kconfig entry from CONFIG_SYS_EXTRA_OPTIONS to
    "select MX6SX" to boards using i.MX6 SoloX.

    Signed-off-by: Peng Fan
    Cc: Stefano Babic
    Cc: Fabio Estevam
    Reviewed-by: Fabio Estevam

    Peng Fan
     

03 Feb, 2016

1 commit