aboutsummaryrefslogtreecommitdiff
path: root/chopstx.c
blob: 1c8a5a18f439833488521cc0ce85c484a2b88581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
/*
 * chopstx.c - Threads and only threads.
 *
 * Copyright (C) 2013 Flying Stone Technology
 * Author: NIIBE Yutaka <gniibe@fsij.org>
 *
 * This file is a part of Chopstx, a thread library for embedded.
 *
 * Chopstx is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Chopstx is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * A special exception to the GNU GPL may be applied for a specific
 * case.  See the file EXCEPTION for full details.
 *
 */

#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <chopstx.h>

/* RUNNING: the current thread. */
struct chx_thread *running;

/* Use this when we support round robin scheduling.  */
#define PREEMPTION_USEC (1000*MHZ) /* 1ms */

/* Double linked list operations.  */
struct chx_dll {
  struct chx_thread *next, *prev;
};


/* READY: priority queue. */
struct chx_ready {
  struct chx_thread *next, *prev;
  struct chx_spinlock lock;
};

static struct chx_ready q_ready;

struct chx_timer {
  struct chx_thread *next, *prev;
  struct chx_spinlock lock;
};

/* threads waiting for timer.  */
static struct chx_timer q_timer;

/* XXX: q_exit; Queue for threads already exited. */

/* Forward declaration(s). */
static void chx_preempt (void);


/**************/
static void chx_LOCK (struct chx_spinlock *lk)
{
  (void)lk;
}

static void chx_UNLOCK (struct chx_spinlock *lk)
{
  (void)lk;
}

/* The thread context: specific to ARM Cortex-M3 now.  */
struct tcontext {
  uint32_t reg[9];	   /* r4, r5, r6, r7, r8, r9, r10, r11, r13 */
};

/* Saved registers on the stack.  */
struct chx_stack_regs {
  uint32_t reg[8];	       /* r0, r1, r2, r3, r12, lr, pc, xpsr */
};

/*
 * Constants for ARM.
 */
#define REG_SP 8

#define REG_R0   0
#define REG_LR   5
#define REG_PC   6
#define REG_XPSR 7

#define INITIAL_XPSR 0x01000000	/* T=1 */

/*
 * SysTick registers.
 */
static volatile uint32_t *const SYST_CSR = (uint32_t *const)0xE000E010;
static volatile uint32_t *const SYST_RVR = (uint32_t *const)0xE000E014;
static volatile uint32_t *const SYST_CVR = (uint32_t *const)0xE000E018;

#define MHZ 72

static uint32_t usec_to_ticks (uint32_t usec)
{
  return usec * MHZ;
}
/**************/

struct chx_thread {
  struct chx_thread *next, *prev;
  struct tcontext tc;
  uint16_t prio;
  uint16_t prio_orig;
  uint32_t v;
  struct chx_mtx *mutex_list;
} __attribute__((packed));


/*
 * Double linked list handling.
 */

static int
ll_empty (void *head)
{
  struct chx_thread *l = (struct chx_thread *)head;

  return (struct chx_thread *)l == l->next;
}

static struct chx_thread *
ll_dequeue (struct chx_thread *tp)
{
  struct chx_thread *tp0 = tp;

  tp->next->prev = tp->prev;
  tp->prev->next = tp->next;
  return tp0;
}

static void
ll_insert (struct chx_thread *tp0, void *head)
{
  struct chx_thread *tp = (struct chx_thread *)head;

  tp0->next = tp;
  tp0->prev = tp->prev;
  tp->prev->next = tp0;
  tp->prev = tp0;
}


static struct chx_thread *
ll_pop (void *head)
{
  struct chx_thread *l = (struct chx_thread *)head;
  struct chx_thread *tp0 = l->next;

  if (tp0 == l)
    return NULL;

  return ll_dequeue (tp0);
}

static void
ll_prio_push (struct chx_thread *tp0, void *head)
{
  struct chx_thread *l = (struct chx_thread *)head; 
  struct chx_thread *tp;

  for (tp = l->next; tp != l; tp = tp->next)
    if (tp->prio <= tp0->prio)
      break;

  ll_insert (tp0, tp);
}

static void
ll_prio_enqueue (struct chx_thread *tp0, void *head)
{
  struct chx_thread *l = (struct chx_thread *)head;
  struct chx_thread *tp;

  for (tp = l->next; tp != l; tp = tp->next)
    if (tp->prio < tp0->prio)
      break;

  ll_insert (tp0, tp);
}


/*
 * Thread status encoded in ->v.
 */
#define THREAD_WAIT_MTX 0x00000001
#define THREAD_WAIT_CND 0x00000002
#define THREAD_WAITTIME 0x00000003

#define THREAD_RUNNING  0x00000000
#define THREAD_WAIT_INT	0x00000004
#define THREAD_EXITED	0x00000008
#define THREAD_READY	0x0000000C

static uint32_t
chx_ready_pop (void)
{
  struct chx_thread *tp;

  chx_LOCK (&q_ready.lock);
  tp = ll_pop (&q_ready);
  if (tp)
    tp->v = THREAD_RUNNING;
  chx_UNLOCK (&q_ready.lock);

  return (uint32_t)tp;
}


static void
chx_ready_push (struct chx_thread *t)
{
  chx_LOCK (&q_ready.lock);
  t->v = THREAD_READY;
  ll_prio_push (t, &q_ready);
  chx_UNLOCK (&q_ready.lock);
}


static void
chx_ready_enqueue (struct chx_thread *t)
{
  chx_LOCK (&q_ready.lock);
  t->v = THREAD_READY;
  ll_prio_enqueue (t, &q_ready);
  chx_UNLOCK (&q_ready.lock);
}

/* Registers on stack (PSP): r0, r1, r2, r3, r12, lr, pc, xpsr */
static void __attribute__ ((naked,used))
sched (void)
{
  register uint32_t r0 asm ("r0");

  asm volatile ("cpsid   i" : : : "memory");

  r0 = chx_ready_pop ();

  asm volatile (/* Now, r0 points to the thread to be switched.  */
		/* Put it to *running.  */
		"ldr	r1, =running\n\t"
		/* Update running.  */
		"str	r0, [r1]\n\t"
		"cbz	r0, 3f\n\t"
		/**/
		"str	r0, [r0]\n\t"
		"str	r0, [r0, 4]\n\t"
		"cpsie   i\n\t"	      /* Unmask interrupts.  */
		"add	r0, #8\n\t"
		"ldm	r0!, {r4, r5, r6, r7}\n\t"
		"ldr	r8, [r0], 4\n\t"
		"ldr	r9, [r0], 4\n\t"
		"ldr	r10, [r0], 4\n\t"
		"ldr	r11, [r0], 4\n\t"
		"ldr	r1, [r0]\n\t"
		"msr	PSP, r1\n\t"
		"mov	r0, #-1\n\t"
		"sub	r0, #2\n\t" /* EXC_RETURN to a thread with PSP */
		"bx	r0\n"
	"3:\n\t"
		"cpsie   i\n\t"	      /* Unmask interrupts.  */
		/* Spawn an IDLE thread.  */
		"ldr	r0, =__main_stack_end__\n\t"
		"msr	MSP, r0\n\t"
		"mov	r0, #0\n\t"
		"mov	r1, #0\n\t"
		"ldr	r2, =idle\n\t"	     /* PC = idle */
		"mov	r3, #0x01000000\n\t" /* xPSR = T-flag set (Thumb) */
		"push	{r0, r1, r2, r3}\n\t"
		"mov	r0, #0\n\t"
		"mov	r1, #0\n\t"
		"mov	r2, #0\n\t"
		"mov	r3, #0\n\t"
		"push	{r0, r1, r2, r3}\n"
		"mov	r0, #-1\n\t"
		"sub	r0, #6\n\t" /* EXC_RETURN to a thread with MSP */
		"bx	r0\n"
		: /* no output */ : "r" (r0) : "memory");
}

void __attribute__ ((naked))
preempt (void)
{
  register uint32_t r0 asm ("r0");

  asm volatile ("ldr	r1, =running\n\t"
		"ldr	r0, [r1]\n\t"
		"cbnz	r0, 0f\n\t"
		/* It's idle which was preempted.  */
		"ldr	r1, =__main_stack_end__\n\t"
		"msr	MSP, r1\n\t"
		"b	sched\n"
	"0:\n\t"
		"ldr	r2, [r0, 48]\n\t" /* Check ->v to avoid RACE.  */
		"cbz	r2, 1f\n\t"
		/* RUNNING is busy on transition, do nothing.  */
		"bx	lr\n"
	"1:\n\t"
		"add	r2, r0, #8\n\t"
		/* Save registers onto CHX_THREAD struct.  */
		"stm	r2!, {r4, r5, r6, r7}\n\t"
		"mov	r3, r8\n\t"
		"mov	r4, r9\n\t"
		"mov	r5, r10\n\t"
		"mov	r6, r11\n\t"
		"mrs	r7, PSP\n\t" /* r13(=SP) in user space.  */
		"stm	r2, {r3, r4, r5, r6, r7}"
		: "=r" (r0): /* no input */ : "memory");

  asm volatile ("cpsid   i" : : : "memory");
  chx_ready_push ((struct chx_thread *)r0);
  asm volatile ("ldr	r1, =running\n\t"
		"mov	r2, #0\n\t"
		"str	r2, [r1]\n\t" /* running := NULL */
		"cpsie   i"	      /* Unmask interrupts.  */
		: /* no output */ : /* no input */ : "memory");

  asm volatile ("b	sched"
		: /* no output */: /* no input */ : "memory");
}


/* system call: sched */
void __attribute__ ((naked))
svc (void)
{
  register uint32_t r0 asm ("r0");
  register uint32_t orig_r0 asm ("r2");

  asm volatile ("ldr	r1, =running\n\t"
		"ldr	r0, [r1]\n\t"
		"add	r2, r0, #8\n\t"
		/* Save registers onto CHX_THREAD struct.  */
		"stm	r2!, {r4, r5, r6, r7}\n\t"
		"mov	r3, r8\n\t"
		"mov	r4, r9\n\t"
		"mov	r5, r10\n\t"
		"mov	r6, r11\n\t"
		"mrs	r7, PSP\n\t" /* r13(=SP) in user space.  */
		"stm	r2, {r3, r4, r5, r6, r7}\n\t"
		"ldr	r2, [r7]"
		: "=r" (r0), "=r" (orig_r0) : /* no input */ : "memory");

  if (orig_r0)
    {
      asm volatile ("cpsid   i" : : : "memory");
      chx_ready_enqueue ((struct chx_thread *)r0);
      asm volatile ("ldr	r1, =running\n\t"
		    "mov	r2, #0\n\t"
		    "str	r2, [r1]\n\t" /* running := NULL */
		    "cpsie	i"	      /* Unmask interrupts.  */
		    : /* no output */ : /* no input */ : "memory");
    }

  asm volatile ("b	sched"
		: /* no output */: /* no input */ : "memory");
}


static void
chx_set_timer (struct chx_thread *q, uint32_t ticks)
{
  if (q == (struct chx_thread *)&q_timer)
    {
      *SYST_RVR = ticks;
      *SYST_CVR = 0;  /* write (any) to clear the counter to reload.  */
      *SYST_RVR = 0;
    }
  else
    q->v = (ticks<<8)|THREAD_WAITTIME;
}

static void
chx_timer_insert (struct chx_thread *tp, uint32_t usec)
{
  uint32_t ticks = usec_to_ticks (usec);
  uint32_t next_ticks = *SYST_CVR;
  struct chx_thread *q;

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&q_timer.lock);

  for (q = q_timer.next; q != (struct chx_thread *)&q_timer; q = q->next)
    {
      if (ticks < next_ticks)
	{
	  ll_insert (tp, q);
	  chx_set_timer (tp->prev, ticks);
	  chx_set_timer (tp, (next_ticks - ticks));
	  break;
	}
      else
	{
	  ticks -= next_ticks;
	  next_ticks = (q->v >> 8);
	}
    }

  if (q == (struct chx_thread *)&q_timer)
    {
      ll_insert (tp, q);
      chx_set_timer (tp->prev, ticks);
      chx_set_timer (tp, 1);	/* Non-zero for the last entry. */
    }
  chx_UNLOCK (&q_timer.lock);
  asm volatile ("cpsie   i" : : : "memory");
}


void
chx_timer_expired (void)
{
  struct chx_thread *t;

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&q_timer.lock);
  if ((t = ll_pop (&q_timer)))
    {
      uint32_t next_tick = t->v >> 8;

      chx_ready_enqueue (t);

      if (!ll_empty (&q_timer))
	{
	  struct chx_thread *t_next;

	  for (t = q_timer.next;
	       t != (struct chx_thread *)&q_timer && next_tick == 0;
	       t = t_next)
	    {
	      next_tick = (t->v >> 8);
	      t_next = t->next;
	      ll_dequeue (t);
	      chx_ready_enqueue (t);
	    }

	  if (!ll_empty (&q_timer))
	    chx_set_timer ((struct chx_thread *)&q_timer, next_tick);
	}
    }

  chx_preempt ();
  chx_UNLOCK (&q_timer.lock);
  asm volatile ("cpsie   i" : : : "memory");
}


static void
chx_enable_intr (uint8_t irq_num)
{
}

static void
chx_disable_intr (uint8_t irq_num)
{
}

void
chx_handle_intr (chopstix_intr_t *intr)
{
  chx_disable_intr (intr->irq_num);
  asm volatile ("cpsid   i" : : : "memory");
  intr->ready++;
  if (intr->t)
    {
      chx_ready_enqueue (intr->t);
      chx_preempt ();
    }
  asm volatile ("cpsie   i" : : : "memory");
}

void
chx_systick_init (void)
{
  *SYST_RVR = 0;
  *SYST_CVR = 0;
  *SYST_CSR = 7;
}

#define PRIO_DEFAULT 1

void
chx_init (struct chx_thread *tp)
{
  memset (&tp->tc, 0, sizeof (tp->tc));
  q_ready.next = q_ready.prev = (struct chx_thread *)&q_ready;
  q_timer.next = q_timer.prev = (struct chx_thread *)&q_timer;
  tp->prio_orig = tp->prio = PRIO_DEFAULT;
  tp->next = tp->prev = tp;
  tp->mutex_list = NULL;
  tp->v = THREAD_RUNNING;

  running = tp;
}


static void
chx_preempt (void)
{
  static volatile uint32_t *const ICSR = (uint32_t *const)0xE000ED04;

  *ICSR = (1 << 28);
  asm volatile ("" : : : "memory");
}

static void
chx_sched (void)
{
  register uint32_t r0 asm ("r0") = 0;

  asm volatile ("svc	#0" : : "r" (r0) : "memory");
}

static void
chx_yield (void)
{
  register uint32_t r0 asm ("r0") = 1;

  asm volatile ("svc	#0" : : "r" (r0) : "memory");
}

void
chopstx_attr_init (chopstx_attr_t *attr)
{
  attr->prio = PRIO_DEFAULT;
  attr->addr = 0;
  attr->size = 0;
}

void
chopstx_attr_setschedparam (chopstx_attr_t *attr, uint8_t prio)
{
  attr->prio = prio;
}

void
chopstx_attr_setstack (chopstx_attr_t *attr, uint32_t addr, size_t size)
{
  attr->addr = addr;
  attr->size = size;
}

void
chopstx_create (chopstx_t *thd, const chopstx_attr_t *attr,
		void *(thread_entry) (void *), void *arg)
{
  struct chx_thread *tp;
  void *stack;
  struct chx_stack_regs *p;

  if (attr->size < sizeof (struct chx_thread) + 8 * sizeof (uint32_t))
    return;
  
  stack = (void *)(attr->addr + attr->size - sizeof (struct chx_thread)
		   - sizeof (struct chx_stack_regs));
  memset (stack, 0, sizeof (struct chx_stack_regs));
  p = (struct chx_stack_regs *)stack;
  p->reg[REG_R0] = (uint32_t)arg;
  p->reg[REG_LR] = 0;		/* XXX: address of exit??? */
  p->reg[REG_PC] = (uint32_t)thread_entry;
  p->reg[REG_XPSR] = INITIAL_XPSR;

  tp = (struct chx_thread *)(stack + sizeof (struct chx_stack_regs));
  memset (&tp->tc, 0, sizeof (tp->tc));
  tp->prio_orig = tp->prio = attr->prio;
  tp->tc.reg[REG_SP] = (uint32_t)stack;
  tp->next = tp->prev = tp;
  tp->mutex_list = NULL;
  tp->v = THREAD_EXITED;
  *thd = (uint32_t)tp;

  asm volatile ("cpsid   i" : : : "memory");
  chx_ready_enqueue (tp);
  asm volatile ("cpsie   i" : : : "memory");
  if (tp->prio > running->prio)
    chx_yield ();
}


void
chopstx_usleep (uint32_t usec)
{
  while (usec)
    {
      uint32_t usec0 = (usec > 200*1000) ? 200*1000: usec;

      chx_timer_insert (running, usec0);
      chx_sched ();

      usec -= usec0;
    }
}


void
chopstx_mutex_init (chopstx_mutex_t *mutex)
{
  mutex->q.next = mutex->q.prev = (struct chx_thread *)mutex;
  mutex->list = NULL;
}

void
chopstx_mutex_lock (chopstx_mutex_t *mutex)
{
  while (1)
    {
      struct chx_thread *t = running;
      chopstx_mutex_t *m;
      struct chx_thread *owner;

      asm volatile ("cpsid   i" : : : "memory");
      chx_LOCK (&mutex->lock);
      if (mutex->owner == NULL)
	{
	  /* The mutex is acquired.  */
	  mutex->owner = t;
	  mutex->list = t->mutex_list;
	  t->mutex_list = mutex;
	  chx_UNLOCK (&mutex->lock);
	  asm volatile ("cpsie   i" : : : "memory");
	  return;
	}

      m = mutex;
      owner = m->owner;
      while (1)
	{
	  owner->prio = t->prio;
	  if (owner->v == THREAD_READY)
	    {
	      ll_prio_enqueue (ll_dequeue (owner), &q_ready);
	      break;
	    }
	  else if ((owner->v & 0x03) == THREAD_WAIT_MTX)
	    {
	      m = (chopstx_mutex_t *)(owner->v & ~0x03);

	      ll_prio_enqueue (ll_dequeue (owner), m);
	      owner = m->owner;
	      continue;
	    }
	  else if ((owner->v & 0x03) == THREAD_WAIT_CND)
	    {
	      chopstx_cond_t *cnd = (chopstx_cond_t *)(owner->v & ~0x03);

	      ll_prio_enqueue (ll_dequeue (owner), cnd);
	      break;
	    }
	  else
	    break;
	  /* XXX: RUNNING and SMP??? */
	}

      ll_prio_enqueue (t, &mutex->q);
      t->v = (uint32_t)mutex | THREAD_WAIT_MTX;
      chx_UNLOCK (&mutex->lock);
      asm volatile ("cpsie   i" : : : "memory");
      chx_sched ();
    }
}

void
chopstx_mutex_unlock (chopstx_mutex_t *mutex)
{
  struct chx_thread *t;
  int yield = 0;

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&mutex->lock);
  mutex->owner = NULL;
  running->mutex_list = mutex->list;
  mutex->list = NULL;

  t = ll_pop (&mutex->q);
  if (t)
    {
      uint16_t newprio = running->prio_orig;
      chopstx_mutex_t *m;

      chx_ready_enqueue (t);

      /* Examine mutexes we hold, and determine new priority for running.  */
      for (m = running->mutex_list; m; m = m->list)
	if (!ll_empty (&m->q) && m->q.next->prio > newprio)
	  newprio = m->q.next->prio;
      /* Then, assign it.  */
      running->prio = newprio;

      if (t->prio > running->prio)
	yield = 1;
    }

  chx_UNLOCK (&mutex->lock);
  asm volatile ("cpsie   i" : : : "memory");
  if (yield)
    chx_yield ();
}


void
chopstx_cond_init (chopstx_cond_t *cond)
{
  cond->q.next = cond->q.prev = (struct chx_thread *)cond;
}

void
chopstx_cond_wait (chopstx_cond_t *cond, chopstx_mutex_t *mutex)
{
  struct chx_thread *t = running;

  if (mutex)
    chopstx_mutex_unlock (mutex);

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&cond->lock);
  ll_prio_enqueue (t, &cond->q);
  t->v = (uint32_t)cond | THREAD_WAIT_CND;
  chx_UNLOCK (&cond->lock);
  asm volatile ("cpsie   i" : : : "memory");

  chx_sched ();

  if (mutex)
    chopstx_mutex_lock (mutex);
}

void
chopstx_cond_signal (chopstx_cond_t *cond)
{
  struct chx_thread *t;
  int yield = 0;

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&cond->lock);
  t = ll_pop (&cond->q);
  if (t)
    {
      chx_ready_enqueue (t);
      if (t->prio > running->prio)
	yield = 1;
    }
  chx_UNLOCK (&cond->lock);
  asm volatile ("cpsie   i" : : : "memory");

  if (yield)
    chx_yield ();
}

void
chopstx_cond_broadcast (chopstx_cond_t *cond)
{
  struct chx_thread *t;
  int yield = 1;

  asm volatile ("cpsid   i" : : : "memory");
  chx_LOCK (&cond->lock);
  while ((t = ll_pop (&cond->q)))
    {
      chx_ready_enqueue (t);
      if (t->prio > running->prio)
	yield = 1;
    }
  chx_UNLOCK (&cond->lock);
  asm volatile ("cpsie   i" : : : "memory");
  if (yield)
    chx_yield ();
}


#define MAX_INTR_NUM 16

chopstix_intr_t *intr_table[MAX_INTR_NUM];

void
chopstx_intr_register (chopstix_intr_t *intr, uint8_t irq_num)
{
  intr_table[irq_num] = intr;
  intr->irq_num = irq_num;
  intr->t = running;
  intr->ready = 0;
}


void
chopstx_wait_intr (chopstix_intr_t *intr)
{
  chx_enable_intr (intr->irq_num);
  asm volatile ("cpsid   i" : : : "memory");
  while (intr->ready == 0)
    {
      intr->t = running;
      running->v = THREAD_WAIT_INT;
      asm volatile ("cpsie   i" : : : "memory");
      chx_sched ();
      asm volatile ("cpsid   i" : : : "memory");
    }
  intr->ready--;
  asm volatile ("cpsie   i" : : : "memory");
}