idle.c 7.4 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2018, 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 25 26
#ifdef RT_USING_MODULE
#include <dlmodule.h>
#endif

X
xieyangrun 已提交
27 28
#if defined (RT_USING_HOOK)
#ifndef RT_USING_IDLE_HOOK
29
#define RT_USING_IDLE_HOOK
X
xieyangrun 已提交
30 31 32
#endif
#endif

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
38
#endif
39
#endif
40

S
shaojinchun 已提交
41 42 43 44 45
#ifdef RT_USING_SMP
#define _CPUS_NR                RT_CPUS_NR
#else
#define _CPUS_NR                1
#endif
46 47 48

extern rt_list_t rt_thread_defunct;

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 53 54 55 56 57

#ifdef RT_USING_IDLE_HOOK
#ifndef RT_IDEL_HOOK_LIST_SIZE
#define RT_IDEL_HOOK_LIST_SIZE  4
#endif

armink_ztl's avatar
armink_ztl 已提交
58
static void (*idle_hook_list[RT_IDEL_HOOK_LIST_SIZE])();
59 60

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

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

    for (i = 0; i < RT_IDEL_HOOK_LIST_SIZE; i++)
    {
        if (idle_hook_list[i] == RT_NULL)
        {
            idle_hook_list[i] = hook;
86 87
            ret = RT_EOK;
            break;
armink_ztl's avatar
armink_ztl 已提交
88 89 90 91 92
        }
    }
    /* enable interrupt */
    rt_hw_interrupt_enable(level);

93
    return ret;
94
}
armink_ztl's avatar
armink_ztl 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107

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

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

    for (i = 0; i < RT_IDEL_HOOK_LIST_SIZE; i++)
    {
        if (idle_hook_list[i] == hook)
        {
            idle_hook_list[i] = RT_NULL;
118 119
            ret = RT_EOK;
            break;
armink_ztl's avatar
armink_ztl 已提交
120 121 122 123 124
        }
    }
    /* enable interrupt */
    rt_hw_interrupt_enable(level);

125
    return ret;
armink_ztl's avatar
armink_ztl 已提交
126 127
}

128 129
#endif

130 131 132 133 134 135 136 137 138
/* Return whether there is defunctional thread to be deleted. */
rt_inline int _has_defunct_thread(void)
{
    /* The rt_list_isempty has prototype of "int rt_list_isempty(const rt_list_t *l)".
     * So the compiler has a good reason that the rt_thread_defunct list does
     * not change within rt_thread_idle_excute thus optimize the "while" loop
     * into a "if".
     *
     * So add the volatile qualifier here. */
139
    const volatile rt_list_t *l = (const volatile rt_list_t *)&rt_thread_defunct;
140 141 142 143

    return l->next != l;
}

B
bernard.xiong 已提交
144
/**
B
bernard.xiong@gmail.com 已提交
145 146 147
 * @ingroup Thread
 *
 * This function will perform system background job when system idle.
B
bernard.xiong 已提交
148 149
 */
void rt_thread_idle_excute(void)
150
{
151 152
    /* Loop until there is no dead thread. So one call to rt_thread_idle_excute
     * will do all the cleanups. */
153
    while (_has_defunct_thread())
154 155 156
    {
        rt_base_t lock;
        rt_thread_t thread;
B
bernard.xiong 已提交
157
#ifdef RT_USING_MODULE
158
        struct rt_dlmodule *module = RT_NULL;
159
#endif
160 161 162 163 164 165
        RT_DEBUG_NOT_IN_INTERRUPT;

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

        /* re-check whether list is empty */
166
        if (_has_defunct_thread())
167 168 169 170 171
        {
            /* get defunct thread */
            thread = rt_list_entry(rt_thread_defunct.next,
                                   struct rt_thread,
                                   tlist);
qiuyiuestc's avatar
qiuyiuestc 已提交
172
#ifdef RT_USING_MODULE
173 174
            module = (struct rt_dlmodule*)thread->module_id;
            if (module)
175
            {
176
                dlmodule_destroy(module);
177
            }
qiuyiuestc's avatar
qiuyiuestc 已提交
178
#endif
179 180
            /* remove defunct thread */
            rt_list_remove(&(thread->tlist));
181 182 183 184

            /* lock scheduler to prevent scheduling in cleanup function. */
            rt_enter_critical();

185 186 187 188
            /* invoke thread cleanup */
            if (thread->cleanup != RT_NULL)
                thread->cleanup(thread);

B
bernard 已提交
189 190 191 192
#ifdef RT_USING_SIGNALS
            rt_thread_free_sig(thread);
#endif

193 194 195
            /* if it's a system object, not delete it */
            if (rt_object_is_systemobject((rt_object_t)thread) == RT_TRUE)
            {
196 197
                /* detach this object */
                rt_object_detach((rt_object_t)thread);
198 199 200
                /* unlock scheduler */
                rt_exit_critical();

201 202 203 204 205
                /* enable interrupt */
                rt_hw_interrupt_enable(lock);

                return;
            }
206 207 208

            /* unlock scheduler */
            rt_exit_critical();
209 210 211 212 213 214 215 216 217 218 219 220
        }
        else
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(lock);

            /* may the defunct thread list is removed by others, just return */
            return;
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(lock);
qiuyiuestc's avatar
qiuyiuestc 已提交
221

222
#ifdef RT_USING_HEAP
223 224
        /* release thread's stack */
        RT_KERNEL_FREE(thread->stack_addr);
225 226
        /* delete thread object */
        rt_object_delete((rt_object_t)thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
227
#endif
228
    }
B
bernard.xiong 已提交
229 230
}

D
dzzxzz 已提交
231
static void rt_thread_idle_entry(void *parameter)
B
bernard.xiong 已提交
232
{
S
shaojinchun 已提交
233 234 235 236 237 238 239 240
#ifdef RT_USING_SMP
    if (rt_hw_cpu_id() != 0)
    {
        while (1)
        {
            rt_hw_secondary_cpu_idle_exec();
        }
    }
armink_ztl's avatar
armink_ztl 已提交
241 242
#endif

243 244
    while (1)
    {
245
#ifdef RT_USING_IDLE_HOOK
S
shaojinchun 已提交
246 247
        rt_size_t i;

armink_ztl's avatar
armink_ztl 已提交
248
        for (i = 0; i < RT_IDEL_HOOK_LIST_SIZE; i++)
G
geniusgogo 已提交
249
        {
armink_ztl's avatar
armink_ztl 已提交
250 251 252 253
            if (idle_hook_list[i] != RT_NULL)
            {
                idle_hook_list[i]();
            }
G
geniusgogo 已提交
254
        }
255
#endif
G
geniusgogo 已提交
256

257 258
        rt_thread_idle_excute();
    }
259 260 261
}

/**
B
bernard 已提交
262
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
263
 *
264 265 266 267
 * This function will initialize idle thread, then start it.
 *
 * @note this function must be invoked when system init.
 */
D
dzzxzz 已提交
268
void rt_thread_idle_init(void)
269
{
270
    rt_ubase_t i;
S
shaojinchun 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
    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);
#endif
        /* startup */
        rt_thread_startup(&idle[i]);
    }
290
}
291 292 293 294 295 296 297 298 299

/**
 * @ingroup Thread
 *
 * This function will get the handler of the idle thread.
 *
 */
rt_thread_t rt_thread_idle_gethandler(void)
{
S
shaojinchun 已提交
300 301 302 303 304 305 306
#ifdef RT_USING_SMP
    register int id = rt_hw_cpu_id();
#else
    register int id = 0;
#endif

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