1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Ulf Ralberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
34 /****************************************************************************
36 * See notes below on implementing processor-specific portions! *
37 ***************************************************************************/
39 /* Define THREAD_EXTRA_CHECKS as 1 to enable additional state checks */
41 #define THREAD_EXTRA_CHECKS 1 /* Always 1 for DEBUG */
43 #define THREAD_EXTRA_CHECKS 0
47 * General locking order to guarantee progress. Order must be observed but
48 * all stages are not nescessarily obligatory. Going from 1) to 3) is
52 * This is first because of the likelyhood of having an interrupt occur that
53 * also accesses one of the objects farther down the list. Any non-blocking
54 * synchronization done may already have a lock on something during normal
55 * execution and if an interrupt handler running on the same processor as
56 * the one that has the resource locked were to attempt to access the
57 * resource, the interrupt handler would wait forever waiting for an unlock
58 * that will never happen. There is no danger if the interrupt occurs on
59 * a different processor because the one that has the lock will eventually
60 * unlock and the other processor's handler may proceed at that time. Not
61 * nescessary when the resource in question is definitely not available to
65 * 1) May be needed beforehand if the kernel object allows dual-use such as
66 * event queues. The kernel object must have a scheme to protect itself from
67 * access by another processor and is responsible for serializing the calls
68 * to block_thread(_w_tmo) and wakeup_thread both to themselves and to each
69 * other. Objects' queues are also protected here.
72 * This locks access to the thread's slot such that its state cannot be
73 * altered by another processor when a state change is in progress such as
74 * when it is in the process of going on a blocked list. An attempt to wake
75 * a thread while it is still blocking will likely desync its state with
76 * the other resources used for that state.
79 * These lists are specific to a particular processor core and are accessible
80 * by all processor cores and interrupt handlers. The running (rtr) list is
81 * the prime example where a thread may be added by any means.
84 /*---------------------------------------------------------------------------
85 * Processor specific: core_sleep/core_wake/misc. notes
88 * FIQ is not dealt with by the scheduler code and is simply restored if it
89 * must by masked for some reason - because threading modifies a register
90 * that FIQ may also modify and there's no way to accomplish it atomically.
91 * s3c2440 is such a case.
93 * Audio interrupts are generally treated at a higher priority than others
94 * usage of scheduler code with interrupts higher than HIGHEST_IRQ_LEVEL
95 * are not in general safe. Special cases may be constructed on a per-
96 * source basis and blocking operations are not available.
98 * core_sleep procedure to implement for any CPU to ensure an asychronous
99 * wakup never results in requiring a wait until the next tick (up to
100 * 10000uS!). May require assembly and careful instruction ordering.
102 * 1) On multicore, stay awake if directed to do so by another. If so, goto
104 * 2) If processor requires, atomically reenable interrupts and perform step
106 * 3) Sleep the CPU core. If wakeup itself enables interrupts (stop #0x2000
107 * on Coldfire) goto step 5.
108 * 4) Enable interrupts.
111 * core_wake and multprocessor notes for sleep/wake coordination:
112 * If possible, to wake up another processor, the forcing of an interrupt on
113 * the woken core by the waker core is the easiest way to ensure a non-
114 * delayed wake and immediate execution of any woken threads. If that isn't
115 * available then some careful non-blocking synchonization is needed (as on
116 * PP targets at the moment).
117 *---------------------------------------------------------------------------
120 /* Cast to the the machine pointer size, whose size could be < 4 or > 32
122 #define DEADBEEF ((uintptr_t)0xdeadbeefdeadbeefull)
123 static struct core_entry cores
[NUM_CORES
] IBSS_ATTR
;
124 struct thread_entry threads
[MAXTHREADS
] IBSS_ATTR
;
126 static const char main_thread_name
[] = "main";
127 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
128 extern uintptr_t stackbegin
[];
129 extern uintptr_t stackend
[];
131 extern uintptr_t *stackbegin
;
132 extern uintptr_t *stackend
;
135 static inline void core_sleep(IF_COP_VOID(unsigned int core
))
136 __attribute__((always_inline
));
138 void check_tmo_threads(void)
139 __attribute__((noinline
));
141 static inline void block_thread_on_l(struct thread_entry
*thread
, unsigned state
)
142 __attribute__((always_inline
));
144 static void add_to_list_tmo(struct thread_entry
*thread
)
145 __attribute__((noinline
));
147 static void core_schedule_wakeup(struct thread_entry
*thread
)
148 __attribute__((noinline
));
151 static inline void run_blocking_ops(
152 unsigned int core
, struct thread_entry
*thread
)
153 __attribute__((always_inline
));
156 static void thread_stkov(struct thread_entry
*thread
)
157 __attribute__((noinline
));
159 static inline void store_context(void* addr
)
160 __attribute__((always_inline
));
162 static inline void load_context(const void* addr
)
163 __attribute__((always_inline
));
166 static void thread_final_exit_do(struct thread_entry
*current
)
167 __attribute__((noinline
, noreturn
, used
));
169 static inline void thread_final_exit(struct thread_entry
*current
)
170 __attribute__((always_inline
, noreturn
));
173 void switch_thread(void)
174 __attribute__((noinline
));
176 /****************************************************************************
177 * Processor/OS-specific section - include necessary core support
180 #if defined(HAVE_WIN32_FIBER_THREADS)
181 #include "thread-win32.c"
182 #elif defined(HAVE_SIGALTSTACK_THREADS)
183 #include "thread-unix.c"
184 #elif defined(CPU_ARM)
185 #include "thread-arm.c"
187 #include "thread-pp.c"
189 #elif defined(CPU_COLDFIRE)
190 #include "thread-coldfire.c"
191 #elif CONFIG_CPU == SH7034
192 #include "thread-sh.c"
193 #elif defined(CPU_MIPS) && CPU_MIPS == 32
194 #include "thread-mips32.c"
196 /* Wouldn't compile anyway */
197 #error Processor not implemented.
198 #endif /* CONFIG_CPU == */
200 #ifndef IF_NO_SKIP_YIELD
201 #define IF_NO_SKIP_YIELD(...)
205 * End Processor-specific section
206 ***************************************************************************/
208 #if THREAD_EXTRA_CHECKS
209 static void thread_panicf(const char *msg
, struct thread_entry
*thread
)
211 IF_COP( const unsigned int core
= thread
->core
; )
212 static char name
[32];
213 thread_get_name(name
, 32, thread
);
214 panicf ("%s %s" IF_COP(" (%d)"), msg
, name
IF_COP(, core
));
216 static void thread_stkov(struct thread_entry
*thread
)
218 thread_panicf("Stkov", thread
);
220 #define THREAD_PANICF(msg, thread) \
221 thread_panicf(msg, thread)
222 #define THREAD_ASSERT(exp, msg, thread) \
223 ({ if (!({ exp; })) thread_panicf((msg), (thread)); })
225 static void thread_stkov(struct thread_entry
*thread
)
227 IF_COP( const unsigned int core
= thread
->core
; )
228 static char name
[32];
229 thread_get_name(name
, 32, thread
);
230 panicf("Stkov %s" IF_COP(" (%d)"), name
IF_COP(, core
));
232 #define THREAD_PANICF(msg, thread)
233 #define THREAD_ASSERT(exp, msg, thread)
234 #endif /* THREAD_EXTRA_CHECKS */
238 #define LOCK_THREAD(thread) \
239 ({ corelock_lock(&(thread)->slot_cl); })
240 #define TRY_LOCK_THREAD(thread) \
241 ({ corelock_try_lock(&(thread)->slot_cl); })
242 #define UNLOCK_THREAD(thread) \
243 ({ corelock_unlock(&(thread)->slot_cl); })
244 #define UNLOCK_THREAD_AT_TASK_SWITCH(thread) \
245 ({ unsigned int _core = (thread)->core; \
246 cores[_core].blk_ops.flags |= TBOP_UNLOCK_CORELOCK; \
247 cores[_core].blk_ops.cl_p = &(thread)->slot_cl; })
249 #define LOCK_THREAD(thread) \
251 #define TRY_LOCK_THREAD(thread) \
253 #define UNLOCK_THREAD(thread) \
255 #define UNLOCK_THREAD_AT_TASK_SWITCH(thread) \
260 #define RTR_LOCK(core) \
261 ({ corelock_lock(&cores[core].rtr_cl); })
262 #define RTR_UNLOCK(core) \
263 ({ corelock_unlock(&cores[core].rtr_cl); })
265 #ifdef HAVE_PRIORITY_SCHEDULING
266 #define rtr_add_entry(core, priority) \
267 prio_add_entry(&cores[core].rtr, (priority))
269 #define rtr_subtract_entry(core, priority) \
270 prio_subtract_entry(&cores[core].rtr, (priority))
272 #define rtr_move_entry(core, from, to) \
273 prio_move_entry(&cores[core].rtr, (from), (to))
275 #define rtr_add_entry(core, priority)
276 #define rtr_add_entry_inl(core, priority)
277 #define rtr_subtract_entry(core, priority)
278 #define rtr_subtract_entry_inl(core, priotity)
279 #define rtr_move_entry(core, from, to)
280 #define rtr_move_entry_inl(core, from, to)
283 /*---------------------------------------------------------------------------
284 * Thread list structure - circular:
285 * +------------------------------+
287 * +--+---+<-+---+<-+---+<-+---+<-+
288 * Head->| T | | T | | T | | T |
289 * +->+---+->+---+->+---+->+---+--+
291 * +------------------------------+
292 *---------------------------------------------------------------------------
295 /*---------------------------------------------------------------------------
296 * Adds a thread to a list of threads using "insert last". Uses the "l"
298 *---------------------------------------------------------------------------
300 static void add_to_list_l(struct thread_entry
**list
,
301 struct thread_entry
*thread
)
303 struct thread_entry
*l
= *list
;
307 /* Insert into unoccupied list */
308 thread
->l
.prev
= thread
;
309 thread
->l
.next
= thread
;
315 thread
->l
.prev
= l
->l
.prev
;
317 l
->l
.prev
->l
.next
= thread
;
321 /*---------------------------------------------------------------------------
322 * Removes a thread from a list of threads. Uses the "l" links.
323 *---------------------------------------------------------------------------
325 static void remove_from_list_l(struct thread_entry
**list
,
326 struct thread_entry
*thread
)
328 struct thread_entry
*prev
, *next
;
330 next
= thread
->l
.next
;
341 /* List becomes next item */
345 prev
= thread
->l
.prev
;
347 /* Fix links to jump over the removed entry. */
352 /*---------------------------------------------------------------------------
353 * Timeout list structure - circular reverse (to make "remove item" O(1)),
354 * NULL-terminated forward (to ease the far more common forward traversal):
355 * +------------------------------+
357 * +--+---+<-+---+<-+---+<-+---+<-+
358 * Head->| T | | T | | T | | T |
359 * +---+->+---+->+---+->+---+-X
360 *---------------------------------------------------------------------------
363 /*---------------------------------------------------------------------------
364 * Add a thread from the core's timout list by linking the pointers in its
366 *---------------------------------------------------------------------------
368 static void add_to_list_tmo(struct thread_entry
*thread
)
370 struct thread_entry
*tmo
= cores
[IF_COP_CORE(thread
->core
)].timeout
;
371 THREAD_ASSERT(thread
->tmo
.prev
== NULL
,
372 "add_to_list_tmo->already listed", thread
);
374 thread
->tmo
.next
= NULL
;
378 /* Insert into unoccupied list */
379 thread
->tmo
.prev
= thread
;
380 cores
[IF_COP_CORE(thread
->core
)].timeout
= thread
;
385 thread
->tmo
.prev
= tmo
->tmo
.prev
;
386 tmo
->tmo
.prev
->tmo
.next
= thread
;
387 tmo
->tmo
.prev
= thread
;
390 /*---------------------------------------------------------------------------
391 * Remove a thread from the core's timout list by unlinking the pointers in
392 * its tmo structure. Sets thread->tmo.prev to NULL to indicate the timeout
394 *---------------------------------------------------------------------------
396 static void remove_from_list_tmo(struct thread_entry
*thread
)
398 struct thread_entry
**list
= &cores
[IF_COP_CORE(thread
->core
)].timeout
;
399 struct thread_entry
*prev
= thread
->tmo
.prev
;
400 struct thread_entry
*next
= thread
->tmo
.next
;
402 THREAD_ASSERT(prev
!= NULL
, "remove_from_list_tmo->not listed", thread
);
405 next
->tmo
.prev
= prev
;
409 /* List becomes next item and empty if next == NULL */
411 /* Mark as unlisted */
412 thread
->tmo
.prev
= NULL
;
417 (*list
)->tmo
.prev
= prev
;
418 prev
->tmo
.next
= next
;
419 /* Mark as unlisted */
420 thread
->tmo
.prev
= NULL
;
425 #ifdef HAVE_PRIORITY_SCHEDULING
426 /*---------------------------------------------------------------------------
427 * Priority distribution structure (one category for each possible priority):
429 * +----+----+----+ ... +-----+
430 * hist: | F0 | F1 | F2 | | F31 |
431 * +----+----+----+ ... +-----+
432 * mask: | b0 | b1 | b2 | | b31 |
433 * +----+----+----+ ... +-----+
435 * F = count of threads at priority category n (frequency)
436 * b = bitmask of non-zero priority categories (occupancy)
442 *---------------------------------------------------------------------------
443 * Basic priority inheritance priotocol (PIP):
445 * Mn = mutex n, Tn = thread n
447 * A lower priority thread inherits the priority of the highest priority
448 * thread blocked waiting for it to complete an action (such as release a
449 * mutex or respond to a message via queue_send):
453 * T1 owns M1, T2 is waiting for M1 to realease M1. If T2 has a higher
454 * priority than T1 then T1 inherits the priority of T2.
460 * Situation is like 1) but T2 and T3 are both queued waiting for M1 and so
461 * T1 inherits the higher of T2 and T3.
463 * 3) T3->M2->T2->M1->T1
465 * T1 owns M1, T2 owns M2. If T3 has a higher priority than both T1 and T2,
466 * then T1 inherits the priority of T3 through T2.
468 * Blocking chains can grow arbitrarily complex (though it's best that they
469 * not form at all very often :) and build-up from these units.
470 *---------------------------------------------------------------------------
473 /*---------------------------------------------------------------------------
474 * Increment frequency at category "priority"
475 *---------------------------------------------------------------------------
477 static inline unsigned int prio_add_entry(
478 struct priority_distribution
*pd
, int priority
)
481 /* Enough size/instruction count difference for ARM makes it worth it to
482 * use different code (192 bytes for ARM). Only thing better is ASM. */
484 count
= pd
->hist
[priority
];
486 pd
->mask
|= 1 << priority
;
487 pd
->hist
[priority
] = count
;
488 #else /* This one's better for Coldfire */
489 if ((count
= ++pd
->hist
[priority
]) == 1)
490 pd
->mask
|= 1 << priority
;
496 /*---------------------------------------------------------------------------
497 * Decrement frequency at category "priority"
498 *---------------------------------------------------------------------------
500 static inline unsigned int prio_subtract_entry(
501 struct priority_distribution
*pd
, int priority
)
506 count
= pd
->hist
[priority
];
508 pd
->mask
&= ~(1 << priority
);
509 pd
->hist
[priority
] = count
;
511 if ((count
= --pd
->hist
[priority
]) == 0)
512 pd
->mask
&= ~(1 << priority
);
518 /*---------------------------------------------------------------------------
519 * Remove from one category and add to another
520 *---------------------------------------------------------------------------
522 static inline void prio_move_entry(
523 struct priority_distribution
*pd
, int from
, int to
)
525 uint32_t mask
= pd
->mask
;
530 count
= pd
->hist
[from
];
532 mask
&= ~(1 << from
);
533 pd
->hist
[from
] = count
;
535 count
= pd
->hist
[to
];
538 pd
->hist
[to
] = count
;
540 if (--pd
->hist
[from
] == 0)
541 mask
&= ~(1 << from
);
543 if (++pd
->hist
[to
] == 1)
550 /*---------------------------------------------------------------------------
551 * Change the priority and rtr entry for a running thread
552 *---------------------------------------------------------------------------
554 static inline void set_running_thread_priority(
555 struct thread_entry
*thread
, int priority
)
557 const unsigned int core
= IF_COP_CORE(thread
->core
);
559 rtr_move_entry(core
, thread
->priority
, priority
);
560 thread
->priority
= priority
;
564 /*---------------------------------------------------------------------------
565 * Finds the highest priority thread in a list of threads. If the list is
566 * empty, the PRIORITY_IDLE is returned.
568 * It is possible to use the struct priority_distribution within an object
569 * instead of scanning the remaining threads in the list but as a compromise,
570 * the resulting per-object memory overhead is saved at a slight speed
571 * penalty under high contention.
572 *---------------------------------------------------------------------------
574 static int find_highest_priority_in_list_l(
575 struct thread_entry
* const thread
)
577 if (LIKELY(thread
!= NULL
))
579 /* Go though list until the ending up at the initial thread */
580 int highest_priority
= thread
->priority
;
581 struct thread_entry
*curr
= thread
;
585 int priority
= curr
->priority
;
587 if (priority
< highest_priority
)
588 highest_priority
= priority
;
592 while (curr
!= thread
);
594 return highest_priority
;
597 return PRIORITY_IDLE
;
600 /*---------------------------------------------------------------------------
601 * Register priority with blocking system and bubble it down the chain if
602 * any until we reach the end or something is already equal or higher.
604 * NOTE: A simultaneous circular wait could spin deadlock on multiprocessor
605 * targets but that same action also guarantees a circular block anyway and
606 * those are prevented, right? :-)
607 *---------------------------------------------------------------------------
609 static struct thread_entry
*
610 blocker_inherit_priority(struct thread_entry
*current
)
612 const int priority
= current
->priority
;
613 struct blocker
*bl
= current
->blocker
;
614 struct thread_entry
* const tstart
= current
;
615 struct thread_entry
*bl_t
= bl
->thread
;
617 /* Blocker cannot change since the object protection is held */
622 struct thread_entry
*next
;
623 int bl_pr
= bl
->priority
;
625 if (priority
>= bl_pr
)
626 break; /* Object priority already high enough */
628 bl
->priority
= priority
;
631 prio_add_entry(&bl_t
->pdist
, priority
);
633 if (bl_pr
< PRIORITY_IDLE
)
635 /* Not first waiter - subtract old one */
636 prio_subtract_entry(&bl_t
->pdist
, bl_pr
);
639 if (priority
>= bl_t
->priority
)
640 break; /* Thread priority high enough */
642 if (bl_t
->state
== STATE_RUNNING
)
644 /* Blocking thread is a running thread therefore there are no
645 * further blockers. Change the "run queue" on which it
647 set_running_thread_priority(bl_t
, priority
);
651 bl_t
->priority
= priority
;
653 /* If blocking thread has a blocker, apply transitive inheritance */
657 break; /* End of chain or object doesn't support inheritance */
661 if (UNLIKELY(next
== tstart
))
662 break; /* Full-circle - deadlock! */
664 UNLOCK_THREAD(current
);
671 /* Blocker could change - retest condition */
672 if (LIKELY(bl
->thread
== next
))
688 /*---------------------------------------------------------------------------
689 * Readjust priorities when waking a thread blocked waiting for another
690 * in essence "releasing" the thread's effect on the object owner. Can be
691 * performed from any context.
692 *---------------------------------------------------------------------------
694 struct thread_entry
*
695 wakeup_priority_protocol_release(struct thread_entry
*thread
)
697 const int priority
= thread
->priority
;
698 struct blocker
*bl
= thread
->blocker
;
699 struct thread_entry
* const tstart
= thread
;
700 struct thread_entry
*bl_t
= bl
->thread
;
702 /* Blocker cannot change since object will be locked */
705 thread
->blocker
= NULL
; /* Thread not blocked */
709 struct thread_entry
*next
;
710 int bl_pr
= bl
->priority
;
712 if (priority
> bl_pr
)
713 break; /* Object priority higher */
719 /* No more threads in queue */
720 prio_subtract_entry(&bl_t
->pdist
, bl_pr
);
721 bl
->priority
= PRIORITY_IDLE
;
725 /* Check list for highest remaining priority */
726 int queue_pr
= find_highest_priority_in_list_l(next
);
728 if (queue_pr
== bl_pr
)
729 break; /* Object priority not changing */
731 /* Change queue priority */
732 prio_move_entry(&bl_t
->pdist
, bl_pr
, queue_pr
);
733 bl
->priority
= queue_pr
;
736 if (bl_pr
> bl_t
->priority
)
737 break; /* thread priority is higher */
739 bl_pr
= find_first_set_bit(bl_t
->pdist
.mask
);
741 if (bl_pr
== bl_t
->priority
)
742 break; /* Thread priority not changing */
744 if (bl_t
->state
== STATE_RUNNING
)
746 /* No further blockers */
747 set_running_thread_priority(bl_t
, bl_pr
);
751 bl_t
->priority
= bl_pr
;
753 /* If blocking thread has a blocker, apply transitive inheritance */
757 break; /* End of chain or object doesn't support inheritance */
761 if (UNLIKELY(next
== tstart
))
762 break; /* Full-circle - deadlock! */
764 UNLOCK_THREAD(thread
);
771 /* Blocker could change - retest condition */
772 if (LIKELY(bl
->thread
== next
))
786 if (UNLIKELY(thread
!= tstart
))
788 /* Relock original if it changed */
793 return cores
[CURRENT_CORE
].running
;
796 /*---------------------------------------------------------------------------
797 * Transfer ownership to a thread waiting for an objects and transfer
798 * inherited priority boost from other waiters. This algorithm knows that
799 * blocking chains may only unblock from the very end.
801 * Only the owning thread itself may call this and so the assumption that
802 * it is the running thread is made.
803 *---------------------------------------------------------------------------
805 struct thread_entry
*
806 wakeup_priority_protocol_transfer(struct thread_entry
*thread
)
808 /* Waking thread inherits priority boost from object owner */
809 struct blocker
*bl
= thread
->blocker
;
810 struct thread_entry
*bl_t
= bl
->thread
;
811 struct thread_entry
*next
;
814 THREAD_ASSERT(cores
[CURRENT_CORE
].running
== bl_t
,
815 "UPPT->wrong thread", cores
[CURRENT_CORE
].running
);
819 bl_pr
= bl
->priority
;
821 /* Remove the object's boost from the owning thread */
822 if (prio_subtract_entry(&bl_t
->pdist
, bl_pr
) == 0 &&
823 bl_pr
<= bl_t
->priority
)
825 /* No more threads at this priority are waiting and the old level is
826 * at least the thread level */
827 int priority
= find_first_set_bit(bl_t
->pdist
.mask
);
829 if (priority
!= bl_t
->priority
)
831 /* Adjust this thread's priority */
832 set_running_thread_priority(bl_t
, priority
);
838 if (LIKELY(next
== NULL
))
840 /* Expected shortcut - no more waiters */
841 bl_pr
= PRIORITY_IDLE
;
845 if (thread
->priority
<= bl_pr
)
847 /* Need to scan threads remaining in queue */
848 bl_pr
= find_highest_priority_in_list_l(next
);
851 if (prio_add_entry(&thread
->pdist
, bl_pr
) == 1 &&
852 bl_pr
< thread
->priority
)
854 /* Thread priority must be raised */
855 thread
->priority
= bl_pr
;
859 bl
->thread
= thread
; /* This thread pwns */
860 bl
->priority
= bl_pr
; /* Save highest blocked priority */
861 thread
->blocker
= NULL
; /* Thread not blocked */
868 /*---------------------------------------------------------------------------
869 * No threads must be blocked waiting for this thread except for it to exit.
870 * The alternative is more elaborate cleanup and object registration code.
871 * Check this for risk of silent data corruption when objects with
872 * inheritable blocking are abandoned by the owner - not precise but may
874 *---------------------------------------------------------------------------
876 static void __attribute__((noinline
)) check_for_obj_waiters(
877 const char *function
, struct thread_entry
*thread
)
879 /* Only one bit in the mask should be set with a frequency on 1 which
880 * represents the thread's own base priority */
881 uint32_t mask
= thread
->pdist
.mask
;
882 if ((mask
& (mask
- 1)) != 0 ||
883 thread
->pdist
.hist
[find_first_set_bit(mask
)] > 1)
885 unsigned char name
[32];
886 thread_get_name(name
, 32, thread
);
887 panicf("%s->%s with obj. waiters", function
, name
);
890 #endif /* HAVE_PRIORITY_SCHEDULING */
892 /*---------------------------------------------------------------------------
893 * Move a thread back to a running state on its core.
894 *---------------------------------------------------------------------------
896 static void core_schedule_wakeup(struct thread_entry
*thread
)
898 const unsigned int core
= IF_COP_CORE(thread
->core
);
902 thread
->state
= STATE_RUNNING
;
904 add_to_list_l(&cores
[core
].running
, thread
);
905 rtr_add_entry(core
, thread
->priority
);
910 if (core
!= CURRENT_CORE
)
915 /*---------------------------------------------------------------------------
916 * Check the core's timeout list when at least one thread is due to wake.
917 * Filtering for the condition is done before making the call. Resets the
918 * tick when the next check will occur.
919 *---------------------------------------------------------------------------
921 void check_tmo_threads(void)
923 const unsigned int core
= CURRENT_CORE
;
924 const long tick
= current_tick
; /* snapshot the current tick */
925 long next_tmo_check
= tick
+ 60*HZ
; /* minimum duration: once/minute */
926 struct thread_entry
*next
= cores
[core
].timeout
;
928 /* If there are no processes waiting for a timeout, just keep the check
929 tick from falling into the past. */
931 /* Break the loop once we have walked through the list of all
932 * sleeping processes or have removed them all. */
935 /* Check sleeping threads. Allow interrupts between checks. */
938 struct thread_entry
*curr
= next
;
940 next
= curr
->tmo
.next
;
942 /* Lock thread slot against explicit wakeup */
946 unsigned state
= curr
->state
;
948 if (state
< TIMEOUT_STATE_FIRST
)
950 /* Cleanup threads no longer on a timeout but still on the
952 remove_from_list_tmo(curr
);
954 else if (LIKELY(TIME_BEFORE(tick
, curr
->tmo_tick
)))
956 /* Timeout still pending - this will be the usual case */
957 if (TIME_BEFORE(curr
->tmo_tick
, next_tmo_check
))
959 /* Earliest timeout found so far - move the next check up
961 next_tmo_check
= curr
->tmo_tick
;
966 /* Sleep timeout has been reached so bring the thread back to
968 if (state
== STATE_BLOCKED_W_TMO
)
970 #ifdef HAVE_CORELOCK_OBJECT
971 /* Lock the waiting thread's kernel object */
972 struct corelock
*ocl
= curr
->obj_cl
;
974 if (UNLIKELY(corelock_try_lock(ocl
) == 0))
976 /* Need to retry in the correct order though the need is
982 if (UNLIKELY(curr
->state
!= STATE_BLOCKED_W_TMO
))
984 /* Thread was woken or removed explicitely while slot
986 corelock_unlock(ocl
);
987 remove_from_list_tmo(curr
);
992 #endif /* NUM_CORES */
994 remove_from_list_l(curr
->bqp
, curr
);
996 #ifdef HAVE_WAKEUP_EXT_CB
997 if (curr
->wakeup_ext_cb
!= NULL
)
998 curr
->wakeup_ext_cb(curr
);
1001 #ifdef HAVE_PRIORITY_SCHEDULING
1002 if (curr
->blocker
!= NULL
)
1003 wakeup_priority_protocol_release(curr
);
1005 corelock_unlock(ocl
);
1007 /* else state == STATE_SLEEPING */
1009 remove_from_list_tmo(curr
);
1013 curr
->state
= STATE_RUNNING
;
1015 add_to_list_l(&cores
[core
].running
, curr
);
1016 rtr_add_entry(core
, curr
->priority
);
1021 UNLOCK_THREAD(curr
);
1024 cores
[core
].next_tmo_check
= next_tmo_check
;
1027 /*---------------------------------------------------------------------------
1028 * Performs operations that must be done before blocking a thread but after
1029 * the state is saved.
1030 *---------------------------------------------------------------------------
1033 static inline void run_blocking_ops(
1034 unsigned int core
, struct thread_entry
*thread
)
1036 struct thread_blk_ops
*ops
= &cores
[core
].blk_ops
;
1037 const unsigned flags
= ops
->flags
;
1039 if (LIKELY(flags
== TBOP_CLEAR
))
1044 case TBOP_SWITCH_CORE
:
1045 core_switch_blk_op(core
, thread
);
1047 case TBOP_UNLOCK_CORELOCK
:
1048 corelock_unlock(ops
->cl_p
);
1052 ops
->flags
= TBOP_CLEAR
;
1054 #endif /* NUM_CORES > 1 */
1057 void profile_thread(void)
1059 profstart(cores
[CURRENT_CORE
].running
- threads
);
1063 /*---------------------------------------------------------------------------
1064 * Prepares a thread to block on an object's list and/or for a specified
1065 * duration - expects object and slot to be appropriately locked if needed
1066 * and interrupts to be masked.
1067 *---------------------------------------------------------------------------
1069 static inline void block_thread_on_l(struct thread_entry
*thread
,
1072 /* If inlined, unreachable branches will be pruned with no size penalty
1073 because state is passed as a constant parameter. */
1074 const unsigned int core
= IF_COP_CORE(thread
->core
);
1076 /* Remove the thread from the list of running threads. */
1078 remove_from_list_l(&cores
[core
].running
, thread
);
1079 rtr_subtract_entry(core
, thread
->priority
);
1082 /* Add a timeout to the block if not infinite */
1086 case STATE_BLOCKED_W_TMO
:
1087 /* Put the thread into a new list of inactive threads. */
1088 add_to_list_l(thread
->bqp
, thread
);
1090 if (state
== STATE_BLOCKED
)
1094 case STATE_SLEEPING
:
1095 /* If this thread times out sooner than any other thread, update
1096 next_tmo_check to its timeout */
1097 if (TIME_BEFORE(thread
->tmo_tick
, cores
[core
].next_tmo_check
))
1099 cores
[core
].next_tmo_check
= thread
->tmo_tick
;
1102 if (thread
->tmo
.prev
== NULL
)
1104 add_to_list_tmo(thread
);
1106 /* else thread was never removed from list - just keep it there */
1110 /* Remember the the next thread about to block. */
1111 cores
[core
].block_task
= thread
;
1113 /* Report new state. */
1114 thread
->state
= state
;
1117 /*---------------------------------------------------------------------------
1118 * Switch thread in round robin fashion for any given priority. Any thread
1119 * that removed itself from the running list first must specify itself in
1122 * INTERNAL: Intended for use by kernel and not for programs.
1123 *---------------------------------------------------------------------------
1125 void switch_thread(void)
1128 const unsigned int core
= CURRENT_CORE
;
1129 struct thread_entry
*block
= cores
[core
].block_task
;
1130 struct thread_entry
*thread
= cores
[core
].running
;
1132 /* Get context to save - next thread to run is unknown until all wakeups
1136 cores
[core
].block_task
= NULL
;
1139 if (UNLIKELY(thread
== block
))
1141 /* This was the last thread running and another core woke us before
1142 * reaching here. Force next thread selection to give tmo threads or
1143 * other threads woken before this block a first chance. */
1149 /* Blocking task is the old one */
1156 _profile_thread_stopped(thread
->id
& THREAD_ID_SLOT_MASK
);
1158 profile_thread_stopped(thread
->id
& THREAD_ID_SLOT_MASK
);
1162 /* Begin task switching by saving our current context so that we can
1163 * restore the state of the current thread later to the point prior
1165 store_context(&thread
->context
);
1167 /* Check if the current thread stack is overflown */
1168 if (UNLIKELY(thread
->stack
[0] != DEADBEEF
) && thread
->stack_size
> 0)
1169 thread_stkov(thread
);
1171 #ifdef BUFFER_ALLOC_DEBUG
1172 /* Check if the current thread just did bad things with buffer_alloc()ed
1175 static char name
[32];
1176 thread_get_name(name
, 32, thread
);
1177 buffer_alloc_check(name
);
1182 /* Run any blocking operations requested before switching/sleeping */
1183 run_blocking_ops(core
, thread
);
1186 #ifdef HAVE_PRIORITY_SCHEDULING
1187 IF_NO_SKIP_YIELD( if (thread
->skip_count
!= -1) )
1188 /* Reset the value of thread's skip count */
1189 thread
->skip_count
= 0;
1194 /* If there are threads on a timeout and the earliest wakeup is due,
1195 * check the list and wake any threads that need to start running
1197 if (!TIME_BEFORE(current_tick
, cores
[core
].next_tmo_check
))
1199 check_tmo_threads();
1205 thread
= cores
[core
].running
;
1207 if (UNLIKELY(thread
== NULL
))
1209 /* Enter sleep mode to reduce power usage - woken up on interrupt
1210 * or wakeup request from another core - expected to enable
1213 core_sleep(IF_COP(core
));
1217 #ifdef HAVE_PRIORITY_SCHEDULING
1218 /* Select the new task based on priorities and the last time a
1219 * process got CPU time relative to the highest priority runnable
1221 struct priority_distribution
*pd
= &cores
[core
].rtr
;
1222 int max
= find_first_set_bit(pd
->mask
);
1226 /* Not switching on a block, tentatively select next thread */
1227 thread
= thread
->l
.next
;
1232 int priority
= thread
->priority
;
1235 /* This ridiculously simple method of aging seems to work
1236 * suspiciously well. It does tend to reward CPU hogs (under
1237 * yielding) but that's generally not desirable at all. On
1238 * the plus side, it, relatively to other threads, penalizes
1239 * excess yielding which is good if some high priority thread
1240 * is performing no useful work such as polling for a device
1241 * to be ready. Of course, aging is only employed when higher
1242 * and lower priority threads are runnable. The highest
1243 * priority runnable thread(s) are never skipped unless a
1244 * lower-priority process has aged sufficiently. Priorities
1245 * of REALTIME class are run strictly according to priority
1246 * thus are not subject to switchout due to lower-priority
1247 * processes aging; they must give up the processor by going
1248 * off the run list. */
1249 if (LIKELY(priority
<= max
) ||
1250 IF_NO_SKIP_YIELD( thread
->skip_count
== -1 || )
1251 (priority
> PRIORITY_REALTIME
&&
1252 (diff
= priority
- max
,
1253 ++thread
->skip_count
> diff
*diff
)))
1255 cores
[core
].running
= thread
;
1259 thread
= thread
->l
.next
;
1262 /* Without priority use a simple FCFS algorithm */
1265 /* Not switching on a block, select next thread */
1266 thread
= thread
->l
.next
;
1267 cores
[core
].running
= thread
;
1269 #endif /* HAVE_PRIORITY_SCHEDULING */
1277 /* And finally give control to the next thread. */
1278 load_context(&thread
->context
);
1281 profile_thread_started(thread
->id
& THREAD_ID_SLOT_MASK
);
1286 /*---------------------------------------------------------------------------
1287 * Sleeps a thread for at least a specified number of ticks with zero being
1288 * a wait until the next tick.
1290 * INTERNAL: Intended for use by kernel and not for programs.
1291 *---------------------------------------------------------------------------
1293 void sleep_thread(int ticks
)
1295 struct thread_entry
*current
= cores
[CURRENT_CORE
].running
;
1297 LOCK_THREAD(current
);
1299 /* Set our timeout, remove from run list and join timeout list. */
1300 current
->tmo_tick
= current_tick
+ ticks
+ 1;
1301 block_thread_on_l(current
, STATE_SLEEPING
);
1303 UNLOCK_THREAD(current
);
1306 /*---------------------------------------------------------------------------
1307 * Indefinitely block a thread on a blocking queue for explicit wakeup.
1309 * INTERNAL: Intended for use by kernel objects and not for programs.
1310 *---------------------------------------------------------------------------
1312 void block_thread(struct thread_entry
*current
)
1314 /* Set the state to blocked and take us off of the run queue until we
1315 * are explicitly woken */
1316 LOCK_THREAD(current
);
1318 /* Set the list for explicit wakeup */
1319 block_thread_on_l(current
, STATE_BLOCKED
);
1321 #ifdef HAVE_PRIORITY_SCHEDULING
1322 if (current
->blocker
!= NULL
)
1324 /* Object supports PIP */
1325 current
= blocker_inherit_priority(current
);
1329 UNLOCK_THREAD(current
);
1332 /*---------------------------------------------------------------------------
1333 * Block a thread on a blocking queue for a specified time interval or until
1334 * explicitly woken - whichever happens first.
1336 * INTERNAL: Intended for use by kernel objects and not for programs.
1337 *---------------------------------------------------------------------------
1339 void block_thread_w_tmo(struct thread_entry
*current
, int timeout
)
1341 /* Get the entry for the current running thread. */
1342 LOCK_THREAD(current
);
1344 /* Set the state to blocked with the specified timeout */
1345 current
->tmo_tick
= current_tick
+ timeout
;
1347 /* Set the list for explicit wakeup */
1348 block_thread_on_l(current
, STATE_BLOCKED_W_TMO
);
1350 #ifdef HAVE_PRIORITY_SCHEDULING
1351 if (current
->blocker
!= NULL
)
1353 /* Object supports PIP */
1354 current
= blocker_inherit_priority(current
);
1358 UNLOCK_THREAD(current
);
1361 /*---------------------------------------------------------------------------
1362 * Explicitly wakeup a thread on a blocking queue. Only effects threads of
1363 * STATE_BLOCKED and STATE_BLOCKED_W_TMO.
1365 * This code should be considered a critical section by the caller meaning
1366 * that the object's corelock should be held.
1368 * INTERNAL: Intended for use by kernel objects and not for programs.
1369 *---------------------------------------------------------------------------
1371 unsigned int wakeup_thread(struct thread_entry
**list
)
1373 struct thread_entry
*thread
= *list
;
1374 unsigned int result
= THREAD_NONE
;
1376 /* Check if there is a blocked thread at all. */
1380 LOCK_THREAD(thread
);
1382 /* Determine thread's current state. */
1383 switch (thread
->state
)
1386 case STATE_BLOCKED_W_TMO
:
1387 remove_from_list_l(list
, thread
);
1391 #ifdef HAVE_PRIORITY_SCHEDULING
1392 struct thread_entry
*current
;
1393 struct blocker
*bl
= thread
->blocker
;
1397 /* No inheritance - just boost the thread by aging */
1398 IF_NO_SKIP_YIELD( if (thread
->skip_count
!= -1) )
1399 thread
->skip_count
= thread
->priority
;
1400 current
= cores
[CURRENT_CORE
].running
;
1404 /* Call the specified unblocking PIP */
1405 current
= bl
->wakeup_protocol(thread
);
1408 if (current
!= NULL
&&
1409 find_first_set_bit(cores
[IF_COP_CORE(current
->core
)].rtr
.mask
)
1410 < current
->priority
)
1412 /* There is a thread ready to run of higher or same priority on
1413 * the same core as the current one; recommend a task switch.
1414 * Knowing if this is an interrupt call would be helpful here. */
1415 result
|= THREAD_SWITCH
;
1417 #endif /* HAVE_PRIORITY_SCHEDULING */
1419 core_schedule_wakeup(thread
);
1422 /* Nothing to do. State is not blocked. */
1423 #if THREAD_EXTRA_CHECKS
1425 THREAD_PANICF("wakeup_thread->block invalid", thread
);
1432 UNLOCK_THREAD(thread
);
1436 /*---------------------------------------------------------------------------
1437 * Wakeup an entire queue of threads - returns bitwise-or of return bitmask
1438 * from each operation or THREAD_NONE of nothing was awakened. Object owning
1439 * the queue must be locked first.
1441 * INTERNAL: Intended for use by kernel objects and not for programs.
1442 *---------------------------------------------------------------------------
1444 unsigned int thread_queue_wake(struct thread_entry
**list
)
1446 unsigned result
= THREAD_NONE
;
1450 unsigned int rc
= wakeup_thread(list
);
1452 if (rc
== THREAD_NONE
)
1453 break; /* No more threads */
1461 /*---------------------------------------------------------------------------
1462 * Assign the thread slot a new ID. Version is 1-255.
1463 *---------------------------------------------------------------------------
1465 static void new_thread_id(unsigned int slot_num
,
1466 struct thread_entry
*thread
)
1468 unsigned int version
=
1469 (thread
->id
+ (1u << THREAD_ID_VERSION_SHIFT
))
1470 & THREAD_ID_VERSION_MASK
;
1472 /* If wrapped to 0, make it 1 */
1474 version
= 1u << THREAD_ID_VERSION_SHIFT
;
1476 thread
->id
= version
| (slot_num
& THREAD_ID_SLOT_MASK
);
1479 /*---------------------------------------------------------------------------
1480 * Find an empty thread slot or MAXTHREADS if none found. The slot returned
1481 * will be locked on multicore.
1482 *---------------------------------------------------------------------------
1484 static struct thread_entry
* find_empty_thread_slot(void)
1486 /* Any slot could be on an interrupt-accessible list */
1487 IF_COP( int oldlevel
= disable_irq_save(); )
1488 struct thread_entry
*thread
= NULL
;
1491 for (n
= 0; n
< MAXTHREADS
; n
++)
1493 /* Obtain current slot state - lock it on multicore */
1494 struct thread_entry
*t
= &threads
[n
];
1497 if (t
->state
== STATE_KILLED
IF_COP( && t
->name
!= THREAD_DESTRUCT
))
1499 /* Slot is empty - leave it locked and caller will unlock */
1504 /* Finished examining slot - no longer busy - unlock on multicore */
1508 IF_COP( restore_irq(oldlevel
); ) /* Reenable interrups - this slot is
1509 not accesible to them yet */
1513 /*---------------------------------------------------------------------------
1514 * Return the thread_entry pointer for a thread_id. Return the current
1515 * thread if the ID is (unsigned int)-1 (alias for current).
1516 *---------------------------------------------------------------------------
1518 struct thread_entry
* thread_id_entry(unsigned int thread_id
)
1520 return &threads
[thread_id
& THREAD_ID_SLOT_MASK
];
1523 /*---------------------------------------------------------------------------
1524 * Return the thread id of the calling thread
1525 * --------------------------------------------------------------------------
1527 unsigned int thread_self(void)
1529 return cores
[CURRENT_CORE
].running
->id
;
1532 /*---------------------------------------------------------------------------
1533 * Return the thread entry of the calling thread.
1535 * INTERNAL: Intended for use by kernel and not for programs.
1536 *---------------------------------------------------------------------------
1538 struct thread_entry
* thread_self_entry(void)
1540 return cores
[CURRENT_CORE
].running
;
1543 /*---------------------------------------------------------------------------
1544 * Place the current core in idle mode - woken up on interrupt or wake
1545 * request from another core.
1546 *---------------------------------------------------------------------------
1548 void core_idle(void)
1550 IF_COP( const unsigned int core
= CURRENT_CORE
; )
1552 core_sleep(IF_COP(core
));
1555 /*---------------------------------------------------------------------------
1556 * Create a thread. If using a dual core architecture, specify which core to
1557 * start the thread on.
1559 * Return ID if context area could be allocated, else NULL.
1560 *---------------------------------------------------------------------------
1562 unsigned int create_thread(void (*function
)(void),
1563 void* stack
, size_t stack_size
,
1564 unsigned flags
, const char *name
1565 IF_PRIO(, int priority
)
1566 IF_COP(, unsigned int core
))
1569 unsigned int stack_words
;
1570 uintptr_t stackptr
, stackend
;
1571 struct thread_entry
*thread
;
1575 thread
= find_empty_thread_slot();
1581 oldlevel
= disable_irq_save();
1583 /* Munge the stack to make it easy to spot stack overflows */
1584 stackptr
= ALIGN_UP((uintptr_t)stack
, sizeof (uintptr_t));
1585 stackend
= ALIGN_DOWN((uintptr_t)stack
+ stack_size
, sizeof (uintptr_t));
1586 stack_size
= stackend
- stackptr
;
1587 stack_words
= stack_size
/ sizeof (uintptr_t);
1589 for (i
= 0; i
< stack_words
; i
++)
1591 ((uintptr_t *)stackptr
)[i
] = DEADBEEF
;
1594 /* Store interesting information */
1595 thread
->name
= name
;
1596 thread
->stack
= (uintptr_t *)stackptr
;
1597 thread
->stack_size
= stack_size
;
1598 thread
->queue
= NULL
;
1599 #ifdef HAVE_WAKEUP_EXT_CB
1600 thread
->wakeup_ext_cb
= NULL
;
1602 #ifdef HAVE_SCHEDULER_BOOSTCTRL
1603 thread
->cpu_boost
= 0;
1605 #ifdef HAVE_PRIORITY_SCHEDULING
1606 memset(&thread
->pdist
, 0, sizeof(thread
->pdist
));
1607 thread
->blocker
= NULL
;
1608 thread
->base_priority
= priority
;
1609 thread
->priority
= priority
;
1610 thread
->skip_count
= priority
;
1611 prio_add_entry(&thread
->pdist
, priority
);
1614 #ifdef HAVE_IO_PRIORITY
1615 /* Default to high (foreground) priority */
1616 thread
->io_priority
= IO_PRIORITY_IMMEDIATE
;
1620 thread
->core
= core
;
1622 /* Writeback stack munging or anything else before starting */
1623 if (core
!= CURRENT_CORE
)
1629 /* Thread is not on any timeout list but be a bit paranoid */
1630 thread
->tmo
.prev
= NULL
;
1632 state
= (flags
& CREATE_THREAD_FROZEN
) ?
1633 STATE_FROZEN
: STATE_RUNNING
;
1635 thread
->context
.sp
= (typeof (thread
->context
.sp
))stackend
;
1637 /* Load the thread's context structure with needed startup information */
1638 THREAD_STARTUP_INIT(core
, thread
, function
);
1640 thread
->state
= state
;
1641 i
= thread
->id
; /* Snapshot while locked */
1643 if (state
== STATE_RUNNING
)
1644 core_schedule_wakeup(thread
);
1646 UNLOCK_THREAD(thread
);
1647 restore_irq(oldlevel
);
1652 #ifdef HAVE_SCHEDULER_BOOSTCTRL
1653 /*---------------------------------------------------------------------------
1654 * Change the boost state of a thread boosting or unboosting the CPU
1656 *---------------------------------------------------------------------------
1658 static inline void boost_thread(struct thread_entry
*thread
, bool boost
)
1660 if ((thread
->cpu_boost
!= 0) != boost
)
1662 thread
->cpu_boost
= boost
;
1667 void trigger_cpu_boost(void)
1669 struct thread_entry
*current
= cores
[CURRENT_CORE
].running
;
1670 boost_thread(current
, true);
1673 void cancel_cpu_boost(void)
1675 struct thread_entry
*current
= cores
[CURRENT_CORE
].running
;
1676 boost_thread(current
, false);
1678 #endif /* HAVE_SCHEDULER_BOOSTCTRL */
1680 /*---------------------------------------------------------------------------
1681 * Block the current thread until another thread terminates. A thread may
1682 * wait on itself to terminate which prevents it from running again and it
1683 * will need to be killed externally.
1684 * Parameter is the ID as returned from create_thread().
1685 *---------------------------------------------------------------------------
1687 void thread_wait(unsigned int thread_id
)
1689 struct thread_entry
*current
= cores
[CURRENT_CORE
].running
;
1690 struct thread_entry
*thread
= thread_id_entry(thread_id
);
1692 /* Lock thread-as-waitable-object lock */
1693 corelock_lock(&thread
->waiter_cl
);
1695 /* Be sure it hasn't been killed yet */
1696 if (thread
->id
== thread_id
&& thread
->state
!= STATE_KILLED
)
1698 IF_COP( current
->obj_cl
= &thread
->waiter_cl
; )
1699 current
->bqp
= &thread
->queue
;
1702 block_thread(current
);
1704 corelock_unlock(&thread
->waiter_cl
);
1710 corelock_unlock(&thread
->waiter_cl
);
1713 /*---------------------------------------------------------------------------
1714 * Exit the current thread. The Right Way to Do Things (TM).
1715 *---------------------------------------------------------------------------
1717 /* This is done to foil optimizations that may require the current stack,
1718 * such as optimizing subexpressions that put variables on the stack that
1719 * get used after switching stacks. */
1721 /* Called by ASM stub */
1722 static void thread_final_exit_do(struct thread_entry
*current
)
1724 /* No special procedure is required before calling */
1725 static inline void thread_final_exit(struct thread_entry
*current
)
1728 /* At this point, this thread isn't using resources allocated for
1729 * execution except the slot itself. */
1731 /* Signal this thread */
1732 thread_queue_wake(¤t
->queue
);
1733 corelock_unlock(¤t
->waiter_cl
);
1735 /* This should never and must never be reached - if it is, the
1736 * state is corrupted */
1737 THREAD_PANICF("thread_exit->K:*R", current
);
1741 void thread_exit(void)
1743 register struct thread_entry
* current
= cores
[CURRENT_CORE
].running
;
1745 /* Cancel CPU boost if any */
1750 corelock_lock(¤t
->waiter_cl
);
1751 LOCK_THREAD(current
);
1753 #if defined (ALLOW_REMOVE_THREAD) && NUM_CORES > 1
1754 if (current
->name
== THREAD_DESTRUCT
)
1756 /* Thread being killed - become a waiter */
1757 unsigned int id
= current
->id
;
1758 UNLOCK_THREAD(current
);
1759 corelock_unlock(¤t
->waiter_cl
);
1761 THREAD_PANICF("thread_exit->WK:*R", current
);
1765 #ifdef HAVE_PRIORITY_SCHEDULING
1766 check_for_obj_waiters("thread_exit", current
);
1769 if (current
->tmo
.prev
!= NULL
)
1771 /* Cancel pending timeout list removal */
1772 remove_from_list_tmo(current
);
1775 /* Switch tasks and never return */
1776 block_thread_on_l(current
, STATE_KILLED
);
1778 /* Slot must be unusable until thread is really gone */
1779 UNLOCK_THREAD_AT_TASK_SWITCH(current
);
1781 /* Update ID for this slot */
1782 new_thread_id(current
->id
, current
);
1783 current
->name
= NULL
;
1785 /* Do final cleanup and remove the thread */
1786 thread_final_exit(current
);
1789 #ifdef ALLOW_REMOVE_THREAD
1790 /*---------------------------------------------------------------------------
1791 * Remove a thread from the scheduler. Not The Right Way to Do Things in
1794 * Parameter is the ID as returned from create_thread().
1796 * Use with care on threads that are not under careful control as this may
1797 * leave various objects in an undefined state.
1798 *---------------------------------------------------------------------------
1800 void remove_thread(unsigned int thread_id
)
1802 #ifdef HAVE_CORELOCK_OBJECT
1803 /* core is not constant here because of core switching */
1804 unsigned int core
= CURRENT_CORE
;
1805 unsigned int old_core
= NUM_CORES
;
1806 struct corelock
*ocl
= NULL
;
1808 const unsigned int core
= CURRENT_CORE
;
1810 struct thread_entry
*current
= cores
[core
].running
;
1811 struct thread_entry
*thread
= thread_id_entry(thread_id
);
1816 if (thread
== current
)
1817 thread_exit(); /* Current thread - do normal exit */
1819 oldlevel
= disable_irq_save();
1821 corelock_lock(&thread
->waiter_cl
);
1822 LOCK_THREAD(thread
);
1824 state
= thread
->state
;
1826 if (thread
->id
!= thread_id
|| state
== STATE_KILLED
)
1830 if (thread
->name
== THREAD_DESTRUCT
)
1832 /* Thread being killed - become a waiter */
1833 UNLOCK_THREAD(thread
);
1834 corelock_unlock(&thread
->waiter_cl
);
1835 restore_irq(oldlevel
);
1836 thread_wait(thread_id
);
1840 thread
->name
= THREAD_DESTRUCT
; /* Slot can't be used for now */
1842 #ifdef HAVE_PRIORITY_SCHEDULING
1843 check_for_obj_waiters("remove_thread", thread
);
1846 if (thread
->core
!= core
)
1848 /* Switch cores and safely extract the thread there */
1849 /* Slot HAS to be unlocked or a deadlock could occur which means other
1850 * threads have to be guided into becoming thread waiters if they
1851 * attempt to remove it. */
1852 unsigned int new_core
= thread
->core
;
1854 corelock_unlock(&thread
->waiter_cl
);
1856 UNLOCK_THREAD(thread
);
1857 restore_irq(oldlevel
);
1859 old_core
= switch_core(new_core
);
1861 oldlevel
= disable_irq_save();
1863 corelock_lock(&thread
->waiter_cl
);
1864 LOCK_THREAD(thread
);
1866 state
= thread
->state
;
1868 /* Perform the extraction and switch ourselves back to the original
1871 #endif /* NUM_CORES > 1 */
1873 if (thread
->tmo
.prev
!= NULL
)
1875 /* Clean thread off the timeout list if a timeout check hasn't
1877 remove_from_list_tmo(thread
);
1880 #ifdef HAVE_SCHEDULER_BOOSTCTRL
1881 /* Cancel CPU boost if any */
1882 boost_thread(thread
, false);
1885 IF_COP( retry_state
: )
1891 /* Remove thread from ready to run tasks */
1892 remove_from_list_l(&cores
[core
].running
, thread
);
1893 rtr_subtract_entry(core
, thread
->priority
);
1897 case STATE_BLOCKED_W_TMO
:
1898 /* Remove thread from the queue it's blocked on - including its
1899 * own if waiting there */
1901 if (&thread
->waiter_cl
!= thread
->obj_cl
)
1903 ocl
= thread
->obj_cl
;
1905 if (UNLIKELY(corelock_try_lock(ocl
) == 0))
1907 UNLOCK_THREAD(thread
);
1909 LOCK_THREAD(thread
);
1911 if (UNLIKELY(thread
->state
!= state
))
1913 /* Something woke the thread */
1914 state
= thread
->state
;
1915 corelock_unlock(ocl
);
1921 remove_from_list_l(thread
->bqp
, thread
);
1923 #ifdef HAVE_WAKEUP_EXT_CB
1924 if (thread
->wakeup_ext_cb
!= NULL
)
1925 thread
->wakeup_ext_cb(thread
);
1928 #ifdef HAVE_PRIORITY_SCHEDULING
1929 if (thread
->blocker
!= NULL
)
1931 /* Remove thread's priority influence from its chain */
1932 wakeup_priority_protocol_release(thread
);
1938 corelock_unlock(ocl
);
1941 /* Otherwise thread is frozen and hasn't run yet */
1944 new_thread_id(thread_id
, thread
);
1945 thread
->state
= STATE_KILLED
;
1947 /* If thread was waiting on itself, it will have been removed above.
1948 * The wrong order would result in waking the thread first and deadlocking
1949 * since the slot is already locked. */
1950 thread_queue_wake(&thread
->queue
);
1952 thread
->name
= NULL
;
1954 thread_killed
: /* Thread was already killed */
1955 /* Removal complete - safe to unlock and reenable interrupts */
1956 corelock_unlock(&thread
->waiter_cl
);
1957 UNLOCK_THREAD(thread
);
1958 restore_irq(oldlevel
);
1961 if (old_core
< NUM_CORES
)
1963 /* Did a removal on another processor's thread - switch back to
1965 switch_core(old_core
);
1969 #endif /* ALLOW_REMOVE_THREAD */
1971 #ifdef HAVE_PRIORITY_SCHEDULING
1972 /*---------------------------------------------------------------------------
1973 * Sets the thread's relative base priority for the core it runs on. Any
1974 * needed inheritance changes also may happen.
1975 *---------------------------------------------------------------------------
1977 int thread_set_priority(unsigned int thread_id
, int priority
)
1979 int old_base_priority
= -1;
1980 struct thread_entry
*thread
= thread_id_entry(thread_id
);
1982 /* A little safety measure */
1983 if (priority
< HIGHEST_PRIORITY
|| priority
> LOWEST_PRIORITY
)
1986 /* Thread could be on any list and therefore on an interrupt accessible
1987 one - disable interrupts */
1988 int oldlevel
= disable_irq_save();
1990 LOCK_THREAD(thread
);
1992 /* Make sure it's not killed */
1993 if (thread
->id
== thread_id
&& thread
->state
!= STATE_KILLED
)
1995 int old_priority
= thread
->priority
;
1997 old_base_priority
= thread
->base_priority
;
1998 thread
->base_priority
= priority
;
2000 prio_move_entry(&thread
->pdist
, old_base_priority
, priority
);
2001 priority
= find_first_set_bit(thread
->pdist
.mask
);
2003 if (old_priority
== priority
)
2005 /* No priority change - do nothing */
2007 else if (thread
->state
== STATE_RUNNING
)
2009 /* This thread is running - change location on the run
2010 * queue. No transitive inheritance needed. */
2011 set_running_thread_priority(thread
, priority
);
2015 thread
->priority
= priority
;
2017 if (thread
->blocker
!= NULL
)
2019 /* Bubble new priority down the chain */
2020 struct blocker
*bl
= thread
->blocker
; /* Blocker struct */
2021 struct thread_entry
*bl_t
= bl
->thread
; /* Blocking thread */
2022 struct thread_entry
* const tstart
= thread
; /* Initial thread */
2023 const int highest
= MIN(priority
, old_priority
); /* Higher of new or old */
2027 struct thread_entry
*next
; /* Next thread to check */
2028 int bl_pr
; /* Highest blocked thread */
2029 int queue_pr
; /* New highest blocked thread */
2031 /* Owner can change but thread cannot be dislodged - thread
2032 * may not be the first in the queue which allows other
2033 * threads ahead in the list to be given ownership during the
2034 * operation. If thread is next then the waker will have to
2035 * wait for us and the owner of the object will remain fixed.
2036 * If we successfully grab the owner -- which at some point
2037 * is guaranteed -- then the queue remains fixed until we
2043 /* Double-check the owner - retry if it changed */
2044 if (LIKELY(bl
->thread
== bl_t
))
2047 UNLOCK_THREAD(bl_t
);
2051 bl_pr
= bl
->priority
;
2053 if (highest
> bl_pr
)
2054 break; /* Object priority won't change */
2056 /* This will include the thread being set */
2057 queue_pr
= find_highest_priority_in_list_l(*thread
->bqp
);
2059 if (queue_pr
== bl_pr
)
2060 break; /* Object priority not changing */
2062 /* Update thread boost for this object */
2063 bl
->priority
= queue_pr
;
2064 prio_move_entry(&bl_t
->pdist
, bl_pr
, queue_pr
);
2065 bl_pr
= find_first_set_bit(bl_t
->pdist
.mask
);
2067 if (bl_t
->priority
== bl_pr
)
2068 break; /* Blocking thread priority not changing */
2070 if (bl_t
->state
== STATE_RUNNING
)
2072 /* Thread not blocked - we're done */
2073 set_running_thread_priority(bl_t
, bl_pr
);
2077 bl_t
->priority
= bl_pr
;
2078 bl
= bl_t
->blocker
; /* Blocking thread has a blocker? */
2081 break; /* End of chain */
2085 if (UNLIKELY(next
== tstart
))
2086 break; /* Full-circle */
2088 UNLOCK_THREAD(thread
);
2094 UNLOCK_THREAD(bl_t
);
2099 UNLOCK_THREAD(thread
);
2101 restore_irq(oldlevel
);
2103 return old_base_priority
;
2106 /*---------------------------------------------------------------------------
2107 * Returns the current base priority for a thread.
2108 *---------------------------------------------------------------------------
2110 int thread_get_priority(unsigned int thread_id
)
2112 struct thread_entry
*thread
= thread_id_entry(thread_id
);
2113 int base_priority
= thread
->base_priority
;
2115 /* Simply check without locking slot. It may or may not be valid by the
2116 * time the function returns anyway. If all tests pass, it is the
2117 * correct value for when it was valid. */
2118 if (thread
->id
!= thread_id
|| thread
->state
== STATE_KILLED
)
2121 return base_priority
;
2123 #endif /* HAVE_PRIORITY_SCHEDULING */
2125 #ifdef HAVE_IO_PRIORITY
2126 int thread_get_io_priority(unsigned int thread_id
)
2128 struct thread_entry
*thread
= thread_id_entry(thread_id
);
2129 return thread
->io_priority
;
2132 void thread_set_io_priority(unsigned int thread_id
,int io_priority
)
2134 struct thread_entry
*thread
= thread_id_entry(thread_id
);
2135 thread
->io_priority
= io_priority
;
2139 /*---------------------------------------------------------------------------
2140 * Starts a frozen thread - similar semantics to wakeup_thread except that
2141 * the thread is on no scheduler or wakeup queue at all. It exists simply by
2142 * virtue of the slot having a state of STATE_FROZEN.
2143 *---------------------------------------------------------------------------
2145 void thread_thaw(unsigned int thread_id
)
2147 struct thread_entry
*thread
= thread_id_entry(thread_id
);
2148 int oldlevel
= disable_irq_save();
2150 LOCK_THREAD(thread
);
2152 /* If thread is the current one, it cannot be frozen, therefore
2153 * there is no need to check that. */
2154 if (thread
->id
== thread_id
&& thread
->state
== STATE_FROZEN
)
2155 core_schedule_wakeup(thread
);
2157 UNLOCK_THREAD(thread
);
2158 restore_irq(oldlevel
);
2162 /*---------------------------------------------------------------------------
2163 * Switch the processor that the currently executing thread runs on.
2164 *---------------------------------------------------------------------------
2166 unsigned int switch_core(unsigned int new_core
)
2168 const unsigned int core
= CURRENT_CORE
;
2169 struct thread_entry
*current
= cores
[core
].running
;
2171 if (core
== new_core
)
2173 /* No change - just return same core */
2177 int oldlevel
= disable_irq_save();
2178 LOCK_THREAD(current
);
2180 if (current
->name
== THREAD_DESTRUCT
)
2182 /* Thread being killed - deactivate and let process complete */
2183 unsigned int id
= current
->id
;
2184 UNLOCK_THREAD(current
);
2185 restore_irq(oldlevel
);
2187 /* Should never be reached */
2188 THREAD_PANICF("switch_core->D:*R", current
);
2191 /* Get us off the running list for the current core */
2193 remove_from_list_l(&cores
[core
].running
, current
);
2194 rtr_subtract_entry(core
, current
->priority
);
2197 /* Stash return value (old core) in a safe place */
2198 current
->retval
= core
;
2200 /* If a timeout hadn't yet been cleaned-up it must be removed now or
2201 * the other core will likely attempt a removal from the wrong list! */
2202 if (current
->tmo
.prev
!= NULL
)
2204 remove_from_list_tmo(current
);
2207 /* Change the core number for this thread slot */
2208 current
->core
= new_core
;
2210 /* Do not use core_schedule_wakeup here since this will result in
2211 * the thread starting to run on the other core before being finished on
2212 * this one. Delay the list unlock to keep the other core stuck
2213 * until this thread is ready. */
2216 rtr_add_entry(new_core
, current
->priority
);
2217 add_to_list_l(&cores
[new_core
].running
, current
);
2219 /* Make a callback into device-specific code, unlock the wakeup list so
2220 * that execution may resume on the new core, unlock our slot and finally
2221 * restore the interrupt level */
2222 cores
[core
].blk_ops
.flags
= TBOP_SWITCH_CORE
;
2223 cores
[core
].blk_ops
.cl_p
= &cores
[new_core
].rtr_cl
;
2224 cores
[core
].block_task
= current
;
2226 UNLOCK_THREAD(current
);
2228 /* Alert other core to activity */
2229 core_wake(new_core
);
2231 /* Do the stack switching, cache_maintenence and switch_thread call -
2232 requires native code */
2233 switch_thread_core(core
, current
);
2235 /* Finally return the old core to caller */
2236 return current
->retval
;
2238 #endif /* NUM_CORES > 1 */
2240 /*---------------------------------------------------------------------------
2241 * Initialize threading API. This assumes interrupts are not yet enabled. On
2242 * multicore setups, no core is allowed to proceed until create_thread calls
2243 * are safe to perform.
2244 *---------------------------------------------------------------------------
2246 void init_threads(void)
2248 const unsigned int core
= CURRENT_CORE
;
2249 struct thread_entry
*thread
;
2253 /* Initialize core locks and IDs in all slots */
2255 for (n
= 0; n
< MAXTHREADS
; n
++)
2257 thread
= &threads
[n
];
2258 corelock_init(&thread
->waiter_cl
);
2259 corelock_init(&thread
->slot_cl
);
2260 thread
->id
= THREAD_ID_INIT(n
);
2264 /* CPU will initialize first and then sleep */
2265 thread
= find_empty_thread_slot();
2269 /* WTF? There really must be a slot available at this stage.
2270 * This can fail if, for example, .bss isn't zero'ed out by the loader
2271 * or threads is in the wrong section. */
2272 THREAD_PANICF("init_threads->no slot", NULL
);
2275 /* Initialize initially non-zero members of core */
2276 cores
[core
].next_tmo_check
= current_tick
; /* Something not in the past */
2278 /* Initialize initially non-zero members of slot */
2279 UNLOCK_THREAD(thread
); /* No sync worries yet */
2280 thread
->name
= main_thread_name
;
2281 thread
->state
= STATE_RUNNING
;
2282 IF_COP( thread
->core
= core
; )
2283 #ifdef HAVE_PRIORITY_SCHEDULING
2284 corelock_init(&cores
[core
].rtr_cl
);
2285 thread
->base_priority
= PRIORITY_USER_INTERFACE
;
2286 prio_add_entry(&thread
->pdist
, PRIORITY_USER_INTERFACE
);
2287 thread
->priority
= PRIORITY_USER_INTERFACE
;
2288 rtr_add_entry(core
, PRIORITY_USER_INTERFACE
);
2291 add_to_list_l(&cores
[core
].running
, thread
);
2295 thread
->stack
= stackbegin
;
2296 thread
->stack_size
= (uintptr_t)stackend
- (uintptr_t)stackbegin
;
2297 #if NUM_CORES > 1 /* This code path will not be run on single core targets */
2298 /* Wait for other processors to finish their inits since create_thread
2299 * isn't safe to call until the kernel inits are done. The first
2300 * threads created in the system must of course be created by CPU.
2301 * Another possible approach is to initialize all cores and slots
2302 * for each core by CPU, let the remainder proceed in parallel and
2303 * signal CPU when all are finished. */
2304 core_thread_init(CPU
);
2308 /* Initial stack is the idle stack */
2309 thread
->stack
= idle_stacks
[core
];
2310 thread
->stack_size
= IDLE_STACK_SIZE
;
2311 /* After last processor completes, it should signal all others to
2312 * proceed or may signal the next and call thread_exit(). The last one
2313 * to finish will signal CPU. */
2314 core_thread_init(core
);
2315 /* Other cores do not have a main thread - go idle inside switch_thread
2316 * until a thread can run on the core. */
2318 #endif /* NUM_CORES */
2320 #ifdef INIT_MAIN_THREAD
2321 init_main_thread(&thread
->context
);
2325 /* Shared stack scan helper for thread_stack_usage and idle_stack_usage */
2327 static inline int stack_usage(uintptr_t *stackptr
, size_t stack_size
)
2329 static int stack_usage(uintptr_t *stackptr
, size_t stack_size
)
2332 unsigned int stack_words
= stack_size
/ sizeof (uintptr_t);
2336 for (i
= 0; i
< stack_words
; i
++)
2338 if (stackptr
[i
] != DEADBEEF
)
2340 usage
= ((stack_words
- i
) * 100) / stack_words
;
2348 /*---------------------------------------------------------------------------
2349 * Returns the maximum percentage of stack a thread ever used while running.
2350 * NOTE: Some large buffer allocations that don't use enough the buffer to
2351 * overwrite stackptr[0] will not be seen.
2352 *---------------------------------------------------------------------------
2354 int thread_stack_usage(const struct thread_entry
*thread
)
2356 if (LIKELY(thread
->stack_size
> 0))
2357 return stack_usage(thread
->stack
, thread
->stack_size
);
2362 /*---------------------------------------------------------------------------
2363 * Returns the maximum percentage of the core's idle stack ever used during
2365 *---------------------------------------------------------------------------
2367 int idle_stack_usage(unsigned int core
)
2369 return stack_usage(idle_stacks
[core
], IDLE_STACK_SIZE
);
2373 /*---------------------------------------------------------------------------
2374 * Fills in the buffer with the specified thread's name. If the name is NULL,
2375 * empty, or the thread is in destruct state a formatted ID is written
2377 *---------------------------------------------------------------------------
2379 void thread_get_name(char *buffer
, int size
,
2380 struct thread_entry
*thread
)
2389 /* Display thread name if one or ID if none */
2390 const char *name
= thread
->name
;
2391 const char *fmt
= "%s";
2392 if (name
== NULL
IF_COP(|| name
== THREAD_DESTRUCT
) || *name
== '\0')
2394 name
= (const char *)(uintptr_t)thread
->id
;
2397 snprintf(buffer
, size
, fmt
, name
);