README.sunxi64 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. Allwinner 64-bit boards README
  2. ==============================
  3. Newer Allwinner SoCs feature ARMv8 cores (ARM Cortex-A53) with support for
  4. both the 64-bit AArch64 mode and the ARMv7 compatible 32-bit AArch32 mode.
  5. Examples are the Allwinner A64 (used for instance on the Pine64 board) or
  6. the Allwinner H5 SoC (as used on the OrangePi PC 2).
  7. These SoCs are wired to start in AArch32 mode on reset and execute 32-bit
  8. code from the Boot ROM (BROM). As this has some implications on U-Boot, this
  9. file describes how to make full use of the 64-bit capabilities.
  10. Quick Start / Overview
  11. ======================
  12. - Build the ARM Trusted Firmware binary (see "ARM Trusted Firmware (ATF)" below)
  13. - Build U-Boot (see "SPL/U-Boot" below)
  14. - Transfer to an uSD card (see "microSD card" below)
  15. - Boot and enjoy!
  16. Building the firmware
  17. =====================
  18. The Allwinner A64/H5 firmware consists of three parts: U-Boot's SPL, an
  19. ARM Trusted Firmware (ATF) build and the U-Boot proper.
  20. The SPL will load both ATF and U-Boot proper along with the right device
  21. tree blob (.dtb) and will pass execution to ATF (in EL3), which in turn will
  22. drop into the U-Boot proper (in EL2).
  23. As the ATF binary will become part of the U-Boot image file, you will need
  24. to build it first.
  25. ARM Trusted Firmware (ATF)
  26. ----------------------------
  27. Checkout the "allwinner" branch from the github repository [1] and build it:
  28. $ export CROSS_COMPILE=aarch64-linux-gnu-
  29. $ make PLAT=sun50iw1p1 DEBUG=1 bl31
  30. The resulting binary is build/sun50iw1p1/debug/bl31.bin. Either put the
  31. location of this file into the BL31 environment variable or copy this to
  32. the root of your U-Boot build directory (or create a symbolic link).
  33. $ export BL31=/src/arm-trusted-firmware/build/sun50iw1p1/debug/bl31.bin
  34. (adjust the actual path accordingly)
  35. If you run into size issues with the resulting U-Boot image file, it might
  36. help to use a release build, by using "DEBUG=0" when building bl31.bin.
  37. As sometimes the ATF build process is a bit picky about the toolchain used,
  38. or if you can't be bothered with building ATF, there are known working
  39. binaries in the firmware repository[3], purely for convenience reasons.
  40. SPL/U-Boot
  41. ------------
  42. Both U-Boot proper and the SPL are using the 64-bit mode. As the boot ROM
  43. enters the SPL still in AArch32 secure SVC mode, there is some shim code to
  44. enter AArch64 very early. The rest of the SPL runs in AArch64 EL3.
  45. U-Boot proper runs in EL2 and can load any AArch64 code (using the "go"
  46. command), EFI applications (with "bootefi") or arm64 Linux kernel images
  47. (often named "Image"), using the "booti" command.
  48. $ make clean
  49. $ export CROSS_COMPILE=aarch64-linux-gnu-
  50. $ make pine64_plus_defconfig
  51. $ make
  52. This will build the SPL in spl/sunxi-spl.bin and a FIT image called u-boot.itb,
  53. which contains the rest of the firmware.
  54. Boot process
  55. ============
  56. The on-die BROM code will try several methods to load and execute the firmware.
  57. On a typical board like the Pine64 this will result in the following boot order:
  58. 1) Reading 32KB from sector 16 (@8K) of the microSD card to SRAM A1. If the
  59. BROM finds the magic "eGON" header in the first bytes, it will execute that
  60. code. If not (no SD card at all or invalid magic), it will:
  61. 2) Try to read 32KB from sector 16 (@8K) of memory connected to the MMC2
  62. controller, typically an on-board eMMC chip. If there is no eMMC or it does
  63. not contain a valid boot header, it will:
  64. 3) Initialize the SPI0 controller and try to access a NOR flash connected to
  65. it (using the CS0 pin). If a flash chip is found, the BROM will load the
  66. first 32KB (from offset 0) into SRAM A1. Now it checks for the magic eGON
  67. header and checksum and will execute the code upon finding it. If not, it will:
  68. 4) Initialize the USB OTG controller and will wait for a host to connect to
  69. it, speaking the Allwinner proprietary (but deciphered) "FEL" USB protocol.
  70. To boot the Pine64 board, you can use U-Boot and any of the described methods.
  71. FEL boot (USB OTG)
  72. ------------------
  73. FEL is the name of the Allwinner defined USB boot protocol built in the
  74. mask ROM of most Allwinner SoCs. It allows to bootstrap a board solely
  75. by using the USB-OTG interface and a host port on another computer.
  76. As the FEL mode is controlled by the boot ROM, it expects to be running in
  77. AArch32. For now the AArch64 SPL cannot properly return into FEL mode, so the
  78. feature is disabled in the configuration at the moment.
  79. microSD card
  80. ------------
  81. Transfer the SPL and the U-Boot FIT image directly to an uSD card:
  82. # dd if=spl/sunxi-spl.bin of=/dev/sdx bs=8k seek=1
  83. # dd if=u-boot.itb of=/dev/sdx bs=8k seek=5
  84. # sync
  85. (replace /dev/sdx with you SD card device file name, which could be
  86. /dev/mmcblk[x] as well).
  87. Alternatively you can use the SPL and the U-Boot FIT image combined into a
  88. single file and transfer that instead:
  89. # dd if=u-boot-sunxi-with-spl.bin of=/dev/sdx bs=8k seek=1
  90. You can partition the microSD card, but leave the first MB unallocated (most
  91. partitioning tools will do this anyway).
  92. NOR flash
  93. ---------
  94. Some boards (like the SoPine, Pinebook or the OrangePi PC2) come with a
  95. soldered SPI NOR flash chip. On other boards like the Pine64 such a chip
  96. can be connected to the SPI0/CS0 pins on the PI-2 headers.
  97. Create the SPL and FIT image like described above for the SD card.
  98. Now connect either an "A to A" USB cable to the upper USB port on the Pine64
  99. or get an adaptor and use a regular A-microB cable connected to it. Other
  100. boards often have a proper micro-B USB socket connected to the USB OTB port.
  101. Remove a microSD card from the slot and power on the board.
  102. On your host computer download and build the sunxi-tools package[2], then
  103. use "sunxi-fel" to access the board:
  104. $ ./sunxi-fel ver -v -p
  105. This should give you an output starting with: AWUSBFEX soc=00001689(A64) ...
  106. Now use the sunxi-fel tool to write to the NOR flash:
  107. $ ./sunxi-fel spiflash-write 0 spl/sunxi-spl.bin
  108. $ ./sunxi-fel spiflash-write 32768 u-boot.itb
  109. Now boot the board without an SD card inserted and you should see the
  110. U-Boot prompt on the serial console.
  111. (Legacy) boot0 method
  112. ---------------------
  113. boot0 is Allwiner's secondary program loader and it can be used as some kind
  114. of SPL replacement to get U-Boot up and running from an microSD card.
  115. For some time using boot0 was the only option to get the Pine64 booted.
  116. With working DRAM init code in U-Boot's SPL this is no longer necessary,
  117. but this method is described here for the sake of completeness.
  118. Please note that this method works only with the boot0 files shipped with
  119. A64 based boards, the H5 uses an incompatible layout which is not supported
  120. by this method.
  121. The boot0 binary is a 32 KByte blob and contained in the official Pine64 images
  122. distributed by Pine64 or Allwinner. It can be easily extracted from a micro
  123. SD card or an image file:
  124. # dd if=/dev/sd<x> of=boot0.bin bs=8k skip=1 count=4
  125. where /dev/sd<x> is the device name of the uSD card or the name of the image
  126. file. Apparently Allwinner allows re-distribution of this proprietary code
  127. "as-is".
  128. This boot0 blob takes care of DRAM initialisation and loads the remaining
  129. firmware parts, then switches the core into AArch64 mode.
  130. The original boot0 code looks for U-Boot at a certain place on an uSD card
  131. (at 19096 KB), also it expects a header with magic bytes and a checksum.
  132. There is a tool called boot0img[3] which takes a boot0.bin image and a compiled
  133. U-Boot binary (plus other binaries) and will populate that header accordingly.
  134. To make space for the magic header, the pine64_plus_defconfig will make sure
  135. there is sufficient space at the beginning of the U-Boot binary.
  136. boot0img will also take care of putting the different binaries at the right
  137. places on the uSD card and works around unused, but mandatory parts by using
  138. trampoline code. See the output of "boot0img -h" for more information.
  139. boot0img can also patch boot0 to avoid loading U-Boot from 19MB, instead
  140. fetching it from just behind the boot0 binary (-B option).
  141. $ ./boot0img -o firmware.img -B boot0.img -u u-boot-dtb.bin -e -s bl31.bin \
  142. -a 0x44008 -d trampoline64:0x44000
  143. Then write this image to a microSD card, replacing /dev/sdx with the right
  144. device file (see above):
  145. $ dd if=firmware.img of=/dev/sdx bs=8k seek=1
  146. [1] https://github.com/apritzel/arm-trusted-firmware.git
  147. [2] git://github.com/linux-sunxi/sunxi-tools.git
  148. [3] https://github.com/apritzel/pine64/