blob: eb0b7d4fd1f9461c438a665d613e4608b54cf82b [file] [log] [blame]
Christian Hewitt9ffb74f52020-12-18 08:45:45 +00001.. SPDX-License-Identifier: GPL-2.0+
2
Christian Hewitt1d120422023-03-20 11:45:41 +00003U-Boot for Beelink GT-King Pro (S922X)
4======================================
Christian Hewitt9ffb74f52020-12-18 08:45:45 +00005
Christian Hewitt1d120422023-03-20 11:45:41 +00006The Shenzen AZW (Beelink) GT-King Pro is based on the Amlogic W400 reference board with
7an S922X-H chip and the following specifications:
Christian Hewitt9ffb74f52020-12-18 08:45:45 +00008
9- 4GB LPDDR4 RAM
10- 64GB eMMC storage
11- 10/100/1000 Base-T Ethernet
12- AP6356S Wireless (802.11 a/b/g/n/ac, BT 4.1)
13- HDMI 2.1 video
14- Analogue audio output
15- 1x RS232 port
16- 2x USB 2.0 port
17- 2x USB 3.0 ports
18- IR receiver
19- 1x SD card slot
20- 1x Power on/off button
21
Christian Hewitt1d120422023-03-20 11:45:41 +000022Beelink do not provide public schematics, but have been willing to share them with known
23distro developers to assist with development.
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000024
Christian Hewitt1d120422023-03-20 11:45:41 +000025U-Boot Compilation
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000026------------------
27
28.. code-block:: bash
29
30 $ export CROSS_COMPILE=aarch64-none-elf-
31 $ make beelink-gtkingpro_defconfig
32 $ make
33
Christian Hewitt1d120422023-03-20 11:45:41 +000034U-Boot Signing with Pre-Built FIP repo
35--------------------------------------
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000036
Christian Hewitt1d120422023-03-20 11:45:41 +000037.. code-block:: bash
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000038
Christian Hewitt1d120422023-03-20 11:45:41 +000039 $ git clone https://github.com/LibreELEC/amlogic-boot-fip --depth=1
40 $ cd amlogic-boot-fip
41 $ mkdir my-output-dir
42 $ ./build-fip.sh beelink-s922x /path/to/u-boot/u-boot.bin my-output-dir
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000043
Christian Hewitt1d120422023-03-20 11:45:41 +000044U-Boot Manual Signing
45---------------------
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000046
Christian Hewitt1d120422023-03-20 11:45:41 +000047Beelink released an Amlogic "SDK" dump in their forums, but the U-Boot sources included
48result in 2GB RAM detected. The following FIPs were generated with newer sources and
49detect 4GB RAM: https://github.com/LibreELEC/amlogic-boot-fip/tree/master/beelink-s922x
Neil Armstrong2ea98682022-03-02 10:42:22 +010050
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000051.. code-block:: bash
52
53 $ wget https://github.com/LibreELEC/amlogic-boot-fip/archive/master.zip
54 $ unzip master.zip
55 $ export FIPDIR=$PWD/amlogic-boot-fip/beelink-s922x
56
57Go back to the mainline U-Boot source tree then:
58
59.. code-block:: bash
60
61 $ mkdir fip
62 $ cp $FIPDIR/* fip/
63 $ cp u-boot.bin fip/bl33.bin
64
65 $ sh fip/blx_fix.sh \
Christian Hewitt1d120422023-03-20 11:45:41 +000066 fip/bl30.bin \
67 fip/zero_tmp \
68 fip/bl30_zero.bin \
69 fip/bl301.bin \
70 fip/bl301_zero.bin \
71 fip/bl30_new.bin \
72 bl30
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000073
74 $ sh fip/blx_fix.sh \
Christian Hewitt1d120422023-03-20 11:45:41 +000075 fip/bl2.bin \
76 fip/zero_tmp \
77 fip/bl2_zero.bin \
78 fip/acs.bin \
79 fip/bl21_zero.bin \
80 fip/bl2_new.bin \
81 bl2
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000082
83 $ fip/aml_encrypt_g12b --bl30sig --input fip/bl30_new.bin \
Christian Hewitt1d120422023-03-20 11:45:41 +000084 --output fip/bl30_new.bin.g12a.enc \
85 --level v3
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000086 $ fip/aml_encrypt_g12b --bl3sig --input fip/bl30_new.bin.g12a.enc \
Christian Hewitt1d120422023-03-20 11:45:41 +000087 --output fip/bl30_new.bin.enc \
88 --level v3 --type bl30
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000089 $ fip/aml_encrypt_g12b --bl3sig --input fip/bl31.img \
Christian Hewitt1d120422023-03-20 11:45:41 +000090 --output fip/bl31.img.enc \
91 --level v3 --type bl31
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000092 $ fip/aml_encrypt_g12b --bl3sig --input fip/bl33.bin --compress lz4 \
Christian Hewitt1d120422023-03-20 11:45:41 +000093 --output fip/bl33.bin.enc \
94 --level v3 --type bl33
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000095 $ fip/aml_encrypt_g12b --bl2sig --input fip/bl2_new.bin \
Christian Hewitt1d120422023-03-20 11:45:41 +000096 --output fip/bl2.n.bin.sig
Christian Hewitt9ffb74f52020-12-18 08:45:45 +000097 $ fip/aml_encrypt_g12b --bootmk \
Christian Hewitt1d120422023-03-20 11:45:41 +000098 --output fip/u-boot.bin \
99 --bl2 fip/bl2.n.bin.sig \
100 --bl30 fip/bl30_new.bin.enc \
101 --bl31 fip/bl31.img.enc \
102 --bl33 fip/bl33.bin.enc \
103 --ddrfw1 fip/ddr4_1d.fw \
104 --ddrfw2 fip/ddr4_2d.fw \
105 --ddrfw3 fip/ddr3_1d.fw \
106 --ddrfw4 fip/piei.fw \
107 --ddrfw5 fip/lpddr4_1d.fw \
108 --ddrfw6 fip/lpddr4_2d.fw \
109 --ddrfw7 fip/diag_lpddr4.fw \
110 --ddrfw8 fip/aml_ddr.fw \
111 --level v3
Christian Hewitt9ffb74f52020-12-18 08:45:45 +0000112
Christian Hewitt1d120422023-03-20 11:45:41 +0000113Then write U-Boot to SD or eMMC with:
Christian Hewitt9ffb74f52020-12-18 08:45:45 +0000114
115.. code-block:: bash
116
Christian Hewitt1d120422023-03-20 11:45:41 +0000117 $ DEV=/dev/boot_device
Christian Hewitt9ffb74f52020-12-18 08:45:45 +0000118 $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=512 skip=1 seek=1
Christian Hewitt1d120422023-03-20 11:45:41 +0000119 $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=1 count=440