1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Ulf Ralberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
35 # define IF_COP2(x) CURRENT_CORE
38 #define DEADBEEF ((unsigned int)0xdeadbeef)
39 /* Cast to the the machine int type, whose size could be < 4. */
41 struct core_entry cores
[NUM_CORES
] IBSS_ATTR
;
42 struct thread_entry threads
[MAXTHREADS
] IBSS_ATTR
;
43 #ifdef HAVE_SCHEDULER_BOOSTCTRL
44 static int boosted_threads IBSS_ATTR
;
47 /* Define to enable additional checks for blocking violations etc. */
48 #define THREAD_EXTRA_CHECKS
50 static const char main_thread_name
[] = "main";
52 extern int stackbegin
[];
53 extern int stackend
[];
57 extern int cop_stackbegin
[];
58 extern int cop_stackend
[];
60 /* The coprocessor stack is not set up in the bootloader code, but the threading
61 * is. No threads are run on the coprocessor, so set up some dummy stack */
62 int *cop_stackbegin
= stackbegin
;
63 int *cop_stackend
= stackend
;
69 static long cores_locked IBSS_ATTR
;
71 #define LOCK(...) do { } while (test_and_set(&cores_locked, 1))
72 #define UNLOCK(...) cores_locked = 0
75 /* #warning "Core locking mechanism should be fixed on H10/4G!" */
77 inline void lock_cores(void)
80 if (!cores
[CURRENT_CORE
].lock_issued
)
83 cores
[CURRENT_CORE
].lock_issued
= true;
88 inline void unlock_cores(void)
91 if (cores
[CURRENT_CORE
].lock_issued
)
93 cores
[CURRENT_CORE
].lock_issued
= false;
102 static void add_to_list(struct thread_entry **list,
103 struct thread_entry *thread) ICODE_ATTR;
104 static void remove_from_list(struct thread_entry **list,
105 struct thread_entry *thread) ICODE_ATTR;
108 void switch_thread(bool save_context
, struct thread_entry
**blocked_list
)
111 static inline void store_context(void* addr
) __attribute__ ((always_inline
));
112 static inline void load_context(const void* addr
)
113 __attribute__ ((always_inline
));
114 static inline void core_sleep(void) __attribute__((always_inline
));
117 /*---------------------------------------------------------------------------
118 * Store non-volatile context.
119 *---------------------------------------------------------------------------
121 static inline void store_context(void* addr
)
124 "stmia %0, { r4-r11, sp, lr }\n"
129 /*---------------------------------------------------------------------------
130 * Load non-volatile context.
131 *---------------------------------------------------------------------------
133 static void start_thread(void (*thread_func
)(void), const void* addr
) __attribute__((naked
,used
));
134 static void start_thread(void (*thread_func
)(void), const void* addr
)
136 /* r0 = thread_func, r1 = addr */
137 #if NUM_CORES > 1 && CONFIG_CPU != PP5002
140 "str r2, [r1, #40] \n"
141 "ldr r1, =0xf000f044 \n" /* invalidate this core's cache */
145 "ldr r1, =0x6000c000 \n"
156 "str r2, [r1, #40] \n"
165 static inline void load_context(const void* addr
)
168 "ldmia %0, { r4-r11, sp, lr } \n" /* load regs r4 to r14 from context */
169 "ldr r0, [%0, #40] \n" /* load start pointer */
170 "cmp r0, #0 \n" /* check for NULL */
171 "movne r1, %0 \n" /* if not already running, jump to start */
172 "ldrne pc, =start_thread \n"
173 : : "r" (addr
) : "r0", "r1"
178 static inline void core_sleep(void)
182 /* This should sleep the CPU. It appears to wake by itself on
184 if (CURRENT_CORE
== CPU
)
185 CPU_CTL
= PROC_SLEEP
;
187 COP_CTL
= PROC_SLEEP
;
191 #elif CONFIG_CPU == S3C2440
192 static inline void core_sleep(void)
195 CLKCON
|= (1 << 2); /* set IDLE bit */
196 for(i
=0; i
<10; i
++); /* wait for IDLE */
197 CLKCON
&= ~(1 << 2); /* reset IDLE bit when wake up */
200 static inline void core_sleep(void)
206 #elif defined(CPU_COLDFIRE)
207 /*---------------------------------------------------------------------------
208 * Store non-volatile context.
209 *---------------------------------------------------------------------------
211 static inline void store_context(void* addr
)
214 "move.l %%macsr,%%d0 \n"
215 "movem.l %%d0/%%d2-%%d7/%%a2-%%a7,(%0) \n"
216 : : "a" (addr
) : "d0" /* only! */
220 /*---------------------------------------------------------------------------
221 * Load non-volatile context.
222 *---------------------------------------------------------------------------
224 static inline void load_context(const void* addr
)
227 "movem.l (%0),%%d0/%%d2-%%d7/%%a2-%%a7 \n" /* Load context */
228 "move.l %%d0,%%macsr \n"
229 "move.l (52,%0),%%d0 \n" /* Get start address */
230 "beq.b 1f \n" /* NULL -> already running */
231 "clr.l (52,%0) \n" /* Clear start address.. */
233 "jmp (%0) \n" /* ..and start the thread */
235 : : "a" (addr
) : "d0" /* only! */
239 static inline void core_sleep(void)
241 asm volatile ("stop #0x2000");
244 /* Set EMAC unit to fractional mode with saturation for each new thread,
245 since that's what'll be the most useful for most things which the dsp
246 will do. Codecs should still initialize their preferred modes
248 #define THREAD_CPU_INIT(core, thread) \
249 ({ (thread)->context.macsr = EMAC_FRACTIONAL | EMAC_SATURATE; })
251 #elif CONFIG_CPU == SH7034
252 /*---------------------------------------------------------------------------
253 * Store non-volatile context.
254 *---------------------------------------------------------------------------
256 static inline void store_context(void* addr
)
273 /*---------------------------------------------------------------------------
274 * Load non-volatile context.
275 *---------------------------------------------------------------------------
277 static inline void load_context(const void* addr
)
289 "mov.l @%0,r0 \n" /* Get start address */
291 "bt .running \n" /* NULL -> already running */
294 "rts \n" /* Start the thread */
295 "mov.l r0,@%0 \n" /* Clear start address */
297 : : "r" (addr
) : "r0" /* only! */
301 static inline void core_sleep(void)
304 asm volatile ("sleep");
309 #ifndef THREAD_CPU_INIT
310 /* No cpu specific init - make empty */
311 #define THREAD_CPU_INIT(core, thread)
314 #ifdef THREAD_EXTRA_CHECKS
315 static void thread_panicf_format_name(char *buffer
, struct thread_entry
*thread
)
320 /* Display thread name if one or ID if none */
321 const char *fmt
= thread
->name
? " %s" : " %08lX";
322 intptr_t name
= thread
->name
?
323 (intptr_t)thread
->name
: (intptr_t)thread
;
324 snprintf(buffer
, 16, fmt
, name
);
328 static void thread_panicf(const char *msg
,
329 struct thread_entry
*thread1
, struct thread_entry
*thread2
)
331 static char thread1_name
[16], thread2_name
[16];
332 thread_panicf_format_name(thread1_name
, thread1
);
333 thread_panicf_format_name(thread2_name
, thread2
);
334 panicf ("%s%s%s", msg
, thread1_name
, thread2_name
);
337 static void thread_stkov(void)
339 /* Display thread name if one or ID if none */
340 struct thread_entry
*current
= cores
[CURRENT_CORE
].running
;
341 const char *fmt
= current
->name
? "%s %s" : "%s %08lX";
342 intptr_t name
= current
->name
?
343 (intptr_t)current
->name
: (intptr_t)current
;
344 panicf(fmt
, "Stkov", name
);
346 #endif /* THREAD_EXTRA_CHECKS */
348 static void add_to_list(struct thread_entry
**list
, struct thread_entry
*thread
)
352 thread
->next
= thread
;
353 thread
->prev
= thread
;
359 thread
->next
= *list
;
360 thread
->prev
= (*list
)->prev
;
361 thread
->prev
->next
= thread
;
362 (*list
)->prev
= thread
;
365 thread->next = (*list)->next;
366 thread->prev = *list;
367 thread->next->prev = thread;
368 (*list)->next = thread;
373 static void remove_from_list(struct thread_entry
**list
,
374 struct thread_entry
*thread
)
378 if (thread
== thread
->next
)
385 *list
= thread
->next
;
388 /* Fix links to jump over the removed entry. */
389 thread
->prev
->next
= thread
->next
;
390 thread
->next
->prev
= thread
->prev
;
393 static void check_sleepers(void) __attribute__ ((noinline
));
394 static void check_sleepers(void)
396 const unsigned int core
= CURRENT_CORE
;
397 struct thread_entry
*current
, *next
;
399 /* Check sleeping threads. */
400 current
= cores
[core
].sleeping
;
404 next
= current
->next
;
406 if ((unsigned)current_tick
>= GET_STATE_ARG(current
->statearg
))
408 /* Sleep timeout has been reached so bring the thread
409 * back to life again. */
410 remove_from_list(&cores
[core
].sleeping
, current
);
411 add_to_list(&cores
[core
].running
, current
);
412 current
->statearg
= 0;
414 /* If there is no more processes in the list, break the loop. */
415 if (cores
[core
].sleeping
== NULL
)
424 /* Break the loop once we have walked through the list of all
425 * sleeping processes. */
426 if (current
== cores
[core
].sleeping
)
431 /* Safely finish waking all threads potentialy woken by interrupts -
432 * statearg already zeroed in wakeup_thread. */
433 static void wake_list_awaken(void) __attribute__ ((noinline
));
434 static void wake_list_awaken(void)
436 const unsigned int core
= CURRENT_CORE
;
437 int oldlevel
= set_irq_level(HIGHEST_IRQ_LEVEL
);
439 /* No need for another check in the IRQ lock since IRQs are allowed
440 only to add threads to the waking list. They won't be adding more
441 until we're done here though. */
443 struct thread_entry
*waking
= cores
[core
].waking
;
444 struct thread_entry
*running
= cores
[core
].running
;
448 /* Place waking threads at the end of the running list. */
449 struct thread_entry
*tmp
;
450 waking
->prev
->next
= running
;
451 running
->prev
->next
= waking
;
453 running
->prev
= waking
->prev
;
458 /* Just transfer the list as-is - just came out of a core
460 cores
[core
].running
= waking
;
463 /* Done with waking list */
464 cores
[core
].waking
= NULL
;
465 set_irq_level(oldlevel
);
468 static inline void sleep_core(void)
470 const unsigned int core
= CURRENT_CORE
;
474 /* We want to do these ASAP as it may change the decision to sleep
475 the core or the core has woken because an interrupt occurred
476 and posted a message to a queue. */
477 if (cores
[core
].waking
!= NULL
)
480 if (cores
[core
].last_tick
!= current_tick
)
482 if (cores
[core
].sleeping
!= NULL
)
484 cores
[core
].last_tick
= current_tick
;
487 /* We must sleep until there is at least one process in the list
488 * of running processes. */
489 if (cores
[core
].running
!= NULL
)
492 /* Enter sleep mode to reduce power usage, woken up on interrupt */
498 static int get_threadnum(struct thread_entry
*thread
)
502 for (i
= 0; i
< MAXTHREADS
; i
++)
504 if (&threads
[i
] == thread
)
511 void profile_thread(void) {
512 profstart(get_threadnum(cores
[CURRENT_CORE
].running
));
516 static void change_thread_state(struct thread_entry
**blocked_list
) __attribute__ ((noinline
));
517 static void change_thread_state(struct thread_entry
**blocked_list
)
519 const unsigned int core
= CURRENT_CORE
;
520 struct thread_entry
*old
;
521 unsigned long new_state
;
523 /* Remove the thread from the list of running threads. */
524 old
= cores
[core
].running
;
525 new_state
= GET_STATE(old
->statearg
);
527 /* Check if a thread state change has been requested. */
530 /* Change running thread state and switch to next thread. */
531 remove_from_list(&cores
[core
].running
, old
);
533 /* And put the thread into a new list of inactive threads. */
534 if (new_state
== STATE_BLOCKED
)
535 add_to_list(blocked_list
, old
);
537 add_to_list(&cores
[core
].sleeping
, old
);
539 #ifdef HAVE_PRIORITY_SCHEDULING
540 /* Reset priorities */
541 if (old
->priority
== cores
[core
].highest_priority
)
542 cores
[core
].highest_priority
= 100;
546 /* Switch to the next running thread. */
547 cores
[core
].running
= old
->next
;
550 /*---------------------------------------------------------------------------
551 * Switch thread in round robin fashion.
552 *---------------------------------------------------------------------------
554 void switch_thread(bool save_context
, struct thread_entry
**blocked_list
)
556 const unsigned int core
= CURRENT_CORE
;
559 profile_thread_stopped(get_threadnum(cores
[core
].running
));
561 unsigned int *stackptr
;
569 /* Begin task switching by saving our current context so that we can
570 * restore the state of the current thread later to the point prior
574 store_context(&cores
[core
].running
->context
);
576 /* Check if the current thread stack is overflown */
577 stackptr
= cores
[core
].running
->stack
;
578 if(stackptr
[0] != DEADBEEF
)
579 #ifdef THREAD_EXTRA_CHECKS
580 thread_panicf("Stkov", cores
[core
].running
, NULL
);
585 /* Rearrange thread lists as needed */
586 change_thread_state(blocked_list
);
588 /* This has to be done after the scheduler is finished with the
589 blocked_list pointer so that an IRQ can't kill us by attempting
590 a wake but before attempting any core sleep. */
591 if (cores
[core
].switch_to_irq_level
!= STAY_IRQ_LEVEL
)
593 int level
= cores
[core
].switch_to_irq_level
;
594 cores
[core
].switch_to_irq_level
= STAY_IRQ_LEVEL
;
595 set_irq_level(level
);
599 /* Go through the list of sleeping task to check if we need to wake up
600 * any of them due to timeout. Also puts core into sleep state until
601 * there is at least one running process again. */
604 #ifdef HAVE_PRIORITY_SCHEDULING
605 /* Select the new task based on priorities and the last time a process
609 int priority
= cores
[core
].running
->priority
;
611 if (priority
< cores
[core
].highest_priority
)
612 cores
[core
].highest_priority
= priority
;
614 if (priority
== cores
[core
].highest_priority
||
615 (current_tick
- cores
[core
].running
->last_run
>
617 cores
[core
].running
->priority_x
!= 0)
622 cores
[core
].running
= cores
[core
].running
->next
;
625 /* Reset the value of thread's last running time to the current time. */
626 cores
[core
].running
->last_run
= current_tick
;
632 /* And finally give control to the next thread. */
633 load_context(&cores
[core
].running
->context
);
636 profile_thread_started(get_threadnum(cores
[core
].running
));
640 void sleep_thread(int ticks
)
642 struct thread_entry
*current
;
646 current
= cores
[CURRENT_CORE
].running
;
648 #ifdef HAVE_SCHEDULER_BOOSTCTRL
649 if (STATE_IS_BOOSTED(current
->statearg
))
652 if (!boosted_threads
)
659 /* Set the thread's new state and timeout and finally force a task switch
660 * so that scheduler removes thread from the list of running processes
661 * and puts it in list of sleeping tasks. */
662 SET_STATE(current
->statearg
, STATE_SLEEPING
, current_tick
+ ticks
+ 1);
664 switch_thread(true, NULL
);
667 void block_thread(struct thread_entry
**list
)
669 struct thread_entry
*current
;
673 /* Get the entry for the current running thread. */
674 current
= cores
[CURRENT_CORE
].running
;
676 #ifdef HAVE_SCHEDULER_BOOSTCTRL
677 /* Keep the boosted state over indefinite block calls, because
678 * we are waiting until the earliest time that someone else
679 * completes an action */
680 unsigned long boost_flag
= STATE_IS_BOOSTED(current
->statearg
);
683 #ifdef THREAD_EXTRA_CHECKS
684 /* We are not allowed to mix blocking types in one queue. */
685 if (*list
&& GET_STATE((*list
)->statearg
) == STATE_BLOCKED_W_TMO
)
686 thread_panicf("Blocking violation B->*T", current
, *list
);
689 /* Set the state to blocked and ask the scheduler to switch tasks,
690 * this takes us off of the run queue until we are explicitly woken */
691 SET_STATE(current
->statearg
, STATE_BLOCKED
, 0);
693 switch_thread(true, list
);
695 #ifdef HAVE_SCHEDULER_BOOSTCTRL
696 /* Reset only the boosted flag to indicate we are up and running again. */
697 current
->statearg
= boost_flag
;
699 /* Clear all flags to indicate we are up and running again. */
700 current
->statearg
= 0;
704 void block_thread_w_tmo(struct thread_entry
**list
, int timeout
)
706 struct thread_entry
*current
;
707 /* Get the entry for the current running thread. */
708 current
= cores
[CURRENT_CORE
].running
;
711 #ifdef HAVE_SCHEDULER_BOOSTCTRL
712 /* A block with a timeout is a sleep situation, whatever we are waiting
713 * for _may or may not_ happen, regardless of boost state, (user input
714 * for instance), so this thread no longer needs to boost */
715 if (STATE_IS_BOOSTED(current
->statearg
))
718 if (!boosted_threads
)
725 #ifdef THREAD_EXTRA_CHECKS
726 /* We can store only one thread to the "list" if thread is used
727 * in other list (such as core's list for sleeping tasks). */
729 thread_panicf("Blocking violation T->*B", current
, NULL
);
732 /* Set the state to blocked with the specified timeout */
733 SET_STATE(current
->statearg
, STATE_BLOCKED_W_TMO
, current_tick
+ timeout
);
735 /* Set the "list" for explicit wakeup */
738 /* Now force a task switch and block until we have been woken up
739 * by another thread or timeout is reached. */
740 switch_thread(true, NULL
);
742 /* It is now safe for another thread to block on this "list" */
746 #if !defined(SIMULATOR)
747 void set_irq_level_and_block_thread(struct thread_entry
**list
, int level
)
749 cores
[CURRENT_CORE
].switch_to_irq_level
= level
;
753 void set_irq_level_and_block_thread_w_tmo(struct thread_entry
**list
,
754 int timeout
, int level
)
756 cores
[CURRENT_CORE
].switch_to_irq_level
= level
;
757 block_thread_w_tmo(list
, timeout
);
761 void wakeup_thread(struct thread_entry
**list
)
763 struct thread_entry
*thread
;
765 /* Check if there is a blocked thread at all. */
771 /* Wake up the last thread first. */
774 /* Determine thread's current state. */
775 switch (GET_STATE(thread
->statearg
))
778 /* Remove thread from the list of blocked threads and add it
779 * to the scheduler's list of running processes. List removal
780 * is safe since each object maintains it's own list of
781 * sleepers and queues protect against reentrancy. */
782 remove_from_list(list
, thread
);
783 add_to_list(cores
[IF_COP2(thread
->core
)].wakeup_list
, thread
);
785 case STATE_BLOCKED_W_TMO
:
786 /* Just remove the timeout to cause scheduler to immediately
787 * wake up the thread. */
788 thread
->statearg
= 0;
792 /* Nothing to do. Thread has already been woken up
793 * or it's state is not blocked or blocked with timeout. */
798 inline static int find_empty_thread_slot(void)
802 for (n
= 0; n
< MAXTHREADS
; n
++)
804 if (threads
[n
].name
== NULL
)
811 /* Like wakeup_thread but safe against IRQ corruption when IRQs are disabled
813 void wakeup_thread_irq_safe(struct thread_entry
**list
)
815 struct core_entry
*core
= &cores
[CURRENT_CORE
];
816 /* Switch wakeup lists and call wakeup_thread */
817 core
->wakeup_list
= &core
->waking
;
819 /* Switch back to normal running list */
820 core
->wakeup_list
= &core
->running
;
823 /*---------------------------------------------------------------------------
825 * If using a dual core architecture, specify which core to start the thread
826 * on, and whether to fall back to the other core if it can't be created
827 * Return ID if context area could be allocated, else NULL.
828 *---------------------------------------------------------------------------
831 create_thread(void (*function
)(void), void* stack
, int stack_size
,
832 const char *name
IF_PRIO(, int priority
)
833 IF_COP(, unsigned int core
, bool fallback
))
836 unsigned int stacklen
;
837 unsigned int *stackptr
;
840 struct thread_entry
*thread
;
844 * To prevent ifdef hell while keeping the binary size down, we define
845 * core here if it hasn't been passed as a parameter
852 /* If the kernel hasn't initialised on the COP (most likely due to an old
853 * bootloader) then refuse to start threads on the COP
855 if ((core
== COP
) && !cores
[core
].kernel_running
)
858 return create_thread(function
, stack
, stack_size
, name
859 IF_PRIO(, priority
) IF_COP(, CPU
, false));
867 slot
= find_empty_thread_slot();
874 /* Munge the stack to make it easy to spot stack overflows */
875 stacklen
= stack_size
/ sizeof(int);
877 for(i
= 0;i
< stacklen
;i
++)
879 stackptr
[i
] = DEADBEEF
;
882 /* Store interesting information */
883 thread
= &threads
[slot
];
885 thread
->stack
= stack
;
886 thread
->stack_size
= stack_size
;
887 thread
->statearg
= 0;
888 #ifdef HAVE_PRIORITY_SCHEDULING
889 thread
->priority_x
= 0;
890 thread
->priority
= priority
;
891 cores
[core
].highest_priority
= 100;
897 /* Writeback stack munging or anything else before starting */
898 if (core
!= CURRENT_CORE
)
902 regs
= &thread
->context
;
903 /* Align stack to an even 32 bit boundary */
904 regs
->sp
= (void*)(((unsigned int)stack
+ stack_size
) & ~3);
905 regs
->start
= (void*)function
;
907 /* Do any CPU specific inits after initializing common items
908 to have access to valid data */
909 THREAD_CPU_INIT(core
, thread
);
911 add_to_list(&cores
[core
].running
, thread
);
920 #ifdef HAVE_SCHEDULER_BOOSTCTRL
921 void trigger_cpu_boost(void)
925 if (!STATE_IS_BOOSTED(cores
[CURRENT_CORE
].running
->statearg
))
927 SET_BOOST_STATE(cores
[CURRENT_CORE
].running
->statearg
);
928 if (!boosted_threads
)
939 /*---------------------------------------------------------------------------
940 * Remove a thread on the current core from the scheduler.
941 * Parameter is the ID as returned from create_thread().
942 *---------------------------------------------------------------------------
944 void remove_thread(struct thread_entry
*thread
)
949 thread
= cores
[CURRENT_CORE
].running
;
951 /* Free the entry by removing thread name. */
953 #ifdef HAVE_PRIORITY_SCHEDULING
954 cores
[IF_COP2(thread
->core
)].highest_priority
= 100;
957 if (thread
== cores
[IF_COP2(thread
->core
)].running
)
959 remove_from_list(&cores
[IF_COP2(thread
->core
)].running
, thread
);
960 switch_thread(false, NULL
);
964 if (thread
== cores
[IF_COP2(thread
->core
)].sleeping
)
965 remove_from_list(&cores
[IF_COP2(thread
->core
)].sleeping
, thread
);
967 remove_from_list(NULL
, thread
);
972 #ifdef HAVE_PRIORITY_SCHEDULING
973 int thread_set_priority(struct thread_entry
*thread
, int priority
)
979 thread
= cores
[CURRENT_CORE
].running
;
981 old_priority
= thread
->priority
;
982 thread
->priority
= priority
;
983 cores
[IF_COP2(thread
->core
)].highest_priority
= 100;
989 int thread_get_priority(struct thread_entry
*thread
)
992 thread
= cores
[CURRENT_CORE
].running
;
994 return thread
->priority
;
997 void priority_yield(void)
999 struct thread_entry
*thread
= cores
[CURRENT_CORE
].running
;
1000 thread
->priority_x
= 1;
1001 switch_thread(true, NULL
);
1002 thread
->priority_x
= 0;
1004 #endif /* HAVE_PRIORITY_SCHEDULING */
1006 struct thread_entry
* thread_get_current(void)
1008 return cores
[CURRENT_CORE
].running
;
1011 void init_threads(void)
1013 const unsigned int core
= CURRENT_CORE
;
1016 /* Let main CPU initialize first. */
1020 while (!cores
[CPU
].kernel_running
) ;
1025 slot
= find_empty_thread_slot();
1027 cores
[core
].sleeping
= NULL
;
1028 cores
[core
].running
= NULL
;
1029 cores
[core
].waking
= NULL
;
1030 cores
[core
].wakeup_list
= &cores
[core
].running
;
1031 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
1032 cores
[core
].switch_to_irq_level
= STAY_IRQ_LEVEL
;
1034 threads
[slot
].name
= main_thread_name
;
1035 threads
[slot
].statearg
= 0;
1036 threads
[slot
].context
.start
= 0; /* core's main thread already running */
1038 threads
[slot
].core
= core
;
1040 #ifdef HAVE_PRIORITY_SCHEDULING
1041 threads
[slot
].priority
= PRIORITY_USER_INTERFACE
;
1042 threads
[slot
].priority_x
= 0;
1043 cores
[core
].highest_priority
= 100;
1045 #ifdef HAVE_SCHEDULER_BOOSTCTRL
1046 boosted_threads
= 0;
1048 add_to_list(&cores
[core
].running
, &threads
[slot
]);
1050 /* In multiple core setups, each core has a different stack. There is
1051 * probably a much better way to do this. */
1054 threads
[slot
].stack
= stackbegin
;
1055 threads
[slot
].stack_size
= (int)stackend
- (int)stackbegin
;
1057 #if NUM_CORES > 1 /* This code path will not be run on single core targets */
1060 threads
[slot
].stack
= cop_stackbegin
;
1061 threads
[slot
].stack_size
=
1062 (int)cop_stackend
- (int)cop_stackbegin
;
1065 cores
[core
].kernel_running
= true;
1071 int thread_stack_usage(const struct thread_entry
*thread
)
1074 unsigned int *stackptr
= thread
->stack
;
1076 for (i
= 0;i
< thread
->stack_size
/sizeof(int);i
++)
1078 if (stackptr
[i
] != DEADBEEF
)
1082 return ((thread
->stack_size
- i
* sizeof(int)) * 100) /
1086 int thread_get_status(const struct thread_entry
*thread
)
1088 return GET_STATE(thread
->statearg
);