imx8m.rst 1.27 KB
Newer Older
1
2
NXP i.MX 8M Series
==================
3
4
5
6
7
8
9

The i.MX 8M family of applications processors based on Arm Corte-A53 and Cortex-M4
cores provide high-performance computing, power efficiency, enhanced system
reliability and embedded security needed to drive the growth of fast-growing
edge node computing, streaming multimedia, and machine learning applications.

Boot Sequence
10
-------------
11
12
13
14

Bootrom --> SPL --> BL31 --> BL33(u-boot) --> Linux kernel

How to build
15
------------
16
17

Build Procedure
18
~~~~~~~~~~~~~~~
19
20
21
22
23
24
25
26
27
28
29
30

-  Prepare AARCH64 toolchain.

-  Build spl and u-boot firstly, and get binary images: u-boot-spl.bin,
   u-boot-nodtb.bin and dtb for the target board.

-  Build TF-A

   Build bl31:

   .. code:: shell

31
       CROSS_COMPILE=aarch64-none-elf- make PLAT=<Target_SoC> bl31
32
33

   Target_SoC should be "imx8mq" for i.MX8MQ SoC.
34
   Target_SoC should be "imx8mm" for i.MX8MM SoC.
35
36

Deploy TF-A Images
37
~~~~~~~~~~~~~~~~~~
38
39
40
41
42
43

TF-A binary(bl31.bin), u-boot-spl.bin u-boot-nodtb.bin and dtb are combined
together to generate a binary file called flash.bin, the imx-mkimage tool is
used to generate flash.bin, and flash.bin needs to be flashed into SD card
with certain offset for BOOT ROM. the u-boot and imx-mkimage will be upstreamed
soon, this doc will be updated once they are ready, and the link will be posted.