1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors 4 * 5 */ 6 7 #ifndef __CONFIG_TFM_TARGET_H__ 8 #define __CONFIG_TFM_TARGET_H__ 9 10 /* Use stored NV seed to provide entropy */ 11 #define CRYPTO_NV_SEED 0 12 13 /* Use external RNG to provide entropy */ 14 #define CRYPTO_EXT_RNG 1 15 16 /* Run the scheduler after handling a secure interrupt if the NSPE was pre-empted */ 17 #define CONFIG_TFM_SCHEDULE_WHEN_NS_INTERRUPTED 1 18 19 /* Use ITS for PS and NS NV counters */ 20 #define NV_COUNTER_IN_ITS 1 21 22 #endif /* __CONFIG_TFM_TARGET_H__ */ 23