mbox series

[U-Boot,v4,0/2] Add board support for iMX8QXP AI_ML board

Message ID 20190719065743.28192-1-manivannan.sadhasivam@linaro.org
Headers show
Series Add board support for iMX8QXP AI_ML board | expand

Message

Manivannan Sadhasivam July 19, 2019, 6:57 a.m. UTC
Hello,

This patchset adds initial board support for iMX8QXP AI_ML board
from Einfochips. This board is one of the Consumer Edition and AI
boards of the 96Boards family.

This initial supports contains following peripherals which are tested and
known to work:
    
1. Debug serial via UART2
2. SD card
3. Ethernet

Thanks,
Mani

Note: This patchset depends on the below cleanup patches submitted:
[U-Boot,1/2] arm: imx8: factor out uart init code
[U-Boot,2/2] arm: imx8: don't duplicate build_info()

Changes in v4:

* Incorporated review comments from Fabio.

Changes in v3:

* Incorporated review comments from Fabio. Major change is switching to
  distro_boot.
* Added Reviewed-by tag from Peng Fan.

Changes in v2:

* Rebased the patches on top of following patches:
  [U-Boot,1/2] arm: imx8: factor out uart init code
  [U-Boot,2/2] arm: imx8: don't duplicate build_info()

Manivannan Sadhasivam (2):
  arm: dts: Add devicetree support for iMXQXP AI_ML board
  board: Add support for iMX8QXP AI_ML board

 arch/arm/dts/Makefile                         |   1 +
 arch/arm/dts/fsl-imx8qxp-ai_ml-u-boot.dtsi    | 117 +++++++++++
 arch/arm/dts/fsl-imx8qxp-ai_ml.dts            | 181 ++++++++++++++++++
 arch/arm/mach-imx/imx8/Kconfig                |   6 +
 board/einfochips/imx8qxp_ai_ml/Kconfig        |  12 ++
 board/einfochips/imx8qxp_ai_ml/MAINTAINERS    |   6 +
 board/einfochips/imx8qxp_ai_ml/Makefile       |   8 +
 board/einfochips/imx8qxp_ai_ml/README         |  49 +++++
 .../einfochips/imx8qxp_ai_ml/imx8qxp_ai_ml.c  | 117 +++++++++++
 board/einfochips/imx8qxp_ai_ml/imximage.cfg   |  24 +++
 board/einfochips/imx8qxp_ai_ml/spl.c          |  49 +++++
 configs/imx8qxp_ai_ml_defconfig               |  83 ++++++++
 include/configs/imx8qxp_ai_ml.h               | 104 ++++++++++
 13 files changed, 757 insertions(+)
 create mode 100644 arch/arm/dts/fsl-imx8qxp-ai_ml-u-boot.dtsi
 create mode 100644 arch/arm/dts/fsl-imx8qxp-ai_ml.dts
 create mode 100644 board/einfochips/imx8qxp_ai_ml/Kconfig
 create mode 100644 board/einfochips/imx8qxp_ai_ml/MAINTAINERS
 create mode 100644 board/einfochips/imx8qxp_ai_ml/Makefile
 create mode 100644 board/einfochips/imx8qxp_ai_ml/README
 create mode 100644 board/einfochips/imx8qxp_ai_ml/imx8qxp_ai_ml.c
 create mode 100644 board/einfochips/imx8qxp_ai_ml/imximage.cfg
 create mode 100644 board/einfochips/imx8qxp_ai_ml/spl.c
 create mode 100644 configs/imx8qxp_ai_ml_defconfig
 create mode 100644 include/configs/imx8qxp_ai_ml.h

Comments

Lukasz Majewski July 24, 2019, 7:52 a.m. UTC | #1
Hi Manivannan,

> Hello,
> 
> This patchset adds initial board support for iMX8QXP AI_ML board
> from Einfochips. This board is one of the Consumer Edition and AI
> boards of the 96Boards family.
> 
> This initial supports contains following peripherals which are tested
> and known to work:
>     
> 1. Debug serial via UART2
> 2. SD card
> 3. Ethernet
> 

Please paste the output when u-boot boots for this board (from the SPL
banner to Linux booting).

> Thanks,
> Mani
> 
> Note: This patchset depends on the below cleanup patches submitted:
> [U-Boot,1/2] arm: imx8: factor out uart init code
> [U-Boot,2/2] arm: imx8: don't duplicate build_info()
> 
> Changes in v4:
> 
> * Incorporated review comments from Fabio.
> 
> Changes in v3:
> 
> * Incorporated review comments from Fabio. Major change is switching
> to distro_boot.
> * Added Reviewed-by tag from Peng Fan.
> 
> Changes in v2:
> 
> * Rebased the patches on top of following patches:
>   [U-Boot,1/2] arm: imx8: factor out uart init code
>   [U-Boot,2/2] arm: imx8: don't duplicate build_info()
> 
> Manivannan Sadhasivam (2):
>   arm: dts: Add devicetree support for iMXQXP AI_ML board
>   board: Add support for iMX8QXP AI_ML board
> 
>  arch/arm/dts/Makefile                         |   1 +
>  arch/arm/dts/fsl-imx8qxp-ai_ml-u-boot.dtsi    | 117 +++++++++++
>  arch/arm/dts/fsl-imx8qxp-ai_ml.dts            | 181
> ++++++++++++++++++ arch/arm/mach-imx/imx8/Kconfig                |
> 6 + board/einfochips/imx8qxp_ai_ml/Kconfig        |  12 ++
>  board/einfochips/imx8qxp_ai_ml/MAINTAINERS    |   6 +
>  board/einfochips/imx8qxp_ai_ml/Makefile       |   8 +
>  board/einfochips/imx8qxp_ai_ml/README         |  49 +++++
>  .../einfochips/imx8qxp_ai_ml/imx8qxp_ai_ml.c  | 117 +++++++++++
>  board/einfochips/imx8qxp_ai_ml/imximage.cfg   |  24 +++
>  board/einfochips/imx8qxp_ai_ml/spl.c          |  49 +++++
>  configs/imx8qxp_ai_ml_defconfig               |  83 ++++++++
>  include/configs/imx8qxp_ai_ml.h               | 104 ++++++++++
>  13 files changed, 757 insertions(+)
>  create mode 100644 arch/arm/dts/fsl-imx8qxp-ai_ml-u-boot.dtsi
>  create mode 100644 arch/arm/dts/fsl-imx8qxp-ai_ml.dts
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/Kconfig
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/MAINTAINERS
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/Makefile
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/README
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/imx8qxp_ai_ml.c
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/imximage.cfg
>  create mode 100644 board/einfochips/imx8qxp_ai_ml/spl.c
>  create mode 100644 configs/imx8qxp_ai_ml_defconfig
>  create mode 100644 include/configs/imx8qxp_ai_ml.h
> 




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de