README.pine64 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Pine64 board README
  2. ====================
  3. The Pine64(+) is a single board computer equipped with an AArch64 capable ARMv8
  4. compliant Allwinner A64 SoC.
  5. This chip has ARM Cortex A-53 cores and thus can run both in AArch32
  6. (compatible to 32-bit ARMv7) and AArch64 modes. Upon reset the SoC starts
  7. in AArch32 mode and executes 32-bit code from the Boot ROM (BROM).
  8. This has some implications on U-Boot.
  9. Quick start
  10. ============
  11. - Get hold of a boot0.img file (see below for more details).
  12. - Get the boot0img tool source from the tools directory in [1] and compile
  13. that on your host.
  14. - Build U-Boot:
  15. $ export CROSS_COMPILE=aarch64-linux-gnu-
  16. $ make pine64_plus_defconfig
  17. $ make
  18. - You also need a compiled ARM Trusted Firmware (ATF) binary. Checkout the
  19. "allwinner" branch from the github repository [2] and build it:
  20. $ export CROSS_COMPILE=aarch64-linux-gnu-
  21. $ make PLAT=sun50iw1p1 DEBUG=1 bl31
  22. The resulting binary is build/sun50iw1p1/debug/bl31.bin.
  23. Now put an empty (or disposable) micro SD card in your card reader and learn
  24. its device file name, replacing /dev/sd<x> below with the result (that could
  25. be /dev/mmcblk<x> as well):
  26. $ ./boot0img --device /dev/sd<x> -e -u u-boot.bin -B boot0.img \
  27. -d trampoline64:0x44000 -s bl31.bin -a 0x44008 -p 100
  28. (either copying the respective files to the working directory or specifying
  29. the paths directly)
  30. This will create a new partition table (with a 100 MB FAT boot partition),
  31. copies boot0.img, ATF and U-Boot to the proper locations on the SD card and
  32. will fill in the magic Allwinner header to be recognized by boot0.
  33. Prefix the above call with "sudo" if you don't have write access to the
  34. uSD card. You can also use "-o output.img" instead of "--device /dev/sd<x>"
  35. to create an image file and "dd" that to the uSD card.
  36. Omitting the "-p" option will skip the partition table.
  37. Now put this uSD card in the board and power it on. You should be greeted by
  38. the U-Boot prompt.
  39. Main U-Boot
  40. ============
  41. The main U-Boot proper is a real 64-bit ARMv8 port and runs entirely in the
  42. 64-bit AArch64 mode. It can load any AArch64 code, EFI applications or arm64
  43. Linux kernel images (often named "Image") using the booti command.
  44. Launching 32-bit code and kernels is technically possible, though not without
  45. drawbacks (or hacks to avoid them) and currently not implemented.
  46. SPL support
  47. ============
  48. The main task of the SPL support is to bring up the DRAM controller and make
  49. DRAM actually accessible. At the moment there is no documentation or source
  50. code available which would do this.
  51. There are currently two ways to overcome this situation: using a tainted 32-bit
  52. SPL (involving some hacks and resulting in a non-redistributable binary, thus
  53. not described here) or using the Allwinner boot0 blob.
  54. boot0 method
  55. -------------
  56. boot0 is Allwiner's secondary program loader and it can be used as some kind
  57. of SPL replacement to get U-Boot up and running.
  58. The binary is a 32 KByte blob and contained on every Pine64 image distributed
  59. so far. It can be easily extracted from a micro SD card or an image file:
  60. # dd if=/dev/sd<x> of=boot0.bin bs=8k skip=1 count=4
  61. where /dev/sd<x> is the device name of the uSD card or the name of the image
  62. file. Apparently Allwinner allows re-distribution of this proprietary code
  63. as-is.
  64. For the time being this boot0 blob is the only redistributable way of making
  65. U-Boot work on the Pine64. Beside loading the various parts of the (original)
  66. firmware it also switches the core into AArch64 mode.
  67. The original boot0 code looks for U-Boot at a certain place on an uSD card
  68. (at 19096 KB), also it expects a header with magic bytes and a checksum.
  69. There is a tool called boot0img[1] which takes a boot0.bin image and a compiled
  70. U-Boot binary (plus other binaries) and will populate that header accordingly.
  71. To make space for the magic header, the pine64_plus_defconfig will make sure
  72. there is sufficient space at the beginning of the U-Boot binary.
  73. boot0img will also take care of putting the different binaries at the right
  74. places on the uSD card and works around unused, but mandatory parts by using
  75. trampoline code. See the output of "boot0img -h" for more information.
  76. boot0img can also patch boot0 to avoid loading U-Boot from 19MB, instead
  77. fetching it from just behind the boot0 binary (-B option).
  78. FEL boot
  79. =========
  80. FEL is the name of the Allwinner defined USB boot protocol built-in the
  81. mask ROM of most Allwinner SoCs. It allows to bootstrap a board solely
  82. by using the USB-OTG interface and a host port on another computer.
  83. Since FEL boot does not work with boot0, it requires the libdram hack, which
  84. is not described here.
  85. [1] https://github.com/apritzel/pine64/
  86. [2] https://github.com/apritzel/arm-trusted-firmware.git