Browse Source

First doc draft

Giulio 3 years ago
commit
867a3b4cc3

+ 87 - 0
Readme.md

@@ -0,0 +1,87 @@
+# Pinebook Pro info & experiments
+### RK3399 Datasheets
+Datasheets are available at [rockchip.fr](https://rockchip.fr). A backup of the relevant datasheets can be found in this repo in the dedicated folder.
+
+### UART Interface
+Self building the serial to 3.5mm cable is an easy task (even without a proper tester):
+
+
+The baudrate for the rk3399 SoC is 1500000 or 1.5Mmbps. Note that not every serial adapter does support this kind of rate. If if it does, there might be driver issues. Furthermore, not every console software supports that baudrate: for instance GNU `screen` used to had problems. `picocom` is a well tested and working solution that supports capture.
+
+
+Serial adapters:
+ * CP2102 does not support the baudrate
+ * CH340 in a serial DB9 cable does not work due to the voltage of 5V
+ * PL011 is built in in all generations of Raspberry Pi and does work
+ * CH340/CH340G with 3.3V are reported working
+
+The bootrom does not provide any output.
+
+![3.5mm Jack Colors](https://git.lsd.cat/g/pinebook-experiments/raw/master/images/35mm_cable_colors.jpg)
+![Raspberry Pi as UART adapter](https://git.lsd.cat/g/pinebook-experiments/raw/master/images/raspberry_uart.jpg)
+
+
+### U-Boot build
+The following build process builds everything from sources, using the latest ATF.
+```
+git clone https://github.com/ARM-software/arm-trusted-firmware.git atf
+git clone https://gitlab.com/pine64-org/u-boot
+cd atf
+CROSS_COMPILE=aarch64-linux-gnu- make -j12 PLAT=rk3399 CFLAGS='-gdwarf-2'
+cd ..
+cd u-boot
+CROSS_COMPILE=aarch64-linux-gnu- make -j12 BL31=../atf/build/rk3399/release/bl31/bl31.elf
+```
+
+Write it on sd
+```
+dd if=uboot/idbloader.img of=/dev/mmcblk2 seek=64
+dd if=uboot/u-boot.itb of=/dev/mmcblk2 seek=16384
+```
+
+### Bootrom dumping
+This is not a security issue and does not exploit any hole. Since the Pinebook Pro is a developer board, it is fully unlocked and thus we can run any code we want by patching the SPL stage of U-Boot which run at Secure Level 3 and thus has the highest privileges.
+
+The bootrom should follow the following logical flow:
+ 1. Do basic hardware initialization
+ 2. Test and attempt to boot from the SPI NOR
+ 3. Test and attempt to boot from the eMMC 
+ 4. Test and attempt to boot from the SD
+ 5. In case all attempts above fails, enter MaskRom/Recvoery mode
+ 6. If in Maskrom mode, attempt recovery via USB OTG
+
+The bootrom can be dumped easily, in the file `u-boot/arch/arm/mach-rockchip/bootrom.c` replace the function `back_to_bootrom` with the following code:
+
+```
+void back_to_bootrom(enum rockchip_bootrom_cmd brom_cmd) {
+#if CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT)
+	char * p = (void *)0xffff0000;
+
+	int level;
+	level = current_el();
+
+	printf("Running in level: %d\n", level);
+	puts("Dumping 32k at 0xffff0000\n");
+	for (int i=0; i<32768; i++) {
+		printf("%02x ", p[i]);
+    puts("Returning to boot ROM...\n");
+#endif
+	_back_to_bootrom(brom_cmd);
+}
+```
+Then build `u-boot`, install it on the boot media in use and save a log from the serial console output.
+
+The bootrom ha a _magic_ ASCII signature at the end `C03361028110001V`.
+
+### Tasks
+ * bootrom re?
+ * U-boot from SPI?
+
+ * Coreboot?
+
+### Links
+
+https://eno.space/blog/2020/01/pbp-uboot
+https://wiki.pine64.org/wiki/RK3399_boot_sequence
+http://opensource.rock-chips.com/wiki_Boot_option
+https://forum.pine64.org/showthread.php?tid=5026

BIN
bootrom/bootrom.bin


BIN
datasheets/RK3399 datasheet V1.8.pdf


File diff suppressed because it is too large
+ 6 - 0
datasheets/Rockchip RK3399 TRM V1.3 Part1.pdf


File diff suppressed because it is too large
+ 6 - 0
datasheets/Rockchip RK3399 TRM V1.3 Part2.pdf


BIN
datasheets/Rockchip RK3399 TRM V1.4 Part1.pdf


BIN
images/35mm_cable_colors.jpg


BIN
images/raspberry_uart.jpg


Some files were not shown because too many files changed in this diff