diff options
author | danh-arm <dan.handley@arm.com> | 2017-08-17 13:54:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-17 13:54:32 +0100 |
commit | e80824227b5716a9f7dcc3ec0b322fde813c6c3a (patch) | |
tree | 809987b759c2cfd03e722f97a8e6d50a0ae33294 /docs/user-guide.rst | |
parent | 80ff815838bcdaa2449ac92c1d17a5cef26becce (diff) | |
parent | 71816096da8e5612cece752d813e10580df9f141 (diff) | |
download | platform_external_arm-trusted-firmware-e80824227b5716a9f7dcc3ec0b322fde813c6c3a.tar.gz platform_external_arm-trusted-firmware-e80824227b5716a9f7dcc3ec0b322fde813c6c3a.tar.bz2 platform_external_arm-trusted-firmware-e80824227b5716a9f7dcc3ec0b322fde813c6c3a.zip |
Merge pull request #977 from etienne-lms/sp-min-fiq
bl32: add secure interrupt handling in AArch32 sp_min
Diffstat (limited to 'docs/user-guide.rst')
-rw-r--r-- | docs/user-guide.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/user-guide.rst b/docs/user-guide.rst index fe86f232b..bedbda82f 100644 --- a/docs/user-guide.rst +++ b/docs/user-guide.rst @@ -527,6 +527,13 @@ Common build options firmware images have been loaded in memory, and the MMU and caches are turned off. Refer to the "Debugging options" section for more details. +- ``SP_MIN_WITH_SECURE_FIQ``: Boolean flag to indicate the SP_MIN handles + secure interrupts (caught through the FIQ line). Platforms can enable + this directive if they need to handle such interruption. When enabled, + the FIQ are handled in monitor mode and non secure world is not allowed + to mask these events. Platforms that enable FIQ handling in SP_MIN shall + implement the api ``sp_min_plat_fiq_handler()``. The default value is 0. + - ``TRUSTED_BOARD_BOOT``: Boolean flag to include support for the Trusted Board Boot feature. When set to '1', BL1 and BL2 images include support to load and verify the certificates and images in a FIP, and BL1 includes support |