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
|
/*
* Copyright © 2009 Keith Packard <keithp@keithp.com>
*
* This program 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; version 2 of the License.
*
* This program 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, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "ao.h"
#define AO_NO_TASK 0xff
__xdata struct ao_task * __xdata ao_tasks[AO_NUM_TASKS];
__data uint8_t ao_num_tasks;
__data uint8_t ao_cur_task_id;
__xdata struct ao_task *__data ao_cur_task;
void
ao_add_task(__xdata struct ao_task * task, void (*start)(void))
{
uint8_t __xdata *stack;
if (ao_num_tasks == AO_NUM_TASKS)
ao_panic(AO_PANIC_NO_TASK);
ao_tasks[ao_num_tasks++] = task;
/*
* Construct a stack frame so that it will 'return'
* to the start of the task
*/
stack = task->stack;
*stack++ = ((uint16_t) start);
*stack++ = ((uint16_t) start) >> 8;
/* and the stuff saved by ao_switch */
*stack++ = 0; /* acc */
*stack++ = 0x80; /* IE */
*stack++ = 0; /* DPL */
*stack++ = 0; /* DPH */
*stack++ = 0; /* B */
*stack++ = 0; /* R2 */
*stack++ = 0; /* R3 */
*stack++ = 0; /* R4 */
*stack++ = 0; /* R5 */
*stack++ = 0; /* R6 */
*stack++ = 0; /* R7 */
*stack++ = 0; /* R0 */
*stack++ = 0; /* R1 */
*stack++ = 0; /* PSW */
*stack++ = 0; /* BP */
task->stack_count = stack - task->stack;
task->wchan = NULL;
}
/* Task switching function. This must not use any stack variables */
void
ao_yield(void) _naked
{
static uint8_t __data stack_len;
static __data uint8_t * __data stack_ptr;
static __xdata uint8_t * __data save_ptr;
/* Save current context */
_asm
/* Push ACC first, as when restoring the context it must be restored
* last (it is used to set the IE register). */
push ACC
/* Store the IE register then enable interrupts. */
push _IEN0
setb _EA
push DPL
push DPH
push b
push ar2
push ar3
push ar4
push ar5
push ar6
push ar7
push ar0
push ar1
push PSW
_endasm;
PSW = 0;
_asm
push _bp
_endasm;
if (ao_cur_task_id != AO_NO_TASK)
{
/* Save the current stack */
stack_len = SP - (AO_STACK_START - 1);
ao_cur_task->stack_count = stack_len;
stack_ptr = (uint8_t __data *) AO_STACK_START;
save_ptr = (uint8_t __xdata *) ao_cur_task->stack;
while (stack_len--)
*save_ptr++ = *stack_ptr++;
}
/* Empty the stack; might as well let interrupts have the whole thing */
SP = AO_STACK_START - 1;
/* Find a task to run. If there isn't any runnable task,
* this loop will run forever, which is just fine
*/
for (;;) {
++ao_cur_task_id;
if (ao_cur_task_id == ao_num_tasks)
ao_cur_task_id = 0;
ao_cur_task = ao_tasks[ao_cur_task_id];
if (ao_cur_task->wchan == NULL)
break;
}
/* Restore the old stack */
stack_len = ao_cur_task->stack_count;
SP = AO_STACK_START - 1 + stack_len;
stack_ptr = (uint8_t __data *) AO_STACK_START;
save_ptr = (uint8_t __xdata *) ao_cur_task->stack;
while (stack_len--)
*stack_ptr++ = *save_ptr++;
_asm
pop _bp
pop PSW
pop ar1
pop ar0
pop ar7
pop ar6
pop ar5
pop ar4
pop ar3
pop ar2
pop b
pop DPH
pop DPL
/* The next byte of the stack is the IE register. Only the global
enable bit forms part of the task context. Pop off the IE then set
the global enable bit to match that of the stored IE register. */
pop ACC
JB ACC.7,0098$
CLR _EA
LJMP 0099$
0098$:
SETB _EA
0099$:
/* Finally pop off the ACC, which was the first register saved. */
pop ACC
ret
_endasm;
}
int
ao_sleep(__xdata void *wchan)
{
__critical {
ao_cur_task->wchan = wchan;
}
ao_yield();
}
int
ao_wakeup(__xdata void *wchan)
{
uint8_t i;
for (i = 0; i < ao_num_tasks; i++)
if (ao_tasks[i]->wchan == wchan)
ao_tasks[i]->wchan = NULL;
}
void
ao_start_scheduler(void)
{
ao_cur_task_id = AO_NO_TASK;
ao_cur_task = NULL;
ao_yield();
}
|