aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-08-10 20:50:39 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2020-08-10 20:50:39 +0000
commit37a12f04be9f7b5006abe89bef693d1c3c834f29 (patch)
treee6c3c286df86dd784151fc3ef0e2c0b362074a9b /docs
parent8ae3a91c39d8a22acf845f134cb7a093be0ab918 (diff)
parent5bd9c17d023288e6b819fa3eecc01b7981399cfa (diff)
downloadplatform_external_arm-trusted-firmware-37a12f04be9f7b5006abe89bef693d1c3c834f29.tar.gz
platform_external_arm-trusted-firmware-37a12f04be9f7b5006abe89bef693d1c3c834f29.tar.bz2
platform_external_arm-trusted-firmware-37a12f04be9f7b5006abe89bef693d1c3c834f29.zip
Merge "sc7180 platform support" into integration
Diffstat (limited to 'docs')
-rw-r--r--docs/about/maintainers.rst10
-rw-r--r--docs/plat/index.rst1
-rw-r--r--docs/plat/qti.rst41
3 files changed, 52 insertions, 0 deletions
diff --git a/docs/about/maintainers.rst b/docs/about/maintainers.rst
index 0014d3b46..a62870452 100644
--- a/docs/about/maintainers.rst
+++ b/docs/about/maintainers.rst
@@ -446,6 +446,15 @@ QEMU platform port
:F: docs/plat/qemu.rst
:F: plat/qemu/
+QTI platform port
+^^^^^^^^^^^^^^^^^
+:M: Saurabh Gorecha <sgorecha@codeaurora.org>
+:G: `sgorecha`_
+:M: Debasish Mandal <dmandal@codeaurora.org>
+:M: QTI TF Maintainers <qti.trustedfirmware.maintainers@codeaurora.org>
+:F: docs/plat/qti.rst
+:F: plat/qti/
+
Raspberry Pi 3 platform port
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
:M: Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>
@@ -614,6 +623,7 @@ Build system
.. _remi-triplefault: https://github.com/repk
.. _rockchip-linux: https://github.com/rockchip-linux
.. _sandrine-bailleux-arm: https://github.com/sandrine-bailleux-arm
+.. _sgorecha: https://github.com/sgorecha
.. _shawnguo2: https://github.com/shawnguo2
.. _sivadur: https://github.com/sivadur
.. _smaeul: https://github.com/smaeul
diff --git a/docs/plat/index.rst b/docs/plat/index.rst
index 6a38113fc..bd2341010 100644
--- a/docs/plat/index.rst
+++ b/docs/plat/index.rst
@@ -28,6 +28,7 @@ Platform Ports
poplar
qemu
qemu-sbsa
+ qti
rpi3
rpi4
rcar-gen3
diff --git a/docs/plat/qti.rst b/docs/plat/qti.rst
new file mode 100644
index 000000000..814e6726a
--- /dev/null
+++ b/docs/plat/qti.rst
@@ -0,0 +1,41 @@
+Qualcomm Technologies, Inc.
+===========================
+
+Trusted Firmware-A (TF-A) implements the EL3 firmware layer for QTI SC7180.
+
+
+Boot Trace
+-------------
+
+Bootrom --> BL1/BL2 --> BL31 --> BL33 --> Linux kernel
+
+BL1/2 and BL33 can currently be supplied from Coreboot + Depthcharge
+
+How to build
+------------
+
+Code Locations
+~~~~~~~~~~~~~~
+
+- Trusted Firmware-A:
+ `link <https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git>`__
+
+Build Procedure
+~~~~~~~~~~~~~~~
+
+QTI SoC expects TF-A's BL31 to get integrated with other boot software
+Coreboot, so only bl31.elf need to get build from the TF-A repository.
+
+The build command looks like
+
+ make CROSS_COMPILE=aarch64-linux-gnu- PLAT=sc7180 COREBOOT=1
+
+update value of CROSS_COMPILE argument with your cross-compilation toolchain.
+
+Additional QTISECLIB_PATH=<path to qtiseclib> can be added in build command.
+if QTISECLIB_PATH is not added in build command stub implementation of qtiseclib
+is picked. qtiseclib with stub implementation doesn't boot device. This was
+added to satisfy compilation.
+
+QTISELIB for SC7180 is available at
+`link <https://review.coreboot.org/cgit/qc_blobs.git/plain/sc7180/qtiseclib/libqtisec.a>`__