03 Dec, 2019

1 commit


14 Oct, 2019

4 commits


12 Aug, 2019

2 commits


23 Jun, 2019

1 commit


25 Apr, 2019

4 commits


14 Sep, 2018

4 commits


18 Jun, 2018

4 commits


19 May, 2018

1 commit


18 May, 2018

1 commit

  • This commit adds support for DDC and HSC boards from
    K+P in u-boot.

    Console output:

    U-Boot 2018.05-rc2-00090-g752b7ed6f9 (Apr 26 2018 - 14:24:24 +0200)

    CPU: Freescale i.MX53 rev2.1 at 800 MHz
    Reset cause: WDOG
    Model: K+P iMX53
    DRAM: 512 MiB
    MMC: FSL_SDHC: 0
    Loading Environment from MMC... OK
    In: serial
    Out: serial
    Err: serial
    Module EEPROM:
    ID: TQMa53-CB.0401
    SN: 63152762
    MAC: 00:0b:64:03:14:2a
    BBoard:40x0 Rev:10
    Net: eth0: ethernet@63fec000
    Hit any key to stop autoboot: 0

    Signed-off-by: Lukasz Majewski

    Lukasz Majewski
     

07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

15 Apr, 2018

2 commits

  • By using this file one can avoid cluttering .h file with u-boot
    HUSH commands necessary for booting target device.

    With such approach the commands are stored only in one place and can be
    reused if needed.

    Signed-off-by: Lukasz Majewski
    Reviewed-by: Stefano Babic

    Lukasz Majewski
     
  • This commit provides support for Kieback & Peter GmbH IMX6Q based
    TPC board.

    U-boot console output:

    U-Boot SPL 2018.05-rc1-00005-g631e2d01fd (Apr 04 2018 - 21:16:24 +0200)
    Trying to boot from MMC1

    U-Boot 2018.05-rc1-00005-g631e2d01fd (Apr 04 2018 - 21:16:24 +0200)

    CPU: Freescale i.MX6Q rev1.5 996 MHz (running at 792 MHz)
    CPU: Extended Commercial temperature grade (-20C to 105C) at 37C
    Reset cause: POR
    Board: K+P KP_IMX6Q_TPC i.MX6Q
    Watchdog enabled
    I2C: ready
    DRAM: 2 GiB
    MMC: FSL_SDHC: 0, FSL_SDHC: 1
    Loading Environment from MMC... OK
    In: serial
    Out: serial
    Err: serial
    Net: FEC [PRIME]
    Autoboot in 3 seconds

    Lukasz Majewski