Name Date Size #Lines LOC

..--

KconfigH A D05-Jun-2025204 1610

MAINTAINERSH A D05-Jun-2025181 76

MakefileH A D05-Jun-2025120 81

READMEH A D05-Jun-20251.3 KiB4631

evb_rv1108.cH A D05-Jun-2025146 60

README

1Here is the step-by-step to boot U-Boot on rv1108 evb.
2
3
4Compile  U-Boot
5===========================
6  > make CROSS_COMPILE=arm-linux-gnueabihf- evb-rv1108_defconfig  all
7  > ./tools/mkimage  -n rv1108 -T rksd -d ./out/u-boot-spl.bin spl.bin
8  You can also use the ddr bin from rockchip official release [0] instead of u-boot-spl:
9  > ./tools/mkimage  -n rv1108 -T rksd -d ../rkbin/rv1x/rv1108ddr_v1.00.bin spl.bin
10  > cat spl.bin u-boot.bin > u-boot.img
11
12Flash the image by rkdeveloptool
13================================
14rkdeveloptool can get from https://github.com/rockchip-linux/rkdeveloptool.git
15
16Power on(or reset with RESET KEY) with MASKROM KEY preesed, and then:
17  > rkdeveloptool db ./rkbin/rv1x/rv1108usbboot_v1.00.bin
18  > rkdeveloptool wl 0x40 u-boot.img
19  > rkdeveloptool RD
20
21
22You should be able to get U-Boot log message from boot console with baudrate 1500000:
23
24U-Boot SPL board initReturning to boot ROM...
25
26
27U-Boot 2017.09-01119-gc3ef4c0-dirty (Feb 06 2018 - 10:04:12 +0800)
28
29Model: Rockchip RV1108 Evaluation board
30DRAM:  256 MiB
31APLL: 400000000 DPLL:798000000 GPLL:384000000
32MMC:
33Using default environment
34
35In:    serial@10210000
36Out:   serial@10210000
37Err:   serial@10210000
38Model: Rockchip RV1108 Evaluation board
39Net:   No ethernet found.
40Hit any key to stop autoboot:  0
41=>
42
43
44
45[0] git clone  https://github.com/rockchip-linux/rkbin.git
46