scheduler.c 10.6 KB
Newer Older
1 2 3
/*
 * File      : scheduler.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
5 6 7
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
B
bernard.xiong 已提交
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12 13 14
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-17     Bernard      the first version
 * 2006-04-28     Bernard      fix the scheduler algorthm
 * 2006-04-30     Bernard      add SCHEDULER_DEBUG
15 16
 * 2006-05-27     Bernard      fix the scheduler algorthm for same priority
 *                             thread schedule
17 18 19 20 21
 * 2006-06-04     Bernard      rewrite the scheduler algorithm
 * 2006-08-03     Bernard      add hook support
 * 2006-09-05     Bernard      add 32 priority level support
 * 2006-09-24     Bernard      add rt_system_scheduler_start function
 * 2009-09-16     Bernard      fix _rt_scheduler_stack_check
22
 * 2010-04-11     yi.qiu       add module feature
23
 * 2010-07-13     Bernard      fix the maximal number of rt_scheduler_lock_nest
24
 *                             issue found by kuronca
25
 * 2010-12-13     Bernard      add defunct list initialization even if not use heap.
B
bernard.xiong@gmail.com 已提交
26
 * 2011-05-10     Bernard      clean scheduler debug log.
27 28 29 30 31 32
 */

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

static rt_int16_t rt_scheduler_lock_nest;
33
extern volatile rt_uint8_t rt_interrupt_nest;
34
extern int __rt_ffs(int value);
35 36

rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX];
D
dzzxzz 已提交
37
struct rt_thread *rt_current_thread;
38 39 40 41

rt_uint8_t rt_current_priority;

#if RT_THREAD_PRIORITY_MAX > 32
42
/* Maximum priority level, 256 */
43 44 45
rt_uint32_t rt_thread_ready_priority_group;
rt_uint8_t rt_thread_ready_table[32];
#else
46
/* Maximum priority level, 32 */
47 48 49 50 51 52
rt_uint32_t rt_thread_ready_priority_group;
#endif

rt_list_t rt_thread_defunct;

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
53
static void (*rt_scheduler_hook)(struct rt_thread *from, struct rt_thread *to);
54 55 56 57

/**
 * @addtogroup Hook
 */
D
dzzxzz 已提交
58

59 60 61 62 63 64 65 66
/*@{*/

/**
 * This function will set a hook function, which will be invoked when thread
 * switch happens.
 *
 * @param hook the hook function
 */
67 68
void
rt_scheduler_sethook(void (*hook)(struct rt_thread *from, struct rt_thread *to))
69
{
70
    rt_scheduler_hook = hook;
71 72 73 74 75 76
}

/*@}*/
#endif

#ifdef RT_USING_OVERFLOW_CHECK
D
dzzxzz 已提交
77
static void _rt_scheduler_stack_check(struct rt_thread *thread)
78
{
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    RT_ASSERT(thread != RT_NULL);

    if ((rt_uint32_t)thread->sp <= (rt_uint32_t)thread->stack_addr ||
        (rt_uint32_t)thread->sp >
        (rt_uint32_t)thread->stack_addr + (rt_uint32_t)thread->stack_size)
    {
        rt_uint32_t level;

        rt_kprintf("thread:%s stack overflow\n", thread->name);
        #ifdef RT_USING_FINSH
        {
            extern long list_thread(void);
            list_thread();
        }
        #endif
        level = rt_hw_interrupt_disable();
        while (level);
    }
    else if ((rt_uint32_t)thread->sp <= ((rt_uint32_t)thread->stack_addr + 32))
    {
        rt_kprintf("warning: %s stack is close to end of stack address.\n",
                   thread->name);
    }
102 103 104 105 106
}
#endif

/**
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
107
 * This function will initialize the system scheduler
108 109 110
 */
void rt_system_scheduler_init(void)
{
111
    register rt_base_t offset;
112

113
    rt_scheduler_lock_nest = 0;
114

115
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("start scheduler: max priority 0x%02x\n",
116
                                      RT_THREAD_PRIORITY_MAX));
B
bernard.xiong@gmail.com 已提交
117

118 119 120 121
    for (offset = 0; offset < RT_THREAD_PRIORITY_MAX; offset ++)
    {
        rt_list_init(&rt_thread_priority_table[offset]);
    }
122

123 124
    rt_current_priority = RT_THREAD_PRIORITY_MAX - 1;
    rt_current_thread = RT_NULL;
125

126 127
    /* initialize ready priority group */
    rt_thread_ready_priority_group = 0;
128 129

#if RT_THREAD_PRIORITY_MAX > 32
130 131
    /* initialize ready table */
    rt_memset(rt_thread_ready_table, 0, sizeof(rt_thread_ready_table));
132 133
#endif

134 135
    /* initialize thread defunct */
    rt_list_init(&rt_thread_defunct);
136 137 138
}

/**
139
 * @ingroup SystemInit
140 141 142
 * This function will startup scheduler. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
143
void rt_system_scheduler_start(void)
144
{
145 146
    register struct rt_thread *to_thread;
    register rt_ubase_t highest_ready_priority;
147

148
#if RT_THREAD_PRIORITY_MAX > 32
149
    register rt_ubase_t number;
150

151 152
    number = __rt_ffs(rt_thread_ready_priority_group) - 1;
    highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
153
#else
154
    highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
155 156
#endif

157 158 159 160
    /* get switch to thread */
    to_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
                              struct rt_thread,
                              tlist);
161

162
    rt_current_thread = to_thread;
163

164 165
    /* switch to new thread */
    rt_hw_context_switch_to((rt_uint32_t)&to_thread->sp);
166

167
    /* never come back */
168 169 170 171 172
}

/**
 * @addtogroup Thread
 */
D
dzzxzz 已提交
173

174 175 176 177 178 179
/*@{*/

/**
 * This function will perform one schedule. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
180
void rt_schedule(void)
181
{
182 183 184
    rt_base_t level;
    struct rt_thread *to_thread;
    struct rt_thread *from_thread;
185

186 187
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
188

189 190 191 192
    /* check the scheduler is enabled or not */
    if (rt_scheduler_lock_nest == 0)
    {
        register rt_ubase_t highest_ready_priority;
193

194 195
#if RT_THREAD_PRIORITY_MAX <= 32
        highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
196
#else
197
        register rt_ubase_t number;
198

199 200
        number = __rt_ffs(rt_thread_ready_priority_group) - 1;
        highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
201
#endif
202

203 204 205 206 207 208 209 210
        /* get switch to thread */
        to_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
                                  struct rt_thread,
                                  tlist);

        /* if the destination thread is not the same as current thread */
        if (to_thread != rt_current_thread)
        {
211
            rt_current_priority = (rt_uint8_t)highest_ready_priority;
212 213 214 215 216 217 218
            from_thread         = rt_current_thread;
            rt_current_thread   = to_thread;

            RT_OBJECT_HOOK_CALL(rt_scheduler_hook, (from_thread, to_thread));

            /* switch to new thread */
            RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
219 220 221 222
                         ("[%d]switch to priority#%d thread:%s\n",
                          rt_interrupt_nest,
                          highest_ready_priority,
                          to_thread->name));
223

224
#ifdef RT_USING_OVERFLOW_CHECK
225
            _rt_scheduler_stack_check(to_thread);
226 227
#endif

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
            if (rt_interrupt_nest == 0)
            {
                rt_hw_context_switch((rt_uint32_t)&from_thread->sp,
                                     (rt_uint32_t)&to_thread->sp);
            }
            else
            {
                RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("switch in interrupt\n"));

                rt_hw_context_switch_interrupt((rt_uint32_t)&from_thread->sp,
                                               (rt_uint32_t)&to_thread->sp);
            }
        }
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);
245 246
}

B
bernard.xiong@gmail.com 已提交
247
/*
248 249 250 251 252 253
 * This function will insert a thread to system ready queue. The state of
 * thread will be set as READY and remove from suspend queue.
 *
 * @param thread the thread to be inserted
 * @note Please do not invoke this function in user application.
 */
D
dzzxzz 已提交
254
void rt_schedule_insert_thread(struct rt_thread *thread)
255
{
256
    register rt_base_t temp;
257

258
    RT_ASSERT(thread != RT_NULL);
259

260 261
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
262

263 264
    /* change stat */
    thread->stat = RT_THREAD_READY;
265

266 267 268
    /* insert thread to ready list */
    rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]),
                          &(thread->tlist));
269

270
    /* set priority mask */
271
#if RT_THREAD_PRIORITY_MAX <= 32
272
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%s], the priority: %d\n", 
273
                                      thread->name, thread->current_priority));
274
#else
275
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
276 277 278 279 280
                 ("insert thread[%s], the priority: %d 0x%x %d\n", 
                  thread->name,
                  thread->number,
                  thread->number_mask,
                  thread->high_mask));
281 282 283
#endif

#if RT_THREAD_PRIORITY_MAX > 32
284
    rt_thread_ready_table[thread->number] |= thread->high_mask;
285
#endif
286
    rt_thread_ready_priority_group |= thread->number_mask;
287

288 289
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
290 291
}

B
bernard.xiong@gmail.com 已提交
292
/*
293 294 295 296 297 298
 * This function will remove a thread from system ready queue.
 *
 * @param thread the thread to be removed
 *
 * @note Please do not invoke this function in user application.
 */
D
dzzxzz 已提交
299
void rt_schedule_remove_thread(struct rt_thread *thread)
300
{
301
    register rt_base_t temp;
302

303
    RT_ASSERT(thread != RT_NULL);
304

305 306
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
307

308
#if RT_THREAD_PRIORITY_MAX <= 32
309
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%s], the priority: %d\n", 
310
                                      thread->name, thread->current_priority));
311
#else
312
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
313 314 315 316 317
                 ("remove thread[%s], the priority: %d 0x%x %d\n", 
                  thread->name,
                  thread->number,
                  thread->number_mask,
                  thread->high_mask));
318 319
#endif

320 321 322 323
    /* remove thread from ready list */
    rt_list_remove(&(thread->tlist));
    if (rt_list_isempty(&(rt_thread_priority_table[thread->current_priority])))
    {
324
#if RT_THREAD_PRIORITY_MAX > 32
325 326 327 328 329
        rt_thread_ready_table[thread->number] &= ~thread->high_mask;
        if (rt_thread_ready_table[thread->number] == 0)
        {
            rt_thread_ready_priority_group &= ~thread->number_mask;
        }
330
#else
331
        rt_thread_ready_priority_group &= ~thread->number_mask;
332
#endif
333
    }
334

335 336
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
337 338 339 340 341
}

/**
 * This function will lock the thread scheduler.
 */
D
dzzxzz 已提交
342
void rt_enter_critical(void)
343
{
344
    register rt_base_t level;
345

346 347
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
348

349 350 351 352 353
    /*
     * the maximal number of nest is RT_UINT16_MAX, which is big
     * enough and does not check here
     */
    rt_scheduler_lock_nest ++;
354

355 356
    /* enable interrupt */
    rt_hw_interrupt_enable(level);
357 358 359 360 361
}

/**
 * This function will unlock the thread scheduler.
 */
D
dzzxzz 已提交
362
void rt_exit_critical(void)
363
{
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
    register rt_base_t level;

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

    rt_scheduler_lock_nest --;

    if (rt_scheduler_lock_nest <= 0)
    {
        rt_scheduler_lock_nest = 0;
        /* enable interrupt */
        rt_hw_interrupt_enable(level);

        rt_schedule();
    }
    else
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
    }
384 385 386 387
}

/*@}*/