From 9078b7ec09b135f091cb951ed234bf013c9c838e Mon Sep 17 00:00:00 2001 From: Michal Hanus Date: Sat, 19 Apr 2025 22:50:44 +0200 Subject: bme680 added --- .../tfm/api_ns/interface/include/config_impl.h | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 nrfdemo/build/tfm/api_ns/interface/include/config_impl.h (limited to 'nrfdemo/build/tfm/api_ns/interface/include/config_impl.h') diff --git a/nrfdemo/build/tfm/api_ns/interface/include/config_impl.h b/nrfdemo/build/tfm/api_ns/interface/include/config_impl.h deleted file mode 100644 index 27b86ea..0000000 --- a/nrfdemo/build/tfm/api_ns/interface/include/config_impl.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) 2021-2022, Arm Limited. All rights reserved. - * - * SPDX-License-Identifier: BSD-3-Clause - * - */ -/*********** WARNING: This is an auto-generated file. Do not edit! ***********/ - -#ifndef __CONFIG_IMPL_H__ -#define __CONFIG_IMPL_H__ - -#include "config_tfm.h" - -/* Backends */ -#define CONFIG_TFM_SPM_BACKEND_IPC 0 -#define CONFIG_TFM_SPM_BACKEND_SFN 1 - -#define CONFIG_TFM_CONNECTION_BASED_SERVICE_API 0 -#define CONFIG_TFM_MMIO_REGION_ENABLE 0 -#define CONFIG_TFM_FLIH_API 0 -#define CONFIG_TFM_SLIH_API 0 - -#if CONFIG_TFM_SPM_BACKEND_IPC == 1 -/* Trustzone NS agent working stack size. */ -#if defined(TFM_FIH_PROFILE_ON) && TFM_ISOLATION_LEVEL == 1 -#define CONFIG_TFM_NS_AGENT_TZ_STACK_SIZE 1256 -#else -#define CONFIG_TFM_NS_AGENT_TZ_STACK_SIZE 1024 -#endif - -/* SPM re-uses Trustzone NS agent stack. */ -#define CONFIG_TFM_SPM_THREAD_STACK_SIZE \ - CONFIG_TFM_NS_AGENT_TZ_STACK_SIZE - -#elif CONFIG_TFM_SPM_BACKEND_SFN == 1 -/* - * In isolation level 1 SFN model, all subsequent components work on NS agent - * stack. It is observed that half of the sum of all partition stack sizes is - * enough for working. Define a divisor factor - * CONFIG_TFM_NS_AGENT_TZ_STK_SIZE_SHIFT_FACTOR for reference, and allow - * modification of the factor based on application situation. The stack size - * value is aligned to 8 bytes. - * The minimum value is 0x400 to satisfy the SPM functional requirement. - * Manifest tool will assure this. - */ -#define CONFIG_TFM_TOTAL_STACK_SIZE (0 + CRYPTO_STACK_SIZE + PLATFORM_SP_STACK_SIZE) -#if (CONFIG_TFM_TOTAL_STACK_SIZE < 2048) -#undef CONFIG_TFM_TOTAL_STACK_SIZE -#define CONFIG_TFM_TOTAL_STACK_SIZE 2048 -#endif - -#define CONFIG_TFM_NS_AGENT_TZ_STK_SIZE_SHIFT_FACTOR 1 -#define CONFIG_TFM_NS_AGENT_TZ_STACK_SIZE \ - (((CONFIG_TFM_TOTAL_STACK_SIZE >> CONFIG_TFM_NS_AGENT_TZ_STK_SIZE_SHIFT_FACTOR) + 0x7) & (~0x7)) - -#endif /* CONFIG_TFM_SPM_BACKEND_IPC == 1 */ - -#endif /* __CONFIG_IMPL_H__ */ -- cgit v1.2.3