diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-04-23 15:43:29 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-04-23 15:43:29 +0100 |
commit | 2f370465241c85b2fe38a1eb69b457b9fed97207 (patch) | |
tree | 64b0944fb740af46e58216feda67cf3fbc7cd1ae /docs | |
parent | 7f6d8f49aa916a526c2ce227606cc51eebd0c950 (diff) | |
download | platform_external_arm-trusted-firmware-2f370465241c85b2fe38a1eb69b457b9fed97207.tar.gz platform_external_arm-trusted-firmware-2f370465241c85b2fe38a1eb69b457b9fed97207.tar.bz2 platform_external_arm-trusted-firmware-2f370465241c85b2fe38a1eb69b457b9fed97207.zip |
Add support for the SMC Calling Convention 2.0
Due to differences in the bitfields of the SMC IDs, it is not possible
to support SMCCC 1.X and 2.0 at the same time.
The behaviour of `SMCCC_MAJOR_VERSION` has changed. Now, it is a build
option that specifies the major version of the SMCCC that the Trusted
Firmware supports. The only two allowed values are 1 and 2, and it
defaults to 1. The value of `SMCCC_MINOR_VERSION` is derived from it.
Note: Support for SMCCC v2.0 is an experimental feature to enable
prototyping of secure partition specifications. Support for this
convention is disabled by default and could be removed without notice.
Change-Id: I88abf9ccf08e9c66a13ce55c890edea54d9f16a7
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user-guide.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/user-guide.rst b/docs/user-guide.rst index f8bc4be50..aed54a631 100644 --- a/docs/user-guide.rst +++ b/docs/user-guide.rst @@ -573,6 +573,11 @@ Common build options pages" section in `Firmware Design`_. This flag is disabled by default and affects all BL images. +- ``SMCCC_MAJOR_VERSION``: Numeric value that indicates the major version of + the SMC Calling Convention that the Trusted Firmware supports. The only two + allowed values are 1 and 2, and it defaults to 1. The minor version is + determined using this value. + - ``SPD``: Choose a Secure Payload Dispatcher component to be built into TF-A. This build option is only valid if ``ARCH=aarch64``. The value should be the path to the directory containing the SPD source, relative to |