21 Nov, 2018

1 commit


26 Jul, 2018

1 commit

  • When enabling NAND boot, the ubi.mtd should be set to 6 because the
    one mtdpart is added for tee.

    Also the MFG_NAND_PARTITION is duplicated in mx6qsabreauto.h and
    mx6sabre_common.h. We can remove it from mx6qsabreauto.h, since only
    the sabreauto board have NAND.

    Signed-off-by: Ye Li
    (cherry picked from commit b495fb882339191593019074cf8b421c84469f31)

    Ye Li
     

27 Apr, 2018

2 commits


09 Feb, 2018

1 commit


08 Feb, 2018

1 commit


08 Sep, 2017

2 commits


12 Aug, 2017

2 commits


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
     

12 Jul, 2017

4 commits

  • Add support for Falcon mode and explain in the README the steps to
    boot the kernel directly without loading the full U-Boot.

    Signed-off-by: Diego Dorta
    Acked-by: Fabio Estevam

    Diego Dorta
     
  • mx6sabre boards can run different kernel versions, such as NXP 4.1 or
    mainline.

    Currently the rootfs location is passed via mmcblk number and the
    problem with this approach is that the mmcblk number for the eMMC
    changes depending on the kernel version.

    In order to avoid such issue, use UUID method to specify the rootfs
    location.

    Succesfully tested booting a NXP 4.1 and also a mainline kernel on a
    mx6qsabresd and mx6dlsabreauto.

    Signed-off-by: Fabio Estevam

    Fabio Estevam
     
  • WEIM cannot be used when I2C3 is enabled due to pin conflict, so keep
    WEIM disabled by default.

    I2C3 controls GPIO I2C expander (USB host and OTG have VBUS controlled by
    the GPIO I2C expander), magnetometer, accelerometer.

    Not disabling WEIM in U-Boot causes I2C3 to behave badly when booting
    a NXP 4.1 kernel, which leads to probe failure on several devices,
    including the lack of USB:

    imx_usb 2184000.usb: Can't register ci_hdrc platform device, err=-517

    By keeping WEIM disabled in U-Boot these kernel issues are gone.

    Reported-by: Takashi Matsuzawa
    Signed-off-by: Fabio Estevam

    Fabio Estevam
     
  • As mx6sabreauto supports SPL now, all variants can boot using the same
    defconfig.

    This patch:
    - Removes non-SPL targets.
    - Renames target to mx6sabreauto_defconfig.
    - Renames folder and board files to mx6sabreauto.
    - Updates MAINTAINERS, Makefile and Kconfig accordingly.
    - Removes .cfg files.
    - Adds a README with instructions to build and flash SPL and u-boot.img.

    Signed-off-by: Vanessa Maegima
    Reviewed-by: Fabio Estevam
    Reviewed-by: Stefano Babic

    Vanessa Maegima