2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 #define AO_NO_TASK_INDEX 0xff
22 __xdata struct ao_task * __xdata ao_tasks[AO_NUM_TASKS];
23 __data uint8_t ao_num_tasks;
24 __data uint8_t ao_cur_task_index;
25 __xdata struct ao_task *__data ao_cur_task;
27 #ifdef ao_arch_task_globals
31 #define AO_CHECK_STACK 0
34 static uint8_t in_yield;
36 static inline void ao_check_stack(void) {
38 if (!in_yield && ao_cur_task && &q < &ao_cur_task->stack[0])
39 ao_panic(AO_PANIC_STACK);
42 #define ao_check_stack()
46 ao_add_task(__xdata struct ao_task * task, void (*start)(void), __code char *name) __reentrant
50 if (ao_num_tasks == AO_NUM_TASKS)
51 ao_panic(AO_PANIC_NO_TASK);
52 for (task_id = 1; task_id != 0; task_id++) {
53 for (t = 0; t < ao_num_tasks; t++)
54 if (ao_tasks[t]->task_id == task_id)
56 if (t == ao_num_tasks)
59 ao_tasks[ao_num_tasks++] = task;
60 task->task_id = task_id;
64 * Construct a stack frame so that it will 'return'
65 * to the start of the task
67 ao_arch_init_stack(task, start);
70 /* Task switching function. This must not use any stack variables */
72 ao_yield(void) ao_arch_naked_define
76 if (ao_cur_task_index == AO_NO_TASK_INDEX)
77 ao_cur_task_index = ao_num_tasks-1;
88 /* Find a task to run. If there isn't any runnable task,
89 * this loop will run forever, which is just fine
92 __pdata uint8_t ao_last_task_index = ao_cur_task_index;
95 if (ao_cur_task_index == ao_num_tasks)
96 ao_cur_task_index = 0;
98 ao_cur_task = ao_tasks[ao_cur_task_index];
100 /* Check for ready task */
101 if (ao_cur_task->wchan == NULL)
104 /* Check if the alarm is set for a time which has passed */
105 if (ao_cur_task->alarm &&
106 (int16_t) (ao_time() - ao_cur_task->alarm) >= 0)
109 /* Enter lower power mode when there isn't anything to do */
110 if (ao_cur_task_index == ao_last_task_index)
118 ao_arch_restore_stack();
122 ao_sleep(__xdata void *wchan)
124 ao_cur_task->wchan = wchan;
126 if (ao_cur_task->wchan) {
127 ao_cur_task->wchan = NULL;
134 ao_wakeup(__xdata void *wchan)
139 for (i = 0; i < ao_num_tasks; i++)
140 if (ao_tasks[i]->wchan == wchan)
141 ao_tasks[i]->wchan = NULL;
145 ao_alarm(uint16_t delay)
147 /* Make sure we sleep *at least* delay ticks, which means adding
148 * one to account for the fact that we may be close to the next tick
150 if (!(ao_cur_task->alarm = ao_time() + delay + 1))
151 ao_cur_task->alarm = 1;
157 ao_cur_task->alarm = 0;
166 for (i = ao_cur_task_index; i < ao_num_tasks; i++)
167 ao_tasks[i] = ao_tasks[i+1];
168 ao_cur_task_index = AO_NO_TASK_INDEX;
171 /* we'll never get back here */
178 __xdata struct ao_task *task;
180 for (i = 0; i < ao_num_tasks; i++) {
182 printf("%12s: wchan %04x\n",
189 ao_start_scheduler(void)
191 ao_cur_task_index = AO_NO_TASK_INDEX;