blob: cd21466f70b89f5dcbf40bdaf5e0358f8f11d14c [file] [log] [blame]
Neil Armstrong0ce36392020-06-11 10:53:49 +02001.. SPDX-License-Identifier: GPL-2.0+
2
Christian Hewitt2cdd4e72023-03-20 11:45:47 +00003U-Boot for Khadas VIM3L (S905D3)
4================================
Neil Armstrong0ce36392020-06-11 10:53:49 +02005
Christian Hewitt2cdd4e72023-03-20 11:45:47 +00006Khadas VIM3L is a Single Board Computer manufactured by Shenzhen Wesion Technology Co. Ltd
7with the following specifications:
Neil Armstrong0ce36392020-06-11 10:53:49 +02008
9 - Amlogic S905D3 Arm Cortex-A55 quad-core SoC
10 - 2GB LPDDR4 SDRAM
11 - Gigabit Ethernet
12 - HDMI 2.1 display
13 - 40-pin GPIO header
14 - 1 x USB 3.0 Host, 1 x USB 2.0 Host
15 - eMMC, microSD
16 - M.2
17 - Infrared receiver
18
19Schematics are available on the manufacturer website.
20
Neil Armstrongadbff642020-09-21 09:34:15 +020021PCIe Setup
22----------
Neil Armstrongadbff642020-09-21 09:34:15 +020023
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000024The on-board MCU can mux the PCIe/USB3.0 shared differential lines using a FUSB340TMX USB
253.1 SuperSpeed Data Switch between a USB3.0 Type-A connector and an M.2 Key-M slot. The
26PHY driving these differential lines is shared between the USB3.0 controller and the PCIe
27Controller, thus only a single controller can use it.
28
29To setup for PCIe run the following commands from U-Boot then power-cycle the board:
Neil Armstrongadbff642020-09-21 09:34:15 +020030
31.. code-block:: none
32
33 i2c dev i2c@5000
34 i2c mw 0x18 0x33 1
35
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000036To revert to USB3.0 run the following commands from U-Boot then power-cycle the board:
Neil Armstrongadbff642020-09-21 09:34:15 +020037
38.. code-block:: none
39
40 i2c dev i2c@5000
41 i2c mw 0x18 0x33 0
42
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000043U-Boot Compilation
Neil Armstrong0ce36392020-06-11 10:53:49 +020044------------------
45
Neil Armstrong72f22832020-11-05 16:18:57 +010046.. code-block:: bash
47
Neil Armstrong0ce36392020-06-11 10:53:49 +020048 $ export CROSS_COMPILE=aarch64-none-elf-
49 $ make khadas-vim3l_defconfig
50 $ make
51
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000052U-Boot Signing with Pre-Built FIP repo
53--------------------------------------
Neil Armstrong0ce36392020-06-11 10:53:49 +020054
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000055.. code-block:: bash
Neil Armstrong4c605122022-03-02 10:42:22 +010056
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000057 $ git clone https://github.com/LibreELEC/amlogic-boot-fip --depth=1
58 $ cd amlogic-boot-fip
59 $ mkdir my-output-dir
60 $ ./build-fip.sh khadas-vim3l /path/to/u-boot/u-boot.bin my-output-dir
61
62U-Boot Manual Signing
63---------------------
64
65Amlogic does not provide sources for the firmware and tools needed to create a bootloader
66image so it is necessary to obtain binaries from sources published by the board vendor:
Neil Armstrong0ce36392020-06-11 10:53:49 +020067
68.. code-block:: bash
69
70 $ wget https://releases.linaro.org/archive/13.11/components/toolchain/binaries/gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar.xz
71 $ wget https://releases.linaro.org/archive/13.11/components/toolchain/binaries/gcc-linaro-arm-none-eabi-4.8-2013.11_linux.tar.xz
72 $ tar xvfJ gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar.xz
73 $ tar xvfJ gcc-linaro-arm-none-eabi-4.8-2013.11_linux.tar.xz
74 $ export PATH=$PWD/gcc-linaro-aarch64-none-elf-4.8-2013.11_linux/bin:$PWD/gcc-linaro-arm-none-eabi-4.8-2013.11_linux/bin:$PATH
75
76 $ DIR=vim3l-u-boot
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000077 $ git clone --depth 1 https://github.com/khadas/u-boot.git -b khadas-vims-v2015.01 $DIR
Neil Armstrong0ce36392020-06-11 10:53:49 +020078
79 $ cd vim3l-u-boot
80 $ make kvim3l_defconfig
Neil Armstrong72f22832020-11-05 16:18:57 +010081 $ make CROSS_COMPILE=aarch64-none-elf-
Neil Armstrong0ce36392020-06-11 10:53:49 +020082 $ export UBOOTDIR=$PWD
83
Christian Hewitt2cdd4e72023-03-20 11:45:47 +000084Go back to the mainline U-Boot source tree then:
Neil Armstrong0ce36392020-06-11 10:53:49 +020085
86.. code-block:: bash
87
88 $ mkdir fip
89
Neil Armstrong72f22832020-11-05 16:18:57 +010090 $ wget https://github.com/BayLibre/u-boot/releases/download/v2017.11-libretech-cc/blx_fix_g12a.sh -O fip/blx_fix.sh
Neil Armstrong0ce36392020-06-11 10:53:49 +020091 $ cp $UBOOTDIR/build/scp_task/bl301.bin fip/
92 $ cp $UBOOTDIR/build/board/khadas/kvim3l/firmware/acs.bin fip/
93 $ cp $UBOOTDIR/fip/g12a/bl2.bin fip/
94 $ cp $UBOOTDIR/fip/g12a/bl30.bin fip/
95 $ cp $UBOOTDIR/fip/g12a/bl31.img fip/
96 $ cp $UBOOTDIR/fip/g12a/ddr3_1d.fw fip/
97 $ cp $UBOOTDIR/fip/g12a/ddr4_1d.fw fip/
98 $ cp $UBOOTDIR/fip/g12a/ddr4_2d.fw fip/
99 $ cp $UBOOTDIR/fip/g12a/diag_lpddr4.fw fip/
100 $ cp $UBOOTDIR/fip/g12a/lpddr3_1d.fw fip/
101 $ cp $UBOOTDIR/fip/g12a/lpddr4_1d.fw fip/
102 $ cp $UBOOTDIR/fip/g12a/lpddr4_2d.fw fip/
103 $ cp $UBOOTDIR/fip/g12a/piei.fw fip/
104 $ cp $UBOOTDIR/fip/g12a/aml_ddr.fw fip/
105 $ cp u-boot.bin fip/bl33.bin
106
Neil Armstrong72f22832020-11-05 16:18:57 +0100107 $ bash fip/blx_fix.sh \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000108 fip/bl30.bin \
109 fip/zero_tmp \
110 fip/bl30_zero.bin \
111 fip/bl301.bin \
112 fip/bl301_zero.bin \
113 fip/bl30_new.bin \
114 bl30
Neil Armstrong0ce36392020-06-11 10:53:49 +0200115
Neil Armstrong72f22832020-11-05 16:18:57 +0100116 $ bash fip/blx_fix.sh \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000117 fip/bl2.bin \
118 fip/zero_tmp \
119 fip/bl2_zero.bin \
120 fip/acs.bin \
121 fip/bl21_zero.bin \
122 fip/bl2_new.bin \
123 bl2
Neil Armstrong0ce36392020-06-11 10:53:49 +0200124
125 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bl30sig --input fip/bl30_new.bin \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000126 --output fip/bl30_new.bin.g12a.enc \
127 --level v3
Neil Armstrong0ce36392020-06-11 10:53:49 +0200128 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bl3sig --input fip/bl30_new.bin.g12a.enc \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000129 --output fip/bl30_new.bin.enc \
130 --level v3 --type bl30
Neil Armstrong0ce36392020-06-11 10:53:49 +0200131 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bl3sig --input fip/bl31.img \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000132 --output fip/bl31.img.enc \
133 --level v3 --type bl31
Neil Armstrong0ce36392020-06-11 10:53:49 +0200134 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bl3sig --input fip/bl33.bin --compress lz4 \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000135 --output fip/bl33.bin.enc \
136 --level v3 --type bl33 --compress lz4
Neil Armstrong0ce36392020-06-11 10:53:49 +0200137 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bl2sig --input fip/bl2_new.bin \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000138 --output fip/bl2.n.bin.sig
Neil Armstrong0ce36392020-06-11 10:53:49 +0200139 $ $UBOOTDIR/fip/g12a/aml_encrypt_g12a --bootmk \
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000140 --output fip/u-boot.bin \
141 --bl2 fip/bl2.n.bin.sig \
142 --bl30 fip/bl30_new.bin.enc \
143 --bl31 fip/bl31.img.enc \
144 --bl33 fip/bl33.bin.enc \
145 --ddrfw1 fip/ddr4_1d.fw \
146 --ddrfw2 fip/ddr4_2d.fw \
147 --ddrfw3 fip/ddr3_1d.fw \
148 --ddrfw4 fip/piei.fw \
149 --ddrfw5 fip/lpddr4_1d.fw \
150 --ddrfw6 fip/lpddr4_2d.fw \
151 --ddrfw7 fip/diag_lpddr4.fw \
152 --ddrfw8 fip/aml_ddr.fw \
153 --ddrfw9 fip/lpddr3_1d.fw \
154 --level v3
Neil Armstrong0ce36392020-06-11 10:53:49 +0200155
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000156Then write U-Boot to SD or eMMC with:
Neil Armstrong0ce36392020-06-11 10:53:49 +0200157
158.. code-block:: bash
159
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000160 $ DEV=/dev/boot_device
Neil Armstrong0ce36392020-06-11 10:53:49 +0200161 $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=512 skip=1 seek=1
Christian Hewitt2cdd4e72023-03-20 11:45:47 +0000162 $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=1 count=440