diff options
author | Heiko Thiery <heiko.thiery@gmail.com> | 2022-01-31 17:30:45 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-02-05 15:49:02 +0100 |
commit | 16c7369ede7deba187a873b2f16ae487d39d1215 (patch) | |
tree | 33c425452c5c638646e526b79fee60776eb9ae87 /doc | |
parent | be63dc79560c21fa8d6674254b62ae412d612466 (diff) | |
download | u-boot-16c7369ede7deba187a873b2f16ae487d39d1215.tar.gz |
board: kontron: pitx-imx8m: Add Kontron pitx-imx8m board support
The Kontron pitx-imx8m is an NXP i.MX8MQ based board in the pITX form factor.
Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/board/kontron/index.rst | 1 | ||||
-rw-r--r-- | doc/board/kontron/pitx-imx8m.rst | 67 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/board/kontron/index.rst b/doc/board/kontron/index.rst index 7dfe3d9bc0..cb1906e626 100644 --- a/doc/board/kontron/index.rst +++ b/doc/board/kontron/index.rst @@ -6,6 +6,7 @@ Kontron .. toctree:: :maxdepth: 2 + pitx-imx8m sl28 sl-mx6ul sl-mx8mm diff --git a/doc/board/kontron/pitx-imx8m.rst b/doc/board/kontron/pitx-imx8m.rst new file mode 100644 index 0000000000..1f64cbd9b2 --- /dev/null +++ b/doc/board/kontron/pitx-imx8m.rst @@ -0,0 +1,67 @@ +.. SPDX-License-Identifier: GPL-2.0+ + +Kontron pitx-imx8m +================== + +The Kontron pitx-imx8m is an embedded board with an i.MX8MQ in the pITX +form factor. + +The board has two Ethernet ports, USB, HDMI/LVDS, m.2 slot, SD card, CAN, +RS232 and much more. + +Quick Start +----------- + +- Get and build the ARM Trusted firmware binary +- Get DDR and HDMI firmware +- Build U-Boot +- Install on SD card +- Boot + +Get and build the ARM Trusted firmware binary +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Note: builddir is U-Boot build directory (source directory for in-tree builds) + +.. code-block:: bash + + $ git clone https://github.com/ARM-software/arm-trusted-firmware.git + $ git checkout v2.5 + $ make PLAT=imx8mq ARCH=aarch64 CROSS_COMPILE=aarch64-linux-gnu- bl31 + $ cp build/imx8mq/release/bl31.bin $(builddir) + +Get DDR and HDMI firmware +^^^^^^^^^^^^^^^^^^^^^^^^^ + +Note: builddir is U-Boot build directory (source directory for in-tree builds) + +.. code-block:: bash + + $ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.11.bin + $ chmod +x firmware-imx-8.11.bin + $ ./firmware-imx-8.11 + $ cp firmware-imx-8.11/firmware/ddr/synopsys/lpddr4*.bin $(builddir) + $ cp firmware-imx-8.11/firmware/hdmi/cadence/signed_hdmi_imx8m.bin $(builddir) + +Build U-Boot +^^^^^^^^^^^^ + +.. code-block:: bash + + $ make kontron_pitx_imx8m_defconfig + $ make CROSS_COMPILE=aarch64-linux-gnu- + +Install on SD card +^^^^^^^^^^^^^^^^^^ + + +Burn the flash.bin to SD card at an offset of 33 KiB: + +.. code-block:: bash + + $ sudo dd if=flash.bin of=/dev/sd[x] bs=1024 seek=33 + +Boot +^^^^ + +Set the boot source selection to SD card boot and power on the board. |