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    depends on !MCUBOOT_GENERATE_SIGNING_KEYPAIR
20    select PLATFORM_DEFAULT_OTP_WRITEABLE if PLATFORM_DEFAULT_OTP
21    help
22      NOT to be used in production
23
24################################# Crypto dependencies ##########################
25
26config CRYPTO_HW_ACCELERATOR
27    bool "Enable the crypto hardware accelerator"
28    depends on CRYPTO_HW_ACCELERATOR_TYPE != ""
29    default n
30
31rsource "Kconfig.fpu"
32rsource "Kconfig.platform"
33
34endmenu
35