idle.c 9.5 KB
Newer Older
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
B
Bernard Xiong 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-23     Bernard      the first version
9
 * 2010-11-10     Bernard      add cleanup callback function in thread exit.
10
 * 2012-12-29     Bernard      fix compiling warning.
11 12
 * 2013-12-21     Grissiom     let rt_thread_idle_excute loop until there is no
 *                             dead thread.
13
 * 2016-08-09     ArdaFu       add method to get the handler of the idle thread.
14
 * 2018-02-07     Bernard      lock scheduler to protect tid->cleanup.
15
 * 2018-07-14     armink       add idle hook list
S
shaojinchun 已提交
16 17
 * 2018-11-22     Jesven       add per cpu idle task
 *                             combine the code of primary and secondary cpu
18 19 20 21 22
 */

#include <rthw.h>
#include <rtthread.h>

23 24
#ifdef RT_USING_MODULE
#include <dlmodule.h>
mysterywolf's avatar
mysterywolf 已提交
25
#endif /* RT_USING_MODULE */
26

mysterywolf's avatar
mysterywolf 已提交
27
#ifdef RT_USING_HOOK
X
xieyangrun 已提交
28
#ifndef RT_USING_IDLE_HOOK
29
#define RT_USING_IDLE_HOOK
mysterywolf's avatar
mysterywolf 已提交
30 31
#endif /* RT_USING_IDLE_HOOK */
#endif /* RT_USING_HOOK */
X
xieyangrun 已提交
32

33
#ifndef IDLE_THREAD_STACK_SIZE
X
xieyangrun 已提交
34
#if defined (RT_USING_IDLE_HOOK) || defined(RT_USING_HEAP)
35
#define IDLE_THREAD_STACK_SIZE  256
36
#else
37
#define IDLE_THREAD_STACK_SIZE  128
mysterywolf's avatar
mysterywolf 已提交
38 39
#endif /* (RT_USING_IDLE_HOOK) || defined(RT_USING_HEAP) */
#endif /* IDLE_THREAD_STACK_SIZE */
40

S
shaojinchun 已提交
41 42 43 44
#ifdef RT_USING_SMP
#define _CPUS_NR                RT_CPUS_NR
#else
#define _CPUS_NR                1
mysterywolf's avatar
mysterywolf 已提交
45
#endif /* RT_USING_SMP */
46

F
fenghuijie 已提交
47
static rt_list_t _rt_thread_defunct = RT_LIST_OBJECT_INIT(_rt_thread_defunct);;
48

S
shaojinchun 已提交
49 50 51
static struct rt_thread idle[_CPUS_NR];
ALIGN(RT_ALIGN_SIZE)
static rt_uint8_t rt_thread_stack[_CPUS_NR][IDLE_THREAD_STACK_SIZE];
S
shaojinchun 已提交
52

F
fenghuijie 已提交
53 54 55 56 57 58 59 60 61 62
#ifdef RT_USING_SMP
#ifndef SYSTEM_THREAD_STACK_SIZE
#define SYSTEM_THREAD_STACK_SIZE IDLE_THREAD_STACK_SIZE
#endif
static struct rt_thread rt_system_thread;
ALIGN(RT_ALIGN_SIZE)
static rt_uint8_t rt_system_stack[SYSTEM_THREAD_STACK_SIZE];
static struct rt_semaphore system_sem;
#endif

S
shaojinchun 已提交
63
#ifdef RT_USING_IDLE_HOOK
64 65
#ifndef RT_IDLE_HOOK_LIST_SIZE
#define RT_IDLE_HOOK_LIST_SIZE  4
mysterywolf's avatar
mysterywolf 已提交
66
#endif /* RT_IDLE_HOOK_LIST_SIZE */
S
shaojinchun 已提交
67

68
static void (*idle_hook_list[RT_IDLE_HOOK_LIST_SIZE])(void);
69 70

/**
71 72
 * @brief This function sets a hook function to idle thread loop. When the system performs
 *        idle loop, this hook function should be invoked.
73
 *
74
 * @param hook the specified hook function.
75
 *
76 77
 * @return RT_EOK: set OK.
 *         -RT_EFULL: hook list is full.
armink_ztl's avatar
armink_ztl 已提交
78
 *
79 80
 * @note the hook function must be simple and never be blocked or suspend.
 */
armink_ztl's avatar
armink_ztl 已提交
81
rt_err_t rt_thread_idle_sethook(void (*hook)(void))
82
{
armink_ztl's avatar
armink_ztl 已提交
83 84
    rt_size_t i;
    rt_base_t level;
85
    rt_err_t ret = -RT_EFULL;
armink_ztl's avatar
armink_ztl 已提交
86 87 88 89

    /* disable interrupt */
    level = rt_hw_interrupt_disable();

90
    for (i = 0; i < RT_IDLE_HOOK_LIST_SIZE; i++)
armink_ztl's avatar
armink_ztl 已提交
91 92 93 94
    {
        if (idle_hook_list[i] == RT_NULL)
        {
            idle_hook_list[i] = hook;
95 96
            ret = RT_EOK;
            break;
armink_ztl's avatar
armink_ztl 已提交
97 98 99 100 101
        }
    }
    /* enable interrupt */
    rt_hw_interrupt_enable(level);

102
    return ret;
103
}
armink_ztl's avatar
armink_ztl 已提交
104 105

/**
106
 * @brief delete the idle hook on hook list.
armink_ztl's avatar
armink_ztl 已提交
107
 *
108
 * @param hook the specified hook function.
armink_ztl's avatar
armink_ztl 已提交
109
 *
110 111
 * @return RT_EOK: delete OK.
 *         -RT_ENOSYS: hook was not found.
armink_ztl's avatar
armink_ztl 已提交
112 113 114 115 116
 */
rt_err_t rt_thread_idle_delhook(void (*hook)(void))
{
    rt_size_t i;
    rt_base_t level;
117
    rt_err_t ret = -RT_ENOSYS;
armink_ztl's avatar
armink_ztl 已提交
118 119 120 121

    /* disable interrupt */
    level = rt_hw_interrupt_disable();

122
    for (i = 0; i < RT_IDLE_HOOK_LIST_SIZE; i++)
armink_ztl's avatar
armink_ztl 已提交
123 124 125 126
    {
        if (idle_hook_list[i] == hook)
        {
            idle_hook_list[i] = RT_NULL;
127 128
            ret = RT_EOK;
            break;
armink_ztl's avatar
armink_ztl 已提交
129 130 131 132 133
        }
    }
    /* enable interrupt */
    rt_hw_interrupt_enable(level);

134
    return ret;
armink_ztl's avatar
armink_ztl 已提交
135 136
}

mysterywolf's avatar
mysterywolf 已提交
137
#endif /* RT_USING_IDLE_HOOK */
138

F
fenghuijie 已提交
139
#ifdef RT_USING_MODULE
140
/* Return whether there is defunctional thread to be deleted. */
mysterywolf's avatar
mysterywolf 已提交
141
rt_inline int _idle_has_defunct_thread(void)
142 143
{
    /* The rt_list_isempty has prototype of "int rt_list_isempty(const rt_list_t *l)".
F
fenghuijie 已提交
144 145
     * So the compiler has a good reason that the _rt_thread_defunct list does
     * not change within rt_thread_defunct_exceute thus optimize the "while" loop
146 147 148
     * into a "if".
     *
     * So add the volatile qualifier here. */
F
fenghuijie 已提交
149
    const volatile rt_list_t *l = (const volatile rt_list_t *)&_rt_thread_defunct;
150 151 152

    return l->next != l;
}
F
fenghuijie 已提交
153 154
#endif /* RT_USING_MODULE */

155 156 157 158
/**
 * @brief Enqueue a thread to defunct queue.
 *
 * @note It must be called between rt_hw_interrupt_disable and rt_hw_interrupt_enable
F
fenghuijie 已提交
159 160 161 162 163 164 165 166 167
 */
void rt_thread_defunct_enqueue(rt_thread_t thread)
{
    rt_list_insert_after(&_rt_thread_defunct, &thread->tlist);
#ifdef RT_USING_SMP
    rt_sem_release(&system_sem);
#endif
}

168 169 170 171
/**
 * @brief Dequeue a thread from defunct queue.
 * 
 * @note It must be called between rt_hw_interrupt_disable and rt_hw_interrupt_enable.
F
fenghuijie 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
 */
rt_thread_t rt_thread_defunct_dequeue(void)
{
    rt_thread_t thread = RT_NULL;
    rt_list_t *l = &_rt_thread_defunct;

    if (l->next != l)
    {
        thread = rt_list_entry(l->next,
                struct rt_thread,
                tlist);
        rt_list_remove(&(thread->tlist));
    }
    return thread;
}
187

B
bernard.xiong 已提交
188
/**
189
 * @brief This function will perform system background job when system idle.
B
bernard.xiong 已提交
190
 */
F
fenghuijie 已提交
191
static void rt_defunct_execute(void)
192
{
F
fenghuijie 已提交
193
    /* Loop until there is no dead thread. So one call to rt_defunct_execute
194
     * will do all the cleanups. */
195
    while (1)
196 197 198
    {
        rt_base_t lock;
        rt_thread_t thread;
F
fenghuijie 已提交
199
        void (*cleanup)(struct rt_thread *tid);
200

F
fenghuijie 已提交
201 202 203 204 205 206
#ifdef RT_USING_MODULE
        struct rt_dlmodule *module = RT_NULL;
#endif
        RT_DEBUG_NOT_IN_INTERRUPT;

        /* disable interrupt */
207 208
        lock = rt_hw_interrupt_disable();

F
fenghuijie 已提交
209
#ifdef RT_USING_MODULE
210
        /* check whether list is empty */
mysterywolf's avatar
mysterywolf 已提交
211
        if (!_idle_has_defunct_thread())
212 213
        {
            rt_hw_interrupt_enable(lock);
214
            break;
215
        }
216
        /* get defunct thread */
F
fenghuijie 已提交
217
        thread = rt_list_entry(_rt_thread_defunct.next,
218 219
                struct rt_thread,
                tlist);
F
fenghuijie 已提交
220 221 222 223 224
        module = (struct rt_dlmodule*)thread->module_id;
        if (module)
        {
            dlmodule_destroy(module);
        }
225 226
        /* remove defunct thread */
        rt_list_remove(&(thread->tlist));
F
fenghuijie 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
#else
        thread = rt_thread_defunct_dequeue();
        if (!thread)
        {
            rt_hw_interrupt_enable(lock);
            break;
        }
#endif
        /* invoke thread cleanup */
        cleanup = thread->cleanup;
        if (cleanup != RT_NULL)
        {
            rt_hw_interrupt_enable(lock);
            cleanup(thread);
            lock = rt_hw_interrupt_disable();
        }

#ifdef RT_USING_SIGNALS
        rt_thread_free_sig(thread);
#endif

        /* if it's a system object, not delete it */
        if (rt_object_is_systemobject((rt_object_t)thread) == RT_TRUE)
        {
            /* detach this object */
            rt_object_detach((rt_object_t)thread);
            /* enable interrupt */
            rt_hw_interrupt_enable(lock);
        }
        else
        {
            rt_hw_interrupt_enable(lock);
#ifdef RT_USING_HEAP
            /* release thread's stack */
            RT_KERNEL_FREE(thread->stack_addr);
            /* delete thread object */
            rt_object_delete((rt_object_t)thread);
#endif
        }
266
    }
B
bernard.xiong 已提交
267 268
}

269
extern void rt_system_power_manager(void);
D
dzzxzz 已提交
270
static void rt_thread_idle_entry(void *parameter)
B
bernard.xiong 已提交
271
{
S
shaojinchun 已提交
272 273 274 275 276 277 278 279
#ifdef RT_USING_SMP
    if (rt_hw_cpu_id() != 0)
    {
        while (1)
        {
            rt_hw_secondary_cpu_idle_exec();
        }
    }
mysterywolf's avatar
mysterywolf 已提交
280
#endif /* RT_USING_SMP */
armink_ztl's avatar
armink_ztl 已提交
281

282 283
    while (1)
    {
284
#ifdef RT_USING_IDLE_HOOK
S
shaojinchun 已提交
285
        rt_size_t i;
286
        void (*idle_hook)(void);
S
shaojinchun 已提交
287

288
        for (i = 0; i < RT_IDLE_HOOK_LIST_SIZE; i++)
G
geniusgogo 已提交
289
        {
290 291
            idle_hook = idle_hook_list[i];
            if (idle_hook != RT_NULL)
armink_ztl's avatar
armink_ztl 已提交
292
            {
293
                idle_hook();
armink_ztl's avatar
armink_ztl 已提交
294
            }
G
geniusgogo 已提交
295
        }
mysterywolf's avatar
mysterywolf 已提交
296
#endif /* RT_USING_IDLE_HOOK */
G
geniusgogo 已提交
297

F
fenghuijie 已提交
298 299 300 301
#ifndef RT_USING_SMP
        rt_defunct_execute();
#endif /* RT_USING_SMP */

mysterywolf's avatar
mysterywolf 已提交
302
#ifdef RT_USING_PM
303
        rt_system_power_manager();
mysterywolf's avatar
mysterywolf 已提交
304
#endif /* RT_USING_PM */
305
    }
306 307
}

F
fenghuijie 已提交
308 309 310 311 312 313 314 315 316 317 318
#ifdef RT_USING_SMP
static void rt_thread_system_entry(void *parameter)
{
    while (1)
    {
        rt_sem_take(&system_sem, RT_WAITING_FOREVER);
        rt_defunct_execute();
    }
}
#endif

319
/**
320
 * @brief This function will initialize idle thread, then start it.
321 322 323
 *
 * @note this function must be invoked when system init.
 */
D
dzzxzz 已提交
324
void rt_thread_idle_init(void)
325
{
326
    rt_ubase_t i;
S
shaojinchun 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
    char tidle_name[RT_NAME_MAX];

    for (i = 0; i < _CPUS_NR; i++)
    {
        rt_sprintf(tidle_name, "tidle%d", i);
        rt_thread_init(&idle[i],
                tidle_name,
                rt_thread_idle_entry,
                RT_NULL,
                &rt_thread_stack[i][0],
                sizeof(rt_thread_stack[i]),
                RT_THREAD_PRIORITY_MAX - 1,
                32);
#ifdef RT_USING_SMP
        rt_thread_control(&idle[i], RT_THREAD_CTRL_BIND_CPU, (void*)i);
mysterywolf's avatar
mysterywolf 已提交
342
#endif /* RT_USING_SMP */
S
shaojinchun 已提交
343 344 345
        /* startup */
        rt_thread_startup(&idle[i]);
    }
F
fenghuijie 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363

#ifdef RT_USING_SMP
    RT_ASSERT(RT_THREAD_PRIORITY_MAX > 2);

    rt_sem_init(&system_sem, "defunct", 1, RT_IPC_FLAG_FIFO);

    /* create defunct thread */
    rt_thread_init(&rt_system_thread,
            "tsystem",
            rt_thread_system_entry,
            RT_NULL,
            rt_system_stack,
            sizeof(rt_system_stack),
            RT_THREAD_PRIORITY_MAX - 2,
            32);
    /* startup */
    rt_thread_startup(&rt_system_thread);
#endif
364
}
365 366

/**
367
 * @brief This function will get the handler of the idle thread.
368 369 370
 */
rt_thread_t rt_thread_idle_gethandler(void)
{
S
shaojinchun 已提交
371 372 373 374
#ifdef RT_USING_SMP
    register int id = rt_hw_cpu_id();
#else
    register int id = 0;
mysterywolf's avatar
mysterywolf 已提交
375
#endif /* RT_USING_SMP */
S
shaojinchun 已提交
376 377

    return (rt_thread_t)(&idle[id]);
378
}