diff options
author | Andre Przywara <andre.przywara@arm.com> | 2017-12-08 01:27:02 +0000 |
---|---|---|
committer | Andre Przywara <andre.przywara@arm.com> | 2018-07-03 17:06:30 +0100 |
commit | bed42a5d28732aa6e933dc94c53a164ea5620d8e (patch) | |
tree | b2acdfa0757df3bc58bcd253016789916b4436dc /docs | |
parent | 700b6da722a87de65b0b66421bb5ec26c69a27b7 (diff) | |
download | platform_external_arm-trusted-firmware-bed42a5d28732aa6e933dc94c53a164ea5620d8e.tar.gz platform_external_arm-trusted-firmware-bed42a5d28732aa6e933dc94c53a164ea5620d8e.tar.bz2 platform_external_arm-trusted-firmware-bed42a5d28732aa6e933dc94c53a164ea5620d8e.zip |
allwinner: Add Allwinner H6 SoC support
The H6 is Allwinner's most recent SoC. It shares most peripherals with the
other ARMv8 Allwinner SoCs (A64/H5), but has a completely different memory
map.
Introduce a separate platform target, which includes a different header
file to cater for the address differences. Also add the new build target
to the documentation.
The new ATF platform name is "sun50i_h6".
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/plat/allwinner.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/plat/allwinner.rst b/docs/plat/allwinner.rst index 825fded48..140edf511 100644 --- a/docs/plat/allwinner.rst +++ b/docs/plat/allwinner.rst @@ -22,12 +22,18 @@ bl31.bin can be either copied (or sym-linked) into U-Boot's root directory, or the environment variable BL31 must contain the binary's path. See the respective `U-Boot documentation`_ for more details. -To build: +To build for machines with an A64 or H5 SoC: :: make CROSS_COMPILE=aarch64-linux-gnu- PLAT=sun50i_a64 DEBUG=1 bl31 +To build for machines with an H6 SoC: + +:: + + make CROSS_COMPILE=aarch64-linux-gnu- PLAT=sun50i_h6 DEBUG=1 bl31 + .. _U-Boot documentation: http://git.denx.de/?p=u-boot.git;f=board/sunxi/README.sunxi64;hb=HEAD Trusted OS dispatcher |