source: trunk/kernel/kern/scheduler.c @ 416

Last change on this file since 416 was 416, checked in by alain, 6 years ago

Improve sys_exec.

File size: 12.7 KB
RevLine 
[1]1/*
2 * scheduler.c - Core scheduler implementation.
3 *
4 * Author    Alain Greiner (2016)
5 *
6 * Copyright (c)  UPMC Sorbonne Universites
7 *
8 * This file is part of ALMOS-MKH.
9 *
10 * ALMOS-MKH. is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2.0 of the License.
13 *
14 * ALMOS-MKH. is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
[14]24#include <kernel_config.h>
[1]25#include <hal_types.h>
[407]26#include <hal_switch.h>
[1]27#include <hal_irqmask.h>
28#include <hal_context.h>
29#include <printk.h>
30#include <list.h>
31#include <core.h>
32#include <thread.h>
[296]33#include <chdev.h>
[1]34#include <scheduler.h>
35
[296]36///////////////////////////////////////////////////////////////////////////////////////////
37// Extern global variables
38///////////////////////////////////////////////////////////////////////////////////////////
[1]39
[296]40extern chdev_directory_t    chdev_dir;            // allocated in kernel_init.c file
[407]41extern uint32_t             switch_save_sr[];     // allocated in kernel_init.c file
[296]42
[1]43////////////////////////////////
44void sched_init( core_t * core )
45{
46    scheduler_t * sched = &core->scheduler;
47
48    sched->u_threads_nr   = 0;
49    sched->k_threads_nr   = 0;
50
[279]51    sched->current        = CURRENT_THREAD;
52    sched->idle           = NULL;             // initialized in kernel_init()
53    sched->u_last         = NULL;             // initialized in sched_register_thread()
54    sched->k_last         = NULL;             // initialized in sched_register_thread()
[1]55
56    // initialise threads lists
57    list_root_init( &sched->u_root );
58    list_root_init( &sched->k_root );
59
[416]60    sched->req_ack_pending = false;           // no pending request
[409]61
[1]62}  // end sched_init()
63
64////////////////////////////////////////////
65void sched_register_thread( core_t   * core,
66                            thread_t * thread )
67{
68    scheduler_t * sched = &core->scheduler;
69    thread_type_t type  = thread->type;
70
71    // take lock protecting sheduler lists
72    spinlock_lock( &sched->lock );
73
74    if( type == THREAD_USER )
75    {
76        list_add_last( &sched->u_root , &thread->sched_list );
77        sched->u_threads_nr++;
[279]78        if( sched->u_last == NULL ) sched->u_last = &thread->sched_list;
[1]79    }
80    else // kernel thread
81    {
82        list_add_last( &sched->k_root , &thread->sched_list );
83        sched->k_threads_nr++;
[279]84        if( sched->k_last == NULL ) sched->k_last = &thread->sched_list; 
[1]85    }
86
87    // release lock
88    spinlock_unlock( &sched->lock );
89
[409]90}  // end sched_register_thread()
[1]91
[408]92//////////////////////////////////////////////
93thread_t * sched_select( scheduler_t * sched )
[1]94{
[408]95    thread_t     * thread;
96    list_entry_t * current;
97    list_entry_t * last;
[1]98
99    // take lock protecting sheduler lists
100    spinlock_lock( &sched->lock );
101
[407]102    // first loop : scan the kernel threads list if not empty
[279]103    if( list_is_empty( &sched->k_root ) == false )
[1]104    {
[279]105        last    = sched->k_last;
106        current = sched->k_last;
107        do
108        {
109            // get next entry in kernel list
110            current = list_next( &sched->k_root , current );
[1]111
[279]112            // skip the root that does not contain a thread
113            if( current == NULL ) current = sched->k_root.next;
[1]114
[279]115            // get thread pointer for this entry
116            thread = LIST_ELEMENT( current , thread_t , sched_list );
[1]117
[407]118            // analyse kernel thread type
119            switch( thread->type )
[279]120            {
[407]121                case THREAD_IDLE: // skip IDLE thread
122                break;
[296]123
[407]124                case THREAD_RPC:  // RPC thread if non blocked and FIFO non-empty
125                if( (thread->blocked == 0) && 
126                    (local_fifo_is_empty( &LOCAL_CLUSTER->rpc_fifo ) == 0) )
127                {
128                    spinlock_unlock( &sched->lock );
129                    return thread;
130                }
131                break;
[296]132
[408]133                default:          // DEV thread if non blocked and waiting queue non empty
134                if( (thread->blocked == 0) &&
135                    (xlist_is_empty( XPTR( local_cxy , &thread->chdev->wait_root)) == 0) ) 
[407]136                {
137                    spinlock_unlock( &sched->lock );
138                    return thread;
139                }
140                break;
141            }  // end switch type
[1]142        }
[279]143        while( current != last );
[1]144    }
145
[407]146    // second loop : scan the user threads list if not empty
[279]147    if( list_is_empty( &sched->u_root ) == false )
[1]148    {
[279]149        last    = sched->u_last;
150        current = sched->u_last;
151        do
152        {
153            // get next entry in user list
154            current = list_next( &sched->u_root , current );
[1]155
[279]156            // skip the root that does not contain a thread
157            if( current == NULL ) current = sched->u_root.next;
[1]158
[279]159            // get thread pointer for this entry
160            thread = LIST_ELEMENT( current , thread_t , sched_list );
[1]161
[279]162            // return thread if runnable
163            if( thread->blocked == 0 )
164            {
165                spinlock_unlock( &sched->lock );
166                return thread;
167            }
[1]168        }
[279]169        while( current != last );
[1]170    }
171
[407]172    // third : return idle thread if no runnable thread
[1]173    spinlock_unlock( &sched->lock );
174    return sched->idle;
175
[296]176}  // end sched_select()
[1]177
[416]178///////////////////////////////////////////
179void sched_handle_requests( core_t * core )
[1]180{
181    list_entry_t * iter;
182    thread_t     * thread;
[409]183
[416]184// printk("\n@@@ %s : current thread %x enter at cycle %d\n",
185// __FUNCTION__ , CURRENT_THREAD , hal_time_stamp() );
186
[1]187    scheduler_t  * sched = &core->scheduler;
188
189    // take lock protecting threads lists
190    spinlock_lock( &sched->lock );
191
[416]192    // scan all user threads
[1]193    LIST_FOREACH( &sched->u_root , iter )
194    {
195        thread = LIST_ELEMENT( iter , thread_t , sched_list );
196
[416]197        // handle REQ_ACK
198        if( thread->flags & THREAD_FLAG_REQ_ACK )
[408]199        {
[416]200            // check thread blocked
201            assert( (thread->blocked & THREAD_BLOCKED_GLOBAL) , 
202            __FUNCTION__ , "thread not blocked" );
203 
204            // decrement response counter
205            hal_atomic_add( thread->ack_rsp_count , -1 );
[408]206
[416]207            // reset REQ_ACK in thread descriptor
208            thread_reset_req_ack( thread );
[408]209        }
[416]210
211        // handle REQ_DELETE
212        if( thread->flags & THREAD_FLAG_REQ_DELETE )
213        {
214
215sched_dmsg("\n[DBG] %s : current thread %x delete thread %x at cycle %d\n",
216__FUNCTION__ , CURRENT_THREAD , thread , hal_time_stamp() );
217
218                // release FPU if required
219                if( thread->core->fpu_owner == thread )  thread->core->fpu_owner = NULL;
220
221            // detach thread from parent if attached
222            if( (thread->flags & THREAD_FLAG_DETACHED) == 0 ) 
223            thread_child_parent_unlink( thread->parent , XPTR( local_cxy , thread ) );
224
225            // detach thread from process
226            process_remove_thread( thread );
227
228            // remove thread from scheduler
229            list_unlink( &thread->sched_list );
230            sched->u_threads_nr--;
231            if( sched->u_threads_nr == 0 ) sched->u_last = NULL;
232
233            // release memory allocated to thread
234            thread_destroy( thread );
235
236            // destroy process descriptor if no more threads
237            if (thread->process->th_nr == 0) process_destroy( thread->process );
238        }
[1]239    }
240
241    // release lock
242    spinlock_unlock( &sched->lock );
243
[416]244// printk("\n@@@ %s : current thread %x exit at cycle %d\n",
245// __FUNCTION__ , CURRENT_THREAD , hal_time_stamp() );
[1]246
[416]247} // end sched_handle_requests()
248
[408]249////////////////////////////////
250void sched_yield( char * cause )
[1]251{
[407]252    thread_t    * next;
[1]253    thread_t    * current = CURRENT_THREAD;
[409]254    core_t      * core    = current->core;
255    scheduler_t * sched   = &core->scheduler;
[407]256 
257#if( CONFIG_SCHED_DEBUG & 0x1 )
[409]258if( hal_time_stamp() > CONFIG_SCHED_DEBUG ) sched_display( core->lid );
[407]259#endif
[1]260
[337]261    // delay the yield if current thread has locks
[407]262    if( (current->local_locks != 0) || (current->remote_locks != 0) )
[337]263    {
264        current->flags |= THREAD_FLAG_SCHED;
265        return;
266    }
[1]267
[408]268    // enter critical section / save SR in current thread context
269    hal_disable_irq( &current->save_sr );
270
[407]271    // loop on threads to select next thread
[408]272    next = sched_select( sched );
[1]273
[296]274    // check next thread attached to same core as the calling thread
[407]275    assert( (next->core == current->core), __FUNCTION__ , 
276    "next core != current core\n");
[296]277
[407]278    // check next thread not blocked when type != IDLE
279    assert( (next->blocked == 0) || (next->type = THREAD_IDLE) , __FUNCTION__ ,
280    "next thread %x (%s) is blocked on core[%x,%d]\n", 
[409]281    next->trdid , thread_type_str(next->type) , local_cxy , core->lid );
[296]282
283    // switch contexts and update scheduler state if next != current
284        if( next != current )
[1]285    {
286
[408]287sched_dmsg("\n[DBG] %s : core[%x,%d] / cause = %s\n"
288"      thread %x (%s) (%x,%x) => thread %x (%s) (%x,%x) / cycle %d\n",
[409]289__FUNCTION__, local_cxy, core->lid, cause, 
[407]290current, thread_type_str(current->type), current->process->pid, current->trdid,
291next   , thread_type_str(next->type)   , next->process->pid   , next->trdid,
[408]292(uint32_t)hal_get_cycles() );
[279]293
[296]294        // update scheduler
[408]295        sched->current = next;
296        if( next->type == THREAD_USER ) sched->u_last = &next->sched_list;
297        else                            sched->k_last = &next->sched_list;
[1]298
[407]299        // handle FPU ownership
[306]300            if( next->type == THREAD_USER )
[296]301        {
[407]302                if( next == current->core->fpu_owner )  hal_fpu_enable();
303                else                                    hal_fpu_disable();
[296]304        }
[1]305
[407]306        // switch CPU from calling thread context to new thread context
307        hal_do_cpu_switch( current->cpu_context, next->cpu_context );
[296]308    }
309    else
310    {
[407]311
[408]312sched_dmsg("\n[DBG] %s : core[%x,%d] / cause = %s\n" 
313"      thread %x (%s) (%x,%x) continue / cycle %d\n",
[409]314__FUNCTION__, local_cxy, core->lid, cause,
[408]315current, thread_type_str(current->type), current->process->pid, current->trdid, 
316(uint32_t)hal_get_cycles() );
[407]317
[296]318    }
[408]319
[416]320    // handle pending requests for all threads executing on this core.
321    sched_handle_requests( core );
[409]322
[408]323    // exit critical section / restore SR from next thread context
324    hal_restore_irq( next->save_sr );
325
[1]326}  // end sched_yield()
327
[407]328
329///////////////////////////////
330void sched_display( lid_t lid )
[1]331{
[296]332    list_entry_t * iter;
333    thread_t     * thread;
334    uint32_t       save_sr;
[1]335
[407]336    if( lid >= LOCAL_CLUSTER->cores_nr )
337    {
338        printk("\n[ERROR] in %s : illegal local index %d in cluster %x\n",
339        __FUNCTION__ , lid , local_cxy );
340        return;
341    }
342
343    core_t       * core    = &LOCAL_CLUSTER->core_tbl[lid];
[296]344    scheduler_t  * sched   = &core->scheduler;
345   
346    // get pointers on TXT0 chdev
[407]347    xptr_t    txt0_xp  = chdev_dir.txt_tx[0];
[296]348    cxy_t     txt0_cxy = GET_CXY( txt0_xp );
349    chdev_t * txt0_ptr = GET_PTR( txt0_xp );
[1]350
[296]351    // get extended pointer on remote TXT0 chdev lock
352    xptr_t  lock_xp = XPTR( txt0_cxy , &txt0_ptr->wait_lock );
[1]353
[296]354    // get TXT0 lock in busy waiting mode
355    remote_spinlock_lock_busy( lock_xp , &save_sr );
356
[407]357    nolock_printk("\n***** scheduler state for core[%x,%d] at cycle %d\n"
[408]358           "kernel_threads = %d / user_threads = %d / current = (%x,%x)\n",
[407]359            local_cxy , core->lid, hal_time_stamp(),
360            sched->k_threads_nr, sched->u_threads_nr,
[408]361            sched->current->process->pid , sched->current->trdid );
[296]362
363    // display kernel threads
364    LIST_FOREACH( &sched->k_root , iter )
[1]365    {
[296]366        thread = LIST_ELEMENT( iter , thread_t , sched_list );
[408]367        if (thread->type == THREAD_DEV) 
368        {
[416]369            nolock_printk(" - %s / pid %X / trdid %X / desc %X / block %X / flags %X / %s\n",
[408]370            thread_type_str( thread->type ), thread->process->pid, thread->trdid,
[416]371            thread, thread->blocked, thread->flags, thread->chdev->name );
[408]372        }
373        else
374        {
[416]375            nolock_printk(" - %s / pid %X / trdid %X / desc %X / block %X / flags %X \n",
[408]376            thread_type_str( thread->type ), thread->process->pid, thread->trdid,
[416]377            thread, thread->blocked, thread->flags  );
[408]378        }
[1]379    }
380
[296]381    // display user threads
382    LIST_FOREACH( &sched->u_root , iter )
[1]383    {
[296]384        thread = LIST_ELEMENT( iter , thread_t , sched_list );
[416]385        nolock_printk(" - %s / pid %X / trdid %X / desc %X / block %X / flags %X\n",
[408]386        thread_type_str( thread->type ), thread->process->pid, thread->trdid,
[416]387        thread, thread->blocked, thread->flags );
[1]388    }
389
[296]390    // release TXT0 lock
391    remote_spinlock_unlock_busy( lock_xp , save_sr );
[1]392
[296]393}  // end sched_display()
[1]394
Note: See TracBrowser for help on using the repository browser.