1 /* 2 * Copyright (c) 2022, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __CONFIG_TFM_TARGET_H__ 9 #define __CONFIG_TFM_TARGET_H__ 10 11 /* Use stored NV seed to provide entropy */ 12 #undef CRYPTO_NV_SEED 13 #define CRYPTO_NV_SEED 0 14 15 /* Set the initial attestation token profile */ 16 #undef ATTEST_TOKEN_PROFILE_PSA_IOT_1 17 #undef ATTEST_TOKEN_PROFILE_PSA_2_0_0 18 #undef ATTEST_TOKEN_PROFILE_ARM_CCA 19 #define ATTEST_TOKEN_PROFILE_ARM_CCA 1 20 21 #endif /* __CONFIG_TFM_TARGET_H__ */ 22