2 * Copyright © 2012 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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 #define HAS_TASK_INFO 1
29 /* arm stacks must be 64-bit aligned */
30 #ifndef AO_STACK_ALIGNMENT
32 #define AO_STACK_ALIGNMENT __attribute__ ((aligned(8)))
34 #define AO_STACK_ALIGNMENT
40 void *wchan; /* current wait channel (NULL if running) */
41 uint16_t alarm; /* abort ao_sleep time */
42 uint16_t task_id; /* unique id */
43 /* Saved stack pointer */
48 const char *name; /* task name */
51 struct ao_list alarm_queue;
53 /* Provide both 32-bit and 8-bit stacks */
55 uint32_t stack32[AO_STACK_SIZE>>2];
56 uint8_t stack8[AO_STACK_SIZE];
58 #if HAS_SAMPLE_PROFILE
67 #define AO_NUM_TASKS 16 /* maximum number of tasks */
70 #define AO_NO_TASK 0 /* no task id */
72 extern struct ao_task * ao_tasks[AO_NUM_TASKS];
73 extern uint8_t ao_num_tasks;
74 extern struct ao_task *ao_cur_task;
75 extern uint8_t ao_task_minimize_latency; /* Reduce IRQ latency */
77 #ifndef HAS_ARCH_VALIDATE_CUR_STACK
78 #define ao_validate_cur_stack()
85 /* Suspend the current task until wchan is awoken.
91 ao_sleep(void *wchan);
93 /* Suspend the current task until wchan is awoken or the timeout
99 ao_sleep_for(void *wchan, uint16_t timeout);
101 /* Wake all tasks sleeping on wchan */
103 ao_wakeup(void *wchan);
106 /* set an alarm to go off in 'delay' ticks */
108 ao_alarm(uint16_t delay);
110 /* Clear any pending alarm */
112 ao_clear_alarm(void);
115 /* Yield the processor to another task */
117 ao_yield(void) ao_arch_naked_declare;
119 /* Add a task to the run queue */
121 ao_add_task(struct ao_task * task, void (*start)(void), const char *name);
124 /* Called on timer interrupt to check alarms */
125 extern uint16_t ao_task_alarm_tick;
127 ao_task_check_alarm(uint16_t tick);
130 /* Terminate the current task */
134 /* Dump task info to console */
138 /* Start the scheduler. This will not return */
140 ao_start_scheduler(void) __attribute__((noreturn));
146 #define ao_task_init()