Revert "Simplify codec_request_buffer_callback()"
[Rockbox.git] / firmware / kernel.c
blob006a06dfe040ed2d9e7e5a1934be78da201ec8ab
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Björn Stenberg
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 ****************************************************************************/
19 #include <stdlib.h>
20 #include <string.h>
21 #include "config.h"
22 #include "kernel.h"
23 #include "thread.h"
24 #include "cpu.h"
25 #include "system.h"
26 #include "panic.h"
27 #if CONFIG_CPU == IMX31L
28 #include "avic-imx31.h"
29 #endif
31 /* Make this nonzero to enable more elaborate checks on objects */
32 #ifdef DEBUG
33 #define KERNEL_OBJECT_CHECKS 1 /* Always 1 for DEBUG */
34 #else
35 #define KERNEL_OBJECT_CHECKS 0
36 #endif
38 #if KERNEL_OBJECT_CHECKS
39 #define KERNEL_ASSERT(exp, msg...) \
40 ({ if (!({ exp; })) panicf(msg); })
41 #else
42 #define KERNEL_ASSERT(exp, msg...) ({})
43 #endif
45 #if (!defined(CPU_PP) && (CONFIG_CPU != IMX31L)) || !defined(BOOTLOADER)
46 volatile long current_tick NOCACHEDATA_ATTR = 0;
47 #endif
49 void (*tick_funcs[MAX_NUM_TICK_TASKS])(void);
51 extern struct core_entry cores[NUM_CORES];
53 /* This array holds all queues that are initiated. It is used for broadcast. */
54 static struct
56 int count;
57 struct event_queue *queues[MAX_NUM_QUEUES];
58 #if NUM_CORES > 1
59 struct corelock cl;
60 #endif
61 } all_queues NOCACHEBSS_ATTR;
63 /****************************************************************************
64 * Standard kernel stuff
65 ****************************************************************************/
66 void kernel_init(void)
68 /* Init the threading API */
69 init_threads();
71 /* Other processors will not reach this point in a multicore build.
72 * In a single-core build with multiple cores they fall-through and
73 * sleep in cop_main without returning. */
74 if (CURRENT_CORE == CPU)
76 memset(tick_funcs, 0, sizeof(tick_funcs));
77 memset(&all_queues, 0, sizeof(all_queues));
78 corelock_init(&all_queues.cl);
79 tick_start(1000/HZ);
83 void sleep(int ticks)
85 #if CONFIG_CPU == S3C2440 && defined(BOOTLOADER)
86 volatile int counter;
87 TCON &= ~(1 << 20); // stop timer 4
88 // TODO: this constant depends on dividers settings inherited from
89 // firmware. Set them explicitly somwhere.
90 TCNTB4 = 12193 * ticks / HZ;
91 TCON |= 1 << 21; // set manual bit
92 TCON &= ~(1 << 21); // reset manual bit
93 TCON &= ~(1 << 22); //autoreload Off
94 TCON |= (1 << 20); // start timer 4
95 do {
96 counter = TCNTO4;
97 } while(counter > 0);
99 #elif defined(CPU_PP) && defined(BOOTLOADER)
100 unsigned stop = USEC_TIMER + ticks * (1000000/HZ);
101 while (TIME_BEFORE(USEC_TIMER, stop))
102 switch_thread(NULL);
103 #else
104 sleep_thread(ticks);
105 #endif
108 void yield(void)
110 #if ((CONFIG_CPU == S3C2440 || defined(ELIO_TPJ1022) || CONFIG_CPU == IMX31L) && defined(BOOTLOADER))
111 /* Some targets don't like yielding in the bootloader */
112 #else
113 switch_thread(NULL);
114 #endif
117 /****************************************************************************
118 * Queue handling stuff
119 ****************************************************************************/
121 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
122 /* Moves waiting thread's descriptor to the current sender when a
123 message is dequeued */
124 static void queue_fetch_sender(struct queue_sender_list *send,
125 unsigned int i)
127 struct thread_entry **spp = &send->senders[i];
129 if(*spp)
131 send->curr_sender = *spp;
132 *spp = NULL;
136 /* Puts the specified return value in the waiting thread's return value
137 * and wakes the thread.
138 * 1) A sender should be confirmed to exist before calling which makes it
139 * more efficent to reject the majority of cases that don't need this
140 called.
141 * 2) Requires interrupts disabled since queue overflows can cause posts
142 * from interrupt handlers to wake threads. Not doing so could cause
143 * an attempt at multiple wakes or other problems.
145 static void queue_release_sender(struct thread_entry **sender,
146 intptr_t retval)
148 (*sender)->retval = retval;
149 wakeup_thread_no_listlock(sender);
150 /* This should _never_ happen - there must never be multiple
151 threads in this list and it is a corrupt state */
152 KERNEL_ASSERT(*sender == NULL, "queue->send slot ovf: %08X", (int)*sender);
155 /* Releases any waiting threads that are queued with queue_send -
156 * reply with 0.
157 * Disable IRQs and lock before calling since it uses
158 * queue_release_sender.
160 static void queue_release_all_senders(struct event_queue *q)
162 if(q->send)
164 unsigned int i;
165 for(i = q->read; i != q->write; i++)
167 struct thread_entry **spp =
168 &q->send->senders[i & QUEUE_LENGTH_MASK];
170 if(*spp)
172 queue_release_sender(spp, 0);
178 /* Enables queue_send on the specified queue - caller allocates the extra
179 data structure. Only queues which are taken to be owned by a thread should
180 enable this. Public waiting is not permitted. */
181 void queue_enable_queue_send(struct event_queue *q,
182 struct queue_sender_list *send)
184 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
185 corelock_lock(&q->cl);
187 q->send = NULL;
188 if(send != NULL)
190 memset(send, 0, sizeof(*send));
191 q->send = send;
194 corelock_unlock(&q->cl);
195 set_irq_level(oldlevel);
197 #endif /* HAVE_EXTENDED_MESSAGING_AND_NAME */
199 /* Queue must not be available for use during this call */
200 void queue_init(struct event_queue *q, bool register_queue)
202 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
204 if(register_queue)
206 corelock_lock(&all_queues.cl);
209 corelock_init(&q->cl);
210 thread_queue_init(&q->queue);
211 q->read = 0;
212 q->write = 0;
213 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
214 q->send = NULL; /* No message sending by default */
215 #endif
217 if(register_queue)
219 if(all_queues.count >= MAX_NUM_QUEUES)
221 panicf("queue_init->out of queues");
223 /* Add it to the all_queues array */
224 all_queues.queues[all_queues.count++] = q;
225 corelock_unlock(&all_queues.cl);
228 set_irq_level(oldlevel);
231 /* Queue must not be available for use during this call */
232 void queue_delete(struct event_queue *q)
234 int oldlevel;
235 int i;
237 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
238 corelock_lock(&all_queues.cl);
239 corelock_lock(&q->cl);
241 /* Find the queue to be deleted */
242 for(i = 0;i < all_queues.count;i++)
244 if(all_queues.queues[i] == q)
246 /* Move the following queues up in the list */
247 all_queues.count--;
249 for(;i < all_queues.count;i++)
251 all_queues.queues[i] = all_queues.queues[i+1];
254 break;
258 corelock_unlock(&all_queues.cl);
260 /* Release threads waiting on queue head */
261 thread_queue_wake(&q->queue);
263 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
264 /* Release waiting threads for reply and reply to any dequeued
265 message waiting for one. */
266 queue_release_all_senders(q);
267 queue_reply(q, 0);
268 #endif
270 q->read = 0;
271 q->write = 0;
273 corelock_unlock(&q->cl);
274 set_irq_level(oldlevel);
277 /* NOTE: multiple threads waiting on a queue head cannot have a well-
278 defined release order if timeouts are used. If multiple threads must
279 access the queue head, use a dispatcher or queue_wait only. */
280 void queue_wait(struct event_queue *q, struct queue_event *ev)
282 int oldlevel;
283 unsigned int rd;
285 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
286 corelock_lock(&q->cl);
288 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
289 if(q->send && q->send->curr_sender)
291 /* auto-reply */
292 queue_release_sender(&q->send->curr_sender, 0);
294 #endif
296 if (q->read == q->write)
300 #if CONFIG_CORELOCK == CORELOCK_NONE
301 cores[CURRENT_CORE].irq_level = oldlevel;
302 #elif CONFIG_CORELOCK == SW_CORELOCK
303 const unsigned int core = CURRENT_CORE;
304 cores[core].blk_ops.irq_level = oldlevel;
305 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK | TBOP_IRQ_LEVEL;
306 cores[core].blk_ops.cl_p = &q->cl;
307 #elif CONFIG_CORELOCK == CORELOCK_SWAP
308 const unsigned int core = CURRENT_CORE;
309 cores[core].blk_ops.irq_level = oldlevel;
310 cores[core].blk_ops.flags = TBOP_SET_VARu8 | TBOP_IRQ_LEVEL;
311 cores[core].blk_ops.var_u8p = &q->cl.locked;
312 cores[core].blk_ops.var_u8v = 0;
313 #endif /* CONFIG_CORELOCK */
314 block_thread(&q->queue);
315 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
316 corelock_lock(&q->cl);
318 /* A message that woke us could now be gone */
319 while (q->read == q->write);
322 rd = q->read++ & QUEUE_LENGTH_MASK;
323 *ev = q->events[rd];
325 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
326 if(q->send && q->send->senders[rd])
328 /* Get data for a waiting thread if one */
329 queue_fetch_sender(q->send, rd);
331 #endif
333 corelock_unlock(&q->cl);
334 set_irq_level(oldlevel);
337 void queue_wait_w_tmo(struct event_queue *q, struct queue_event *ev, int ticks)
339 int oldlevel;
341 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
342 corelock_lock(&q->cl);
344 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
345 if (q->send && q->send->curr_sender)
347 /* auto-reply */
348 queue_release_sender(&q->send->curr_sender, 0);
350 #endif
352 if (q->read == q->write && ticks > 0)
354 #if CONFIG_CORELOCK == CORELOCK_NONE
355 cores[CURRENT_CORE].irq_level = oldlevel;
356 #elif CONFIG_CORELOCK == SW_CORELOCK
357 const unsigned int core = CURRENT_CORE;
358 cores[core].blk_ops.irq_level = oldlevel;
359 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK | TBOP_IRQ_LEVEL;
360 cores[core].blk_ops.cl_p = &q->cl;
361 #elif CONFIG_CORELOCK == CORELOCK_SWAP
362 const unsigned int core = CURRENT_CORE;
363 cores[core].blk_ops.irq_level = oldlevel;
364 cores[core].blk_ops.flags = TBOP_SET_VARu8 | TBOP_IRQ_LEVEL;
365 cores[core].blk_ops.var_u8p = &q->cl.locked;
366 cores[core].blk_ops.var_u8v = 0;
367 #endif
368 block_thread_w_tmo(&q->queue, ticks);
369 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
370 corelock_lock(&q->cl);
373 /* no worry about a removed message here - status is checked inside
374 locks - perhaps verify if timeout or false alarm */
375 if (q->read != q->write)
377 unsigned int rd = q->read++ & QUEUE_LENGTH_MASK;
378 *ev = q->events[rd];
380 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
381 if(q->send && q->send->senders[rd])
383 /* Get data for a waiting thread if one */
384 queue_fetch_sender(q->send, rd);
386 #endif
388 else
390 ev->id = SYS_TIMEOUT;
393 corelock_unlock(&q->cl);
394 set_irq_level(oldlevel);
397 void queue_post(struct event_queue *q, long id, intptr_t data)
399 int oldlevel;
400 unsigned int wr;
402 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
403 corelock_lock(&q->cl);
405 wr = q->write++ & QUEUE_LENGTH_MASK;
407 q->events[wr].id = id;
408 q->events[wr].data = data;
410 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
411 if(q->send)
413 struct thread_entry **spp = &q->send->senders[wr];
415 if (*spp)
417 /* overflow protect - unblock any thread waiting at this index */
418 queue_release_sender(spp, 0);
421 #endif
423 /* Wakeup a waiting thread if any */
424 wakeup_thread(&q->queue);
426 corelock_unlock(&q->cl);
427 set_irq_level(oldlevel);
430 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
431 /* IRQ handlers are not allowed use of this function - we only aim to
432 protect the queue integrity by turning them off. */
433 intptr_t queue_send(struct event_queue *q, long id, intptr_t data)
435 int oldlevel;
436 unsigned int wr;
438 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
439 corelock_lock(&q->cl);
441 wr = q->write++ & QUEUE_LENGTH_MASK;
443 q->events[wr].id = id;
444 q->events[wr].data = data;
446 if(q->send)
448 const unsigned int core = CURRENT_CORE;
449 struct thread_entry **spp = &q->send->senders[wr];
451 if(*spp)
453 /* overflow protect - unblock any thread waiting at this index */
454 queue_release_sender(spp, 0);
457 /* Wakeup a waiting thread if any */
458 wakeup_thread(&q->queue);
460 #if CONFIG_CORELOCK == CORELOCK_NONE
461 cores[core].irq_level = oldlevel;
462 #elif CONFIG_CORELOCK == SW_CORELOCK
463 cores[core].blk_ops.irq_level = oldlevel;
464 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK | TBOP_IRQ_LEVEL;
465 cores[core].blk_ops.cl_p = &q->cl;
466 #elif CONFIG_CORELOCK == CORELOCK_SWAP
467 cores[core].blk_ops.irq_level = oldlevel;
468 cores[core].blk_ops.flags = TBOP_SET_VARu8 | TBOP_IRQ_LEVEL;
469 cores[core].blk_ops.var_u8p = &q->cl.locked;
470 cores[core].blk_ops.var_u8v = 0;
471 #endif
472 block_thread_no_listlock(spp);
473 return cores[core].running->retval;
476 /* Function as queue_post if sending is not enabled */
477 wakeup_thread(&q->queue);
479 corelock_unlock(&q->cl);
480 set_irq_level(oldlevel);
482 return 0;
485 #if 0 /* not used now but probably will be later */
486 /* Query if the last message dequeued was added by queue_send or not */
487 bool queue_in_queue_send(struct event_queue *q)
489 bool in_send;
491 #if NUM_CORES > 1
492 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
493 corelock_lock(&q->cl);
494 #endif
496 in_send = q->send && q->send->curr_sender;
498 #if NUM_CORES > 1
499 corelock_unlock(&q->cl);
500 set_irq_level(oldlevel);
501 #endif
503 return in_send;
505 #endif
507 /* Replies with retval to the last dequeued message sent with queue_send */
508 void queue_reply(struct event_queue *q, intptr_t retval)
510 if(q->send && q->send->curr_sender)
512 #if NUM_CORES > 1
513 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
514 corelock_lock(&q->cl);
515 /* Double-check locking */
516 if(q->send && q->send->curr_sender)
518 #endif
520 queue_release_sender(&q->send->curr_sender, retval);
522 #if NUM_CORES > 1
524 corelock_unlock(&q->cl);
525 set_irq_level(oldlevel);
526 #endif
529 #endif /* HAVE_EXTENDED_MESSAGING_AND_NAME */
531 /* Poll queue to see if a message exists - careful in using the result if
532 * queue_remove_from_head is called when messages are posted - possibly use
533 * queue_wait_w_tmo(&q, 0) in that case or else a removed message that
534 * unsignals the queue may cause an unwanted block */
535 bool queue_empty(const struct event_queue* q)
537 return ( q->read == q->write );
540 void queue_clear(struct event_queue* q)
542 int oldlevel;
544 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
545 corelock_lock(&q->cl);
547 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
548 /* Release all threads waiting in the queue for a reply -
549 dequeued sent message will be handled by owning thread */
550 queue_release_all_senders(q);
551 #endif
553 q->read = 0;
554 q->write = 0;
556 corelock_unlock(&q->cl);
557 set_irq_level(oldlevel);
560 void queue_remove_from_head(struct event_queue *q, long id)
562 int oldlevel;
564 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
565 corelock_lock(&q->cl);
567 while(q->read != q->write)
569 unsigned int rd = q->read & QUEUE_LENGTH_MASK;
571 if(q->events[rd].id != id)
573 break;
576 #ifdef HAVE_EXTENDED_MESSAGING_AND_NAME
577 if(q->send)
579 struct thread_entry **spp = &q->send->senders[rd];
581 if (*spp)
583 /* Release any thread waiting on this message */
584 queue_release_sender(spp, 0);
587 #endif
588 q->read++;
591 corelock_unlock(&q->cl);
592 set_irq_level(oldlevel);
596 * The number of events waiting in the queue.
598 * @param struct of event_queue
599 * @return number of events in the queue
601 int queue_count(const struct event_queue *q)
603 return q->write - q->read;
606 int queue_broadcast(long id, intptr_t data)
608 int i;
610 #if NUM_CORES > 1
611 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
612 corelock_lock(&all_queues.cl);
613 #endif
615 for(i = 0;i < all_queues.count;i++)
617 queue_post(all_queues.queues[i], id, data);
620 #if NUM_CORES > 1
621 corelock_unlock(&all_queues.cl);
622 set_irq_level(oldlevel);
623 #endif
625 return i;
628 /****************************************************************************
629 * Timer tick
630 ****************************************************************************/
631 #if CONFIG_CPU == SH7034
632 void tick_start(unsigned int interval_in_ms)
634 unsigned long count;
636 count = CPU_FREQ * interval_in_ms / 1000 / 8;
638 if(count > 0x10000)
640 panicf("Error! The tick interval is too long (%d ms)\n",
641 interval_in_ms);
642 return;
645 /* We are using timer 0 */
647 TSTR &= ~0x01; /* Stop the timer */
648 TSNC &= ~0x01; /* No synchronization */
649 TMDR &= ~0x01; /* Operate normally */
651 TCNT0 = 0; /* Start counting at 0 */
652 GRA0 = (unsigned short)(count - 1);
653 TCR0 = 0x23; /* Clear at GRA match, sysclock/8 */
655 /* Enable interrupt on level 1 */
656 IPRC = (IPRC & ~0x00f0) | 0x0010;
658 TSR0 &= ~0x01;
659 TIER0 = 0xf9; /* Enable GRA match interrupt */
661 TSTR |= 0x01; /* Start timer 1 */
664 void IMIA0(void) __attribute__ ((interrupt_handler));
665 void IMIA0(void)
667 int i;
669 /* Run through the list of tick tasks */
670 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
672 if(tick_funcs[i])
674 tick_funcs[i]();
678 current_tick++;
680 TSR0 &= ~0x01;
682 #elif defined(CPU_COLDFIRE)
683 void tick_start(unsigned int interval_in_ms)
685 unsigned long count;
686 int prescale;
688 count = CPU_FREQ/2 * interval_in_ms / 1000 / 16;
690 if(count > 0x10000)
692 panicf("Error! The tick interval is too long (%d ms)\n",
693 interval_in_ms);
694 return;
697 prescale = cpu_frequency / CPU_FREQ;
698 /* Note: The prescaler is later adjusted on-the-fly on CPU frequency
699 changes within timer.c */
701 /* We are using timer 0 */
703 TRR0 = (unsigned short)(count - 1); /* The reference count */
704 TCN0 = 0; /* reset the timer */
705 TMR0 = 0x001d | ((unsigned short)(prescale - 1) << 8);
706 /* restart, CLK/16, enabled, prescaler */
708 TER0 = 0xff; /* Clear all events */
710 ICR1 = 0x8c; /* Interrupt on level 3.0 */
711 IMR &= ~0x200;
714 void TIMER0(void) __attribute__ ((interrupt_handler));
715 void TIMER0(void)
717 int i;
719 /* Run through the list of tick tasks */
720 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
722 if(tick_funcs[i])
724 tick_funcs[i]();
728 current_tick++;
730 TER0 = 0xff; /* Clear all events */
733 #elif defined(CPU_PP)
735 #ifndef BOOTLOADER
736 void TIMER1(void)
738 int i;
740 /* Run through the list of tick tasks (using main core) */
741 TIMER1_VAL; /* Read value to ack IRQ */
743 /* Run through the list of tick tasks using main CPU core -
744 wake up the COP through its control interface to provide pulse */
745 for (i = 0;i < MAX_NUM_TICK_TASKS;i++)
747 if (tick_funcs[i])
749 tick_funcs[i]();
753 #if NUM_CORES > 1
754 /* Pulse the COP */
755 core_wake(COP);
756 #endif /* NUM_CORES */
758 current_tick++;
760 #endif
762 /* Must be last function called init kernel/thread initialization */
763 void tick_start(unsigned int interval_in_ms)
765 #ifndef BOOTLOADER
766 TIMER1_CFG = 0x0;
767 TIMER1_VAL;
768 /* enable timer */
769 TIMER1_CFG = 0xc0000000 | (interval_in_ms*1000 - 1);
770 /* unmask interrupt source */
771 CPU_INT_EN = TIMER1_MASK;
772 #else
773 /* We don't enable interrupts in the bootloader */
774 (void)interval_in_ms;
775 #endif
778 #elif CONFIG_CPU == PNX0101
780 void timer_handler(void)
782 int i;
784 /* Run through the list of tick tasks */
785 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
787 if(tick_funcs[i])
788 tick_funcs[i]();
791 current_tick++;
793 TIMER0.clr = 0;
796 void tick_start(unsigned int interval_in_ms)
798 TIMER0.ctrl &= ~0x80; /* Disable the counter */
799 TIMER0.ctrl |= 0x40; /* Reload after counting down to zero */
800 TIMER0.load = 3000000 * interval_in_ms / 1000;
801 TIMER0.ctrl &= ~0xc; /* No prescaler */
802 TIMER0.clr = 1; /* Clear the interrupt request */
804 irq_set_int_handler(IRQ_TIMER0, timer_handler);
805 irq_enable_int(IRQ_TIMER0);
807 TIMER0.ctrl |= 0x80; /* Enable the counter */
809 #elif CONFIG_CPU == IMX31L
810 void tick_start(unsigned int interval_in_ms)
812 EPITCR1 &= ~0x1; /* Disable the counter */
814 EPITCR1 &= ~0xE; /* Disable interrupt, count down from 0xFFFFFFFF */
815 EPITCR1 &= ~0xFFF0; /* Clear prescaler */
816 #ifdef BOOTLOADER
817 EPITCR1 |= (2700 << 2); /* Prescaler = 2700 */
818 #endif
819 EPITCR1 &= ~(0x3 << 24);
820 EPITCR1 |= (0x2 << 24); /* Set clock source to external clock (27mhz) */
821 EPITSR1 = 1; /* Clear the interrupt request */
822 #ifndef BOOTLOADER
823 EPITLR1 = 27000000 * interval_in_ms / 1000;
824 EPITCMPR1 = 27000000 * interval_in_ms / 1000;
825 #else
826 (void)interval_in_ms;
827 #endif
829 //avic_enable_int(EPIT1, IRQ, EPIT_HANDLER);
831 EPITCR1 |= 0x1; /* Enable the counter */
834 #ifndef BOOTLOADER
835 void EPIT_HANDLER(void) __attribute__((interrupt("IRQ")));
836 void EPIT_HANDLER(void) {
837 int i;
839 /* Run through the list of tick tasks */
840 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
842 if(tick_funcs[i])
843 tick_funcs[i]();
846 current_tick++;
848 EPITSR1 = 1; /* Clear the interrupt request */
850 #endif
851 #endif
853 int tick_add_task(void (*f)(void))
855 int i;
856 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
858 /* Add a task if there is room */
859 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
861 if(tick_funcs[i] == NULL)
863 tick_funcs[i] = f;
864 set_irq_level(oldlevel);
865 return 0;
868 set_irq_level(oldlevel);
869 panicf("Error! tick_add_task(): out of tasks");
870 return -1;
873 int tick_remove_task(void (*f)(void))
875 int i;
876 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
878 /* Remove a task if it is there */
879 for(i = 0;i < MAX_NUM_TICK_TASKS;i++)
881 if(tick_funcs[i] == f)
883 tick_funcs[i] = NULL;
884 set_irq_level(oldlevel);
885 return 0;
889 set_irq_level(oldlevel);
890 return -1;
893 /****************************************************************************
894 * Tick-based interval timers/one-shots - be mindful this is not really
895 * intended for continuous timers but for events that need to run for a short
896 * time and be cancelled without further software intervention.
897 ****************************************************************************/
898 #ifdef INCLUDE_TIMEOUT_API
899 static struct timeout *tmo_list = NULL; /* list of active timeout events */
901 /* timeout tick task - calls event handlers when they expire
902 * Event handlers may alter ticks, callback and data during operation.
904 static void timeout_tick(void)
906 unsigned long tick = current_tick;
907 struct timeout *curr, *next;
909 for (curr = tmo_list; curr != NULL; curr = next)
911 next = (struct timeout *)curr->next;
913 if (TIME_BEFORE(tick, curr->expires))
914 continue;
916 /* this event has expired - call callback */
917 if (curr->callback(curr))
918 *(long *)&curr->expires = tick + curr->ticks; /* reload */
919 else
920 timeout_cancel(curr); /* cancel */
924 /* Cancels a timeout callback - can be called from the ISR */
925 void timeout_cancel(struct timeout *tmo)
927 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
929 if (tmo_list != NULL)
931 struct timeout *curr = tmo_list;
932 struct timeout *prev = NULL;
934 while (curr != tmo && curr != NULL)
936 prev = curr;
937 curr = (struct timeout *)curr->next;
940 if (curr != NULL)
942 /* in list */
943 if (prev == NULL)
944 tmo_list = (struct timeout *)curr->next;
945 else
946 *(const struct timeout **)&prev->next = curr->next;
948 if (tmo_list == NULL)
949 tick_remove_task(timeout_tick); /* last one - remove task */
951 /* not in list or tmo == NULL */
954 set_irq_level(oldlevel);
957 /* Adds a timeout callback - calling with an active timeout resets the
958 interval - can be called from the ISR */
959 void timeout_register(struct timeout *tmo, timeout_cb_type callback,
960 int ticks, intptr_t data)
962 int oldlevel;
963 struct timeout *curr;
965 if (tmo == NULL)
966 return;
968 oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
970 /* see if this one is already registered */
971 curr = tmo_list;
972 while (curr != tmo && curr != NULL)
973 curr = (struct timeout *)curr->next;
975 if (curr == NULL)
977 /* not found - add it */
978 if (tmo_list == NULL)
979 tick_add_task(timeout_tick); /* first one - add task */
981 *(struct timeout **)&tmo->next = tmo_list;
982 tmo_list = tmo;
985 tmo->callback = callback;
986 tmo->ticks = ticks;
987 tmo->data = data;
988 *(long *)&tmo->expires = current_tick + ticks;
990 set_irq_level(oldlevel);
993 #endif /* INCLUDE_TIMEOUT_API */
995 /****************************************************************************
996 * Simple mutex functions ;)
997 ****************************************************************************/
998 void mutex_init(struct mutex *m)
1000 m->queue = NULL;
1001 m->thread = NULL;
1002 m->count = 0;
1003 m->locked = 0;
1004 #if CONFIG_CORELOCK == SW_CORELOCK
1005 corelock_init(&m->cl);
1006 #endif
1009 void mutex_lock(struct mutex *m)
1011 const unsigned int core = CURRENT_CORE;
1012 struct thread_entry *const thread = cores[core].running;
1014 if(thread == m->thread)
1016 m->count++;
1017 return;
1020 /* Repeat some stuff here or else all the variation is too difficult to
1021 read */
1022 #if CONFIG_CORELOCK == CORELOCK_SWAP
1023 /* peek at lock until it's no longer busy */
1024 unsigned int locked;
1025 while ((locked = xchg8(&m->locked, STATE_BUSYu8)) == STATE_BUSYu8);
1026 if(locked == 0)
1028 m->thread = thread;
1029 m->locked = 1;
1030 return;
1033 /* Block until the lock is open... */
1034 cores[core].blk_ops.flags = TBOP_SET_VARu8;
1035 cores[core].blk_ops.var_u8p = &m->locked;
1036 cores[core].blk_ops.var_u8v = 1;
1037 #else
1038 corelock_lock(&m->cl);
1039 if (m->locked == 0)
1041 m->locked = 1;
1042 m->thread = thread;
1043 corelock_unlock(&m->cl);
1044 return;
1047 /* Block until the lock is open... */
1048 #if CONFIG_CORELOCK == SW_CORELOCK
1049 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK;
1050 cores[core].blk_ops.cl_p = &m->cl;
1051 #endif
1052 #endif /* CONFIG_CORELOCK */
1054 block_thread_no_listlock(&m->queue);
1057 void mutex_unlock(struct mutex *m)
1059 /* unlocker not being the owner is an unlocking violation */
1060 KERNEL_ASSERT(m->thread == cores[CURRENT_CORE].running,
1061 "mutex_unlock->wrong thread (recurse)");
1063 if(m->count > 0)
1065 /* this thread still owns lock */
1066 m->count--;
1067 return;
1070 #if CONFIG_CORELOCK == SW_CORELOCK
1071 /* lock out other cores */
1072 corelock_lock(&m->cl);
1073 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1074 /* wait for peeker to move on */
1075 while (xchg8(&m->locked, STATE_BUSYu8) == STATE_BUSYu8);
1076 #endif
1078 /* transfer to next queued thread if any */
1080 /* This can become busy using SWP but is safe since only one thread
1081 will be changing things at a time. Allowing timeout waits will
1082 change that however but not now. There is also a hazard the thread
1083 could be killed before performing the wakeup but that's just
1084 irresponsible. :-) */
1085 m->thread = m->queue;
1087 if(m->thread == NULL)
1089 m->locked = 0; /* release lock */
1090 #if CONFIG_CORELOCK == SW_CORELOCK
1091 corelock_unlock(&m->cl);
1092 #endif
1094 else /* another thread is waiting - remain locked */
1096 wakeup_thread_no_listlock(&m->queue);
1097 #if CONFIG_CORELOCK == SW_CORELOCK
1098 corelock_unlock(&m->cl);
1099 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1100 m->locked = 1;
1101 #endif
1105 /****************************************************************************
1106 * Simpl-er mutex functions ;)
1107 ****************************************************************************/
1108 void spinlock_init(struct spinlock *l IF_COP(, unsigned int flags))
1110 l->locked = 0;
1111 l->thread = NULL;
1112 l->count = 0;
1113 #if NUM_CORES > 1
1114 l->task_switch = flags & SPINLOCK_TASK_SWITCH;
1115 corelock_init(&l->cl);
1116 #endif
1119 void spinlock_lock(struct spinlock *l)
1121 struct thread_entry *const thread = cores[CURRENT_CORE].running;
1123 if (l->thread == thread)
1125 l->count++;
1126 return;
1129 #if NUM_CORES > 1
1130 if (l->task_switch != 0)
1131 #endif
1133 /* Let other threads run until the lock is free */
1134 while(test_and_set(&l->locked, 1, &l->cl) != 0)
1136 /* spin and switch until the lock is open... */
1137 switch_thread(NULL);
1140 #if NUM_CORES > 1
1141 else
1143 /* Use the corelock purely */
1144 corelock_lock(&l->cl);
1146 #endif
1148 l->thread = thread;
1151 void spinlock_unlock(struct spinlock *l)
1153 /* unlocker not being the owner is an unlocking violation */
1154 KERNEL_ASSERT(l->thread == cores[CURRENT_CORE].running,
1155 "spinlock_unlock->wrong thread");
1157 if (l->count > 0)
1159 /* this thread still owns lock */
1160 l->count--;
1161 return;
1164 /* clear owner */
1165 l->thread = NULL;
1167 #if NUM_CORES > 1
1168 if (l->task_switch != 0)
1169 #endif
1171 /* release lock */
1172 #if CONFIG_CORELOCK == SW_CORELOCK
1173 /* This must be done since our unlock could be missed by the
1174 test_and_set and leave the object locked permanently */
1175 corelock_lock(&l->cl);
1176 #endif
1177 l->locked = 0;
1180 #if NUM_CORES > 1
1181 corelock_unlock(&l->cl);
1182 #endif
1185 /****************************************************************************
1186 * Simple semaphore functions ;)
1187 ****************************************************************************/
1188 #ifdef HAVE_SEMAPHORE_OBJECTS
1189 void semaphore_init(struct semaphore *s, int max, int start)
1191 KERNEL_ASSERT(max > 0 && start >= 0 && start <= max,
1192 "semaphore_init->inv arg");
1193 s->queue = NULL;
1194 s->max = max;
1195 s->count = start;
1196 #if CONFIG_CORELOCK == SW_CORELOCK
1197 corelock_init(&s->cl);
1198 #endif
1201 void semaphore_wait(struct semaphore *s)
1203 #if CONFIG_CORELOCK == CORELOCK_NONE || CONFIG_CORELOCK == SW_CORELOCK
1204 corelock_lock(&s->cl);
1205 if(--s->count >= 0)
1207 corelock_unlock(&s->cl);
1208 return;
1210 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1211 int count;
1212 while ((count = xchg32(&s->count, STATE_BUSYi)) == STATE_BUSYi);
1213 if(--count >= 0)
1215 s->count = count;
1216 return;
1218 #endif
1220 /* too many waits - block until dequeued */
1221 #if CONFIG_CORELOCK == SW_CORELOCK
1222 const unsigned int core = CURRENT_CORE;
1223 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK;
1224 cores[core].blk_ops.cl_p = &s->cl;
1225 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1226 const unsigned int core = CURRENT_CORE;
1227 cores[core].blk_ops.flags = TBOP_SET_VARi;
1228 cores[core].blk_ops.var_ip = &s->count;
1229 cores[core].blk_ops.var_iv = count;
1230 #endif
1231 block_thread_no_listlock(&s->queue);
1234 void semaphore_release(struct semaphore *s)
1236 #if CONFIG_CORELOCK == CORELOCK_NONE || CONFIG_CORELOCK == SW_CORELOCK
1237 corelock_lock(&s->cl);
1238 if (s->count < s->max)
1240 if (++s->count <= 0)
1242 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1243 int count;
1244 while ((count = xchg32(&s->count, STATE_BUSYi)) == STATE_BUSYi);
1245 if(count < s->max)
1247 if(++count <= 0)
1249 #endif /* CONFIG_CORELOCK */
1251 /* there should be threads in this queue */
1252 KERNEL_ASSERT(s->queue.queue != NULL, "semaphore->wakeup");
1253 /* a thread was queued - wake it up */
1254 wakeup_thread_no_listlock(&s->queue);
1258 #if CONFIG_CORELOCK == SW_CORELOCK
1259 corelock_unlock(&s->cl);
1260 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1261 s->count = count;
1262 #endif
1264 #endif /* HAVE_SEMAPHORE_OBJECTS */
1266 /****************************************************************************
1267 * Simple event functions ;)
1268 ****************************************************************************/
1269 #ifdef HAVE_EVENT_OBJECTS
1270 void event_init(struct event *e, unsigned int flags)
1272 e->queues[STATE_NONSIGNALED] = NULL;
1273 e->queues[STATE_SIGNALED] = NULL;
1274 e->state = flags & STATE_SIGNALED;
1275 e->automatic = (flags & EVENT_AUTOMATIC) ? 1 : 0;
1276 #if CONFIG_CORELOCK == SW_CORELOCK
1277 corelock_init(&e->cl);
1278 #endif
1281 void event_wait(struct event *e, unsigned int for_state)
1283 unsigned int last_state;
1284 #if CONFIG_CORELOCK == CORELOCK_NONE || CONFIG_CORELOCK == SW_CORELOCK
1285 corelock_lock(&e->cl);
1286 last_state = e->state;
1287 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1288 while ((last_state = xchg8(&e->state, STATE_BUSYu8)) == STATE_BUSYu8);
1289 #endif
1291 if(e->automatic != 0)
1293 /* wait for false always satisfied by definition
1294 or if it just changed to false */
1295 if(last_state == STATE_SIGNALED || for_state == STATE_NONSIGNALED)
1297 /* automatic - unsignal */
1298 e->state = STATE_NONSIGNALED;
1299 #if CONFIG_CORELOCK == SW_CORELOCK
1300 corelock_unlock(&e->cl);
1301 #endif
1302 return;
1304 /* block until state matches */
1306 else if(for_state == last_state)
1308 /* the state being waited for is the current state */
1309 #if CONFIG_CORELOCK == SW_CORELOCK
1310 corelock_unlock(&e->cl);
1311 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1312 e->state = last_state;
1313 #endif
1314 return;
1318 /* current state does not match wait-for state */
1319 #if CONFIG_CORELOCK == SW_CORELOCK
1320 const unsigned int core = CURRENT_CORE;
1321 cores[core].blk_ops.flags = TBOP_UNLOCK_CORELOCK;
1322 cores[core].blk_ops.cl_p = &e->cl;
1323 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1324 const unsigned int core = CURRENT_CORE;
1325 cores[core].blk_ops.flags = TBOP_SET_VARu8;
1326 cores[core].blk_ops.var_u8p = &e->state;
1327 cores[core].blk_ops.var_u8v = last_state;
1328 #endif
1329 block_thread_no_listlock(&e->queues[for_state]);
1333 void event_set_state(struct event *e, unsigned int state)
1335 unsigned int last_state;
1336 #if CONFIG_CORELOCK == CORELOCK_NONE || CONFIG_CORELOCK == SW_CORELOCK
1337 corelock_lock(&e->cl);
1338 last_state = e->state;
1339 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1340 while ((last_state = xchg8(&e->state, STATE_BUSYu8)) == STATE_BUSYu8);
1341 #endif
1343 if(last_state == state)
1345 /* no change */
1346 #if CONFIG_CORELOCK == SW_CORELOCK
1347 corelock_unlock(&e->cl);
1348 #elif CONFIG_CORELOCK == CORELOCK_SWAP
1349 e->state = last_state;
1350 #endif
1351 return;
1354 if(state == STATE_SIGNALED)
1356 if(e->automatic != 0)
1358 struct thread_entry *thread;
1359 /* no thread should have ever blocked for unsignaled */
1360 KERNEL_ASSERT(e->queues[STATE_NONSIGNALED].queue == NULL,
1361 "set_event_state->queue[NS]:S");
1362 /* pass to next thread and keep unsignaled - "pulse" */
1363 thread = wakeup_thread_no_listlock(&e->queues[STATE_SIGNALED]);
1364 e->state = thread != NULL ? STATE_NONSIGNALED : STATE_SIGNALED;
1366 else
1368 /* release all threads waiting for signaled */
1369 thread_queue_wake_no_listlock(&e->queues[STATE_SIGNALED]);
1370 e->state = STATE_SIGNALED;
1373 else
1375 /* release all threads waiting for unsignaled */
1377 /* no thread should have ever blocked if automatic */
1378 KERNEL_ASSERT(e->queues[STATE_NONSIGNALED].queue == NULL ||
1379 e->automatic == 0, "set_event_state->queue[NS]:NS");
1381 thread_queue_wake_no_listlock(&e->queues[STATE_NONSIGNALED]);
1382 e->state = STATE_NONSIGNALED;
1385 #if CONFIG_CORELOCK == SW_CORELOCK
1386 corelock_unlock(&e->cl);
1387 #endif
1389 #endif /* HAVE_EVENT_OBJECTS */