u-boot-brain/board/technexion/pico-imx8mq
Masahiro Yamada b75d8dc564 treewide: convert bd_t to struct bd_info by coccinelle
The Linux coding style guide (Documentation/process/coding-style.rst)
clearly says:

  It's a **mistake** to use typedef for structures and pointers.

Besides, using typedef for structures is annoying when you try to make
headers self-contained.

Let's say you have the following function declaration in a header:

  void foo(bd_t *bd);

This is not self-contained since bd_t is not defined.

To tell the compiler what 'bd_t' is, you need to include <asm/u-boot.h>

  #include <asm/u-boot.h>
  void foo(bd_t *bd);

Then, the include direcective pulls in more bloat needlessly.

If you use 'struct bd_info' instead, it is enough to put a forward
declaration as follows:

  struct bd_info;
  void foo(struct bd_info *bd);

Right, typedef'ing bd_t is a mistake.

I used coccinelle to generate this commit.

The semantic patch that makes this change is as follows:

  <smpl>
  @@
  typedef bd_t;
  @@
  -bd_t
  +struct bd_info
  </smpl>

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-07-17 09:30:13 -04:00
..
Kconfig ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
lpddr4_timing_1gb.c ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
lpddr4_timing_2gb.c ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
lpddr4_timing_3gb.c ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
lpddr4_timing_4gb.c ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
lpddr4_timing.h ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
MAINTAINERS ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
Makefile ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
pico-imx8mq.c imx8m: Refactor the OPTEE memory removal 2020-07-14 15:23:48 +08:00
README ARM: imx: pico-imx8mq: Add support for Technexion Pico-iMX8MQ 2020-05-10 13:19:39 +02:00
spl.c treewide: convert bd_t to struct bd_info by coccinelle 2020-07-17 09:30:13 -04:00

U-Boot for the Technexion Pico i.MX8MQ

Quick Start
===========
- Build the TFA binary
- Get DDR and HDMI firmware
- Build U-Boot
- Boot

Get and Build the TFA blob
==========================
Note: srctree is U-Boot source directory
Get ATF from: https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git
branch: master
$ CROSS_COMPILE=aarch64-linux-gnu- make PLAT=imx8mq bl31
$ cp build/imx8mq/release/bl31.bin $(builddir)

Get the DDR and HDMI firmware
=============================
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-7.9.bin
$ chmod +x firmware-imx-7.9.bin
$ ./firmware-imx-7.9.bin
# Or use this to avoid running random scripts from the internet,
# but note that you must agree to the license the script displays:
# $ dd if=firmware-imx-7.9.bin of=firmware-imx-7.9.tar.bz2 bs=38868 skip=1
# $ tar -xf firmware-imx-7.9.tar.bz2
$ cp firmware-imx-7.9/firmware/hdmi/cadence/signed_hdmi_imx8m.bin $(builddir)
$ cp firmware-imx-7.9/firmware/ddr/synopsys/lpddr4*.bin $(builddir)

Build U-Boot
============
$ export CROSS_COMPILE=aarch64-poky-linux-
$ make pico-imx8mq_defconfig
$ make flash.bin

Burn the flash.bin to MicroSD card offset 33KB
$ dd if=flash.bin of=/dev/mmcblkX bs=1024 seek=33
Or into eMMC from a running system
$ dhcp flash.bin && mmc write $loadaddr 0x42 0x800

Boot
====
"o" denotes a pin
"[]" denotes two pins bridged by a jumper

eMMC boot:
J1 o[] []o J2
   []o o[]

USB upload via USB-C connector:
J1 ooo ooo J2
   o[] []o