-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathmiros.c
252 lines (219 loc) · 8.39 KB
/
miros.c
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
/****************************************************************************
* MInimal Real-time Operating System (MiROS), ARM-CLANG port.
* version 1.26 (matching lesson 26, see https://youtu.be/kLxxXNCrY60)
*
* This software is a teaching aid to illustrate the concepts underlying
* a Real-Time Operating System (RTOS). The main goal of the software is
* simplicity and clear presentation of the concepts, but without dealing
* with various corner cases, portability, or error handling. For these
* reasons, the software is generally NOT intended or recommended for use
* in commercial applications.
*
* Copyright (C) 2018 Miro Samek. All Rights Reserved.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* 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, see <https://www.gnu.org/licenses/>.
*
* Git repo:
* https://github.com/QuantumLeaps/MiROS
****************************************************************************/
#include <stdint.h>
#include "miros.h"
#include "qassert.h"
Q_DEFINE_THIS_FILE
OSThread * volatile OS_curr; /* pointer to the current thread */
OSThread * volatile OS_next; /* pointer to the next thread to run */
OSThread *OS_thread[32 + 1]; /* array of threads started so far */
uint32_t OS_readySet; /* bitmask of threads that are ready to run */
uint32_t OS_delayedSet; /* bitmask of threads that are delayed */
#define LOG2(x) (32U - __builtin_clz(x))
OSThread idleThread;
void main_idleThread() {
while (1) {
OS_onIdle();
}
}
void OS_init(void *stkSto, uint32_t stkSize) {
/* set the PendSV interrupt priority to the lowest level 0xFF */
*(uint32_t volatile *)0xE000ED20 |= (0xFFU << 16);
/* start idleThread thread */
OSThread_start(&idleThread,
0U, /* idle thread priority */
&main_idleThread,
stkSto, stkSize);
}
void OS_sched(void) {
/* choose the next thread to execute... */
OSThread *next;
if (OS_readySet == 0U) { /* idle condition? */
next = OS_thread[0]; /* the idle thread */
}
else {
next = OS_thread[LOG2(OS_readySet)];
Q_ASSERT(next != (OSThread *)0);
}
/* trigger PendSV, if needed */
if (next != OS_curr) {
OS_next = next;
*(uint32_t volatile *)0xE000ED04 = (1U << 28);
}
}
void OS_run(void) {
/* callback to configure and start interrupts */
OS_onStartup();
__asm volatile ("cpsid i");
OS_sched();
__asm volatile ("cpsie i");
/* the following code should never execute */
Q_ERROR();
}
void OS_tick(void) {
uint32_t workingSet = OS_delayedSet;
while (workingSet != 0U) {
OSThread *t = OS_thread[LOG2(workingSet)];
uint32_t bit;
Q_ASSERT((t != (OSThread *)0) && (t->timeout != 0U));
bit = (1U << (t->prio - 1U));
--t->timeout;
if (t->timeout == 0U) {
OS_readySet |= bit; /* insert to set */
OS_delayedSet &= ~bit; /* remove from set */
}
workingSet &= ~bit; /* remove from working set */
}
}
void OS_delay(uint32_t ticks) {
uint32_t bit;
__asm volatile ("cpsid i");
/* never call OS_delay from the idleThread */
Q_REQUIRE(OS_curr != OS_thread[0]);
OS_curr->timeout = ticks;
bit = (1U << (OS_curr->prio - 1U));
OS_readySet &= ~bit;
OS_delayedSet |= bit;
OS_sched();
__asm volatile ("cpsie i");
}
void OSThread_start(
OSThread *me,
uint8_t prio, /* thread priority */
OSThreadHandler threadHandler,
void *stkSto, uint32_t stkSize)
{
/* round down the stack top to the 8-byte boundary
* NOTE: ARM Cortex-M stack grows down from hi -> low memory
*/
uint32_t *sp = (uint32_t *)((((uint32_t)stkSto + stkSize) / 8) * 8);
uint32_t *stk_limit;
/* priority must be in ragne
* and the priority level must be unused
*/
Q_REQUIRE((prio < Q_DIM(OS_thread))
&& (OS_thread[prio] == (OSThread *)0));
*(--sp) = (1U << 24); /* xPSR */
*(--sp) = (uint32_t)threadHandler; /* PC */
*(--sp) = 0x0000000EU; /* LR */
*(--sp) = 0x0000000CU; /* R12 */
*(--sp) = 0x00000003U; /* R3 */
*(--sp) = 0x00000002U; /* R2 */
*(--sp) = 0x00000001U; /* R1 */
*(--sp) = 0x00000000U; /* R0 */
/* additionally, fake registers R4-R11 */
*(--sp) = 0x0000000BU; /* R11 */
*(--sp) = 0x0000000AU; /* R10 */
*(--sp) = 0x00000009U; /* R9 */
*(--sp) = 0x00000008U; /* R8 */
*(--sp) = 0x00000007U; /* R7 */
*(--sp) = 0x00000006U; /* R6 */
*(--sp) = 0x00000005U; /* R5 */
*(--sp) = 0x00000004U; /* R4 */
/* save the top of the stack in the thread's attibute */
me->sp = sp;
/* round up the bottom of the stack to the 8-byte boundary */
stk_limit = (uint32_t *)(((((uint32_t)stkSto - 1U) / 8) + 1U) * 8);
/* pre-fill the unused part of the stack with 0xDEADBEEF */
for (sp = sp - 1U; sp >= stk_limit; --sp) {
*sp = 0xDEADBEEFU;
}
/* register the thread with the OS */
OS_thread[prio] = me;
me->prio = prio;
/* make the thread ready to run */
if (prio > 0U) {
OS_readySet |= (1U << (prio - 1U));
}
}
/* inline assembly syntax for Compiler 6 (ARMCLANG) */
__attribute__ ((naked))
void PendSV_Handler(void) {
__asm volatile (
/* __disable_irq(); */
" CPSID I \n"
/* if (OS_curr != (OSThread *)0) { */
" LDR r1,=OS_curr \n"
" LDR r1,[r1,#0x00] \n"
" CMP r1,#0 \n"
" BEQ PendSV_restore \n"
/* push registers r4-r11 on the stack */
#if (__ARM_ARCH == 6) // if ARMv6-M...
" SUB sp,sp,#(8*4) \n" // make room for 8 registers r4-r11
" MOV r0,sp \n" // r0 := temporary stack pointer
" STMIA r0!,{r4-r7} \n" // save the low registers
" MOV r4,r8 \n" // move the high registers to low registers...
" MOV r5,r9 \n"
" MOV r6,r10 \n"
" MOV r7,r11 \n"
" STMIA r0!,{r4-r7} \n" // save the high registers
#else // ARMv7-M or higher
" PUSH {r4-r11} \n"
#endif // ARMv7-M or higher
/* OS_curr->sp = sp; */
" LDR r1,=OS_curr \n"
" LDR r1,[r1,#0x00] \n"
" MOV r0,sp \n"
" STR r0,[r1,#0x00] \n"
/* } */
"PendSV_restore: \n"
/* sp = OS_next->sp; */
" LDR r1,=OS_next \n"
" LDR r1,[r1,#0x00] \n"
" LDR r0,[r1,#0x00] \n"
" MOV sp,r0 \n"
/* OS_curr = OS_next; */
" LDR r1,=OS_next \n"
" LDR r1,[r1,#0x00] \n"
" LDR r2,=OS_curr \n"
" STR r1,[r2,#0x00] \n"
/* pop registers r4-r11 */
#if (__ARM_ARCH == 6) // if ARMv6-M...
" MOV r0,sp \n" // r0 := top of stack
" MOV r2,r0 \n"
" ADDS r2,r2,#(4*4) \n" // point r2 to the 4 high registers r7-r11
" LDMIA r2!,{r4-r7} \n" // pop the 4 high registers into low registers
" MOV r8,r4 \n" // move low registers into high registers
" MOV r9,r5 \n"
" MOV r10,r6 \n"
" MOV r11,r7 \n"
" LDMIA r0!,{r4-r7} \n" // pop the low registers
" ADD sp,sp,#(8*4) \n" // remove 8 registers from the stack
#else // ARMv7-M or higher
" POP {r4-r11} \n"
#endif // ARMv7-M or higher
/* __enable_irq(); */
" CPSIE I \n"
/* return to the next thread */
" BX lr \n"
);
}