1#------------------------------------------------------------------------------- 2# Copyright (c) 2022-2023, Arm Limited. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6#------------------------------------------------------------------------------- 7 8menu "Platform options" 9 10rsource "Kconfig.arch" 11 12config SECURE_UART1 13 bool "Enable secure UART1" 14 default n 15 16config TFM_DUMMY_PROVISIONING 17 bool "Provision with dummy values" 18 default y 19 select PLATFORM_DEFAULT_OTP_WRITEABLE if PLATFORM_DEFAULT_OTP 20 help 21 NOT to be used in production 22 23################################# Crypto dependencies ########################## 24 25config CRYPTO_HW_ACCELERATOR 26 bool "Enable the crypto hardware accelerator" 27 depends on CRYPTO_HW_ACCELERATOR_TYPE != "" 28 default n 29 30rsource "Kconfig.fpu" 31rsource "Kconfig.platform" 32 33endmenu 34