aboutsummaryrefslogtreecommitdiff
path: root/doc/board/advantech/imx8qm-dmsse20-a1.rst
blob: b83e678cd9a19926632a71eb03971f4abea25f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.. SPDX-License-Identifier: GPL-2.0+

NXP i.MX8QM DMSSE20-a1 board
============================

Quick Start
-----------

- Build the ARM Trusted firmware binary
- Get scfw_tcm.bin and ahab-container.img
- Get imx-mkimage
- Build U-Boot
- Flash the binary into the SD card
- Boot

Get and Build the ARM Trusted Firmware
--------------------------------------

.. code-block:: bash

     $ git clone https://github.com/nxp-imx/imx-atf
     $ cd imx-atf/
     $ git checkout lf-5.10.72-2.2.0 -b lf-5.10.72-2.2.0
     $ make PLAT=imx8qm bl31
     $ cp build/imx8qm/release/bl31.bin $(builddir)

Get scfw_tcm.bin and ahab-container.img
---------------------------------------

.. code-block:: bash

     $ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/imx-sc-firmware-1.11.0.bin
     $ chmod +x imx-sc-firmware-1.11.0.bin
     $ ./imx-sc-firmware-1.11.0.bin
     $ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/imx-seco-3.8.5.bin
     $ chmod +x imx-seco-3.8.5.bin
     $ ./imx-seco-3.8.5.bin

Or use this to avoid running random scripts from the internet,
but note that you must agree to the license the script displays:

.. code-block:: bash

     $ dd if=imx-sc-firmware-1.11.0.bin of=imx-sc-firmware-1.11.0.tar.bz2 bs=42757 skip=1
     $ tar -xf imx-sc-firmware-1.11.0.tar.bz2
     $ cp imx-sc-firmware-1.11.0/mx8qm-val-scfw-tcm.bin $(builddir)
     $ dd if=imx-seco-3.8.5.bin of=imx-seco-3.8.5.tar.bz2 bs=43978 skip=1
     $ tar -xf imx-seco-3.8.5.tar.bz2
     $ cp imx-seco-3.8.5/firmware/seco/mx8qmb0-ahab-container.img $(builddir)

Build U-Boot
------------
.. code-block:: bash

     $ export ATF_LOAD_ADDR=0x80000000
     $ export BL33_LOAD_ADDR=0x80020000
     $ make imx8qm_dmsse20a1_defconfig
     $ make