05 Mar, 2018

1 commit

  • Thomas reported U-Boot failed to build host tools if libfdt-devel
    package is installed because tools include libfdt headers from
    /usr/include/ instead of using internal ones.

    This commit moves the header code:
    include/libfdt.h -> include/linux/libfdt.h
    include/libfdt_env.h -> include/linux/libfdt_env.h

    and replaces include directives:
    #include -> #include
    #include -> #include

    Reported-by: Thomas Petazzoni
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

16 Aug, 2017

1 commit


12 Jul, 2017

1 commit

  • 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
     

17 Mar, 2017

3 commits


24 Sep, 2016

1 commit


06 Feb, 2016

1 commit

  • Correct spelling of "U-Boot" shall be used in all written text
    (documentation, comments in source files etc.).

    Signed-off-by: Bin Meng
    Reviewed-by: Heiko Schocher
    Reviewed-by: Simon Glass
    Reviewed-by: Minkyu Kang

    Bin Meng
     

02 Sep, 2015

1 commit


16 May, 2015

1 commit


27 Nov, 2014

1 commit


21 Nov, 2014

1 commit

  • This function can fail if the device tree runs out of space. Rather than
    silently booting with an incomplete device tree, allow the failure to be
    detected.

    Unfortunately this involves changing a lot of places in the code. I have
    not changed behvaiour to return an error where one is not currently
    returned, to avoid unexpected breakage.

    Eventually it would be nice to allow boards to register functions to be
    called to update the device tree. This would avoid all the many functions
    to do this. However it's not clear yet if this should be done using driver
    model or with a linker list. This work is left for later.

    Signed-off-by: Simon Glass
    Acked-by: Anatolij Gustschin

    Simon Glass
     

20 Nov, 2014

3 commits


30 Oct, 2014

1 commit

  • Commit 155fa9af95ac5be857a7327e7a968a296e60d4c8 changed the way
    to define a GPIO line, which can be used to force CS high
    across multiple transactions. In order to fix sf detection
    change board code to make use of board_spi_cs_gpio(..).

    Signed-off-by: Markus Niebel

    Markus Niebel
     

08 Aug, 2014

1 commit


23 Jul, 2014

1 commit

  • This patch adds the changes to boards.cfg and the board directory
    under board/tqc.

    TQMa6 is a family of modules based on Freescale i.MX6. It consists of
    TQMa6Q (i.MX6 Quad), TQMa6D (i.MX6 Dual) featuring eMMC, and 1 GiB DDR3
    TQMa6S (i.MX6 Solo) featuring eMMC and 512 MiB DDR3

    The modules need a baseboard. Initially the MBa6x starterkit mainboard is
    supported. To easy support for other mainboards the functionality is splitted
    in one file for the module (tqma6.c) and one file for the baseboard (tqma6_
    mba6).

    The modules can be boot from eMMC (on USDHC3) and SPI flash.

    The following features are supported:
    - MMC: eMMC on module (on USDHC3) and SD-card (on MBa6x mainboard)
    - Ethernet: RGMII using micrel KSZ9031 phy on MBa6x mainboard for TQMa6 module.
    The phy needs special configurations for the pad skew registers to adjust for
    the signal routing.
    Also support for standard ethernet commands and uppdate via tftp.
    - SPI: ECSPI1 with bootable serial flash on module and two additional
    chip selects on MBa6x
    - I2C: This patch adds support for the I2C busses on the TQMa6 modules (I2C3)
    and MBa6x baseboards (I2C1). The LM75 temperature sensors on TQMa6 and MBa6x
    are also configured.
    - USB: high speed host 1 on MBa6x and support for USB storage
    - PMIC: support for pfuze 100 on TQMa6

    Signed-off-by: Markus Niebel

    Markus Niebel