1 /* 2 * Copyright (c) 2022-2024, 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 /* Use external RNG to provide entropy */ 16 #define CRYPTO_EXT_RNG 1 17 18 #define NS_AGENT_MAILBOX_STACK_SIZE 0xC00 19 20 /* Run the scheduler after handling a secure interrupt if the NSPE was pre-empted */ 21 #define CONFIG_TFM_SCHEDULE_WHEN_NS_INTERRUPTED 1 22 23 #endif /* __CONFIG_TFM_TARGET_H__ */ 24