Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 1 | Introduction |
| 2 | ============ |
| 3 | |
| 4 | The RK3399-Q7 (Puma) is a system-on-module featuring the Rockchip |
| 5 | RK3399 in a Qseven-compatible form-factor. |
| 6 | |
| 7 | RK3399-Q7 features: |
| 8 | * CPU: ARMv8 64bit Big-Little architecture, |
| 9 | * Big: dual-core Cortex-A72 |
| 10 | * Little: quad-core Cortex-A53 |
| 11 | * IRAM: 200KB |
| 12 | * DRAM: 4GB-128MB dual-channel |
| 13 | * eMMC: onboard eMMC |
| 14 | * SD/MMC |
| 15 | * GbE (onboard Micrel KSZ9031) Gigabit ethernet PHY |
| 16 | * USB: |
| 17 | * USB3.0 dual role port |
| 18 | * 2x USB3.0 host, 1x USB2.0 host via onboard USB3.0 hub |
| 19 | * Display: HDMI/eDP/MIPI |
| 20 | * Camera: 2x CSI (one on the edge connector, one on the Q7 specified CSI ZIF) |
| 21 | * NOR Flash: onboard SPI NOR |
| 22 | * Companion Controller: onboard additional Cortex-M0 microcontroller |
| 23 | * RTC |
| 24 | * fan controller |
| 25 | * CAN |
| 26 | |
| 27 | Here is the step-by-step to boot to U-Boot on rk3399. |
| 28 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 29 | Get the Source and build ATF binary |
| 30 | =================================== |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 31 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 32 | > git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 33 | |
| 34 | Compile the ATF |
| 35 | =============== |
| 36 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 37 | > cd trusted-firmware-a |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 38 | > make CROSS_COMPILE=aarch64-linux-gnu- PLAT=rk3399 bl31 |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 39 | > cp build/rk3399/release/bl31/bl31.elf ../u-boot/bl31.elf |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 40 | |
| 41 | Compile the U-Boot |
| 42 | ================== |
| 43 | |
| 44 | > cd ../u-boot |
| 45 | > make CROSS_COMPILE=aarch64-linux-gnu- puma-rk3399_defconfig all |
| 46 | |
| 47 | Package the image |
| 48 | ================= |
| 49 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 50 | Creating an SPL image for SPI-NOR: |
Quentin Schulz | 0088ca4 | 2022-09-15 11:14:29 +0200 | [diff] [blame] | 51 | > tools/mkimage -n rk3399 -T rkspi -d tpl/u-boot-tpl.bin:spl/u-boot-spl.bin idbloader-spi.img |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 52 | |
| 53 | Flash the image |
| 54 | =============== |
| 55 | |
Quentin Schulz | d7bd815 | 2022-09-15 11:14:30 +0200 | [diff] [blame^] | 56 | Copy u-boot-rockchip.bin to offset 32k for SD/eMMC. |
Quentin Schulz | 0088ca4 | 2022-09-15 11:14:29 +0200 | [diff] [blame] | 57 | Copy the SPL to offset 0 and the FIT image to offset 512k for NOR-Flash. |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 58 | |
Klaus Goger | 5f49bc4 | 2017-09-11 21:05:00 +0200 | [diff] [blame] | 59 | SD-Card |
| 60 | ------- |
| 61 | |
Quentin Schulz | d7bd815 | 2022-09-15 11:14:30 +0200 | [diff] [blame^] | 62 | > dd if=u-boot-rockchip.bin of=/dev/sdb seek=64 |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 63 | |
Klaus Goger | 5f49bc4 | 2017-09-11 21:05:00 +0200 | [diff] [blame] | 64 | eMMC |
| 65 | ---- |
| 66 | |
| 67 | rkdeveloptool allows to flash the on-board eMMC via the USB OTG interface with |
| 68 | help of the Rockchip loader binary. |
| 69 | |
| 70 | > git clone https://github.com/rockchip-linux/rkdeveloptool |
| 71 | > cd rkdeveloptool |
| 72 | > autoreconf -i && ./configure && make |
| 73 | > git clone https://github.com/rockchip-linux/rkbin.git |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 74 | > cd rkbin |
| 75 | > ./tools/boot_merger RKBOOT/RK3399MINIALL.ini |
| 76 | > cd .. |
| 77 | > ./rkdeveloptool db rkbin/rk3399_loader_v1.25.126.bin |
Quentin Schulz | d7bd815 | 2022-09-15 11:14:30 +0200 | [diff] [blame^] | 78 | > ./rkdeveloptool wl 64 ../u-boot-rockchip.bin |
Klaus Goger | 5f49bc4 | 2017-09-11 21:05:00 +0200 | [diff] [blame] | 79 | |
| 80 | NOR-Flash |
| 81 | --------- |
| 82 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 83 | rkdeveloptool allows to flash the on-board SPI via the USB OTG interface with |
| 84 | help of the Rockchip loader binary. |
Klaus Goger | 5f49bc4 | 2017-09-11 21:05:00 +0200 | [diff] [blame] | 85 | |
Quentin Schulz | d1b9339 | 2021-11-12 15:15:50 +0100 | [diff] [blame] | 86 | > git clone https://github.com/rockchip-linux/rkdeveloptool |
| 87 | > cd rkdeveloptool |
| 88 | > autoreconf -i && ./configure && make |
| 89 | > git clone https://github.com/rockchip-linux/rkbin.git |
| 90 | > cd rkbin |
| 91 | > ./tools/boot_merger RKBOOT/RK3399MINIALL_SPINOR.ini |
| 92 | > cd .. |
| 93 | > ./rkdeveloptool db rkbin/rk3399_loader_spinor_v1.25.114.bin |
| 94 | > ./rkdeveloptool ef |
| 95 | > ./rkdeveloptool wl 0 ../idbloader-spi.img |
Quentin Schulz | 0088ca4 | 2022-09-15 11:14:29 +0200 | [diff] [blame] | 96 | > ./rkdeveloptool wl 1024 ../u-boot.itb |