/* * Copyright (c) 2022 FuZhou Lockzhiner Electronic Co., Ltd. All rights reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /**@defgroup los_config System configuration items * @ingroup kernel */ #ifndef _TARGET_CONFIG_H #define _TARGET_CONFIG_H #include "link.h" #include "soc.h" #ifdef __cplusplus #if __cplusplus extern "C" { #endif /* __cplusplus */ #endif /* __cplusplus */ /*============================================================================= System clock module configuration =============================================================================*/ #define OS_SYS_CLOCK 96000000UL #define LOSCFG_BASE_CORE_TICK_PER_SECOND (1000UL) #define LOSCFG_BASE_CORE_TICK_HW_TIME 0 #define LOSCFG_BASE_CORE_TICK_WTIMER 0 #define LOSCFG_BASE_CORE_TICK_RESPONSE_MAX 0xFFFFFFUL /*============================================================================= Hardware interrupt module configuration =============================================================================*/ #define LOSCFG_PLATFORM_HWI 1 #define LOSCFG_USE_SYSTEM_DEFINED_INTERRUPT 1 #define LOSCFG_PLATFORM_HWI_LIMIT 128 /*============================================================================= Task module configuration =============================================================================*/ #define LOSCFG_BASE_CORE_TSK_LIMIT 63 #define LOSCFG_BASE_CORE_TSK_IDLE_STACK_SIZE (0x1000U) #define LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE (0x1000U) #define LOSCFG_BASE_CORE_TSK_MIN_STACK_SIZE (0x200U) #define LOSCFG_BASE_CORE_TIMESLICE 1 #define LOSCFG_BASE_CORE_TIMESLICE_TIMEOUT 20000 /*============================================================================= Semaphore module configuration =============================================================================*/ #define LOSCFG_BASE_IPC_SEM 1 #define LOSCFG_BASE_IPC_SEM_LIMIT 48 /*============================================================================= Mutex module configuration =============================================================================*/ #define LOSCFG_BASE_IPC_MUX 1 #define LOSCFG_BASE_IPC_MUX_LIMIT 48 /*============================================================================= Queue module configuration =============================================================================*/ #define LOSCFG_BASE_IPC_QUEUE 1 #define LOSCFG_BASE_IPC_QUEUE_LIMIT 48 /*============================================================================= Software timer module configuration =============================================================================*/ #define LOSCFG_BASE_CORE_SWTMR 1 #define LOSCFG_BASE_CORE_SWTMR_ALIGN 0 #define LOSCFG_BASE_CORE_SWTMR_LIMIT 48 /*============================================================================= Memory module configuration =============================================================================*/ #define LOSCFG_MEM_MUL_POOL 1 #define OS_SYS_MEM_NUM 20 /*============================================================================= Exception module configuration =============================================================================*/ #define LOSCFG_PLATFORM_EXC 1 /* ============================================================================= printf module configuration ============================================================================= */ #define LOSCFG_KERNEL_PRINTF 1 #define LOSCFG_BASE_CORE_SCHED_SLEEP 1 #define LOSCFG_BASE_CORE_TSK_MONITOR 1 #define LOSCFG_BASE_CORE_CPUP 1 #define LOSCFG_BASE_CORE_EXC_TSK_SWITCH 1 #define LOSCFG_SYS_EXTERNAL_HEAP 1 #define LOSCFG_MEM_FREE_BY_TASKID 1 #define LOSCFG_BASE_MEM_NODE_INTEGRITY_CHECK 1 #define LOSCFG_MEM_LEAKCHECK 1 #define LOSCFG_HAL_TRACE_PRINTF 1 #define HAL_TRACE_DEBUG 8 /*============================================================================= Memory module configuration =============================================================================*/ extern unsigned int _heap_start; #define LOSCFG_SYS_HEAP_ADDR ((unsigned char *)(&_heap_start)) #define LOSCFG_SYS_HEAP_SIZE (PSRAM_SIZE - SYS_STACK_SIZE) /*============================================================================= Hardware interrupt configuration =============================================================================*/ #define LOSCFG_PLATFORM_HWI_WITH_ARG 1 /*============================================================================= Section configuration =============================================================================*/ #define LOSCFG_ARCH_HWI_VECTOR_ALIGN 0x200 #ifdef __cplusplus #if __cplusplus } #endif /* __cplusplus */ #endif /* __cplusplus */ #endif /* _TARGET_CONFIG_H */