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
     

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

6 commits


24 Sep, 2016

1 commit


13 Sep, 2015

1 commit


20 Nov, 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