13 Jan, 2021

1 commit


09 Nov, 2020

4 commits

  • Add prarantheses to fix build warning as follows,
    if (!strict_strtoul(argv[1], 10, &override))
    ^~
    board/freescale/common/vid.c:976:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the if
    if (ret < 0)

    Signed-off-by: Biwen Li

    Biwen Li
     
  • Read PFE ESBC header flash with spi_flash_read API
    - logs as follows,
    Net: SF: Detected s25fs512s with page size 256 Bytes, erase size 256
    KiB, total 64 MiB
    "Synchronous Abort" handler, esr 0x96000210
    elr: 000000008206db44 lr : 0000000082004ea0 (reloc)
    elr: 00000000b7ba6b44 lr : 00000000b7b3dea0
    x0 : 00000000b79407e8 x1 : 0000000040640000
    x2 : 0000000000000050 x3 : 0000000000000000
    x4 : 000000000000000a x5 : 0000000000000050
    x6 : 0000000000000366 x7 : 00000000b7942308
    x8 : 00000000b76407c0 x9 : 0000000000000008
    x10: 0000000000000044 x11: 00000000b7634d1c
    x12: 000000000000004f x13: 0000000000000044
    x14: 00000000b7634d98 x15: 00000000b76407c0
    x16: 0000000000000000 x17: 0000000000000000
    x18: 00000000b7636dd8 x19: 0000000000000000
    x20: 00000000b79407d0 x21: 00000000b79407e8
    x22: 0000000040640000 x23: 00000000b7634e58
    x24: 0000000000000000 x25: 0000000003800000
    x26: 00000000b7bdd000 x27: 0000000000000000
    x28: 0000000000000000 x29: 00000000b7634d10

    Code: d2800003 eb03005f 54000101 d65f03c0 (f8636826)
    Resetting CPU ...

    Signed-off-by: Biwen Li

    Biwen Li
     
  • Make sure are RGMII internal delay modes are covered.

    Signed-off-by: Madalin Bucur

    Madalin Bucur
     
  • Signed-off-by: Madalin Bucur

    Madalin Bucur
     

05 Nov, 2020

1 commit


03 Nov, 2020

1 commit


29 Oct, 2020

2 commits


19 Oct, 2020

2 commits


29 Sep, 2020

5 commits


08 Sep, 2020

1 commit

  • This patch add base support for LX2162AQDS board.
    LX2162AQDS board supports LX2162A family SoCs.
    This patch add basic support of platform.

    Signed-off-by: Ioana Ciornei
    Signed-off-by: Zhao Qiang
    Signed-off-by: hui.song
    Signed-off-by: Manish Tomar
    Signed-off-by: Vikas Singh
    Signed-off-by: Meenakshi Aggarwal
    Signed-off-by: Priyanka Jain

    Meenakshi Aggarwal
     

02 Sep, 2020

1 commit


27 Aug, 2020

3 commits

  • Add support for SDHC adapter identification and configuration
    during board init.

    Reviewed-by: Priyanka Jain
    [rebase]
    Signed-off-by: Yangbo Lu

    Yangbo Lu
     
  • The eSDHC adapter card identification and multiplexing configuration
    through FPGA had been implemented in both common mmc driver and
    fsl_esdhc driver. However it is proper to move these code to board
    files and do it during board initialization. The FPGA registers are
    also board specific.

    This patch is to move eSDHC adapter card identification and
    multiplexing configuration from mmc driver to specific board files.
    And the option CONFIG_FSL_ESDHC_ADAPTER_IDENT is no longer needed.

    Signed-off-by: Yangbo Lu
    [Rebased, Removed T1040QDS change as board does not exist]
    Signed-off-by: Priyanka Jain

    Yangbo Lu
     
  • This patch is to define esdhc_status_fixup function for ls1028a to disable
    SDHC1/SDHC2 status in device tree node if not selected.

    Signed-off-by: Yinbo Zhu
    Signed-off-by: Xiaowei Bao
    Signed-off-by: Yangbo Lu
    Reviewed-by: Priyanka Jain

    Yinbo Zhu
     

16 Jul, 2020

4 commits


22 Jun, 2020

1 commit


11 Jun, 2020

1 commit


08 May, 2020

8 commits


01 May, 2020

1 commit

  • Add QSFP transceiver detection at boot time. Transceiver model,
    serial number and part number are displayed if module is detected.
    An environment variable used by the Cortina 40G PHY is set, forcing
    the initialization based on cable type.

    Signed-off-by: Florin Chiculita

    Florin Chiculita
     

27 Apr, 2020

1 commit


07 Apr, 2020

1 commit


03 Apr, 2020

2 commits

  • The Jetson Nano Developer Kit is a Tegra X1-based development board. It
    is similar to Jetson TX1 but it is not pin compatible. It features 4GB
    of LPDDR4, a SPI NOR flash for early boot firmware and an SD card slot
    used for storage.

    HDMI 2.0 or DP 1.2 are available for display, four USB ports (3 USB 2.0
    and 1 USB 3.0) can be used to attach a variety of peripherals and a PCI
    Ethernet controller provides onboard network connectivity. NVMe support
    has also been added. Env save is at the end of QSPI (4MB-8K).

    A 40-pin header on the board can be used to extend the capabilities and
    exposed interfaces of the Jetson Nano.

    Signed-off-by: Thierry Reding
    Signed-off-by: Tom Warren
    Tested-by: Peter Robinson

    Tom Warren
     
  • T210 CBoot is now doing the full pinmux and GPIO init, based on the DTB
    tables. Remove pinmux/GPIO init tables & code from all T210-based builds
    below:

    p2371-2180 aka TX1
    p2371-0000
    e2220-1170
    p2571

    Signed-off-by: Tom Warren
    Acked-by: Stephen Warren

    Tom Warren