【実装】
当初、アセンブラの利用もやむなしと考えていたが、コンテキスト・スイッチングにsetjmp()/longjmp()を使ったおかげで全てをC/C++言語だけで記述することができてしまった。と言ってもSDKで定義されているCPU命令マクロなどは使っているので完全にC/C++言語だけとは言えないような気もするが...
普段はヘッダーファイルだけで記述することが多いのだが、ヘッダーファイルだけにすると双方向参照をうまく解決することができないので、今回は明確にヘッダーとコードを分け、さらにインクルードを簡単にするために複数のヘッダーファイルを一つにまとめたインクルード専用ヘッダーファイルを作成してみた。
【構成】
avros.h … 共通インクルード・ファイル
heap.h … メモリ管理クラス
task.h/task.cpp … タスク管理クラス
timer.h/timer.cpp … タイマー管理クラス
wait.h…同期管理のベース・クラス
pcint.h/pcint.cpp … GPIO管理クラス
sem.h/sem.cpp … セマフォ・クラス
mutex.h/mutex.cpp … ミューテックス・クラス
queue.h … キュー・ライブラリ
ioport.h … GPIOライブラリ
variants.h … ボード仕様の定義
【共通インクルード】
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 |
/* avros.h - Multitask Library Header for AVR Series Copyright (c) 2021 Sasapea's Lab. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __AVROS_H #define __AVROS_H #include "ioport.h" #include "variants.h" #include "heap.h" #include "queue.h" #include "task.h" #include "timer.h" #include "wait.h" #include "pcint.h" #include "mutex.h" #include "sem.h" #endif |
【タスク管理クラス】
タスク生成は任意のタイミングで生成が可能。また、一般的にはスケジューラの開始関数呼び出しから戻ることが出来ないが、スケジューラー開始時のコール・コンテクストをデフォルト・タスクとして割り当てることで関数呼び出しから戻ることが可能となっており、arduino等の既存プラットフォームとの親和性を高く保つことができるよう考慮している。
なお、全タスクが休止状態になるとスリープモードに入り割り込みだけを待つようになる。スリープ・モードの規定値はアイドル・モードであるが変更は可能。パワーマネジメントは仕様外ではあるものの、うまく連携できる仕組みを作れるなら超省電力化も夢ではない。かも。
【概要】
1 |
bool create(TASK_START_T func, void *arg = nullptr, size_t size = TASK_STACK_SIZE, uint8_t prio = TASK_PRIO_LOW); |
タスクを生成しスタート関数(func)を実行する。スタート関数には一個のパラメタ(arg)を渡すことができる。引数省略時、128バイトのスタック領域、最低優先度として生成される。より大きなスタック領域を必要とするコードを実行する場合はスタック領域として適切な値を指定すること。指定関数(func)から戻るとタスクは削除される。タスクが生成されるとtrue、失敗するとfalseを返す。
1 |
bool run(uint8_t prio = TASK_PRIO_LOW); |
スケジューラーを開始する。prioはデフォルト・タスクの優先度を指定する。デフォルト・タスクとしてこの呼出しから戻ってくる。
1 |
uint8_t priority(uint8_t prio); |
カレント・タスクの優先度を変更し変更前の優先度を返す。優先度が変更されなかった場合は、0xFFが返される。
1 |
void sleepmode(TASK_SLEEP_MODE mode); |
全タスク休止時のスリープ・モードを設定する。
1 |
void yield(void); |
カレント・タスクと同一優先度内でラウンドロビン・スケジューリングを行う。
1 |
size_t freeStack(void); |
カレント・タスクの空きスタック領域のバイト数を取得する。空きスタック領域が少なすぎるとスタック・オーバーフローとなる可能性がある。デバッグ用であり運用時の使用は推奨しない。
【ソース・コード】
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 |
/* task.h - Task Function Class Copyright (c) 2021 Sasapea's Lab. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __TASK_H #define __TASK_H #include <stdint.h> #include <stdbool.h> #include <setjmp.h> #define TASK_PRIO_LOW 7 #define TASK_PRIO_HIGH 0 #define TASK_STACK_SIZE 128 // default stack size. typedef enum : uint8_t { TASK_SLEEP_IDLE = SLEEP_MODE_IDLE, TASK_SLEEP_ADC = SLEEP_MODE_ADC, TASK_SLEEP_PWR_DOWN = SLEEP_MODE_PWR_DOWN, #if defined(SLEEP_MODE_PWR_SAVE) TASK_SLEEP_PWR_SAVE = SLEEP_MODE_PWR_SAVE, #endif #if defined(SLEEP_MODE_STANDBY) TASK_SLEEP_STANDBY = SLEEP_MODE_STANDBY, #endif #if defined(SLEEP_MODE_EXT_STANDBY) TASK_SLEEP_EXT_STANBY = SLEEP_MODE_EXT_STANDBY, #endif TASK_SLEEP_DISABLE = 0xFF, } TASK_SLEEP_MODE; typedef void (*TASK_START_T)(void *arg); class Timer; typedef struct TASK { struct TASK *next; struct TASK **tail; uint8_t pbit; uint8_t pmsk; jmp_buf context; struct TASK *timer; struct TASK *event; Timer *wait; int8_t wcode; union { struct { TASK_START_T func; void *arg; } start; uint32_t time; } x; void *mblk; size_t size; } TASK_T; class Task { private: static TASK_T *_tail[TASK_PRIO_LOW + 1]; static TASK_T *_head; static TASK_T *_curr; static uint8_t _prio; static TASK_SLEEP_MODE _sleep; static uint8_t msbpos(uint8_t val); static void freeStackInit(void); protected: static void enqueue(TASK_T *task); static TASK_T *dequeue(void); static void switching(void); static void scheduling(void) __attribute__((noreturn)); static TASK_T *init(TASK_T *task, uint8_t prio); static TASK_T *current(void); public: static bool create(TASK_START_T func, void *arg = nullptr, size_t size = TASK_STACK_SIZE, uint8_t prio = TASK_PRIO_LOW); static bool run(uint8_t prio = TASK_PRIO_LOW); static uint8_t priority(uint8_t prio); static void sleepmode(TASK_SLEEP_MODE mode); static void yield(void); static size_t freeStack(void); }; #endif |
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 |
/* task.cpp - Task Function Class Copyright (c) 2021 Sasapea's Lab. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <stdint.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> #include <avr/io.h> #include <avr/sleep.h> #include <avr/cpufunc.h> #include <avr/pgmspace.h> #include <util/atomic.h> #include "avros.h" TASK_T *Task::_tail[]; TASK_T *Task::_head; TASK_T *Task::_curr; uint8_t Task::_prio; TASK_SLEEP_MODE Task::_sleep = SLEEP_MODE_IDLE; uint8_t Task::msbpos(uint8_t val) { static const uint8_t MSBPOS[] PROGMEM = { 0xFF, 0x00, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03 }; uint8_t off = 0; if (val >= 0x10) { off = 4; val = __builtin_avr_swap(val); } return pgm_read_byte(MSBPOS + (val & 0x0F)) + off; } void Task::enqueue(TASK_T *task) { uint8_t last = msbpos(_prio & task->pmsk); if (last <= TASK_PRIO_LOW) { TASK_T **tail = &_tail[last]; task->next = (*tail)->next; *task->tail = (*tail)->next = task; } else { task->next = _head; _head = *task->tail = task; } _prio |= task->pbit; } TASK_T *Task::dequeue(void) { TASK_T *task = _head; if (task) { TASK_T **tail = task->tail; if (task == *tail) { *tail = 0; _prio &= ~task->pbit; } _head = task->next; } return task; } void Task::switching(void) { if (_curr && (_curr != _head) && (setjmp(_curr->context) == 0)) // 4.4us/16MHz scheduling(); } void Task::scheduling(void) { while (1) { ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { if ((_curr = _head) != nullptr) longjmp(_curr->context, 1); // 5.8us/16MHz // // wait any interrupts // sei(); if (_sleep != TASK_SLEEP_DISABLE) { set_sleep_mode(_sleep); sleep_mode(); } } } } void Task::sleepmode(TASK_SLEEP_MODE mode) { _sleep = mode; } TASK_T *Task::init(TASK_T *task, uint8_t prio) { if (prio > TASK_PRIO_LOW) prio = TASK_PRIO_LOW; task->pbit = 1 << prio; task->pmsk = (task->pbit << 1) - 1; task->tail = &_tail[prio]; return task; } bool Task::create(TASK_START_T func, void *arg, size_t size, uint8_t prio) { if (_curr && (size == 0)) return false; char *mblk = (char *)Heap::malloc(size + sizeof(TASK_T)); if (mblk == nullptr) return false; memset(mblk, 0, size + sizeof(TASK_T)); TASK_T *task = init((TASK_T *)(mblk + size), prio); task->mblk = mblk; task->size = size; task->x.start.func = func; task->x.start.arg = arg; uint8_t spl = SPL; uint8_t sph = SPH; if (size) { uint16_t sp = (uint16_t)task - 1; ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { SPL = (uint8_t)(sp >> 0); SPH = (uint8_t)(sp >> 8); } } if (setjmp(task->context)) { if (_curr->size == 0) return true; // return to default task _curr->x.start.func(_curr->x.start.arg); cli(); Heap::free(dequeue()->mblk); scheduling(); } ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { SPL = spl; SPH = sph; enqueue(task); if (_curr) switching(); } if (size) return true; // start task scheduler freeStackInit(); Timer::begin(); scheduling(); } bool Task::run(uint8_t prio) { // create default task and run return create(nullptr, nullptr, 0, prio); } uint8_t Task::priority(uint8_t prio) { uint8_t rv = 0xFF; if (prio > TASK_PRIO_LOW) prio = TASK_PRIO_LOW; if (_curr) { rv = msbpos(_curr->pbit); if (prio != rv) { ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { enqueue(init(dequeue(), prio)); switching(); } } } return rv; } void Task::yield(void) { ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { if (_curr == _head) { TASK_T **tail = _head->tail; if (_head != *tail) { TASK_T *next = (*tail)->next; *tail = ((*tail)->next = _head); _head = _head->next; (*tail)->next = next; switching(); } } } } TASK_T *Task::current(void) { return _curr; } #define FREERAM_STACK_INIT_SIZE 128 #define FREERAM_STACK_MARGIN_SIZE 32 void Task::freeStackInit(void) { // clear stack top area for freeRam extern char __heap_start, *__brkval; char *heap_end = (__brkval ? __brkval : &__heap_start); size_t size = FREERAM_STACK_INIT_SIZE; char *test = (char *)(((SPH << 8) | SPL) - size); if (test > heap_end + FREERAM_STACK_MARGIN_SIZE) memset(test, 0, size); } size_t Task::freeStack(void) { char *test; size_t size; if (_curr && _curr->size) { size = _curr->size; test = (char *)_curr->mblk; for (size_t i = 0; i < size; ++i) { if (*test++) return i; } } else { extern char __heap_start, *__brkval; char *heap_end = (__brkval ? __brkval : &__heap_start); size = FREERAM_STACK_INIT_SIZE; test = (char *)(((SPH << 8) | SPL) - size); if (test > heap_end + FREERAM_STACK_MARGIN_SIZE) { for (size_t i = 0; i < size; ++i) { if (*test++) return (size_t)(test - heap_end) - 1; } } else { return (size_t)(test > heap_end ? test - heap_end : 0); } } return size; } |
【関連する投稿】
理想のRTOSを自作する (1)
理想のRTOSを自作する (2)
理想のRTOSを自作する (3)
理想のRTOSを自作する (4)
理想のRTOSを自作する (5)
理想のRTOSを自作する (6)
理想のRTOSを自作する (7)
理想のRTOSを自作する (8)
理想のRTOSを自作する (9)
理想のRTOSを自作する (10)
理想のRTOSを自作する (11)