blob: 649aa3c543db1d394f949154ca5e7efea683eb9b [file] [log] [blame]
Klaus Goger81039932017-04-07 19:13:38 +02001Introduction
2============
3
4The RK3399-Q7 (Puma) is a system-on-module featuring the Rockchip
5RK3399 in a Qseven-compatible form-factor.
6
7RK3399-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
27Here is the step-by-step to boot to U-Boot on rk3399.
28
Quentin Schulzd1b93392021-11-12 15:15:50 +010029Get the Source and build ATF binary
30===================================
Klaus Goger81039932017-04-07 19:13:38 +020031
Quentin Schulzd1b93392021-11-12 15:15:50 +010032 > git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git
Klaus Goger81039932017-04-07 19:13:38 +020033
34Compile the ATF
35===============
36
Quentin Schulzd1b93392021-11-12 15:15:50 +010037 > cd trusted-firmware-a
Klaus Goger81039932017-04-07 19:13:38 +020038 > make CROSS_COMPILE=aarch64-linux-gnu- PLAT=rk3399 bl31
Quentin Schulzd1b93392021-11-12 15:15:50 +010039 > cp build/rk3399/release/bl31/bl31.elf ../u-boot/bl31.elf
Klaus Goger81039932017-04-07 19:13:38 +020040
41Compile the U-Boot
42==================
43
44 > cd ../u-boot
45 > make CROSS_COMPILE=aarch64-linux-gnu- puma-rk3399_defconfig all
46
Klaus Goger81039932017-04-07 19:13:38 +020047Flash the image
48===============
49
Quentin Schulzd7bd8152022-09-15 11:14:30 +020050Copy u-boot-rockchip.bin to offset 32k for SD/eMMC.
Quentin Schulz744fc432022-09-15 11:14:32 +020051Copy u-boot-rockchip-spi.bin to offset 0 for NOR-flash.
Klaus Goger81039932017-04-07 19:13:38 +020052
Klaus Goger5f49bc42017-09-11 21:05:00 +020053SD-Card
54-------
55
Quentin Schulzd7bd8152022-09-15 11:14:30 +020056 > dd if=u-boot-rockchip.bin of=/dev/sdb seek=64
Klaus Goger81039932017-04-07 19:13:38 +020057
Klaus Goger5f49bc42017-09-11 21:05:00 +020058eMMC
59----
60
61rkdeveloptool allows to flash the on-board eMMC via the USB OTG interface with
62help of the Rockchip loader binary.
63
64 > git clone https://github.com/rockchip-linux/rkdeveloptool
65 > cd rkdeveloptool
66 > autoreconf -i && ./configure && make
67 > git clone https://github.com/rockchip-linux/rkbin.git
Quentin Schulzd1b93392021-11-12 15:15:50 +010068 > cd rkbin
69 > ./tools/boot_merger RKBOOT/RK3399MINIALL.ini
70 > cd ..
71 > ./rkdeveloptool db rkbin/rk3399_loader_v1.25.126.bin
Quentin Schulzd7bd8152022-09-15 11:14:30 +020072 > ./rkdeveloptool wl 64 ../u-boot-rockchip.bin
Klaus Goger5f49bc42017-09-11 21:05:00 +020073
74NOR-Flash
75---------
76
Quentin Schulzd1b93392021-11-12 15:15:50 +010077rkdeveloptool allows to flash the on-board SPI via the USB OTG interface with
78help of the Rockchip loader binary.
Klaus Goger5f49bc42017-09-11 21:05:00 +020079
Quentin Schulzd1b93392021-11-12 15:15:50 +010080 > git clone https://github.com/rockchip-linux/rkdeveloptool
81 > cd rkdeveloptool
82 > autoreconf -i && ./configure && make
83 > git clone https://github.com/rockchip-linux/rkbin.git
84 > cd rkbin
85 > ./tools/boot_merger RKBOOT/RK3399MINIALL_SPINOR.ini
86 > cd ..
87 > ./rkdeveloptool db rkbin/rk3399_loader_spinor_v1.25.114.bin
88 > ./rkdeveloptool ef
Quentin Schulz744fc432022-09-15 11:14:32 +020089 > ./rkdeveloptool wl 0 ../u-boot-rockchip-spi.bin