| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- /*
- * Copyright (c) 2013-2021 Arm Limited. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * -----------------------------------------------------------------------------
- *
- * Project: CMSIS-RTOS RTX
- * Title: Semaphore functions
- *
- * -----------------------------------------------------------------------------
- */
- #include "rtx_lib.h"
- // OS Runtime Object Memory Usage
- #ifdef RTX_OBJ_MEM_USAGE
- osRtxObjectMemUsage_t osRtxSemaphoreMemUsage \
- __attribute__((section(".data.os.semaphore.obj"))) =
- { 0U, 0U, 0U };
- #endif
- // ==== Helper functions ====
- /// Decrement Semaphore tokens.
- /// \param[in] semaphore semaphore object.
- /// \return 1 - success, 0 - failure.
- static uint32_t SemaphoreTokenDecrement (os_semaphore_t *semaphore) {
- #if (EXCLUSIVE_ACCESS == 0)
- uint32_t primask = __get_PRIMASK();
- #endif
- uint32_t ret;
- #if (EXCLUSIVE_ACCESS == 0)
- __disable_irq();
- if (semaphore->tokens != 0U) {
- semaphore->tokens--;
- ret = 1U;
- } else {
- ret = 0U;
- }
- if (primask == 0U) {
- __enable_irq();
- }
- #else
- if (atomic_dec16_nz(&semaphore->tokens) != 0U) {
- ret = 1U;
- } else {
- ret = 0U;
- }
- #endif
- return ret;
- }
- /// Increment Semaphore tokens.
- /// \param[in] semaphore semaphore object.
- /// \return 1 - success, 0 - failure.
- static uint32_t SemaphoreTokenIncrement (os_semaphore_t *semaphore) {
- #if (EXCLUSIVE_ACCESS == 0)
- uint32_t primask = __get_PRIMASK();
- #endif
- uint32_t ret;
- #if (EXCLUSIVE_ACCESS == 0)
- __disable_irq();
- if (semaphore->tokens < semaphore->max_tokens) {
- semaphore->tokens++;
- ret = 1U;
- } else {
- ret = 0U;
- }
- if (primask == 0U) {
- __enable_irq();
- }
- #else
- if (atomic_inc16_lt(&semaphore->tokens, semaphore->max_tokens) < semaphore->max_tokens) {
- ret = 1U;
- } else {
- ret = 0U;
- }
- #endif
- return ret;
- }
- // ==== Post ISR processing ====
- /// Semaphore post ISR processing.
- /// \param[in] semaphore semaphore object.
- static void osRtxSemaphorePostProcess (os_semaphore_t *semaphore) {
- os_thread_t *thread;
- // Check if Thread is waiting for a token
- if (semaphore->thread_list != NULL) {
- // Try to acquire token
- if (SemaphoreTokenDecrement(semaphore) != 0U) {
- // Wakeup waiting Thread with highest Priority
- thread = osRtxThreadListGet(osRtxObject(semaphore));
- osRtxThreadWaitExit(thread, (uint32_t)osOK, FALSE);
- EvrRtxSemaphoreAcquired(semaphore, semaphore->tokens);
- }
- }
- }
- // ==== Service Calls ====
- /// Create and Initialize a Semaphore object.
- /// \note API identical to osSemaphoreNew
- static osSemaphoreId_t svcRtxSemaphoreNew (uint32_t max_count, uint32_t initial_count, const osSemaphoreAttr_t *attr) {
- os_semaphore_t *semaphore;
- uint8_t flags;
- const char *name;
- // Check parameters
- if ((max_count == 0U) || (max_count > osRtxSemaphoreTokenLimit) || (initial_count > max_count)) {
- EvrRtxSemaphoreError(NULL, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return NULL;
- }
- // Process attributes
- if (attr != NULL) {
- name = attr->name;
- //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 6]
- semaphore = attr->cb_mem;
- if (semaphore != NULL) {
- //lint -e(923) -e(9078) "cast from pointer to unsigned int" [MISRA Note 7]
- if ((((uint32_t)semaphore & 3U) != 0U) || (attr->cb_size < sizeof(os_semaphore_t))) {
- EvrRtxSemaphoreError(NULL, osRtxErrorInvalidControlBlock);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return NULL;
- }
- } else {
- if (attr->cb_size != 0U) {
- EvrRtxSemaphoreError(NULL, osRtxErrorInvalidControlBlock);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return NULL;
- }
- }
- } else {
- name = NULL;
- semaphore = NULL;
- }
- // Allocate object memory if not provided
- if (semaphore == NULL) {
- if (osRtxInfo.mpi.semaphore != NULL) {
- //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 5]
- semaphore = osRtxMemoryPoolAlloc(osRtxInfo.mpi.semaphore);
- } else {
- //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 5]
- semaphore = osRtxMemoryAlloc(osRtxInfo.mem.common, sizeof(os_semaphore_t), 1U);
- }
- #ifdef RTX_OBJ_MEM_USAGE
- if (semaphore != NULL) {
- uint32_t used;
- osRtxSemaphoreMemUsage.cnt_alloc++;
- used = osRtxSemaphoreMemUsage.cnt_alloc - osRtxSemaphoreMemUsage.cnt_free;
- if (osRtxSemaphoreMemUsage.max_used < used) {
- osRtxSemaphoreMemUsage.max_used = used;
- }
- }
- #endif
- flags = osRtxFlagSystemObject;
- } else {
- flags = 0U;
- }
- if (semaphore != NULL) {
- // Initialize control block
- semaphore->id = osRtxIdSemaphore;
- semaphore->flags = flags;
- semaphore->name = name;
- semaphore->thread_list = NULL;
- semaphore->tokens = (uint16_t)initial_count;
- semaphore->max_tokens = (uint16_t)max_count;
- // Register post ISR processing function
- osRtxInfo.post_process.semaphore = osRtxSemaphorePostProcess;
- EvrRtxSemaphoreCreated(semaphore, semaphore->name);
- } else {
- EvrRtxSemaphoreError(NULL,(int32_t)osErrorNoMemory);
- }
- return semaphore;
- }
- /// Get name of a Semaphore object.
- /// \note API identical to osSemaphoreGetName
- static const char *svcRtxSemaphoreGetName (osSemaphoreId_t semaphore_id) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreGetName(semaphore, NULL);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return NULL;
- }
- EvrRtxSemaphoreGetName(semaphore, semaphore->name);
- return semaphore->name;
- }
- /// Acquire a Semaphore token or timeout if no tokens are available.
- /// \note API identical to osSemaphoreAcquire
- static osStatus_t svcRtxSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- osStatus_t status;
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreError(semaphore, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return osErrorParameter;
- }
- // Try to acquire token
- if (SemaphoreTokenDecrement(semaphore) != 0U) {
- EvrRtxSemaphoreAcquired(semaphore, semaphore->tokens);
- status = osOK;
- } else {
- // No token available
- if (timeout != 0U) {
- EvrRtxSemaphoreAcquirePending(semaphore, timeout);
- // Suspend current Thread
- if (osRtxThreadWaitEnter(osRtxThreadWaitingSemaphore, timeout)) {
- osRtxThreadListPut(osRtxObject(semaphore), osRtxThreadGetRunning());
- } else {
- EvrRtxSemaphoreAcquireTimeout(semaphore);
- }
- status = osErrorTimeout;
- } else {
- EvrRtxSemaphoreNotAcquired(semaphore);
- status = osErrorResource;
- }
- }
- return status;
- }
- /// Release a Semaphore token that was acquired by osSemaphoreAcquire.
- /// \note API identical to osSemaphoreRelease
- static osStatus_t svcRtxSemaphoreRelease (osSemaphoreId_t semaphore_id) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- os_thread_t *thread;
- osStatus_t status;
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreError(semaphore, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return osErrorParameter;
- }
- // Check if Thread is waiting for a token
- if (semaphore->thread_list != NULL) {
- EvrRtxSemaphoreReleased(semaphore, semaphore->tokens);
- // Wakeup waiting Thread with highest Priority
- thread = osRtxThreadListGet(osRtxObject(semaphore));
- osRtxThreadWaitExit(thread, (uint32_t)osOK, TRUE);
- EvrRtxSemaphoreAcquired(semaphore, semaphore->tokens);
- status = osOK;
- } else {
- // Try to release token
- if (SemaphoreTokenIncrement(semaphore) != 0U) {
- EvrRtxSemaphoreReleased(semaphore, semaphore->tokens);
- status = osOK;
- } else {
- EvrRtxSemaphoreError(semaphore, osRtxErrorSemaphoreCountLimit);
- status = osErrorResource;
- }
- }
- return status;
- }
- /// Get current Semaphore token count.
- /// \note API identical to osSemaphoreGetCount
- static uint32_t svcRtxSemaphoreGetCount (osSemaphoreId_t semaphore_id) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreGetCount(semaphore, 0U);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return 0U;
- }
- EvrRtxSemaphoreGetCount(semaphore, semaphore->tokens);
- return semaphore->tokens;
- }
- /// Delete a Semaphore object.
- /// \note API identical to osSemaphoreDelete
- static osStatus_t svcRtxSemaphoreDelete (osSemaphoreId_t semaphore_id) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- os_thread_t *thread;
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreError(semaphore, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return osErrorParameter;
- }
- // Unblock waiting threads
- if (semaphore->thread_list != NULL) {
- do {
- thread = osRtxThreadListGet(osRtxObject(semaphore));
- osRtxThreadWaitExit(thread, (uint32_t)osErrorResource, FALSE);
- } while (semaphore->thread_list != NULL);
- osRtxThreadDispatch(NULL);
- }
- // Mark object as invalid
- semaphore->id = osRtxIdInvalid;
- // Free object memory
- if ((semaphore->flags & osRtxFlagSystemObject) != 0U) {
- if (osRtxInfo.mpi.semaphore != NULL) {
- (void)osRtxMemoryPoolFree(osRtxInfo.mpi.semaphore, semaphore);
- } else {
- (void)osRtxMemoryFree(osRtxInfo.mem.common, semaphore);
- }
- #ifdef RTX_OBJ_MEM_USAGE
- osRtxSemaphoreMemUsage.cnt_free++;
- #endif
- }
- EvrRtxSemaphoreDestroyed(semaphore);
- return osOK;
- }
- // Service Calls definitions
- //lint ++flb "Library Begin" [MISRA Note 11]
- SVC0_3(SemaphoreNew, osSemaphoreId_t, uint32_t, uint32_t, const osSemaphoreAttr_t *)
- SVC0_1(SemaphoreGetName, const char *, osSemaphoreId_t)
- SVC0_2(SemaphoreAcquire, osStatus_t, osSemaphoreId_t, uint32_t)
- SVC0_1(SemaphoreRelease, osStatus_t, osSemaphoreId_t)
- SVC0_1(SemaphoreGetCount, uint32_t, osSemaphoreId_t)
- SVC0_1(SemaphoreDelete, osStatus_t, osSemaphoreId_t)
- //lint --flb "Library End"
- // ==== ISR Calls ====
- /// Acquire a Semaphore token or timeout if no tokens are available.
- /// \note API identical to osSemaphoreAcquire
- __STATIC_INLINE
- osStatus_t isrRtxSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- osStatus_t status;
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore) || (timeout != 0U)) {
- EvrRtxSemaphoreError(semaphore, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return osErrorParameter;
- }
- // Try to acquire token
- if (SemaphoreTokenDecrement(semaphore) != 0U) {
- EvrRtxSemaphoreAcquired(semaphore, semaphore->tokens);
- status = osOK;
- } else {
- // No token available
- EvrRtxSemaphoreNotAcquired(semaphore);
- status = osErrorResource;
- }
- return status;
- }
- /// Release a Semaphore token that was acquired by osSemaphoreAcquire.
- /// \note API identical to osSemaphoreRelease
- __STATIC_INLINE
- osStatus_t isrRtxSemaphoreRelease (osSemaphoreId_t semaphore_id) {
- os_semaphore_t *semaphore = osRtxSemaphoreId(semaphore_id);
- osStatus_t status;
- // Check parameters
- if ((semaphore == NULL) || (semaphore->id != osRtxIdSemaphore)) {
- EvrRtxSemaphoreError(semaphore, (int32_t)osErrorParameter);
- //lint -e{904} "Return statement before end of function" [MISRA Note 1]
- return osErrorParameter;
- }
- // Try to release token
- if (SemaphoreTokenIncrement(semaphore) != 0U) {
- // Register post ISR processing
- osRtxPostProcess(osRtxObject(semaphore));
- EvrRtxSemaphoreReleased(semaphore, semaphore->tokens);
- status = osOK;
- } else {
- EvrRtxSemaphoreError(semaphore, osRtxErrorSemaphoreCountLimit);
- status = osErrorResource;
- }
- return status;
- }
- // ==== Public API ====
- /// Create and Initialize a Semaphore object.
- osSemaphoreId_t osSemaphoreNew (uint32_t max_count, uint32_t initial_count, const osSemaphoreAttr_t *attr) {
- osSemaphoreId_t semaphore_id;
- EvrRtxSemaphoreNew(max_count, initial_count, attr);
- if (IsException() || IsIrqMasked()) {
- EvrRtxSemaphoreError(NULL, (int32_t)osErrorISR);
- semaphore_id = NULL;
- } else {
- semaphore_id = __svcSemaphoreNew(max_count, initial_count, attr);
- }
- return semaphore_id;
- }
- /// Get name of a Semaphore object.
- const char *osSemaphoreGetName (osSemaphoreId_t semaphore_id) {
- const char *name;
- if (IsException() || IsIrqMasked()) {
- EvrRtxSemaphoreGetName(semaphore_id, NULL);
- name = NULL;
- } else {
- name = __svcSemaphoreGetName(semaphore_id);
- }
- return name;
- }
- /// Acquire a Semaphore token or timeout if no tokens are available.
- osStatus_t osSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout) {
- osStatus_t status;
- EvrRtxSemaphoreAcquire(semaphore_id, timeout);
- if (IsException() || IsIrqMasked()) {
- status = isrRtxSemaphoreAcquire(semaphore_id, timeout);
- } else {
- status = __svcSemaphoreAcquire(semaphore_id, timeout);
- }
- return status;
- }
- /// Release a Semaphore token that was acquired by osSemaphoreAcquire.
- osStatus_t osSemaphoreRelease (osSemaphoreId_t semaphore_id) {
- osStatus_t status;
- EvrRtxSemaphoreRelease(semaphore_id);
- if (IsException() || IsIrqMasked()) {
- status = isrRtxSemaphoreRelease(semaphore_id);
- } else {
- status = __svcSemaphoreRelease(semaphore_id);
- }
- return status;
- }
- /// Get current Semaphore token count.
- uint32_t osSemaphoreGetCount (osSemaphoreId_t semaphore_id) {
- uint32_t count;
- if (IsException() || IsIrqMasked()) {
- count = svcRtxSemaphoreGetCount(semaphore_id);
- } else {
- count = __svcSemaphoreGetCount(semaphore_id);
- }
- return count;
- }
- /// Delete a Semaphore object.
- osStatus_t osSemaphoreDelete (osSemaphoreId_t semaphore_id) {
- osStatus_t status;
- EvrRtxSemaphoreDelete(semaphore_id);
- if (IsException() || IsIrqMasked()) {
- EvrRtxSemaphoreError(semaphore_id, (int32_t)osErrorISR);
- status = osErrorISR;
- } else {
- status = __svcSemaphoreDelete(semaphore_id);
- }
- return status;
- }
|