10 Mar, 2018

1 commit


26 Feb, 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
     

22 Feb, 2018

2 commits


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
     

04 Feb, 2018

1 commit


19 Dec, 2017

1 commit


27 Nov, 2017

2 commits


31 Oct, 2017

1 commit


12 Oct, 2017

1 commit

  • Fix for finding mmc devices on i.MX6Q icore boards
    added in below comment
    "icorem6: Fix to find MMC devices"
    (sha1: a2b137b38d925df91afef52f5122927de024f81a)

    which is reverted in during u-boot-imx merge
    " Merge git://git.denx.de/u-boot-imx"
    (sha1: 6aee2ab68c362ace5a59f89a63abed82e0bf19e5)

    This patch, is recreated to fix merge conflict.

    Cc: Stefano Babic
    Cc: Tom Rini
    Signed-off-by: Jagan Teki

    Jagan Teki
     

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

1 commit


01 Sep, 2017

1 commit


30 Aug, 2017

1 commit


29 Aug, 2017

1 commit


28 Aug, 2017

1 commit


17 Aug, 2017

1 commit


15 Aug, 2017

1 commit


26 Jul, 2017

2 commits

  • 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
     
  • Rsync all defconfig files using moveconfig.py

    Signed-off-by: Tom Rini

    Tom Rini
     

12 Jul, 2017

2 commits

  • Change is consistent with other SOCs and it is in preparation
    for adding SOMs. SOC's related files are moved from cpu/ to
    mach-imx/.

    This change is also coherent with the structure in kernel.

    Signed-off-by: Stefano Babic

    CC: Fabio Estevam
    CC: Akshay Bhat
    CC: Ken Lin
    CC: Marek Vasut
    CC: Heiko Schocher
    CC: "Sébastien Szymanski"
    CC: Christian Gmeiner
    CC: Stefan Roese
    CC: Patrick Bruenn
    CC: Troy Kisky
    CC: Nikita Kiryanov
    CC: Otavio Salvador
    CC: "Eric Bénard"
    CC: Jagan Teki
    CC: Ye Li
    CC: Peng Fan
    CC: Adrian Alonso
    CC: Alison Wang
    CC: Tim Harvey
    CC: Martin Donnelly
    CC: Marcin Niestroj
    CC: Lukasz Majewski
    CC: Adam Ford
    CC: "Albert ARIBAUD (3ADEV)"
    CC: Boris Brezillon
    CC: Soeren Moch
    CC: Richard Hu
    CC: Wig Cheng
    CC: Vanessa Maegima
    CC: Max Krummenacher
    CC: Stefan Agner
    CC: Markus Niebel
    CC: Breno Lima
    CC: Francesco Montefoschi
    CC: Jaehoon Chung
    CC: Scott Wood
    CC: Joe Hershberger
    CC: Anatolij Gustschin
    CC: Simon Glass
    CC: "Andrew F. Davis"
    CC: "Łukasz Majewski"
    CC: Patrice Chotard
    CC: Nobuhiro Iwamatsu
    CC: Hans de Goede
    CC: Masahiro Yamada
    CC: Stephen Warren
    CC: Andre Przywara
    CC: "Álvaro Fernández Rojas"
    CC: York Sun
    CC: Xiaoliang Yang
    CC: Chen-Yu Tsai
    CC: George McCollister
    CC: Sven Ebenfeld
    CC: Filip Brozovic
    CC: Petr Kulhavy
    CC: Eric Nelson
    CC: Bai Ping
    CC: Anson Huang
    CC: Sanchayan Maity
    CC: Lokesh Vutla
    CC: Patrick Delaunay
    CC: Gary Bisson
    CC: Alexander Graf
    CC: u-boot@lists.denx.de
    Reviewed-by: Fabio Estevam
    Reviewed-by: Christian Gmeiner

    Stefano Babic
     
  • Add support for the debug UART to assist with early debugging.
    Enable it for i.CoreM6 as an example.

    Signed-off-by: Jagan Teki
    Reviewed-by: Simon Glass

    Jagan Teki
     

10 Jul, 2017

1 commit


27 Jun, 2017

1 commit


19 Jun, 2017

1 commit


01 Jun, 2017

1 commit

  • Currently these (board agnostic) commands cannot be selected using
    menuconfig and friends. Fix this the obvious way. As part of this,
    don't muddle the meaning of CONFIG_HASH_VERIFY to mean both 'hash -v'
    and "we have a hashing command" as this makes the Kconfig logic odd.

    Signed-off-by: Daniel Thompson
    [trini: Re-apply, add imply for a few cases, run moveconfig.py, also
    migrate CRC32_VERIFY]
    Signed-off-by: Tom Rini

    Daniel Thompson
     

31 May, 2017

1 commit


18 May, 2017

1 commit


17 Dec, 2016

4 commits

  • Rename defconfig files for better compatible with
    respective board names and dts files.

    Cc: Stefano Babic
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Add I2C support for Engicam i.CoreM6 qdl board.

    icorem6qdl> i2c bus
    Bus 0: i2c@021a0000
    Bus 1: i2c@021a4000
    Bus 2: i2c@021a8000
    icorem6qdl> i2c dev 2
    Setting bus to 2
    icorem6qdl> i2c speed 100000
    Setting bus speed to 100000 Hz
    icorem6qdl> i2c probe
    Valid chip addresses: 2C
    icorem6qdl> i2c md 2C 0xff
    00ff: 00 00 00 00 0f f0 01 64 ff ff 00 00 00 00 00 00 .......d........

    Cc: Stefano Babic
    Cc: Heiko Schocher
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki
    Acked-by: Heiko Schocher

    Jagan Teki
     
  • Add IPUv3 framebuffer support for Engicam i.CoreM6 qdl board.

    Cc: Anatolij Gustschin
    Cc: Stefano Babic
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Use CONFIG_DM_ETH and remove board_eth_init code
    from board files.

    Cc: Joe Hershberger
    Cc: Peng Fan
    Cc: Stefano Babic
    Cc: Michael Trimarchi
    Acked-by: Joe Hershberger
    Signed-off-by: Jagan Teki

    Jagan Teki
     

26 Oct, 2016

5 commits

  • Add DM_GPIO, DM_MMC support for u-boot and disable for SPL.

    Cc: Peng Fan
    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Enable imx6 pinctrl driver support for i.CoreM6.

    Cc: Peng Fan
    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • i.CoreM6 DualLite/Solo modules are system on module solutions
    manufactured by Engicam with following characteristics:
    CPU NXP i.MX6 DL, 800MHz
    RAM 1GB, 32, 64 bit, DDR3-800/1066
    NAND SLC,512MB
    Power supply Single 5V
    MAX LCD RES FULLHD

    and more info at
    http://www.engicam.com/en/products/embedded/som/sodimm/i-core-m6s-dl-d-q

    Cc: Peng Fan
    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Add enet support for engicam icorem6 qdl starter kit.
    - Add pinmux settings
    - Add board_eth_init

    TFTP log:
    --------
    Net: FEC [PRIME]
    Hit any key to stop autoboot: 0
    icorem6qdl> tftpboot {fdt_addr} imx6dl-icore.dtb
    Using FEC device
    TFTP from server 192.168.2.96; our IP address is 192.168.2.75
    Filename 'imx6dl-icore.dtb'.
    Load address: 0x0
    Loading: ######
    1.3 MiB/s
    done
    Bytes transferred = 28976 (7130 hex)
    CACHE: Misaligned operation at range [00000000, 00007130]
    icorem6qdl>

    Cc: Joe Hershberger
    Cc: Peng Fan
    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Signed-off-by: Jagan Teki
    Acked-by: Joe Hershberger

    Jagan Teki
     
  • Boot Log for i.CoreM6 DualLite/Solo Starter Kit:
    -----------------------------------------------

    U-Boot SPL 2016.09-rc2-30739-gd1fa290 (Sep 17 2016 - 00:37:46)
    Trying to boot from MMC1

    U-Boot 2016.09-rc2-30739-gd1fa290 (Sep 17 2016 - 00:37:46 +0530)

    CPU: Freescale i.MX6SOLO rev1.3 at 792MHz
    CPU: Industrial temperature grade (-40C to 105C) at 31C
    Reset cause: POR
    DRAM: 256 MiB
    MMC: FSL_SDHC: 0
    *** Warning - bad CRC, using default environment

    In: serial
    Out: serial
    Err: serial
    Net: CPU Net Initialization Failed
    No ethernet found.
    Hit any key to stop autoboot: 0
    switch to partitions #0, OK
    mmc0 is current device
    switch to partitions #0, OK
    mmc0 is current device
    reading boot.scr
    ** Unable to read file boot.scr **
    reading zImage
    6741808 bytes read in 341 ms (18.9 MiB/s)
    Booting from mmc ...
    reading imx6dl-icore.dtb
    30600 bytes read in 19 ms (1.5 MiB/s)
    Booting using the fdt blob at 0x18000000
    Using Device Tree in place at 18000000, end 1800a787

    Starting kernel ...

    [ 0.000000] Booting Linux on physical CPU 0x0

    Boot Log for i.CoreM6 Quad/Dual Starter Kit:
    --------------------------------------------

    U-Boot SPL 2016.09-rc2-30739-gd1fa290 (Sep 17 2016 - 00:37:46)
    Trying to boot from MMC1

    U-Boot 2016.09-rc2-30739-gd1fa290 (Sep 17 2016 - 00:37:46 +0530)

    CPU: Freescale i.MX6Q rev1.2 at 792MHz
    CPU: Industrial temperature grade (-40C to 105C) at 28C
    Reset cause: POR
    DRAM: 512 MiB
    MMC: FSL_SDHC: 0
    *** Warning - bad CRC, using default environment

    In: serial
    Out: serial
    Err: serial
    Net: CPU Net Initialization Failed
    No ethernet found.
    Hit any key to stop autoboot: 0
    icorem6qdl>

    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Matteo Lisi
    Cc: Michael Trimarchi
    Acked-by: Peng Fan
    Signed-off-by: Jagan Teki

    Jagan Teki