scheduler.c 12.2 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
 *
B
Bernard Xiong 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 20 21 22 23 24
 *
 * 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
25 26
 * 2006-05-27     Bernard      fix the scheduler algorthm for same priority
 *                             thread schedule
27 28 29 30 31
 * 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
32
 * 2010-04-11     yi.qiu       add module feature
33
 * 2010-07-13     Bernard      fix the maximal number of rt_scheduler_lock_nest
34
 *                             issue found by kuronca
35
 * 2010-12-13     Bernard      add defunct list initialization even if not use heap.
B
bernard.xiong@gmail.com 已提交
36
 * 2011-05-10     Bernard      clean scheduler debug log.
37
 * 2013-12-21     Grissiom     add rt_critical_level
38 39 40 41 42 43
 */

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

static rt_int16_t rt_scheduler_lock_nest;
44
extern volatile rt_uint8_t rt_interrupt_nest;
45 46

rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX];
D
dzzxzz 已提交
47
struct rt_thread *rt_current_thread;
48 49 50 51

rt_uint8_t rt_current_priority;

#if RT_THREAD_PRIORITY_MAX > 32
52
/* Maximum priority level, 256 */
53 54 55
rt_uint32_t rt_thread_ready_priority_group;
rt_uint8_t rt_thread_ready_table[32];
#else
56
/* Maximum priority level, 32 */
57 58 59 60 61 62
rt_uint32_t rt_thread_ready_priority_group;
#endif

rt_list_t rt_thread_defunct;

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
63
static void (*rt_scheduler_hook)(struct rt_thread *from, struct rt_thread *to);
64 65 66 67

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

D
dogandog 已提交
69
/**@{*/
70 71 72 73 74 75 76

/**
 * This function will set a hook function, which will be invoked when thread
 * switch happens.
 *
 * @param hook the hook function
 */
77 78
void
rt_scheduler_sethook(void (*hook)(struct rt_thread *from, struct rt_thread *to))
79
{
80
    rt_scheduler_hook = hook;
81 82
}

D
dogandog 已提交
83
/**@}*/
84 85 86
#endif

#ifdef RT_USING_OVERFLOW_CHECK
D
dzzxzz 已提交
87
static void _rt_scheduler_stack_check(struct rt_thread *thread)
88
{
89 90
    RT_ASSERT(thread != RT_NULL);

A
Aubr.Cool 已提交
91
    if (*((rt_uint8_t *)thread->stack_addr) != '#' ||
92
        (rt_uint32_t)thread->sp <= (rt_uint32_t)thread->stack_addr ||
93 94 95 96 97 98
        (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);
99
#ifdef RT_USING_FINSH
100 101 102 103
        {
            extern long list_thread(void);
            list_thread();
        }
104
#endif
105 106 107 108 109 110 111 112
        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);
    }
113 114 115 116 117
}
#endif

/**
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
118
 * This function will initialize the system scheduler
119 120 121
 */
void rt_system_scheduler_init(void)
{
122
    register rt_base_t offset;
123

124
    rt_scheduler_lock_nest = 0;
125

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

129 130 131 132
    for (offset = 0; offset < RT_THREAD_PRIORITY_MAX; offset ++)
    {
        rt_list_init(&rt_thread_priority_table[offset]);
    }
133

134 135
    rt_current_priority = RT_THREAD_PRIORITY_MAX - 1;
    rt_current_thread = RT_NULL;
136

137 138
    /* initialize ready priority group */
    rt_thread_ready_priority_group = 0;
139 140

#if RT_THREAD_PRIORITY_MAX > 32
141 142
    /* initialize ready table */
    rt_memset(rt_thread_ready_table, 0, sizeof(rt_thread_ready_table));
143 144
#endif

145 146
    /* initialize thread defunct */
    rt_list_init(&rt_thread_defunct);
147 148 149
}

/**
150
 * @ingroup SystemInit
151 152 153
 * This function will startup scheduler. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
154
void rt_system_scheduler_start(void)
155
{
156 157
    register struct rt_thread *to_thread;
    register rt_ubase_t highest_ready_priority;
158

159
#if RT_THREAD_PRIORITY_MAX > 32
160
    register rt_ubase_t number;
161

162 163
    number = __rt_ffs(rt_thread_ready_priority_group) - 1;
    highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
164
#else
165
    highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
166 167
#endif

168 169 170 171
    /* get switch to thread */
    to_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
                              struct rt_thread,
                              tlist);
172

173
    rt_current_thread = to_thread;
174

175 176
    /* switch to new thread */
    rt_hw_context_switch_to((rt_uint32_t)&to_thread->sp);
177

178
    /* never come back */
179 180 181 182 183
}

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

D
dogandog 已提交
185
/**@{*/
186 187 188 189 190

/**
 * This function will perform one schedule. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
191
void rt_schedule(void)
192
{
193 194 195
    rt_base_t level;
    struct rt_thread *to_thread;
    struct rt_thread *from_thread;
196

197 198
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
199

200 201 202 203
    /* check the scheduler is enabled or not */
    if (rt_scheduler_lock_nest == 0)
    {
        register rt_ubase_t highest_ready_priority;
204

205 206
#if RT_THREAD_PRIORITY_MAX <= 32
        highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
207
#else
208
        register rt_ubase_t number;
209

210 211
        number = __rt_ffs(rt_thread_ready_priority_group) - 1;
        highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
212
#endif
213

214 215 216 217 218 219 220 221
        /* 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)
        {
222
            rt_current_priority = (rt_uint8_t)highest_ready_priority;
223 224 225 226 227 228 229
            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,
G
Grissiom 已提交
230 231 232 233 234 235
                         ("[%d]switch to priority#%d "
                          "thread:%.*s(sp:0x%p), "
                          "from thread:%.*s(sp: 0x%p)\n",
                          rt_interrupt_nest, highest_ready_priority,
                          RT_NAME_MAX, to_thread->name, to_thread->sp,
                          RT_NAME_MAX, from_thread->name, from_thread->sp));
236

237
#ifdef RT_USING_OVERFLOW_CHECK
238
            _rt_scheduler_stack_check(to_thread);
239 240
#endif

241 242
            if (rt_interrupt_nest == 0)
            {
B
bernard 已提交
243 244
                extern void rt_thread_handle_sig(rt_bool_t clean_state);

245 246
                rt_hw_context_switch((rt_uint32_t)&from_thread->sp,
                                     (rt_uint32_t)&to_thread->sp);
B
bernard 已提交
247 248 249 250 251 252 253 254

                /* enable interrupt */
                rt_hw_interrupt_enable(level);

#ifdef RT_USING_SIGNALS
                /* check signal status */
                rt_thread_handle_sig(RT_TRUE);
#endif
255 256 257 258 259 260 261
            }
            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);
B
bernard 已提交
262 263
                /* enable interrupt */
                rt_hw_interrupt_enable(level);
264 265
            }
        }
B
bernard 已提交
266 267 268 269 270
        else 
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(level);
        }
271
    }
272 273
}

B
bernard.xiong@gmail.com 已提交
274
/*
275 276 277 278 279 280
 * 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 已提交
281
void rt_schedule_insert_thread(struct rt_thread *thread)
282
{
283
    register rt_base_t temp;
284

285
    RT_ASSERT(thread != RT_NULL);
286

287 288
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
289

290 291
    /* change stat */
    thread->stat = RT_THREAD_READY;
292

293 294 295
    /* insert thread to ready list */
    rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]),
                          &(thread->tlist));
296

297
    /* set priority mask */
298
#if RT_THREAD_PRIORITY_MAX <= 32
G
Grissiom 已提交
299 300
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name, thread->current_priority));
301
#else
302
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
G
Grissiom 已提交
303 304
                 ("insert thread[%.*s], the priority: %d 0x%x %d\n",
                  RT_NAME_MAX,
305 306 307 308
                  thread->name,
                  thread->number,
                  thread->number_mask,
                  thread->high_mask));
309 310 311
#endif

#if RT_THREAD_PRIORITY_MAX > 32
312
    rt_thread_ready_table[thread->number] |= thread->high_mask;
313
#endif
314
    rt_thread_ready_priority_group |= thread->number_mask;
315

316 317
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
318 319
}

B
bernard.xiong@gmail.com 已提交
320
/*
321 322 323 324 325 326
 * 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 已提交
327
void rt_schedule_remove_thread(struct rt_thread *thread)
328
{
329
    register rt_base_t temp;
330

331
    RT_ASSERT(thread != RT_NULL);
332

333 334
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
335

336
#if RT_THREAD_PRIORITY_MAX <= 32
G
Grissiom 已提交
337 338 339
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name,
                                      thread->current_priority));
340
#else
341
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
G
Grissiom 已提交
342 343
                 ("remove thread[%.*s], the priority: %d 0x%x %d\n",
                  RT_NAME_MAX,
344 345 346 347
                  thread->name,
                  thread->number,
                  thread->number_mask,
                  thread->high_mask));
348 349
#endif

350 351 352 353
    /* remove thread from ready list */
    rt_list_remove(&(thread->tlist));
    if (rt_list_isempty(&(rt_thread_priority_table[thread->current_priority])))
    {
354
#if RT_THREAD_PRIORITY_MAX > 32
355 356 357 358 359
        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;
        }
360
#else
361
        rt_thread_ready_priority_group &= ~thread->number_mask;
362
#endif
363
    }
364

365 366
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
367 368 369 370 371
}

/**
 * This function will lock the thread scheduler.
 */
D
dzzxzz 已提交
372
void rt_enter_critical(void)
373
{
374
    register rt_base_t level;
375

376 377
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
378

379 380 381 382 383
    /*
     * the maximal number of nest is RT_UINT16_MAX, which is big
     * enough and does not check here
     */
    rt_scheduler_lock_nest ++;
384

385 386
    /* enable interrupt */
    rt_hw_interrupt_enable(level);
387
}
B
Bernard Xiong 已提交
388
RTM_EXPORT(rt_enter_critical);
389 390 391 392

/**
 * This function will unlock the thread scheduler.
 */
D
dzzxzz 已提交
393
void rt_exit_critical(void)
394
{
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
    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);
    }
415
}
B
Bernard Xiong 已提交
416
RTM_EXPORT(rt_exit_critical);
417

418 419 420 421 422 423 424 425 426
/**
 * Get the scheduler lock level
 *
 * @return the level of the scheduler lock. 0 means unlocked.
 */
rt_uint16_t rt_critical_level(void)
{
    return rt_scheduler_lock_nest;
}
B
Bernard Xiong 已提交
427
RTM_EXPORT(rt_critical_level);
D
dogandog 已提交
428
/**@}*/
429