• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
3  * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice, this list of
9  *    conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice, this list
12  *    of conditions and the following disclaimer in the documentation and/or other materials
13  *    provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its contributors may be used
16  *    to endorse or promote products derived from this software without specific prior written
17  *    permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef _LOS_SCHED_H
33 #define _LOS_SCHED_H
34 
35 #include "los_task.h"
36 #include "los_interrupt.h"
37 #include "los_tick.h"
38 #include "los_sortlink.h"
39 
40 #ifdef __cplusplus
41 #if __cplusplus
42 extern "C" {
43 #endif /* __cplusplus */
44 #endif /* __cplusplus */
45 
46 #define OS_SCHED_MINI_PERIOD       (g_sysClock / LOSCFG_BASE_CORE_TICK_PER_SECOND_MINI)
47 #define OS_SCHED_MAX_RESPONSE_TIME OS_SORT_LINK_UINT64_MAX
48 
49 extern UINT32 g_taskScheduled;
50 typedef BOOL (*SchedScan)(VOID);
51 
52 VOID OsSchedResetSchedResponseTime(UINT64 responseTime);
53 
54 VOID OsSchedSetIdleTaskSchedParam(LosTaskCB *idleTask);
55 
56 UINT32 OsSchedSwtmrScanRegister(SchedScan func);
57 
58 VOID OsSchedUpdateExpireTime(VOID);
59 
60 UINT64 OsSchedGetNextExpireTime(UINT64 startTime);
61 
62 VOID OsSchedTaskDeQueue(LosTaskCB *taskCB);
63 
64 VOID OsSchedTaskEnQueue(LosTaskCB *taskCB);
65 
66 VOID OsSchedTaskWait(LOS_DL_LIST *list, UINT32 timeout);
67 
68 VOID OsSchedTaskWake(LosTaskCB *resumedTask);
69 
70 BOOL OsSchedModifyTaskSchedParam(LosTaskCB *taskCB, UINT16 priority);
71 
72 VOID OsSchedDelay(LosTaskCB *runTask, UINT32 tick);
73 
74 VOID OsSchedYield(VOID);
75 
76 VOID OsSchedTaskExit(LosTaskCB *taskCB);
77 
78 VOID OsSchedSuspend(LosTaskCB *taskCB);
79 
80 BOOL OsSchedResume(LosTaskCB *taskCB);
81 
82 VOID OsSchedTick(VOID);
83 
84 UINT32 OsSchedInit(VOID);
85 
86 VOID OsSchedStart(VOID);
87 
88 BOOL OsSchedTaskSwitch(VOID);
89 
90 LosTaskCB *OsGetTopTask(VOID);
91 
92 VOID OsSchedTimeConvertFreq(UINT32 oldFreq);
93 
OsGetCurrSchedTimeCycle(VOID)94 STATIC INLINE UINT64 OsGetCurrSchedTimeCycle(VOID)
95 {
96     return LOS_SysCycleGet();
97 }
98 
OsCheckKernelRunning(VOID)99 STATIC INLINE BOOL OsCheckKernelRunning(VOID)
100 {
101     return (g_taskScheduled && LOS_CHECK_SCHEDULE);
102 }
103 
104 /**
105  * @ingroup los_sched
106  * @brief Get the time, in nanoseconds, remaining before the next tick interrupt response.
107  *
108  * @par Description:
109  * This API is used to get the time, in nanoseconds, remaining before the next tick interrupt response.
110  *
111  * @attention None.
112  *
113  * @param  None.
114  *
115  * @retval #time, in nanoseconds.
116  * @par Dependency:
117  * <ul><li>los_sched.h: the header file that contains the API declaration.</li></ul>
118  * @see
119  */
120 extern UINT64 LOS_SchedTickTimeoutNsGet(VOID);
121 
122 /**
123  * @ingroup los_sched
124  * @brief The system-provided tick interrupt handler.
125  *
126  * @par Description:
127  * This API is used to wake up a task that is blocked by time.
128  *
129  * @attention None.
130  *
131  * @param  None.
132  *
133  * @retval None.
134  * @par Dependency:
135  * <ul><li>los_sched.h: the header file that contains the API declaration.</li></ul>
136  * @see
137  */
138 extern VOID LOS_SchedTickHandler(VOID);
139 
140 /**
141  * @ingroup los_sched
142  * @brief Trigger a system dispatch.
143  *
144  * @par Description:
145  * This API is used to trigger a system dispatch.
146  *
147  * @attention None.
148  *
149  * @param  None.
150  *
151  * @retval None.
152  * @par Dependency:
153  * <ul><li>los_sched.h: the header file that contains the API declaration.</li></ul>
154  * @see
155  */
156 extern VOID LOS_Schedule(VOID);
157 
158 #ifdef __cplusplus
159 #if __cplusplus
160 }
161 #endif /* __cplusplus */
162 #endif /* __cplusplus */
163 
164 #endif /* _LOS_SCHED_H */
165