trusty-dispatcher.rst 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. Trusty Dispatcher
  2. =================
  3. Trusty is a a set of software components, supporting a Trusted Execution
  4. Environment (TEE) on mobile devices, published and maintained by Google.
  5. Detailed information and build instructions can be found on the Android
  6. Open Source Project (AOSP) webpage for Trusty hosted at
  7. https://source.android.com/security/trusty
  8. Boot parameters
  9. ---------------
  10. Custom boot parameters can be passed to Trusty by providing a platform
  11. specific function:
  12. .. code:: c
  13. void plat_trusty_set_boot_args(aapcs64_params_t *args)
  14. If this function is provided ``args->arg0`` must be set to the memory
  15. size allocated to trusty. If the platform does not provide this
  16. function, but defines ``TSP_SEC_MEM_SIZE``, a default implementation
  17. will pass the memory size from ``TSP_SEC_MEM_SIZE``. ``args->arg1``
  18. can be set to a platform specific parameter block, and ``args->arg2``
  19. should then be set to the size of that block.
  20. Supported platforms
  21. -------------------
  22. Out of all the platforms supported by Trusted Firmware-A, Trusty is only
  23. verified and supported by NVIDIA's Tegra SoCs.