-
Notifications
You must be signed in to change notification settings - Fork 15
/
os_port_cmsis_rtos.c
719 lines (611 loc) · 15.9 KB
/
os_port_cmsis_rtos.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
/**
* @file os_port_cmsis_rtos.c
* @brief RTOS abstraction layer (CMSIS-RTOS)
*
* @section License
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
*
* 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 2
* 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, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @author Oryx Embedded SARL (www.oryx-embedded.com)
* @version 2.4.4
**/
//Switch to the appropriate trace level
#define TRACE_LEVEL TRACE_LEVEL_OFF
//Dependencies
#include <stdio.h>
#include <stdlib.h>
#include "os_port.h"
#include "os_port_cmsis_rtos.h"
#include "debug.h"
//Default task parameters
const OsTaskParameters OS_TASK_DEFAULT_PARAMS =
{
256, //Size of the stack
osPriorityNormal //Task priority
};
/**
* @brief Kernel initialization
**/
void osInitKernel(void)
{
#if (osCMSIS >= 0x10001)
//Initialize the kernel
osKernelInitialize();
#endif
}
/**
* @brief Start kernel
**/
void osStartKernel(void)
{
#if (osCMSIS >= 0x10001)
//Start the kernel
osKernelStart();
#else
//Start the kernel
osKernelStart(NULL, NULL);
#endif
}
/**
* @brief Create a task
* @param[in] name NULL-terminated string identifying the task
* @param[in] taskCode Pointer to the task entry function
* @param[in] arg Argument passed to the task function
* @param[in] params Task parameters
* @return Task identifier referencing the newly created task
**/
OsTaskId osCreateTask(const char_t *name, OsTaskCode taskCode, void *arg,
const OsTaskParameters *params)
{
osThreadId threadId;
osThreadDef_t threadDef;
//Initialize thread parameters
memset(&threadDef, 0, sizeof(threadDef));
//Set thread parameters
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
threadDef.pthread = (os_pthread) taskCode;
threadDef.tpriority = (osPriority) params->priority;
threadDef.instances = 1;
threadDef.stacksize = params->stackSize * sizeof(uint32_t);
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
threadDef.pthread = (os_pthread) taskCode;
threadDef.attr.name = name;
threadDef.attr.attr_bits = 0;
threadDef.attr.cb_mem = NULL;
threadDef.attr.cb_size = 0;
threadDef.attr.stack_mem = NULL;
threadDef.attr.stack_size = params->stackSize * sizeof(uint32_t);
threadDef.attr.priority = (osPriority_t) params->priority;
threadDef.attr.tz_module = 0;
#elif defined(osCMSIS_FreeRTOS)
threadDef.pthread = (os_pthread) taskCode;
threadDef.attr.name = name;
threadDef.attr.attr_bits = 0;
threadDef.attr.cb_mem = NULL;
threadDef.attr.cb_size = 0;
threadDef.attr.stack_mem = NULL;
threadDef.attr.stack_size = params->stackSize * sizeof(uint32_t);
threadDef.attr.priority = (osPriority_t) params->priority;
threadDef.attr.tz_module = 0;
#else
threadDef.name = (char_t *) name;
threadDef.pthread = (os_pthread) taskCode;
threadDef.tpriority = (osPriority) params->priority;
threadDef.instances = 1;
threadDef.stacksize = params->stackSize;
#endif
//Create a new thread
threadId = osThreadCreate(&threadDef, arg);
//Return the handle referencing the newly created thread
return (OsTaskId) threadId;
}
/**
* @brief Delete a task
* @param[in] taskId Task identifier referencing the task to be deleted
**/
void osDeleteTask(OsTaskId taskId)
{
#if (osCMSIS >= 0x20000)
//Delete the specified thread
if(taskId == OS_SELF_TASK_ID)
{
osThreadExit();
}
else
{
osThreadTerminate((osThreadId_t) taskId);
}
#else
//Delete the specified thread
osThreadTerminate((osThreadId) taskId);
#endif
}
/**
* @brief Delay routine
* @param[in] delay Amount of time for which the calling task should block
**/
void osDelayTask(systime_t delay)
{
//Delay the thread for the specified duration
osDelay(delay);
}
/**
* @brief Yield control to the next task
**/
void osSwitchTask(void)
{
//Force a context switch
osThreadYield();
}
/**
* @brief Suspend scheduler activity
**/
void osSuspendAllTasks(void)
{
#if defined(osCMSIS_RTX) || defined(osCMSIS_FreeRTOS)
//Not implemented
#else
//Make sure the operating system is running
if(osKernelRunning())
{
//Suspend all threads
osThreadSuspendAll();
}
#endif
}
/**
* @brief Resume scheduler activity
**/
void osResumeAllTasks(void)
{
#if defined(osCMSIS_RTX) || defined(osCMSIS_FreeRTOS)
//Not implemented
#else
//Make sure the operating system is running
if(osKernelRunning())
{
//Resume all threads
osThreadResumeAll();
}
#endif
}
/**
* @brief Create an event object
* @param[in] event Pointer to the event object
* @return The function returns TRUE if the event object was successfully
* created. Otherwise, FALSE is returned
**/
bool_t osCreateEvent(OsEvent *event)
{
osSemaphoreDef_t semaphoreDef;
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
semaphoreDef.semaphore = event->cb;
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
semaphoreDef.name = NULL;
semaphoreDef.attr_bits = 0;
semaphoreDef.cb_mem = NULL;
semaphoreDef.cb_size = 0;
#elif defined(osCMSIS_FreeRTOS)
semaphoreDef.name = NULL;
semaphoreDef.attr_bits = 0;
semaphoreDef.cb_mem = NULL;
semaphoreDef.cb_size = 0;
#else
semaphoreDef.dummy = 0;
#endif
//Create a binary semaphore object
event->id = osSemaphoreCreate(&semaphoreDef, 1);
//Check whether the returned semaphore ID is valid
if(event->id != NULL)
{
//Force the specified event to the nonsignaled state
osSemaphoreWait(event->id, 0);
//Event successfully created
return TRUE;
}
else
{
//Failed to create event object
return FALSE;
}
}
/**
* @brief Delete an event object
* @param[in] event Pointer to the event object
**/
void osDeleteEvent(OsEvent *event)
{
//Make sure the semaphore ID is valid
if(event->id != NULL)
{
//Properly dispose the event object
osSemaphoreDelete(event->id);
}
}
/**
* @brief Set the specified event object to the signaled state
* @param[in] event Pointer to the event object
**/
void osSetEvent(OsEvent *event)
{
//Set the specified event to the signaled state
osSemaphoreRelease(event->id);
}
/**
* @brief Set the specified event object to the nonsignaled state
* @param[in] event Pointer to the event object
**/
void osResetEvent(OsEvent *event)
{
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
//Force the specified event to the nonsignaled state
while(osSemaphoreWait(event->id, 0) > 0)
{
}
#else
//Force the specified event to the nonsignaled state
osSemaphoreWait(event->id, 0);
#endif
}
/**
* @brief Wait until the specified event is in the signaled state
* @param[in] event Pointer to the event object
* @param[in] timeout Timeout interval
* @return The function returns TRUE if the state of the specified object is
* signaled. FALSE is returned if the timeout interval elapsed
**/
bool_t osWaitForEvent(OsEvent *event, systime_t timeout)
{
int32_t ret;
//Wait until the specified event is in the signaled state or the timeout
//interval elapses
if(timeout == INFINITE_DELAY)
{
//Infinite timeout period
ret = osSemaphoreWait(event->id, osWaitForever);
}
else
{
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
systime_t n;
//Loop until the assigned time period has elapsed
do
{
//Limit the timeout value
n = MIN(timeout, 10000);
//Wait for the specified time interval
ret = osSemaphoreWait(event->id, n);
//Decrement timeout value
timeout -= n;
//Check timeout value
} while(ret == 0 && timeout > 0);
#else
//Wait for the specified time interval
ret = osSemaphoreWait(event->id, timeout);
#endif
}
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
//Check return value
if(ret > 0)
{
//Force the event back to the nonsignaled state
while(osSemaphoreWait(event->id, 0) > 0)
{
}
//The specified event is in the signaled state
return TRUE;
}
else
{
//The timeout interval elapsed
return FALSE;
}
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
//Check return value
if(ret > 0)
{
return TRUE;
}
else
{
return FALSE;
}
#elif defined(osCMSIS_FreeRTOS)
//Check return value
if(ret > 0)
{
return TRUE;
}
else
{
return FALSE;
}
#else
//Check return value
if(ret == osOK)
{
return TRUE;
}
else
{
return FALSE;
}
#endif
}
/**
* @brief Set an event object to the signaled state from an interrupt service routine
* @param[in] event Pointer to the event object
* @return TRUE if setting the event to signaled state caused a task to unblock
* and the unblocked task has a priority higher than the currently running task
**/
bool_t osSetEventFromIsr(OsEvent *event)
{
//Set the specified event to the signaled state
osSemaphoreRelease(event->id);
//The return value is not relevant
return FALSE;
}
/**
* @brief Create a semaphore object
* @param[in] semaphore Pointer to the semaphore object
* @param[in] count The maximum count for the semaphore object. This value
* must be greater than zero
* @return The function returns TRUE if the semaphore was successfully
* created. Otherwise, FALSE is returned
**/
bool_t osCreateSemaphore(OsSemaphore *semaphore, uint_t count)
{
osSemaphoreDef_t semaphoreDef;
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
semaphoreDef.semaphore = semaphore->cb;
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
semaphoreDef.name = NULL;
semaphoreDef.attr_bits = 0;
semaphoreDef.cb_mem = NULL;
semaphoreDef.cb_size = 0;
#elif defined(osCMSIS_FreeRTOS)
semaphoreDef.name = NULL;
semaphoreDef.attr_bits = 0;
semaphoreDef.cb_mem = NULL;
semaphoreDef.cb_size = 0;
#else
semaphoreDef.dummy = 0;
#endif
//Create a semaphore object
semaphore->id = osSemaphoreCreate(&semaphoreDef, count);
//Check whether the returned semaphore ID is valid
if(semaphore->id != NULL)
{
return TRUE;
}
else
{
return FALSE;
}
}
/**
* @brief Delete a semaphore object
* @param[in] semaphore Pointer to the semaphore object
**/
void osDeleteSemaphore(OsSemaphore *semaphore)
{
//Make sure the semaphore ID is valid
if(semaphore->id != NULL)
{
//Properly dispose the specified semaphore
osSemaphoreDelete(semaphore->id);
}
}
/**
* @brief Wait for the specified semaphore to be available
* @param[in] semaphore Pointer to the semaphore object
* @param[in] timeout Timeout interval
* @return The function returns TRUE if the semaphore is available. FALSE is
* returned if the timeout interval elapsed
**/
bool_t osWaitForSemaphore(OsSemaphore *semaphore, systime_t timeout)
{
int32_t ret;
//Wait until the semaphore is available or the timeout interval elapses
if(timeout == INFINITE_DELAY)
{
//Infinite timeout period
ret = osSemaphoreWait(semaphore->id, osWaitForever);
}
else
{
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
systime_t n;
//Loop until the assigned time period has elapsed
do
{
//Limit the timeout value
n = MIN(timeout, 10000);
//Wait for the specified time interval
ret = osSemaphoreWait(semaphore->id, n);
//Decrement timeout value
timeout -= n;
//Check timeout value
} while(ret == 0 && timeout > 0);
#else
//Wait for the specified time interval
ret = osSemaphoreWait(semaphore->id, timeout);
#endif
}
#if defined(osCMSIS_RTX) || defined(osCMSIS_FreeRTOS)
//Check return value
if(ret > 0)
{
return TRUE;
}
else
{
return FALSE;
}
#else
//Check return value
if(ret == osOK)
{
return TRUE;
}
else
{
return FALSE;
}
#endif
}
/**
* @brief Release the specified semaphore object
* @param[in] semaphore Pointer to the semaphore object
**/
void osReleaseSemaphore(OsSemaphore *semaphore)
{
//Release the semaphore
osSemaphoreRelease(semaphore->id);
}
/**
* @brief Create a mutex object
* @param[in] mutex Pointer to the mutex object
* @return The function returns TRUE if the mutex was successfully
* created. Otherwise, FALSE is returned
**/
bool_t osCreateMutex(OsMutex *mutex)
{
osMutexDef_t mutexDef;
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
mutexDef.mutex = mutex->cb;
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
mutexDef.name = NULL;
mutexDef.attr_bits = 0;
mutexDef.cb_mem = NULL;
mutexDef.cb_size = 0;
#elif defined(osCMSIS_FreeRTOS)
mutexDef.name = NULL;
mutexDef.attr_bits = 0;
mutexDef.cb_mem = NULL;
mutexDef.cb_size = 0;
#else
mutexDef.dummy = 0;
#endif
//Create a mutex object
mutex->id = osMutexCreate(&mutexDef);
//Check whether the returned mutex ID is valid
if(mutex->id != NULL)
{
return TRUE;
}
else
{
return FALSE;
}
}
/**
* @brief Delete a mutex object
* @param[in] mutex Pointer to the mutex object
**/
void osDeleteMutex(OsMutex *mutex)
{
//Make sure the mutex ID is valid
if(mutex->id != NULL)
{
//Properly dispose the specified mutex
osMutexDelete(mutex->id);
}
}
/**
* @brief Acquire ownership of the specified mutex object
* @param[in] mutex Pointer to the mutex object
**/
void osAcquireMutex(OsMutex *mutex)
{
//Obtain ownership of the mutex object
osMutexWait(mutex->id, osWaitForever);
}
/**
* @brief Release ownership of the specified mutex object
* @param[in] mutex Pointer to the mutex object
**/
void osReleaseMutex(OsMutex *mutex)
{
//Release ownership of the mutex object
osMutexRelease(mutex->id);
}
/**
* @brief Retrieve system time
* @return Number of milliseconds elapsed since the system was last started
**/
systime_t osGetSystemTime(void)
{
systime_t time;
#if defined(osCMSIS_RTX) && (osCMSIS_RTX < 0x50000)
//Forward function declaration
extern uint32_t rt_time_get(void);
//Get current tick count
time = rt_time_get();
#elif defined(osCMSIS_RTX) && (osCMSIS_RTX >= 0x50000)
time = osKernelGetTickCount();
#elif defined(osCMSIS_FreeRTOS)
time = osKernelGetTickCount();
#else
//Get current tick count
time = osKernelSysTick();
#endif
//Convert system ticks to milliseconds
return OS_SYSTICKS_TO_MS(time);
}
/**
* @brief Allocate a memory block
* @param[in] size Bytes to allocate
* @return A pointer to the allocated memory block or NULL if
* there is insufficient memory available
**/
__weak_func void *osAllocMem(size_t size)
{
void *p;
//Enter critical section
osSuspendAllTasks();
//Allocate a memory block
p = malloc(size);
//Leave critical section
osResumeAllTasks();
//Debug message
TRACE_DEBUG("Allocating %" PRIuSIZE " bytes at 0x%08" PRIXPTR "\r\n",
size, (uintptr_t) p);
//Return a pointer to the newly allocated memory block
return p;
}
/**
* @brief Release a previously allocated memory block
* @param[in] p Previously allocated memory block to be freed
**/
__weak_func void osFreeMem(void *p)
{
//Make sure the pointer is valid
if(p != NULL)
{
//Debug message
TRACE_DEBUG("Freeing memory at 0x%08" PRIXPTR "\r\n", (uintptr_t) p);
//Enter critical section
osSuspendAllTasks();
//Free memory block
free(p);
//Leave critical section
osResumeAllTasks();
}
}