odroid-go-ultra.rst 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .. SPDX-License-Identifier: GPL-2.0+
  2. U-Boot for ODROID-GO-ULTRA (S922X)
  3. ==================================
  4. The ODROID GO ULTRA is a portable gaming device with the following characteristics:
  5. - Amlogic S922X SoC
  6. - RK817 & RK818 PMICs
  7. - 2GiB LPDDR4
  8. - On board 16GiB eMMC
  9. - Micro SD Card slot
  10. - 5inch 854×480 MIPI-DSI TFT LCD
  11. - Earphone stereo jack, 0.5Watt 8Ω Mono speaker
  12. - Li-Polymer 3.7V/4000mAh Battery
  13. - USB-A 2.0 Host Connector
  14. - x16 GPIO Input Buttons
  15. - 2x ADC Analog Joysticks
  16. - USB-C Port for USB2 Device and Charging
  17. U-Boot Compilation
  18. ------------------
  19. .. code-block:: bash
  20. $ export CROSS_COMPILE=aarch64-none-elf-
  21. $ make odroid-go-ultra_defconfig
  22. $ make
  23. U-Boot Signing with Pre-Built FIP repo
  24. --------------------------------------
  25. .. code-block:: bash
  26. $ git clone https://github.com/LibreELEC/amlogic-boot-fip --depth=1
  27. $ cd amlogic-boot-fip
  28. $ mkdir my-output-dir
  29. $ ./build-fip.sh odroid-go-ultra /path/to/u-boot/u-boot.bin my-output-dir
  30. Then write the image to SD or eMMC with:
  31. .. code-block:: bash
  32. $ DEV=/dev/boot_device
  33. $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=512 skip=1 seek=1
  34. $ dd if=fip/u-boot.bin.sd.bin of=$DEV conv=fsync,notrunc bs=1 count=440