scheduler.c 11.4 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 15 16 17 18 19 20 21
 *
 * 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
 * 2006-05-27     Bernard      fix the scheduler algorthm for same priority thread
 *                             schedule
 * 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 23 24
 * 2010-04-11     yi.qiu       add module feature
 * 2010-07-13     Bernard      fix the maximal number of rt_scheduler_lock_nest 
 *                             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 35

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

rt_uint8_t rt_current_priority;

#if RT_THREAD_PRIORITY_MAX > 32
41
/* Maximum priority level, 256 */
42 43 44
rt_uint32_t rt_thread_ready_priority_group;
rt_uint8_t rt_thread_ready_table[32];
#else
45
/* Maximum priority level, 32 */
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
rt_uint32_t rt_thread_ready_priority_group;
#endif

rt_list_t rt_thread_defunct;

const rt_uint8_t rt_lowest_bitmap[] =
{
    /* 00 */ 0, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 10 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 20 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 30 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 40 */ 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 50 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 60 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 70 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 80 */ 7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 90 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* A0 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* B0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* C0 */ 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* D0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* E0 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* F0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0
};

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
72
static void (*rt_scheduler_hook)(struct rt_thread *from, struct rt_thread *to);
73 74 75 76

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

78 79 80 81 82 83 84 85
/*@{*/

/**
 * This function will set a hook function, which will be invoked when thread
 * switch happens.
 *
 * @param hook the hook function
 */
D
dzzxzz 已提交
86
void rt_scheduler_sethook(void (*hook)(struct rt_thread *from, struct rt_thread *to))
87
{
D
dzzxzz 已提交
88
	rt_scheduler_hook = hook;
89 90 91 92 93 94
}

/*@}*/
#endif

#ifdef RT_USING_OVERFLOW_CHECK
D
dzzxzz 已提交
95
static void _rt_scheduler_stack_check(struct rt_thread *thread)
96
{
D
dzzxzz 已提交
97
	RT_ASSERT(thread != RT_NULL);
98

D
dzzxzz 已提交
99 100 101 102 103
	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;
104

D
dzzxzz 已提交
105
		rt_kprintf("thread:%s stack overflow\n", thread->name);
106 107 108 109 110 111
		#ifdef RT_USING_FINSH
		{
			extern long list_thread(void);
			list_thread();
		}
		#endif
D
dzzxzz 已提交
112 113 114 115 116 117 118
		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);
	}
119 120 121 122 123
}
#endif

/**
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
124
 * This function will initialize the system scheduler
125 126 127
 */
void rt_system_scheduler_init(void)
{
D
dzzxzz 已提交
128
	register rt_base_t offset;
129

D
dzzxzz 已提交
130
	rt_scheduler_lock_nest = 0;
131

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

D
dzzxzz 已提交
135 136 137 138
	for (offset = 0; offset < RT_THREAD_PRIORITY_MAX; offset ++)
	{
		rt_list_init(&rt_thread_priority_table[offset]);
	}
139

D
dzzxzz 已提交
140 141
	rt_current_priority = RT_THREAD_PRIORITY_MAX - 1;
	rt_current_thread = RT_NULL;
142

143
	/* initialize ready priority group */
D
dzzxzz 已提交
144
	rt_thread_ready_priority_group = 0;
145 146

#if RT_THREAD_PRIORITY_MAX > 32
147
	/* initialize ready table */
D
dzzxzz 已提交
148
	rt_memset(rt_thread_ready_table, 0, sizeof(rt_thread_ready_table));
149 150
#endif

151
	/* initialize thread defunct */
D
dzzxzz 已提交
152
	rt_list_init(&rt_thread_defunct);
153 154 155
}

/**
156
 * @ingroup SystemInit
157 158 159
 * This function will startup scheduler. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
160
void rt_system_scheduler_start(void)
161
{
D
dzzxzz 已提交
162 163
	register struct rt_thread *to_thread;
	register rt_ubase_t highest_ready_priority;
164

165 166 167
#if RT_THREAD_PRIORITY_MAX == 8
	highest_ready_priority = rt_lowest_bitmap[rt_thread_ready_priority_group];
#else
D
dzzxzz 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
	register rt_ubase_t number;
	/* find out the highest priority task */
	if (rt_thread_ready_priority_group & 0xff)
	{
		number = rt_lowest_bitmap[rt_thread_ready_priority_group & 0xff];
	}
	else if (rt_thread_ready_priority_group & 0xff00)
	{
		number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 8) & 0xff] + 8;
	}
	else if (rt_thread_ready_priority_group & 0xff0000)
	{
		number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 16) & 0xff] + 16;
	}
	else
	{
		number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 24) & 0xff] + 24;
	}
186 187

#if RT_THREAD_PRIORITY_MAX > 32
D
dzzxzz 已提交
188
	highest_ready_priority = (number << 3) + rt_lowest_bitmap[rt_thread_ready_table[number]];
189
#else
D
dzzxzz 已提交
190
	highest_ready_priority = number;
191
#endif
192 193
#endif

D
dzzxzz 已提交
194 195 196
	/* get switch to thread */
	to_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
					struct rt_thread, tlist);
197

D
dzzxzz 已提交
198
	rt_current_thread = to_thread;
199

D
dzzxzz 已提交
200 201
	/* switch to new thread */
	rt_hw_context_switch_to((rt_uint32_t)&to_thread->sp);
202

D
dzzxzz 已提交
203
	/* never come back */
204 205 206 207 208
}

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

210 211 212 213 214 215
/*@{*/

/**
 * This function will perform one schedule. It will select one thread
 * with the highest priority level, then switch to it.
 */
D
dzzxzz 已提交
216
void rt_schedule(void)
217
{
D
dzzxzz 已提交
218 219 220
	rt_base_t level;
	struct rt_thread *to_thread;
	struct rt_thread *from_thread;
221

D
dzzxzz 已提交
222 223
	/* disable interrupt */
	level = rt_hw_interrupt_disable();
224

D
dzzxzz 已提交
225 226 227 228
	/* check the scheduler is enabled or not */
	if (rt_scheduler_lock_nest == 0)
	{
		register rt_ubase_t highest_ready_priority;
229 230 231 232

#if RT_THREAD_PRIORITY_MAX == 8
		highest_ready_priority = rt_lowest_bitmap[rt_thread_ready_priority_group];
#else
D
dzzxzz 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
		register rt_ubase_t number;
		/* find out the highest priority task */
		if (rt_thread_ready_priority_group & 0xff)
		{
			number = rt_lowest_bitmap[rt_thread_ready_priority_group & 0xff];
		}
		else if (rt_thread_ready_priority_group & 0xff00)
		{
			number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 8) & 0xff] + 8;
		}
		else if (rt_thread_ready_priority_group & 0xff0000)
		{
			number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 16) & 0xff] + 16;
		}
		else
		{
			number = rt_lowest_bitmap[(rt_thread_ready_priority_group >> 24) & 0xff] + 24;
		}
251 252

#if RT_THREAD_PRIORITY_MAX > 32
D
dzzxzz 已提交
253
		highest_ready_priority = (number << 3) + rt_lowest_bitmap[rt_thread_ready_table[number]];
254
#else
D
dzzxzz 已提交
255
		highest_ready_priority = number;
256
#endif
257
#endif
D
dzzxzz 已提交
258 259 260
		/* get switch to thread */
		to_thread = rt_list_entry(rt_thread_priority_table[highest_ready_priority].next,
						struct rt_thread, tlist);
261

D
dzzxzz 已提交
262 263 264 265 266 267
		/* if the destination thread is not the same as current thread */
		if (to_thread != rt_current_thread)
		{
			rt_current_priority = highest_ready_priority;
			from_thread = rt_current_thread;
			rt_current_thread = to_thread;
268

269
			RT_OBJECT_HOOK_CALL(rt_scheduler_hook, (from_thread, to_thread));
270

D
dzzxzz 已提交
271 272 273 274
			/* switch to new thread */
			RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
						("[%d]switch to priority#%d thread:%s\n", rt_interrupt_nest,
						highest_ready_priority, to_thread->name));
275

276
#ifdef RT_USING_OVERFLOW_CHECK
D
dzzxzz 已提交
277
			_rt_scheduler_stack_check(to_thread);
278 279
#endif

D
dzzxzz 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
			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);
295 296
}

B
bernard.xiong@gmail.com 已提交
297
/*
298 299 300 301 302 303
 * 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 已提交
304
void rt_schedule_insert_thread(struct rt_thread *thread)
305
{
D
dzzxzz 已提交
306
	register rt_base_t temp;
307

D
dzzxzz 已提交
308
	RT_ASSERT(thread != RT_NULL);
309

D
dzzxzz 已提交
310 311
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();
312

D
dzzxzz 已提交
313 314
	/* change stat */
	thread->stat = RT_THREAD_READY;
315

D
dzzxzz 已提交
316 317
	/* insert thread to ready list */
	rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]), &(thread->tlist));
318

D
dzzxzz 已提交
319
	/* set priority mask */
320
#if RT_THREAD_PRIORITY_MAX <= 32
D
dzzxzz 已提交
321
	RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%s], the priority: %d\n", 
322
		thread->name, thread->current_priority));
323
#else
D
dzzxzz 已提交
324
	RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%s], the priority: %d 0x%x %d\n", 
325
		thread->name, thread->number, thread->number_mask, thread->high_mask));
326 327 328
#endif

#if RT_THREAD_PRIORITY_MAX > 32
D
dzzxzz 已提交
329
	rt_thread_ready_table[thread->number] |= thread->high_mask;
330
#endif
D
dzzxzz 已提交
331
	rt_thread_ready_priority_group |= thread->number_mask;
332

D
dzzxzz 已提交
333 334
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);
335 336
}

B
bernard.xiong@gmail.com 已提交
337
/*
338 339 340 341 342 343
 * 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 已提交
344
void rt_schedule_remove_thread(struct rt_thread *thread)
345
{
D
dzzxzz 已提交
346
	register rt_base_t temp;
347

D
dzzxzz 已提交
348
	RT_ASSERT(thread != RT_NULL);
349

D
dzzxzz 已提交
350 351
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();
352

353
#if RT_THREAD_PRIORITY_MAX <= 32
D
dzzxzz 已提交
354
	RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%s], the priority: %d\n", 
355
		thread->name, thread->current_priority));
356
#else
D
dzzxzz 已提交
357
	RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%s], the priority: %d 0x%x %d\n", 
358
		thread->name, thread->number, thread->number_mask, thread->high_mask));
359 360
#endif

D
dzzxzz 已提交
361 362 363 364
	/* remove thread from ready list */
	rt_list_remove(&(thread->tlist));
	if (rt_list_isempty(&(rt_thread_priority_table[thread->current_priority])))
	{
365
#if RT_THREAD_PRIORITY_MAX > 32
D
dzzxzz 已提交
366 367 368 369 370
		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;
		}
371
#else
D
dzzxzz 已提交
372
		rt_thread_ready_priority_group &= ~thread->number_mask;
373
#endif
D
dzzxzz 已提交
374
	}
375

D
dzzxzz 已提交
376 377
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);
378 379 380 381 382
}

/**
 * This function will lock the thread scheduler.
 */
D
dzzxzz 已提交
383
void rt_enter_critical(void)
384
{
D
dzzxzz 已提交
385
	register rt_base_t level;
386

D
dzzxzz 已提交
387 388
	/* disable interrupt */
	level = rt_hw_interrupt_disable();
389

390 391
	/* the maximal number of nest is RT_UINT16_MAX, which is big 
	 * enough and does not check here */
D
dzzxzz 已提交
392
	rt_scheduler_lock_nest ++;
393

D
dzzxzz 已提交
394 395
	/* enable interrupt */
	rt_hw_interrupt_enable(level);
396 397 398 399 400
}

/**
 * This function will unlock the thread scheduler.
 */
D
dzzxzz 已提交
401
void rt_exit_critical(void)
402
{
D
dzzxzz 已提交
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
	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);
	}
423 424 425 426
}

/*@}*/