Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | imx8mp_evk |
| 4 | ========== |
| 5 | |
| 6 | U-Boot for the NXP i.MX8MP EVK board |
| 7 | |
| 8 | Quick Start |
| 9 | ----------- |
| 10 | |
| 11 | - Build the ARM Trusted firmware binary |
| 12 | - Get the firmware-imx package |
| 13 | - Build U-Boot |
| 14 | - Boot |
| 15 | |
| 16 | Get and Build the ARM Trusted firmware |
| 17 | -------------------------------------- |
| 18 | |
Fabio Estevam | f0f4612 | 2023-01-12 21:52:23 -0300 | [diff] [blame] | 19 | Get ATF from: https://github.com/nxp-imx/imx-atf |
Peter Bergin | e8e2703 | 2021-02-14 20:19:22 +0100 | [diff] [blame] | 20 | branch: imx_5.4.70_2.3.0 |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 21 | |
| 22 | .. code-block:: bash |
| 23 | |
| 24 | $ make PLAT=imx8mp bl31 |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 25 | |
| 26 | Get the ddr firmware |
| 27 | -------------------- |
| 28 | |
| 29 | .. code-block:: bash |
| 30 | |
Peter Bergin | e8e2703 | 2021-02-14 20:19:22 +0100 | [diff] [blame] | 31 | $ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.10.bin |
| 32 | $ chmod +x firmware-imx-8.10.bin |
| 33 | $ ./firmware-imx-8.10.bin |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 34 | |
| 35 | Build U-Boot |
| 36 | ------------ |
| 37 | |
| 38 | .. code-block:: bash |
| 39 | |
Fabio Estevam | 8134043 | 2023-08-07 10:42:47 -0300 | [diff] [blame] | 40 | Note: builddir is U-Boot build directory (source directory for in-tree builds). |
| 41 | |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 42 | $ export CROSS_COMPILE=aarch64-poky-linux- |
Peter Bergin | e8e2703 | 2021-02-14 20:19:22 +0100 | [diff] [blame] | 43 | $ make O=build imx8mp_evk_defconfig |
Fabio Estevam | 8134043 | 2023-08-07 10:42:47 -0300 | [diff] [blame] | 44 | $ cp ../imx-atf/build/imx8mp/release/bl31.bin $(builddir) |
| 45 | $ cp ../firmware-imx-8.10/firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem_202006.bin $(builddir) |
| 46 | $ cp ../firmware-imx-8.10/firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem_202006.bin $(builddir) |
| 47 | $ cp ../firmware-imx-8.10/firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem_202006.bin $(builddir) |
| 48 | $ cp ../firmware-imx-8.10/firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem_202006.bin $(builddir) |
| 49 | $ make |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 50 | |
| 51 | Burn the flash.bin to the MicroSD card at offset 32KB: |
| 52 | |
| 53 | .. code-block:: bash |
| 54 | |
Fabio Estevam | 8134043 | 2023-08-07 10:42:47 -0300 | [diff] [blame] | 55 | $ sudo dd if=flash.bin of=/dev/sd[x] bs=1K seek=32 conv=notrunc; sync |
Peng Fan | 39d5341 | 2020-10-14 17:12:00 +0800 | [diff] [blame] | 56 | |
| 57 | Boot |
| 58 | ---- |
| 59 | |
| 60 | Set Boot switch to SD boot |
| 61 | Use /dev/ttyUSB2 for U-Boot console |