mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-01-30 17:05:23 +00:00
216 lines
5.6 KiB
C
216 lines
5.6 KiB
C
/*
|
|
* Copyright (C) 2015-2017 Alibaba Group Holding Limited
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/* chip level conf */
|
|
#ifndef RHINO_CONFIG_LITTLE_ENDIAN
|
|
#define RHINO_CONFIG_LITTLE_ENDIAN 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_CPU_STACK_DOWN
|
|
#define RHINO_CONFIG_CPU_STACK_DOWN 1
|
|
#endif
|
|
|
|
/* kernel feature conf */
|
|
#ifndef RHINO_CONFIG_SEM
|
|
#define RHINO_CONFIG_SEM 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_QUEUE
|
|
#define RHINO_CONFIG_QUEUE 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_SEM
|
|
#define RHINO_CONFIG_TASK_SEM 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_EVENT_FLAG
|
|
#define RHINO_CONFIG_EVENT_FLAG 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TIMER
|
|
#define RHINO_CONFIG_TIMER 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_BUF_QUEUE
|
|
#define RHINO_CONFIG_BUF_QUEUE 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_MM_BLK
|
|
#define RHINO_CONFIG_MM_BLK 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_MM_TLF
|
|
#define RHINO_CONFIG_MM_TLF 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_MM_TLF_BLK_SIZE
|
|
#define RHINO_CONFIG_MM_TLF_BLK_SIZE 8192
|
|
#endif
|
|
#ifndef RHINO_CONFIG_MM_DEBUG
|
|
#define RHINO_CONFIG_MM_DEBUG 1
|
|
#endif
|
|
#define K_MM_STATISTIC 1
|
|
#ifndef RHINO_CONFIG_KOBJ_SET
|
|
#define RHINO_CONFIG_KOBJ_SET 1
|
|
#endif
|
|
|
|
/* kernel task conf */
|
|
#ifndef RHINO_CONFIG_TASK_SUSPEND
|
|
#define RHINO_CONFIG_TASK_SUSPEND 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_INFO
|
|
#define RHINO_CONFIG_TASK_INFO 1
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_TASK_INFO_NUM
|
|
#define RHINO_CONFIG_TASK_INFO_NUM 5
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_TASK_DEL
|
|
#define RHINO_CONFIG_TASK_DEL 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_WAIT_ABORT
|
|
#define RHINO_CONFIG_TASK_WAIT_ABORT 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_STACK_OVF_CHECK
|
|
#define RHINO_CONFIG_TASK_STACK_OVF_CHECK 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_SCHED_RR
|
|
#define RHINO_CONFIG_SCHED_RR 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TIME_SLICE_DEFAULT
|
|
#define RHINO_CONFIG_TIME_SLICE_DEFAULT 50
|
|
#endif
|
|
#ifndef RHINO_CONFIG_PRI_MAX
|
|
#define RHINO_CONFIG_PRI_MAX 62
|
|
#endif
|
|
#ifndef RHINO_CONFIG_USER_PRI_MAX
|
|
#define RHINO_CONFIG_USER_PRI_MAX (RHINO_CONFIG_PRI_MAX - 2)
|
|
#endif
|
|
|
|
/* kernel mm_region conf */
|
|
#ifndef RHINO_CONFIG_MM_REGION_MUTEX
|
|
#define RHINO_CONFIG_MM_REGION_MUTEX 0
|
|
#endif
|
|
|
|
/* kernel timer&tick conf */
|
|
#ifndef RHINO_CONFIG_HW_COUNT
|
|
#define RHINO_CONFIG_HW_COUNT 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TICK_TASK
|
|
#define RHINO_CONFIG_TICK_TASK 1
|
|
#endif
|
|
|
|
#if (RHINO_CONFIG_TICK_TASK > 0)
|
|
#ifndef RHINO_CONFIG_TICK_TASK_STACK_SIZE
|
|
#define RHINO_CONFIG_TICK_TASK_STACK_SIZE 256
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TICK_TASK_PRI
|
|
#define RHINO_CONFIG_TICK_TASK_PRI 1
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_TICKLESS
|
|
#define RHINO_CONFIG_TICKLESS 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TICKS_PER_SECOND
|
|
#define RHINO_CONFIG_TICKS_PER_SECOND 100
|
|
#endif
|
|
/* must be 2^n size!, such as 1, 2, 4, 8, 16,32, etc....... */
|
|
#ifndef RHINO_CONFIG_TICK_HEAD_ARRAY
|
|
#define RHINO_CONFIG_TICK_HEAD_ARRAY 8
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TIMER_TASK_STACK_SIZE
|
|
#define RHINO_CONFIG_TIMER_TASK_STACK_SIZE 256
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TIMER_RATE
|
|
#define RHINO_CONFIG_TIMER_RATE 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TIMER_TASK_PRI
|
|
#define RHINO_CONFIG_TIMER_TASK_PRI 5
|
|
#endif
|
|
|
|
/* kernel intrpt conf */
|
|
#ifndef RHINO_CONFIG_INTRPT_STACK_REMAIN_GET
|
|
#define RHINO_CONFIG_INTRPT_STACK_REMAIN_GET 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_INTRPT_STACK_OVF_CHECK
|
|
#define RHINO_CONFIG_INTRPT_STACK_OVF_CHECK 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_INTRPT_MAX_NESTED_LEVEL
|
|
#define RHINO_CONFIG_INTRPT_MAX_NESTED_LEVEL 188u
|
|
#endif
|
|
#ifndef RHINO_CONFIG_INTRPT_GUARD
|
|
#define RHINO_CONFIG_INTRPT_GUARD 0
|
|
#endif
|
|
|
|
/* kernel dyn alloc conf */
|
|
#ifndef RHINO_CONFIG_KOBJ_DYN_ALLOC
|
|
#define RHINO_CONFIG_KOBJ_DYN_ALLOC 1
|
|
#endif
|
|
|
|
#if (RHINO_CONFIG_KOBJ_DYN_ALLOC > 0)
|
|
#ifndef RHINO_CONFIG_K_DYN_QUEUE_MSG
|
|
#define RHINO_CONFIG_K_DYN_QUEUE_MSG 60
|
|
#endif
|
|
#ifndef RHINO_CONFIG_K_DYN_TASK_STACK
|
|
#define RHINO_CONFIG_K_DYN_TASK_STACK 256
|
|
#endif
|
|
#ifndef RHINO_CONFIG_K_DYN_MEM_TASK_PRI
|
|
#define RHINO_CONFIG_K_DYN_MEM_TASK_PRI 9
|
|
#endif
|
|
#endif
|
|
|
|
/* kernel idle conf */
|
|
#ifndef RHINO_CONFIG_IDLE_TASK_STACK_SIZE
|
|
#define RHINO_CONFIG_IDLE_TASK_STACK_SIZE 256
|
|
#endif
|
|
|
|
/* kernel hook conf */
|
|
#ifndef RHINO_CONFIG_USER_HOOK
|
|
#define RHINO_CONFIG_USER_HOOK 1
|
|
#endif
|
|
|
|
/* kernel stats conf */
|
|
#ifndef RHINO_CONFIG_SYSTEM_STATS
|
|
#define RHINO_CONFIG_SYSTEM_STATS 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_DISABLE_SCHED_STATS
|
|
#define RHINO_CONFIG_DISABLE_SCHED_STATS 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_DISABLE_INTRPT_STATS
|
|
#define RHINO_CONFIG_DISABLE_INTRPT_STATS 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_CPU_USAGE_STATS
|
|
#define RHINO_CONFIG_CPU_USAGE_STATS 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_CPU_USAGE_TASK_PRI
|
|
#define RHINO_CONFIG_CPU_USAGE_TASK_PRI 2
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_SCHED_STATS
|
|
#define RHINO_CONFIG_TASK_SCHED_STATS 0
|
|
#endif
|
|
#ifndef RHINO_CONFIG_CPU_USAGE_TASK_STACK
|
|
#define RHINO_CONFIG_CPU_USAGE_TASK_STACK 256
|
|
#endif
|
|
#ifndef RHINO_CONFIG_TASK_STACK_CUR_CHECK
|
|
#define RHINO_CONFIG_TASK_STACK_CUR_CHECK 1
|
|
#endif
|
|
|
|
/* kernel workqueue conf */
|
|
#ifndef RHINO_CONFIG_WORKQUEUE
|
|
#define RHINO_CONFIG_WORKQUEUE 1
|
|
#endif
|
|
#ifndef RHINO_CONFIG_WORKQUEUE_STACK_SIZE
|
|
#define RHINO_CONFIG_WORKQUEUE_STACK_SIZE 768
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_CPU_NUM
|
|
#define RHINO_CONFIG_CPU_NUM 1
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_BACKTRACE
|
|
#define RHINO_CONFIG_BACKTRACE 0
|
|
#endif
|
|
|
|
#ifndef RHINO_CONFIG_PANIC
|
|
#define RHINO_CONFIG_PANIC 0
|
|
#endif
|
|
|
|
#endif /* CONFIG_H */
|
|
|