Kconfig.tfm 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. # Configuration for the TF-M Module
  2. # Copyright (c) 2019, 2020 Linaro Limited
  3. # Copyright (c) 2020, 2021 Nordic Semiconductor ASA
  4. # SPDX-License-Identifier: Apache-2.0
  5. config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE
  6. bool
  7. config TFM_BOARD
  8. string
  9. default "nordic_nrf/nrf9160dk_nrf9160" if BOARD_NRF9160DK_NRF9160_NS
  10. default "nordic_nrf/nrf5340dk_nrf5340_cpuapp" if BOARD_NRF5340DK_NRF5340_CPUAPP_NS
  11. default "nxp/lpcxpresso55s69" if BOARD_LPCXPRESSO55S69_CPU0
  12. default "arm/mps2/an521" if BOARD_MPS2_AN521_CPU0_NS
  13. default "stm/nucleo_l552ze_q" if BOARD_NUCLEO_L552ZE_Q
  14. default "stm/stm32l562e_dk" if BOARD_STM32L562E_DK
  15. default "arm/musca_b1/sse_200" if BOARD_MUSCA_B1
  16. default "arm/musca_s1" if BOARD_MUSCA_S1
  17. default "lairdconnectivity/bl5340_dvk_cpuapp" if BOARD_BL5340_DVK_CPUAPP_NS
  18. help
  19. The board name used for building TFM. Building with TFM requires that
  20. TFM has been ported to the given board/SoC.
  21. menuconfig BUILD_WITH_TFM
  22. bool "Build with TF-M as the Secure Execution Environment"
  23. depends on TRUSTED_EXECUTION_NONSECURE
  24. depends on TFM_BOARD != ""
  25. depends on ARM_TRUSTZONE_M
  26. select BUILD_OUTPUT_HEX
  27. imply INIT_ARCH_HW_AT_BOOT
  28. imply ARM_NONSECURE_PREEMPTIBLE_SECURE_CALLS
  29. help
  30. When enabled, this option instructs the Zephyr build process to
  31. additionally generate a TF-M image for the Secure Execution
  32. environment, along with the Zephyr image. The Zephyr image
  33. itself is to be executed in the Non-Secure Processing Environment.
  34. The required dependency on TRUSTED_EXECUTION_NONSECURE
  35. ensures that the Zephyr image is built as a Non-Secure image. Both
  36. TF-M and Zephyr images, as well as the veneer object file that links
  37. them, are generated during the normal Zephyr build process.
  38. Notes:
  39. Building with the "_ns" BOARD variant (e.g. "mps2_an521_ns")
  40. ensures that CONFIG_TRUSTED_EXECUTION_NONSECURE is enabled.
  41. By default we allow Zephyr preemptible threads be preempted
  42. while performing a secure function call.
  43. if BUILD_WITH_TFM
  44. config TFM_KEY_FILE_S
  45. string "Path to private key used to sign secure firmware images."
  46. depends on BUILD_WITH_TFM
  47. default "${ZEPHYR_BASE}/../modules/tee/tfm/trusted-firmware-m/bl2/ext/mcuboot/root-RSA-3072.pem"
  48. help
  49. The path and filename for the .pem file containing the private key
  50. that should be used by the BL2 bootloader when signing secure
  51. firmware images.
  52. config TFM_KEY_FILE_NS
  53. string "Path to private key used to sign non-secure firmware images."
  54. depends on BUILD_WITH_TFM
  55. default "${ZEPHYR_BASE}/../modules/tee/tfm/trusted-firmware-m/bl2/ext/mcuboot/root-RSA-3072_1.pem"
  56. help
  57. The path and filename for the .pem file containing the private key
  58. that should be used by the BL2 bootloader when signing non-secure
  59. firmware images.
  60. config TFM_PROFILE
  61. string
  62. depends on BUILD_WITH_TFM
  63. default "profile_small" if TFM_PROFILE_TYPE_SMALL
  64. default "profile_medium" if TFM_PROFILE_TYPE_MEDIUM
  65. default "profile_large" if TFM_PROFILE_TYPE_LARGE
  66. help
  67. Build profile used to build tfm_s image. The available values are
  68. profile_large, profile_medium and profile_small. The default profile
  69. does not need to have this configuration set.
  70. choice TFM_PROFILE_TYPE
  71. prompt "TF-M build profile"
  72. depends on BUILD_WITH_TFM
  73. default TFM_PROFILE_TYPE_NOT_SET
  74. help
  75. The TF-M build profile selection. Can be empty (not set),
  76. small, medium or large. Certain profile types enable other
  77. TF-M configuration options, namely, the IPC model and the
  78. isolation level.
  79. config TFM_PROFILE_TYPE_NOT_SET
  80. bool "TF-M build profile is not set"
  81. config TFM_PROFILE_TYPE_SMALL
  82. bool "TF-M build profile: small"
  83. config TFM_PROFILE_TYPE_MEDIUM
  84. bool "TF-M build profile: medium"
  85. config TFM_PROFILE_TYPE_LARGE
  86. bool "TF-M build profile: large"
  87. endchoice
  88. choice TFM_CMAKE_BUILD_TYPE
  89. prompt "The build type for TFM"
  90. default TFM_CMAKE_BUILD_TYPE_RELEASE if SPEED_OPTIMIZATIONS && BUILD_OUTPUT_STRIPPED
  91. default TFM_CMAKE_BUILD_TYPE_MINSIZEREL if SIZE_OPTIMIZATIONS
  92. default TFM_CMAKE_BUILD_TYPE_DEBUG if DEBUG_OPTIMIZATIONS
  93. default TFM_CMAKE_BUILD_TYPE_RELWITHDEBINFO
  94. config TFM_CMAKE_BUILD_TYPE_RELEASE
  95. bool "Release build"
  96. config TFM_CMAKE_BUILD_TYPE_RELWITHDEBINFO
  97. bool "Release build with Debug info"
  98. config TFM_CMAKE_BUILD_TYPE_MINSIZEREL
  99. bool "Release build, optimized for size"
  100. config TFM_CMAKE_BUILD_TYPE_DEBUG
  101. bool "Debug build"
  102. endchoice
  103. config TFM_ISOLATION_LEVEL
  104. int "Isolation level setting." if (TFM_PROFILE_TYPE_NOT_SET && TFM_IPC)
  105. range 1 3
  106. depends on BUILD_WITH_TFM
  107. default 1 if TFM_PROFILE_TYPE_SMALL || !TFM_IPC
  108. default 2 if TFM_PROFILE_TYPE_MEDIUM
  109. default 3 if TFM_PROFILE_TYPE_LARGE
  110. help
  111. Manually set the required TFM isolation level. Possible values are
  112. 1,2 or 3; the default is set by build configuration. When TF-M
  113. Profile option is supplied, do not allow manual setting of the
  114. isolation level, as it is determined by the profile setting.
  115. As isolation levels 2 and 3 require PSA_API (TFM_IPC) support,
  116. force level 1 when TFM_IPC is not enabled.
  117. config TFM_BL2
  118. bool "Add MCUboot to TFM"
  119. default y
  120. help
  121. TFM is designed to run with MCUboot in a certain configuration.
  122. This config adds MCUboot to the build - built via TFM's build system.
  123. if TFM_BL2
  124. config TFM_MCUBOOT_IMAGE_NUMBER
  125. int "Granularity of FW updates of TFM and app"
  126. range 1 2
  127. default 2
  128. help
  129. How many images the bootloader sees when it looks at TFM and the app.
  130. When this is 1, the S and NS are considered as 1 image and must be
  131. updated in one atomic operation. When this is 2, they are split and
  132. can be updated independently if dependency requirements are met.
  133. choice TFM_MCUBOOT_PATH
  134. prompt "Path to MCUboot or DOWNLOAD to fetch automatically"
  135. default TFM_MCUBOOT_PATH_LOCAL
  136. help
  137. Path to MCUboot for TF-M builds. The default option
  138. is to use Zephyr's MCUboot module. As an alternative,
  139. users may switch to the 'download' version; in that
  140. case MCUboot will be fetched by the TF-M build during
  141. build time. The default option ensures that Zephyr builds
  142. with TF-M do not fetch external trees.
  143. config TFM_MCUBOOT_PATH_LOCAL
  144. bool "TF-M to use Zephyr's MCUboot"
  145. help
  146. TF-M builds with BL2 will use the Zephyr's MCUboot version,
  147. which is present in the MCUboot module.
  148. config TFM_MCUBOOT_PATH_DOWNLOAD
  149. bool "TF-M to automatically download MCUboot during build"
  150. help
  151. TF-M bulds with BL2 will let the TF-M build to automatically
  152. fetch and check-out the MCUboot version to use in the build.
  153. endchoice
  154. endif # TFM_BL2
  155. config TFM_IPC
  156. bool "IPC" if TFM_PROFILE_TYPE_NOT_SET
  157. default y if (TFM_PROFILE_TYPE_MEDIUM || TFM_PROFILE_TYPE_LARGE)
  158. help
  159. When enabled, this option signifies that the TF-M build supports
  160. the PSA API (IPC mode) instead of the secure library mode. When
  161. TF-M Profile option is supplied, do not allow manual setting of
  162. the IPC mode, as it is determined by the profile setting.
  163. config TFM_REGRESSION_S
  164. bool "TF-M Secure Regression tests"
  165. help
  166. When enabled, this option signifies that the TF-M build includes
  167. the Secure domain regression tests.
  168. config TFM_REGRESSION_NS
  169. bool "Use the TF-M Non-Secure Regression test application"
  170. help
  171. When this is enabled, the Zephyr application as a whole will be
  172. replaced with the TF-M Non-Secure Regression test application.
  173. choice TFM_PSA_TEST
  174. prompt "Enable a PSA test suite"
  175. default TFM_PSA_TEST_NONE
  176. config TFM_PSA_TEST_CRYPTO
  177. bool "Crypto tests"
  178. depends on MAIN_STACK_SIZE >= 4096
  179. help
  180. Enable the PSA Crypto test suite.
  181. config TFM_PSA_TEST_PROTECTED_STORAGE
  182. bool "Storage tests"
  183. help
  184. Enable the PSA Protected Storage test suite.
  185. config TFM_PSA_TEST_INTERNAL_TRUSTED_STORAGE
  186. bool "Internal Trusted Storage tests"
  187. help
  188. Enable the PSA Internal Trusted Storage test suite.
  189. config TFM_PSA_TEST_STORAGE
  190. bool "Storage tests"
  191. help
  192. Enable the PSA Storage test suite. This is a combination of the
  193. protected storage and internal trusted storage tests.
  194. config TFM_PSA_TEST_INITIAL_ATTESTATION
  195. bool "Initial attestation tests"
  196. depends on MAIN_STACK_SIZE >= 4096
  197. help
  198. Enable the PSA Initial Attestation test suite.
  199. config TFM_PSA_TEST_NONE
  200. bool "No PSA test suite"
  201. endchoice
  202. if TFM_BL2
  203. config ROM_START_OFFSET
  204. hex "ROM Start Offset accounting for BL2 Header in the NS image"
  205. default 0x400
  206. help
  207. By default BL2 header size in TF-M is 0x400. ROM_START_OFFSET
  208. needs to be updated if TF-M switches to use a different header
  209. size for BL2.
  210. endif # !TFM_BL2
  211. # Option to instruct flashing a merged binary consisting of BL2 (optionally),
  212. # TF-M (Secure), and application (Non-Secure).
  213. config TFM_FLASH_MERGED_BINARY
  214. bool
  215. help
  216. This option instructs west flash to program the
  217. combined (merged) binary consisting of the TF-M
  218. Secure firmware image, optionally, the BL2 image
  219. (if building with TFM_BL2 is enabled), and the
  220. Non-Secure application firmware.
  221. endif # BUILD_WITH_TFM