2002-08-04 03:39:50 +04:00
|
|
|
/* scheduler.c
|
|
|
|
*
|
|
|
|
* The scheduler code
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
#include <kernel.h>
|
|
|
|
#include <thread.h>
|
|
|
|
#include <thread_types.h>
|
|
|
|
#include <timer.h>
|
|
|
|
#include <int.h>
|
|
|
|
#include <smp.h>
|
|
|
|
#include <cpu.h>
|
|
|
|
#include <khash.h>
|
2002-08-16 17:14:29 +04:00
|
|
|
#include <Errors.h>
|
|
|
|
#include <kerrors.h>
|
2002-08-04 03:39:50 +04:00
|
|
|
|
|
|
|
static int _rand(void);
|
|
|
|
|
2002-08-16 17:14:29 +04:00
|
|
|
// The run queue. Holds the threads ready to run ordered by priority.
|
|
|
|
static struct thread_queue run_q = { NULL, NULL };
|
2002-10-31 16:20:00 +03:00
|
|
|
static int dump_run_q(int argc, char **argv);
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
dump_run_q(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct thread *t;
|
|
|
|
|
|
|
|
t = run_q.head;
|
|
|
|
if (!t)
|
|
|
|
dprintf("Run queue is empty!\n");
|
|
|
|
else {
|
|
|
|
while (t) {
|
|
|
|
dprintf("Thread id: %ld - priority: %d\n", t->id, t->priority);
|
|
|
|
t = t->q_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-08-16 17:14:29 +04:00
|
|
|
|
|
|
|
|
2003-01-06 11:08:13 +03:00
|
|
|
/** Enqueues the thread to the run queue.
|
|
|
|
* Note: THREAD_LOCK must be held when entering this function
|
|
|
|
*/
|
|
|
|
|
2002-08-16 17:14:29 +04:00
|
|
|
void
|
2003-01-06 11:08:13 +03:00
|
|
|
thread_enqueue_run_q(struct thread *t)
|
2002-08-16 17:14:29 +04:00
|
|
|
{
|
|
|
|
struct thread *curr, *prev;
|
|
|
|
|
|
|
|
// these shouldn't exist
|
|
|
|
if(t->priority > B_MAX_PRIORITY)
|
|
|
|
t->priority = B_MAX_PRIORITY;
|
|
|
|
if(t->priority < B_MIN_PRIORITY)
|
|
|
|
t->priority = B_MIN_PRIORITY;
|
|
|
|
|
|
|
|
if (run_q.head == NULL) {
|
|
|
|
t->q_next = NULL;
|
|
|
|
run_q.head = t;
|
|
|
|
} else {
|
|
|
|
for (curr = run_q.head, prev = NULL; curr && (curr->priority >= t->priority); curr = curr->q_next) {
|
|
|
|
if (prev)
|
|
|
|
prev = prev->q_next;
|
|
|
|
else
|
|
|
|
prev = run_q.head;
|
|
|
|
}
|
|
|
|
t->q_next = curr;
|
|
|
|
if (prev)
|
|
|
|
prev->q_next = t;
|
|
|
|
else
|
|
|
|
run_q.head = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
thread_set_priority(thread_id id, int32 priority)
|
|
|
|
{
|
|
|
|
struct thread *t, *curr, *prev;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
// make sure the passed in priority is within bounds
|
|
|
|
if (priority > B_MAX_PRIORITY)
|
|
|
|
priority = B_MAX_PRIORITY;
|
|
|
|
if (priority < B_MIN_PRIORITY)
|
|
|
|
priority = B_MIN_PRIORITY;
|
|
|
|
|
|
|
|
t = thread_get_current_thread();
|
|
|
|
if (t->id == id) {
|
|
|
|
// it's ourself, so we know we aren't in the run queue, and we can manipulate
|
|
|
|
// our structure directly
|
2003-01-06 11:08:13 +03:00
|
|
|
retval = t->priority;
|
|
|
|
// note that this might not return the correct value if we are preempted
|
|
|
|
// here, and another thread changes our priority before the next line is
|
|
|
|
// executed
|
2002-08-16 17:14:29 +04:00
|
|
|
t->priority = priority;
|
|
|
|
} else {
|
|
|
|
int state = disable_interrupts();
|
|
|
|
GRAB_THREAD_LOCK();
|
|
|
|
|
|
|
|
t = thread_get_thread_struct_locked(id);
|
|
|
|
if (t) {
|
|
|
|
retval = t->priority;
|
|
|
|
if ((t->state == B_THREAD_READY) && (t->priority != priority)) {
|
|
|
|
// this thread is in the ready queue right now, so it needs to be reinserted
|
|
|
|
for (curr = run_q.head, prev = NULL; curr && (curr->id != t->id); curr = curr->q_next) {
|
|
|
|
if (prev)
|
|
|
|
prev = prev->q_next;
|
|
|
|
else
|
|
|
|
prev = run_q.head;
|
|
|
|
}
|
|
|
|
if (prev)
|
|
|
|
prev->q_next = curr->q_next;
|
|
|
|
else
|
|
|
|
run_q.head = curr->q_next;
|
|
|
|
t->priority = priority;
|
|
|
|
thread_enqueue_run_q(t);
|
|
|
|
} else
|
|
|
|
t->priority = priority;
|
|
|
|
} else
|
|
|
|
retval = B_BAD_THREAD_ID;
|
|
|
|
|
|
|
|
RELEASE_THREAD_LOCK();
|
|
|
|
restore_interrupts(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-04 03:39:50 +04:00
|
|
|
static int
|
|
|
|
_rand(void)
|
|
|
|
{
|
|
|
|
static int next = 0;
|
|
|
|
|
|
|
|
if (next == 0)
|
|
|
|
next = system_time();
|
|
|
|
|
|
|
|
next = next * 1103515245 + 12345;
|
|
|
|
return((next >> 16) & 0x7FFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// this starts the scheduler. Must be run under the context of
|
|
|
|
// the initial idle thread.
|
|
|
|
void
|
|
|
|
start_scheduler(void)
|
|
|
|
{
|
|
|
|
int state;
|
|
|
|
|
|
|
|
// XXX may not be the best place for this
|
|
|
|
// invalidate all of the other processors' TLB caches
|
|
|
|
state = disable_interrupts();
|
|
|
|
arch_cpu_global_TLB_invalidate();
|
|
|
|
smp_send_broadcast_ici(SMP_MSG_GLOBAL_INVL_PAGE, 0, 0, 0, NULL, SMP_MSG_FLAG_SYNC);
|
|
|
|
restore_interrupts(state);
|
|
|
|
|
|
|
|
// start the other processors
|
|
|
|
smp_send_broadcast_ici(SMP_MSG_RESCHEDULE, 0, 0, 0, NULL, SMP_MSG_FLAG_ASYNC);
|
|
|
|
|
|
|
|
state = disable_interrupts();
|
|
|
|
GRAB_THREAD_LOCK();
|
|
|
|
|
|
|
|
resched();
|
|
|
|
|
|
|
|
RELEASE_THREAD_LOCK();
|
|
|
|
restore_interrupts(state);
|
2002-10-31 16:20:00 +03:00
|
|
|
|
|
|
|
add_debugger_command("run_q", &dump_run_q, "list threads in run queue");
|
2002-08-04 03:39:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
context_switch(struct thread *t_from, struct thread *t_to)
|
|
|
|
{
|
|
|
|
bigtime_t now;
|
|
|
|
|
|
|
|
// track kernel time
|
|
|
|
now = system_time();
|
|
|
|
t_from->kernel_time += now - t_from->last_time;
|
|
|
|
t_to->last_time = now;
|
|
|
|
|
|
|
|
t_to->cpu = t_from->cpu;
|
|
|
|
arch_thread_set_current_thread(t_to);
|
|
|
|
t_from->cpu = NULL;
|
|
|
|
arch_thread_context_switch(t_from, t_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-23 06:41:52 +04:00
|
|
|
static int32
|
2002-08-04 03:39:50 +04:00
|
|
|
reschedule_event(timer *unused)
|
|
|
|
{
|
|
|
|
// this function is called as a result of the timer event set by the scheduler
|
|
|
|
// returning this causes a reschedule on the timer event
|
|
|
|
thread_get_current_thread()->cpu->info.preempted= 1;
|
|
|
|
return B_INVOKE_SCHEDULER;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// runs the scheduler.
|
|
|
|
// NOTE: expects thread_spinlock to be held
|
|
|
|
void
|
|
|
|
resched(void)
|
|
|
|
{
|
2002-10-31 16:20:00 +03:00
|
|
|
struct thread *next_thread, *prev_thread;
|
2002-08-04 03:39:50 +04:00
|
|
|
struct thread *old_thread = thread_get_current_thread();
|
|
|
|
bigtime_t quantum;
|
|
|
|
timer *quantum_timer;
|
|
|
|
|
2002-08-16 17:14:29 +04:00
|
|
|
// dprintf("resched(): cpu %d, cur_thread = 0x%x\n", smp_get_current_cpu(), thread_get_current_thread());
|
2002-08-04 03:39:50 +04:00
|
|
|
|
|
|
|
switch(old_thread->next_state) {
|
2002-08-05 00:10:06 +04:00
|
|
|
case B_THREAD_RUNNING:
|
|
|
|
case B_THREAD_READY:
|
2002-08-04 03:39:50 +04:00
|
|
|
// dprintf("enqueueing thread 0x%x into run q. pri = %d\n", old_thread, old_thread->priority);
|
|
|
|
thread_enqueue_run_q(old_thread);
|
|
|
|
break;
|
2002-08-05 00:10:06 +04:00
|
|
|
case B_THREAD_SUSPENDED:
|
2002-10-31 16:20:00 +03:00
|
|
|
dprintf("resched(): suspending thread 0x%lx\n", old_thread->id);
|
2002-08-04 03:39:50 +04:00
|
|
|
break;
|
|
|
|
case THREAD_STATE_FREE_ON_RESCHED:
|
|
|
|
// This will hopefully be eliminated once the slab
|
|
|
|
// allocator is done
|
|
|
|
thread_enqueue(old_thread, &dead_q);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// dprintf("not enqueueing thread 0x%x into run q. next_state = %d\n", old_thread, old_thread->next_state);
|
|
|
|
;
|
|
|
|
}
|
|
|
|
old_thread->state = old_thread->next_state;
|
|
|
|
|
2002-08-16 17:14:29 +04:00
|
|
|
// select next thread from the run queue
|
|
|
|
next_thread = run_q.head;
|
2002-10-31 16:20:00 +03:00
|
|
|
prev_thread = NULL;
|
2002-08-16 17:14:29 +04:00
|
|
|
while ((next_thread) && (next_thread->priority > B_IDLE_PRIORITY)) {
|
|
|
|
// always extract real time threads
|
|
|
|
if (next_thread->priority >= B_FIRST_REAL_TIME_PRIORITY)
|
|
|
|
break;
|
|
|
|
// never skip last non-idle normal thread
|
|
|
|
if (next_thread->q_next && (next_thread->q_next->priority == B_IDLE_PRIORITY))
|
|
|
|
break;
|
|
|
|
// skip normal threads sometimes
|
|
|
|
if (_rand() > 0x3000)
|
|
|
|
break;
|
|
|
|
prev_thread = next_thread;
|
|
|
|
next_thread = next_thread->q_next;
|
2002-08-04 03:39:50 +04:00
|
|
|
}
|
2002-10-31 16:20:00 +03:00
|
|
|
|
2002-08-16 17:14:29 +04:00
|
|
|
if (!next_thread)
|
|
|
|
panic("resched(): run queue is empty!\n");
|
|
|
|
|
|
|
|
// extract selected thread from the run queue
|
|
|
|
if (prev_thread)
|
|
|
|
prev_thread->q_next = next_thread->q_next;
|
|
|
|
else
|
|
|
|
run_q.head = next_thread->q_next;
|
|
|
|
|
2002-08-05 00:10:06 +04:00
|
|
|
next_thread->state = B_THREAD_RUNNING;
|
|
|
|
next_thread->next_state = B_THREAD_READY;
|
2002-08-04 03:39:50 +04:00
|
|
|
|
|
|
|
if ((next_thread != old_thread) || (old_thread->cpu->info.preempted)) {
|
|
|
|
// XXX calculate quantum
|
|
|
|
quantum = 3000;
|
|
|
|
quantum_timer = &old_thread->cpu->info.quantum_timer;
|
|
|
|
if (!old_thread->cpu->info.preempted)
|
|
|
|
_local_timer_cancel_event(old_thread->cpu->info.cpu_num, quantum_timer);
|
|
|
|
old_thread->cpu->info.preempted = 0;
|
|
|
|
add_timer(quantum_timer, &reschedule_event, quantum, B_ONE_SHOT_RELATIVE_TIMER);
|
|
|
|
if (next_thread != old_thread)
|
|
|
|
context_switch(old_thread, next_thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|