scheduler.c 28.8 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 9 10
 *
 * 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
11 12
 * 2006-05-27     Bernard      fix the scheduler algorthm for same priority
 *                             thread schedule
13 14 15 16 17
 * 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
18
 * 2010-04-11     yi.qiu       add module feature
19
 * 2010-07-13     Bernard      fix the maximal number of rt_scheduler_lock_nest
20
 *                             issue found by kuronca
21
 * 2010-12-13     Bernard      add defunct list initialization even if not use heap.
B
bernard.xiong@gmail.com 已提交
22
 * 2011-05-10     Bernard      clean scheduler debug log.
23
 * 2013-12-21     Grissiom     add rt_critical_level
S
shaojinchun 已提交
24 25 26 27 28 29 30
 * 2018-11-22     Jesven       remove the current task from ready queue
 *                             add per cpu ready queue
 *                             add _get_highest_priority_thread to find highest priority task
 *                             rt_schedule_insert_thread won't insert current task to ready queue
 *                             in smp version, rt_hw_context_switch_interrupt maybe switch to
 *                               new task directly
 *
31 32 33 34 35
 */

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

S
shaojinchun 已提交
36 37 38
#ifdef RT_USING_SMP
rt_hw_spinlock_t _rt_critical_lock;
#endif /*RT_USING_SMP*/
39 40

rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX];
S
shaojinchun 已提交
41
rt_uint32_t rt_thread_ready_priority_group;
42
#if RT_THREAD_PRIORITY_MAX > 32
43
/* Maximum priority level, 256 */
44 45 46
rt_uint8_t rt_thread_ready_table[32];
#endif

S
shaojinchun 已提交
47 48 49 50 51 52 53
#ifndef RT_USING_SMP
extern volatile rt_uint8_t rt_interrupt_nest;
static rt_int16_t rt_scheduler_lock_nest;
struct rt_thread *rt_current_thread;
rt_uint8_t rt_current_priority;
#endif /*RT_USING_SMP*/

54 55 56
rt_list_t rt_thread_defunct;

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
57
static void (*rt_scheduler_hook)(struct rt_thread *from, struct rt_thread *to);
58 59 60 61

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

D
dogandog 已提交
63
/**@{*/
64 65 66 67 68 69 70

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

D
dogandog 已提交
77
/**@}*/
78 79 80
#endif

#ifdef RT_USING_OVERFLOW_CHECK
D
dzzxzz 已提交
81
static void _rt_scheduler_stack_check(struct rt_thread *thread)
82
{
83 84
    RT_ASSERT(thread != RT_NULL);

Z
zhaohengbo 已提交
85
#if defined(ARCH_CPU_STACK_GROWS_UPWARD)
86
    if (*((rt_uint8_t *)((rt_ubase_t)thread->stack_addr + thread->stack_size - 1)) != '#' ||
Z
zhaohengbo 已提交
87
#else
A
Aubr.Cool 已提交
88
    if (*((rt_uint8_t *)thread->stack_addr) != '#' ||
Z
zhaohengbo 已提交
89
#endif
B
Bernard Xiong 已提交
90 91 92
        (rt_ubase_t)thread->sp <= (rt_ubase_t)thread->stack_addr ||
        (rt_ubase_t)thread->sp >
        (rt_ubase_t)thread->stack_addr + (rt_ubase_t)thread->stack_size)
93
    {
B
Bernard Xiong 已提交
94
        rt_ubase_t level;
95 96

        rt_kprintf("thread:%s stack overflow\n", thread->name);
97
#ifdef RT_USING_FINSH
98 99 100 101
        {
            extern long list_thread(void);
            list_thread();
        }
102
#endif
103 104 105
        level = rt_hw_interrupt_disable();
        while (level);
    }
106 107 108 109 110 111 112
#if defined(ARCH_CPU_STACK_GROWS_UPWARD)
    else if ((rt_ubase_t)thread->sp > ((rt_ubase_t)thread->stack_addr + thread->stack_size))
    {
        rt_kprintf("warning: %s stack is close to the top of stack address.\n",
                   thread->name);
    }
#else
S
shaojinchun 已提交
113
    else if ((rt_ubase_t)thread->sp <= ((rt_ubase_t)thread->stack_addr + 32))
114
    {
S
shaojinchun 已提交
115
        rt_kprintf("warning: %s stack is close to end of stack address.\n",
116 117
                   thread->name);
    }
118
#endif
S
shaojinchun 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
}
#endif

/*
 * get the highest priority thread in ready queue
 */
#ifdef RT_USING_SMP
static struct rt_thread* _get_highest_priority_thread(rt_ubase_t *highest_prio)
{
    register struct rt_thread *highest_priority_thread;
    register rt_ubase_t highest_ready_priority, local_highest_ready_priority;
    struct rt_cpu* pcpu = rt_cpu_self();
#if RT_THREAD_PRIORITY_MAX > 32
    register rt_ubase_t number;

    number = __rt_ffs(rt_thread_ready_priority_group) - 1;
    highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
    number = __rt_ffs(pcpu->priority_group) - 1;
    local_highest_ready_priority = (number << 3) + __rt_ffs(pcpu->ready_table[number]) - 1;
138
#else
S
shaojinchun 已提交
139 140 141 142 143 144
    highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
    local_highest_ready_priority = __rt_ffs(pcpu->priority_group) - 1;
#endif

    /* get highest ready priority thread */
    if (highest_ready_priority < local_highest_ready_priority)
145
    {
S
shaojinchun 已提交
146 147 148 149 150 151 152 153 154 155 156
        *highest_prio = highest_ready_priority;
        highest_priority_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
                                  struct rt_thread,
                                  tlist);
    }
    else
    {
        *highest_prio = local_highest_ready_priority;
        highest_priority_thread = rt_list_entry(pcpu->priority_table[local_highest_ready_priority].next,
                                  struct rt_thread,
                                  tlist);
157
    }
S
shaojinchun 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173

    return highest_priority_thread;
}
#else
static struct rt_thread* _get_highest_priority_thread(rt_ubase_t *highest_prio)
{
    register struct rt_thread *highest_priority_thread;
    register rt_ubase_t highest_ready_priority;

#if RT_THREAD_PRIORITY_MAX > 32
    register rt_ubase_t number;

    number = __rt_ffs(rt_thread_ready_priority_group) - 1;
    highest_ready_priority = (number << 3) + __rt_ffs(rt_thread_ready_table[number]) - 1;
#else
    highest_ready_priority = __rt_ffs(rt_thread_ready_priority_group) - 1;
174
#endif
S
shaojinchun 已提交
175 176 177 178 179 180 181 182 183

    /* get highest ready priority thread */
    highest_priority_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
                              struct rt_thread,
                              tlist);

    *highest_prio = highest_ready_priority;

    return highest_priority_thread;
184 185 186 187 188
}
#endif

/**
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
189
 * This function will initialize the system scheduler
190 191 192
 */
void rt_system_scheduler_init(void)
{
S
shaojinchun 已提交
193 194 195
#ifdef RT_USING_SMP
    int cpu;
#endif /*RT_USING_SMP*/
196
    register rt_base_t offset;
197

S
shaojinchun 已提交
198
#ifndef RT_USING_SMP
199
    rt_scheduler_lock_nest = 0;
S
shaojinchun 已提交
200
#endif /*RT_USING_SMP*/
201

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

205 206 207 208
    for (offset = 0; offset < RT_THREAD_PRIORITY_MAX; offset ++)
    {
        rt_list_init(&rt_thread_priority_table[offset]);
    }
S
shaojinchun 已提交
209 210 211 212 213 214 215 216
#ifdef RT_USING_SMP
    for (cpu = 0; cpu < RT_CPUS_NR; cpu++)
    {
        struct rt_cpu *pcpu =  rt_cpu_index(cpu);
        for (offset = 0; offset < RT_THREAD_PRIORITY_MAX; offset ++)
        {
            rt_list_init(&pcpu->priority_table[offset]);
        }
217

S
shaojinchun 已提交
218 219 220 221 222 223 224 225 226 227
        pcpu->irq_switch_flag = 0;
        pcpu->current_priority = RT_THREAD_PRIORITY_MAX - 1;
        pcpu->current_thread = RT_NULL;
        pcpu->priority_group = 0;

#if RT_THREAD_PRIORITY_MAX > 32
        rt_memset(pcpu->ready_table, 0, sizeof(pcpu->ready_table));
#endif
    }
#endif /*RT_USING_SMP*/
228

229 230
    /* initialize ready priority group */
    rt_thread_ready_priority_group = 0;
231 232

#if RT_THREAD_PRIORITY_MAX > 32
233 234
    /* initialize ready table */
    rt_memset(rt_thread_ready_table, 0, sizeof(rt_thread_ready_table));
235 236
#endif

237 238
    /* initialize thread defunct */
    rt_list_init(&rt_thread_defunct);
239 240 241
}

/**
242
 * @ingroup SystemInit
243 244 245
 * This function will startup scheduler. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
246
void rt_system_scheduler_start(void)
247
{
248
    register struct rt_thread *to_thread;
S
shaojinchun 已提交
249
    rt_ubase_t highest_ready_priority;
250

S
shaojinchun 已提交
251
    to_thread = _get_highest_priority_thread(&highest_ready_priority);
252

S
shaojinchun 已提交
253 254
#ifdef RT_USING_SMP
    to_thread->oncpu = rt_hw_cpu_id();
255
#else
256
    rt_current_thread = to_thread;
S
shaojinchun 已提交
257 258 259
#endif /*RT_USING_SMP*/

    rt_schedule_remove_thread(to_thread);
260
    to_thread->stat = RT_THREAD_RUNNING;
261

262
    /* switch to new thread */
S
shaojinchun 已提交
263
#ifdef RT_USING_SMP
264
    rt_hw_context_switch_to((rt_ubase_t)&to_thread->sp, to_thread);
S
shaojinchun 已提交
265
#else
266
    rt_hw_context_switch_to((rt_ubase_t)&to_thread->sp);
S
shaojinchun 已提交
267
#endif /*RT_USING_SMP*/
268

269
    /* never come back */
270 271 272 273 274
}

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

D
dogandog 已提交
276
/**@{*/
277

S
shaojinchun 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306

#ifdef RT_USING_SMP
/**
 * This function will handle IPI interrupt and do a scheduling in system;
 * 
 * @param vector, the number of IPI interrupt for system scheduling
 * @param param, use RT_NULL
 * 
 * NOTE: this function should be invoke or register as ISR in BSP.
 */
void rt_scheduler_ipi_handler(int vector, void *param)
{
    rt_schedule();
}

/**
 * This function will perform one scheduling. It will select one thread
 * with the highest priority level in global ready queue or local ready queue, 
 * then switch to it.
 */
void rt_schedule(void)
{
    rt_base_t level;
    struct rt_thread *to_thread;
    struct rt_thread *current_thread;
    struct rt_cpu    *pcpu;
    int cpu_id;

    /* disable interrupt */
307
    level  = rt_hw_interrupt_disable();
S
shaojinchun 已提交
308 309 310 311 312 313 314 315 316

    cpu_id = rt_hw_cpu_id();
    pcpu   = rt_cpu_index(cpu_id);
    current_thread = pcpu->current_thread;

    /* whether do switch in interrupt */
    if (pcpu->irq_nest)
    {
        pcpu->irq_switch_flag = 1;
S
shaojinchun 已提交
317 318 319 320 321 322 323 324 325 326 327 328 329
        rt_hw_interrupt_enable(level);
        goto __exit;
    }

#ifdef RT_USING_SIGNALS
    if ((current_thread->stat & RT_THREAD_STAT_MASK) == RT_THREAD_SUSPEND)
    {
        /* if current_thread signal is in pending */

        if ((current_thread->stat & RT_THREAD_STAT_SIGNAL_MASK) & RT_THREAD_STAT_SIGNAL_PENDING)
        {
            rt_thread_resume(current_thread);
        }
S
shaojinchun 已提交
330
    }
S
shaojinchun 已提交
331 332 333
#endif

    if (current_thread->scheduler_lock_nest == 1) /* whether lock scheduler */
S
shaojinchun 已提交
334 335 336 337 338 339 340
    {
        rt_ubase_t highest_ready_priority;

        if (rt_thread_ready_priority_group != 0 || pcpu->priority_group != 0)
        {
            to_thread = _get_highest_priority_thread(&highest_ready_priority);
            current_thread->oncpu = RT_CPU_DETACHED;
341
            if ((current_thread->stat & RT_THREAD_STAT_MASK) == RT_THREAD_RUNNING)
S
shaojinchun 已提交
342 343 344 345 346
            {
                if (current_thread->current_priority < highest_ready_priority)
                {
                    to_thread = current_thread;
                }
347
                else if (current_thread->current_priority == highest_ready_priority && (current_thread->stat & RT_THREAD_STAT_YIELD_MASK) == 0)
348 349 350
                {
                    to_thread = current_thread;
                }
S
shaojinchun 已提交
351 352
                else
                {
353
                    current_thread->stat &= ~RT_THREAD_STAT_YIELD_MASK;
S
shaojinchun 已提交
354 355 356 357 358 359 360 361 362 363 364 365
                    rt_schedule_insert_thread(current_thread);
                }
            }
            to_thread->oncpu = cpu_id;
            if (to_thread != current_thread)
            {
                /* if the destination thread is not the same as current thread */
                pcpu->current_priority = (rt_uint8_t)highest_ready_priority;

                RT_OBJECT_HOOK_CALL(rt_scheduler_hook, (current_thread, to_thread));

                rt_schedule_remove_thread(to_thread);
366
                to_thread->stat = RT_THREAD_RUNNING | (to_thread->stat & ~RT_THREAD_STAT_MASK);
S
shaojinchun 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379 380

                /* switch to new thread */
                RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
                        ("[%d]switch to priority#%d "
                         "thread:%.*s(sp:0x%08x), "
                         "from thread:%.*s(sp: 0x%08x)\n",
                         pcpu->irq_nest, highest_ready_priority,
                         RT_NAME_MAX, to_thread->name, to_thread->sp,
                         RT_NAME_MAX, current_thread->name, current_thread->sp));

#ifdef RT_USING_OVERFLOW_CHECK
                _rt_scheduler_stack_check(to_thread);
#endif

S
shaojinchun 已提交
381 382
                rt_hw_context_switch((rt_ubase_t)&current_thread->sp,
                        (rt_ubase_t)&to_thread->sp, to_thread);
S
shaojinchun 已提交
383 384 385 386
            }
        }
    }

387 388 389
    /* enable interrupt */
    rt_hw_interrupt_enable(level);

S
shaojinchun 已提交
390
#ifdef RT_USING_SIGNALS
391 392
    /* check stat of thread for signal */
    level = rt_hw_interrupt_disable();
S
shaojinchun 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
    if (current_thread->stat & RT_THREAD_STAT_SIGNAL_PENDING)
    {
        extern void rt_thread_handle_sig(rt_bool_t clean_state);

        current_thread->stat &= ~RT_THREAD_STAT_SIGNAL_PENDING;

        rt_hw_interrupt_enable(level);

        /* check signal status */
        rt_thread_handle_sig(RT_TRUE);
    }
    else
    {
        rt_hw_interrupt_enable(level);
    }
#endif
S
shaojinchun 已提交
409 410 411 412 413

__exit:
    return ;
}
#else
414 415 416 417
/**
 * This function will perform one schedule. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
418
void rt_schedule(void)
419
{
420 421 422
    rt_base_t level;
    struct rt_thread *to_thread;
    struct rt_thread *from_thread;
423

424 425
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
426

427 428 429
    /* check the scheduler is enabled or not */
    if (rt_scheduler_lock_nest == 0)
    {
S
shaojinchun 已提交
430
        rt_ubase_t highest_ready_priority;
431

S
shaojinchun 已提交
432 433
        if (rt_thread_ready_priority_group != 0)
        {
434
            /* need_insert_from_thread: need to insert from_thread to ready queue */
S
shaojinchun 已提交
435
            int need_insert_from_thread = 0;
436

S
shaojinchun 已提交
437
            to_thread = _get_highest_priority_thread(&highest_ready_priority);
438

439
            if ((rt_current_thread->stat & RT_THREAD_STAT_MASK) == RT_THREAD_RUNNING)
S
shaojinchun 已提交
440 441 442 443 444
            {
                if (rt_current_thread->current_priority < highest_ready_priority)
                {
                    to_thread = rt_current_thread;
                }
445
                else if (rt_current_thread->current_priority == highest_ready_priority && (rt_current_thread->stat & RT_THREAD_STAT_YIELD_MASK) == 0)
446
                {
447
                    to_thread = rt_current_thread;
448
                }
S
shaojinchun 已提交
449 450
                else
                {
451
                    rt_current_thread->stat &= ~RT_THREAD_STAT_YIELD_MASK;
S
shaojinchun 已提交
452 453 454
                    need_insert_from_thread = 1;
                }
            }
455

S
shaojinchun 已提交
456 457 458 459 460 461 462 463
            if (to_thread != rt_current_thread)
            {
                /* if the destination thread is not the same as current thread */
                rt_current_priority = (rt_uint8_t)highest_ready_priority;
                from_thread         = rt_current_thread;
                rt_current_thread   = to_thread;

                RT_OBJECT_HOOK_CALL(rt_scheduler_hook, (from_thread, to_thread));
464

S
shaojinchun 已提交
465 466 467 468
                if (need_insert_from_thread)
                {
                    rt_schedule_insert_thread(from_thread);
                }
469

S
shaojinchun 已提交
470
                rt_schedule_remove_thread(to_thread);
471
                to_thread->stat = RT_THREAD_RUNNING | (to_thread->stat & ~RT_THREAD_STAT_MASK);
S
shaojinchun 已提交
472 473 474 475

                /* switch to new thread */
                RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
                        ("[%d]switch to priority#%d "
B
Bernard Xiong 已提交
476 477
                         "thread:%.*s(sp:0x%08x), "
                         "from thread:%.*s(sp: 0x%08x)\n",
S
shaojinchun 已提交
478 479 480
                         rt_interrupt_nest, highest_ready_priority,
                         RT_NAME_MAX, to_thread->name, to_thread->sp,
                         RT_NAME_MAX, from_thread->name, from_thread->sp));
481

482
#ifdef RT_USING_OVERFLOW_CHECK
S
shaojinchun 已提交
483
                _rt_scheduler_stack_check(to_thread);
484 485
#endif

S
shaojinchun 已提交
486 487 488
                if (rt_interrupt_nest == 0)
                {
                    extern void rt_thread_handle_sig(rt_bool_t clean_state);
B
bernard 已提交
489

S
shaojinchun 已提交
490 491
                    rt_hw_context_switch((rt_ubase_t)&from_thread->sp,
                            (rt_ubase_t)&to_thread->sp);
492 493 494 495

                    /* enable interrupt */
                    rt_hw_interrupt_enable(level);

S
shaojinchun 已提交
496
#ifdef RT_USING_SIGNALS
497 498
                    /* check stat of thread for signal */
                    level = rt_hw_interrupt_disable();
S
shaojinchun 已提交
499 500 501 502 503
                    if (rt_current_thread->stat & RT_THREAD_STAT_SIGNAL_PENDING)
                    {
                        extern void rt_thread_handle_sig(rt_bool_t clean_state);

                        rt_current_thread->stat &= ~RT_THREAD_STAT_SIGNAL_PENDING;
B
bernard 已提交
504

S
shaojinchun 已提交
505 506 507 508 509 510 511 512 513
                        rt_hw_interrupt_enable(level);

                        /* check signal status */
                        rt_thread_handle_sig(RT_TRUE);
                    }
                    else
                    {
                        rt_hw_interrupt_enable(level);
                    }
B
bernard 已提交
514
#endif
S
shaojinchun 已提交
515 516 517 518 519 520 521 522 523
                    goto __exit;
                }
                else
                {
                    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("switch in interrupt\n"));

                    rt_hw_context_switch_interrupt((rt_ubase_t)&from_thread->sp,
                            (rt_ubase_t)&to_thread->sp);
                }
524 525 526
            }
            else
            {
S
shaojinchun 已提交
527
                rt_schedule_remove_thread(rt_current_thread);
528
                rt_current_thread->stat = RT_THREAD_RUNNING | (rt_current_thread->stat & ~RT_THREAD_STAT_MASK);
529 530 531
            }
        }
    }
S
shaojinchun 已提交
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560

    /* enable interrupt */
    rt_hw_interrupt_enable(level);

__exit:
    return;
}
#endif /*RT_USING_SMP*/

/**
 * This function checks if a scheduling is needed after IRQ context. If yes,
 * it will select one thread with the highest priority level, and then switch
 * to it.
 */
#ifdef RT_USING_SMP
void rt_scheduler_do_irq_switch(void *context)
{
    int cpu_id;
    rt_base_t level;
    struct rt_cpu* pcpu;
    struct rt_thread *to_thread;
    struct rt_thread *current_thread;

    level = rt_hw_interrupt_disable();

    cpu_id = rt_hw_cpu_id();
    pcpu   = rt_cpu_index(cpu_id);
    current_thread = pcpu->current_thread;

S
shaojinchun 已提交
561 562 563 564 565 566 567 568 569 570 571 572
#ifdef RT_USING_SIGNALS
    if ((current_thread->stat & RT_THREAD_STAT_MASK) == RT_THREAD_SUSPEND)
    {
        /* if current_thread signal is in pending */

        if ((current_thread->stat & RT_THREAD_STAT_SIGNAL_MASK) & RT_THREAD_STAT_SIGNAL_PENDING)
        {
            rt_thread_resume(current_thread);
        }
    }
#endif

S
shaojinchun 已提交
573
    if (pcpu->irq_switch_flag == 0)
armink_ztl's avatar
armink_ztl 已提交
574 575
    {
        rt_hw_interrupt_enable(level);
S
shaojinchun 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589
        return;
    }

    if (current_thread->scheduler_lock_nest == 1 && pcpu->irq_nest == 0)
    {
        rt_ubase_t highest_ready_priority;

        /* clear irq switch flag */
        pcpu->irq_switch_flag = 0;

        if (rt_thread_ready_priority_group != 0 || pcpu->priority_group != 0)
        {
            to_thread = _get_highest_priority_thread(&highest_ready_priority);
            current_thread->oncpu = RT_CPU_DETACHED;
590
            if ((current_thread->stat & RT_THREAD_STAT_MASK) == RT_THREAD_RUNNING)
S
shaojinchun 已提交
591 592 593 594 595
            {
                if (current_thread->current_priority < highest_ready_priority)
                {
                    to_thread = current_thread;
                }
596
                else if (current_thread->current_priority == highest_ready_priority && (current_thread->stat & RT_THREAD_STAT_YIELD_MASK) == 0)
597 598 599
                {
                    to_thread = current_thread;
                }
S
shaojinchun 已提交
600 601
                else
                {
602
                    current_thread->stat &= ~RT_THREAD_STAT_YIELD_MASK;
S
shaojinchun 已提交
603 604 605 606 607 608 609 610 611 612 613 614 615
                    rt_schedule_insert_thread(current_thread);
                }
            }
            to_thread->oncpu = cpu_id;
            if (to_thread != current_thread)
            {
                /* if the destination thread is not the same as current thread */

                pcpu->current_priority = (rt_uint8_t)highest_ready_priority;

                RT_OBJECT_HOOK_CALL(rt_scheduler_hook, (current_thread, to_thread));

                rt_schedule_remove_thread(to_thread);
616
                to_thread->stat = RT_THREAD_RUNNING | (to_thread->stat & ~RT_THREAD_STAT_MASK);
S
shaojinchun 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629

#ifdef RT_USING_OVERFLOW_CHECK
                _rt_scheduler_stack_check(to_thread);
#endif
                RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("switch in interrupt\n"));

                current_thread->cpus_lock_nest--;
                current_thread->scheduler_lock_nest--;

                rt_hw_context_switch_interrupt(context, (rt_ubase_t)&current_thread->sp,
                        (rt_ubase_t)&to_thread->sp, to_thread);
            }
        }
armink_ztl's avatar
armink_ztl 已提交
630
    }
S
shaojinchun 已提交
631
    rt_hw_interrupt_enable(level);
632
}
S
shaojinchun 已提交
633
#endif /*RT_USING_SMP*/
634

B
bernard.xiong@gmail.com 已提交
635
/*
636 637 638 639 640 641
 * 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.
 */
S
shaojinchun 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654
#ifdef RT_USING_SMP
void rt_schedule_insert_thread(struct rt_thread *thread)
{
    int cpu_id;
    int bind_cpu;
    rt_uint32_t cpu_mask;
    register rt_base_t level;

    RT_ASSERT(thread != RT_NULL);

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

655
    /* it should be RUNNING thread */
S
shaojinchun 已提交
656 657
    if (thread->oncpu != RT_CPU_DETACHED)
    {
658
        thread->stat = RT_THREAD_RUNNING | (thread->stat & ~RT_THREAD_STAT_MASK);
S
shaojinchun 已提交
659 660 661
        goto __exit;
    }

662 663 664
    /* READY thread, insert to ready queue */
    thread->stat = RT_THREAD_READY | (thread->stat & ~RT_THREAD_STAT_MASK);

S
shaojinchun 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678
    cpu_id   = rt_hw_cpu_id();
    bind_cpu = thread->bind_cpu ;

    /* insert thread to ready list */
    if (bind_cpu == RT_CPUS_NR)
    {
#if RT_THREAD_PRIORITY_MAX > 32
        rt_thread_ready_table[thread->number] |= thread->high_mask;
#endif
        rt_thread_ready_priority_group |= thread->number_mask;

        rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]),
                              &(thread->tlist));
        cpu_mask = RT_CPU_MASK ^ (1 << cpu_id);
S
shaojinchun 已提交
679
        rt_hw_ipi_send(RT_SCHEDULE_IPI, cpu_mask);
S
shaojinchun 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
    }
    else
    {
        struct rt_cpu *pcpu = rt_cpu_index(bind_cpu);

#if RT_THREAD_PRIORITY_MAX > 32
        pcpu->ready_table[thread->number] |= thread->high_mask;
#endif
        pcpu->priority_group |= thread->number_mask;

        rt_list_insert_before(&(rt_cpu_index(bind_cpu)->priority_table[thread->current_priority]),
                              &(thread->tlist));

        if (cpu_id != bind_cpu)
        {
            cpu_mask = 1 << bind_cpu;
S
shaojinchun 已提交
696
            rt_hw_ipi_send(RT_SCHEDULE_IPI, cpu_mask);
S
shaojinchun 已提交
697 698 699 700 701 702 703 704 705 706 707
        }
    }

    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name, thread->current_priority));

__exit:
    /* enable interrupt */
    rt_hw_interrupt_enable(level);
}
#else
D
dzzxzz 已提交
708
void rt_schedule_insert_thread(struct rt_thread *thread)
709
{
710
    register rt_base_t temp;
711

712
    RT_ASSERT(thread != RT_NULL);
713

714 715
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
716

717
    /* it's current thread, it should be RUNNING thread */
S
shaojinchun 已提交
718 719
    if (thread == rt_current_thread)
    {
720
        thread->stat = RT_THREAD_RUNNING | (thread->stat & ~RT_THREAD_STAT_MASK);
S
shaojinchun 已提交
721 722 723
        goto __exit;
    }

724 725
    /* READY thread, insert to ready queue */
    thread->stat = RT_THREAD_READY | (thread->stat & ~RT_THREAD_STAT_MASK);
726 727 728
    /* insert thread to ready list */
    rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]),
                          &(thread->tlist));
729

G
Grissiom 已提交
730 731
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name, thread->current_priority));
732

S
shaojinchun 已提交
733
    /* set priority mask */
734
#if RT_THREAD_PRIORITY_MAX > 32
735
    rt_thread_ready_table[thread->number] |= thread->high_mask;
736
#endif
737
    rt_thread_ready_priority_group |= thread->number_mask;
738

S
shaojinchun 已提交
739
__exit:
740 741
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
742
}
S
shaojinchun 已提交
743
#endif /*RT_USING_SMP*/
744

B
bernard.xiong@gmail.com 已提交
745
/*
746 747 748 749 750 751
 * 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.
 */
S
shaojinchun 已提交
752
#ifdef RT_USING_SMP
D
dzzxzz 已提交
753
void rt_schedule_remove_thread(struct rt_thread *thread)
754
{
S
shaojinchun 已提交
755
    register rt_base_t level;
756

757
    RT_ASSERT(thread != RT_NULL);
758

759
    /* disable interrupt */
S
shaojinchun 已提交
760
    level = rt_hw_interrupt_disable();
761

G
Grissiom 已提交
762 763 764
    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name,
                                      thread->current_priority));
S
shaojinchun 已提交
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794

    /* remove thread from ready list */
    rt_list_remove(&(thread->tlist));
    if (thread->bind_cpu == RT_CPUS_NR)
    {
        if (rt_list_isempty(&(rt_thread_priority_table[thread->current_priority])))
        {
#if RT_THREAD_PRIORITY_MAX > 32
            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;
            }
#else
            rt_thread_ready_priority_group &= ~thread->number_mask;
#endif
        }
    }
    else
    {
        struct rt_cpu *pcpu = rt_cpu_index(thread->bind_cpu);

        if (rt_list_isempty(&(pcpu->priority_table[thread->current_priority])))
        {
#if RT_THREAD_PRIORITY_MAX > 32
            pcpu->ready_table[thread->number] &= ~thread->high_mask;
            if (rt_thread_ready_table[thread->number] == 0)
            {
                pcpu->priority_group &= ~thread->number_mask;
            }
795
#else
S
shaojinchun 已提交
796
            pcpu->priority_group &= ~thread->number_mask;
797
#endif
S
shaojinchun 已提交
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
        }
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);
}
#else
void rt_schedule_remove_thread(struct rt_thread *thread)
{
    register rt_base_t level;

    RT_ASSERT(thread != RT_NULL);

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

    RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%.*s], the priority: %d\n",
                                      RT_NAME_MAX, thread->name,
                                      thread->current_priority));
817

818 819 820 821
    /* remove thread from ready list */
    rt_list_remove(&(thread->tlist));
    if (rt_list_isempty(&(rt_thread_priority_table[thread->current_priority])))
    {
822
#if RT_THREAD_PRIORITY_MAX > 32
823 824 825 826 827
        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;
        }
828
#else
829
        rt_thread_ready_priority_group &= ~thread->number_mask;
830
#endif
831
    }
832

833
    /* enable interrupt */
S
shaojinchun 已提交
834
    rt_hw_interrupt_enable(level);
835
}
S
shaojinchun 已提交
836
#endif /*RT_USING_SMP*/
837 838 839 840

/**
 * This function will lock the thread scheduler.
 */
S
shaojinchun 已提交
841 842 843 844 845 846 847 848 849 850
#ifdef RT_USING_SMP
void rt_enter_critical(void)
{
    register rt_base_t level;
    struct rt_thread *current_thread;

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

    current_thread = rt_cpu_self()->current_thread;
851 852 853 854 855 856
    if (!current_thread)
    {
        rt_hw_local_irq_enable(level);
        return ;
    }

S
shaojinchun 已提交
857 858 859 860 861 862
    /*
     * the maximal number of nest is RT_UINT16_MAX, which is big
     * enough and does not check here
     */

    /* lock scheduler for all cpus */
S
shaojinchun 已提交
863
    if (current_thread->critical_lock_nest == 0)
S
shaojinchun 已提交
864 865 866 867
    {
        rt_hw_spin_lock(&_rt_critical_lock);
    }

S
shaojinchun 已提交
868 869 870
    /* critical for local cpu */
    current_thread->critical_lock_nest ++;

S
shaojinchun 已提交
871 872 873 874 875 876 877
    /* lock scheduler for local cpu */
    current_thread->scheduler_lock_nest ++;

    /* enable interrupt */
    rt_hw_local_irq_enable(level);
}
#else
D
dzzxzz 已提交
878
void rt_enter_critical(void)
879
{
880
    register rt_base_t level;
881

882 883
    /* disable interrupt */
    level = rt_hw_interrupt_disable();
884

885 886 887 888 889
    /*
     * the maximal number of nest is RT_UINT16_MAX, which is big
     * enough and does not check here
     */
    rt_scheduler_lock_nest ++;
890

891 892
    /* enable interrupt */
    rt_hw_interrupt_enable(level);
893
}
S
shaojinchun 已提交
894
#endif /*RT_USING_SMP*/
B
Bernard Xiong 已提交
895
RTM_EXPORT(rt_enter_critical);
896 897 898 899

/**
 * This function will unlock the thread scheduler.
 */
S
shaojinchun 已提交
900 901 902 903 904 905 906 907 908 909
#ifdef RT_USING_SMP
void rt_exit_critical(void)
{
    register rt_base_t level;
    struct rt_thread *current_thread;

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

    current_thread = rt_cpu_self()->current_thread;
910 911 912 913 914
    if (!current_thread)
    {
        rt_hw_local_irq_enable(level);
        return ;
    }
S
shaojinchun 已提交
915 916 917

    current_thread->scheduler_lock_nest --;

S
shaojinchun 已提交
918 919 920
    current_thread->critical_lock_nest --;

    if (current_thread->critical_lock_nest == 0)
S
shaojinchun 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
    {
        rt_hw_spin_unlock(&_rt_critical_lock);
    }

    if (current_thread->scheduler_lock_nest <= 0)
    {
        current_thread->scheduler_lock_nest = 0;
        /* enable interrupt */
        rt_hw_local_irq_enable(level);

        rt_schedule();
    }
    else
    {
        /* enable interrupt */
        rt_hw_local_irq_enable(level);
    }
}
#else
D
dzzxzz 已提交
940
void rt_exit_critical(void)
941
{
942 943 944 945 946 947 948 949 950 951 952 953
    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);

954 955 956 957 958
        if (rt_current_thread)
        {
            /* if scheduler is started, do a schedule */
            rt_schedule();
        }
959 960 961 962 963 964
    }
    else
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
    }
965
}
S
shaojinchun 已提交
966
#endif /*RT_USING_SMP*/
B
Bernard Xiong 已提交
967
RTM_EXPORT(rt_exit_critical);
968

969 970 971 972 973 974 975
/**
 * Get the scheduler lock level
 *
 * @return the level of the scheduler lock. 0 means unlocked.
 */
rt_uint16_t rt_critical_level(void)
{
S
shaojinchun 已提交
976 977 978
#ifdef RT_USING_SMP
    struct rt_thread *current_thread = rt_cpu_self()->current_thread;

S
shaojinchun 已提交
979
    return current_thread->critical_lock_nest;
S
shaojinchun 已提交
980
#else
981
    return rt_scheduler_lock_nest;
S
shaojinchun 已提交
982
#endif /*RT_USING_SMP*/
983
}
B
Bernard Xiong 已提交
984
RTM_EXPORT(rt_critical_level);
985

S
shaojinchun 已提交
986
/**@}*/