Jim Carver / Mbed OS mbed-cloud-workshop-connect
Embed: (wiki syntax)

« Back to documentation index

pal_plat_rtos.h File Reference

pal_plat_rtos.h File Reference

PAL RTOS - platform. This file contains the real-time OS APIs that need to be implemented in the platform layer. More...

Go to the source code of this file.

Functions

void pal_plat_osReboot (void)
void pal_plat_osApplicationReboot (void)
palStatus_t pal_plat_RTOSInitialize (void *opaqueContext)
palStatus_t pal_plat_RTOSDestroy (void)
uint64_t pal_plat_osKernelSysTick (void)
uint64_t pal_plat_osKernelSysTickMicroSec (uint64_t microseconds)
uint64_t pal_plat_osKernelSysTickFrequency (void)
palStatus_t pal_plat_osThreadCreate (palThreadFuncPtr function, void *funcArgument, palThreadPriority_t priority, uint32_t stackSize, palThreadID_t *threadID)
palStatus_t pal_plat_osThreadTerminate (palThreadID_t *threadID)
palThreadID_t pal_plat_osThreadGetId (void)
palStatus_t pal_plat_osDelay (uint32_t milliseconds)
palStatus_t pal_plat_osTimerCreate (palTimerFuncPtr function, void *funcArgument, palTimerType_t timerType, palTimerID_t *timerID)
palStatus_t pal_plat_osTimerStart (palTimerID_t timerID, uint32_t millisec)
palStatus_t pal_plat_osTimerStop (palTimerID_t timerID)
palStatus_t pal_plat_osTimerDelete (palTimerID_t *timerID)
palStatus_t pal_plat_osMutexCreate (palMutexID_t *mutexID)
palStatus_t pal_plat_osMutexWait (palMutexID_t mutexID, uint32_t millisec)
palStatus_t pal_plat_osMutexRelease (palMutexID_t mutexID)
palStatus_t pal_plat_osMutexDelete (palMutexID_t *mutexID)
palStatus_t pal_plat_osSemaphoreCreate (uint32_t count, palSemaphoreID_t *semaphoreID)
palStatus_t pal_plat_osSemaphoreWait (palSemaphoreID_t semaphoreID, uint32_t millisec, int32_t *countersAvailable)
palStatus_t pal_plat_osSemaphoreRelease (palSemaphoreID_t semaphoreID)
palStatus_t pal_plat_osSemaphoreDelete (palSemaphoreID_t *semaphoreID)
int32_t pal_plat_osAtomicIncrement (int32_t *valuePtr, int32_t increment)
void * pal_plat_malloc (size_t len)
void pal_plat_free (void *buffer)
palStatus_t pal_plat_osRandomBuffer (uint8_t *randomBuf, size_t bufSizeBytes, size_t *actualRandomSizeBytes)
palStatus_t pal_plat_osGetRoTFromHW (uint8_t *keyBuf, size_t keyLenBytes)
palStatus_t pal_plat_osSetRtcTime (uint64_t rtcSetTime)
 This function calls the platform layer and sets the new RTC to the H/W.
palStatus_t pal_plat_osGetRtcTime (uint64_t *rtcGetTime)
 This function gets the RTC from the platform.
palStatus_t pal_plat_rtcDeInit (void)
 This function DeInitialize the RTC module.
palStatus_t pal_plat_rtcInit (void)
 This function initialize the RTC module.

Detailed Description

PAL RTOS - platform. This file contains the real-time OS APIs that need to be implemented in the platform layer.

Definition in file pal_plat_rtos.h.


Function Documentation

void pal_plat_free ( void *  buffer )

Free memory back to the OS heap.

Parameters:
[in]*bufferA pointer to the buffer that should be free.
Returns:
`void`

Definition at line 877 of file FreeRTOS/RTOS/pal_plat_rtos.c.

void* pal_plat_malloc ( size_t  len )

Perform allocation from the heap according to the OS specification.

Parameters:
[in]lenThe length of the buffer to be allocated.
Returns:
`void *`. The pointer of the malloc received from the OS if NULL error occurred

Definition at line 871 of file FreeRTOS/RTOS/pal_plat_rtos.c.

void pal_plat_osApplicationReboot ( void   )

Application provided implementation to replace default pal_osReboot() functionality.

int32_t pal_plat_osAtomicIncrement ( int32_t *  valuePtr,
int32_t  increment 
)

Perform an atomic increment for a signed32 bit value.

Parameters:
[in,out]valuePtrThe address of the value to increment.
[in]incrementThe number by which to increment.
Returns:
The value of the `valuePtr` after the increment operation.

Perform an atomic increment for a signed32 bit value.

Parameters:
[in,out]valuePtrThe address of the value to increment.
[in]incrementThe number by which to increment.
Returns:
The value of the valuePtr after the increment operation.

Definition at line 1161 of file Linux/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osDelay ( uint32_t  milliseconds )

Wait for a specified period of time in milliseconds.

Parameters:
[in]millisecondsThe number of milliseconds to wait before proceeding.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Wait for a specified period of time in milliseconds.

Parameters:
[in]millisecondsThe number of milliseconds to wait before proceeding.
Returns:
The status in the form of palStatus_t; PAL_SUCCESS(0) in case of success, a negative value indicating a specific error code in case of failure.

Definition at line 171 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osGetRoTFromHW ( uint8_t *  keyBuf,
size_t  keyLenBytes 
)

Retrieve platform Root of Trust certificate

Parameters:
[in,out]*keyBufA pointer to the buffer that holds the RoT.
[in]keyLenBytesThe size of the buffer to hold the 128 bit key, must be at least 16 bytes. The buffer needs to be able to hold 16 bytes of data.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.
palStatus_t pal_plat_osGetRtcTime ( uint64_t *  rtcGetTime )

This function gets the RTC from the platform.

Parameters:
[out]uint64_t* rtcGetTime - Holds the RTC value
Returns:
PAL_SUCCESS when the RTC return correctly

Definition at line 1220 of file Linux/RTOS/pal_plat_rtos.c.

uint64_t pal_plat_osKernelSysTick ( void   )

Get the RTOS kernel system timer counter.

Returns:
The RTOS kernel system timer counter.
Note:
The required tick counter is the OS (platform) kernel system tick counter.
If the platform supports 64-bit tick counter, please implement it. If the platform supports only 32 bit, note that this counter wraps around very often (for example, once every 42 sec for 100Mhz).

Definition at line 178 of file FreeRTOS/RTOS/pal_plat_rtos.c.

uint64_t pal_plat_osKernelSysTickFrequency ( void   )

Get the system tick frequency.

Returns:
The system tick frequency.
Note:
The system tick frequency MUST be more than 1KHz (at least one tick per millisecond).

Get the system tick frequency.

Returns:
The system tick frequency.

Definition at line 199 of file FreeRTOS/RTOS/pal_plat_rtos.c.

uint64_t pal_plat_osKernelSysTickMicroSec ( uint64_t  microseconds )

Convert the value from microseconds to kernel sys ticks. This is the same as CMSIS macro `osKernelSysTickMicroSec`.

Definition at line 193 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osMutexCreate ( palMutexID_t *  mutexID )

Create and initialize a mutex object.

Parameters:
[out]mutexIDThe created mutex ID handle, zero value indicates an error.
Returns:
PAL_SUCCESS when the mutex was created successfully, a specific error in case of failure.
PAL_ERR_NO_MEMORY when there is no memory resource available to create a mutex object.
Note:
The create function MUST NOT wait for the platform resources and it should return PAL_ERR_RTOS_RESOURCE, unless the platform API is blocking. By default, the mutex is created with a recursive flag set.

Create and initialize a mutex object.

Parameters:
[out]mutexIDThe created mutex ID handle, zero value indicates an error.
Returns:
PAL_SUCCESS when the mutex was created successfully, a specific error in case of failure.

Definition at line 590 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osMutexDelete ( palMutexID_t *  mutexID )

Delete a mutex object.

Parameters:
inout]mutexID The ID of the mutex to delete. In success, `*mutexID` = NULL.
Returns:
PAL_SUCCESS when the mutex was deleted successfully, one of the following error codes in case of failure:
  • PAL_ERR_RTOS_RESOURCE - Mutex already released.
  • PAL_ERR_RTOS_PARAMETER - Mutex ID is invalid.
  • PAL_ERR_RTOS_ISR - Cannot be called from interrupt service routines.
Note:
After this call, `mutex_id` is no longer valid and cannot be used.

Definition at line 693 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osMutexRelease ( palMutexID_t  mutexID )

Release a mutex that was obtained by `osMutexWait`.

Parameters:
[in]mutexIDThe handle for the mutex.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Definition at line 659 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osMutexWait ( palMutexID_t  mutexID,
uint32_t  millisec 
)

Wait until a mutex becomes available.

Parameters:
[in]mutexIDThe handle for the mutex.
[in]millisecThe timeout for the waiting operation if the timeout expires before the semaphore is released and an error is returned from the function.
Returns:
PAL_SUCCESS(0) in case of success. One of the following error codes in case of failure:
  • PAL_ERR_RTOS_RESOURCE - Mutex not available but no timeout set.
  • PAL_ERR_RTOS_TIMEOUT - Mutex was not available until timeout expired.
  • PAL_ERR_RTOS_PARAMETER - The mutex ID is invalid.
  • PAL_ERR_RTOS_ISR - Cannot be called from interrupt service routines.

Definition at line 623 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osRandomBuffer ( uint8_t *  randomBuf,
size_t  bufSizeBytes,
size_t *  actualRandomSizeBytes 
)

Generate a random number into the given buffer with the given size in bytes.

Parameters:
[out]randomBufA buffer to hold the generated number.
[in]bufSizeBytesThe size of the buffer and the size of the required random number to generate.
[out]actualRandomSizeBytesThe actual size of the written random data to the output buffer.
Returns:
PAL_SUCCESS on success. A negative value indicating a specific error code in case of failure.
Note:
In case the platform was able to provide random data with non-zero size and less than `bufSizeBytes`the function must return `PAL_ERR_RTOS_TRNG_PARTIAL_DATA`

Definition at line 883 of file FreeRTOS/RTOS/pal_plat_rtos.c.

void pal_plat_osReboot ( void   )

Initiate a system reboot.

Definition at line 109 of file Linux/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osSemaphoreCreate ( uint32_t  count,
palSemaphoreID_t *  semaphoreID 
)

Create and initialize a semaphore object.

Parameters:
[in]countThe number of available resources.
[out]semaphoreIDThe ID of the created semaphore, zero value indicates an error.
Returns:
PAL_SUCCESS when the semaphore was created successfully, a specific error in case of failure.
PAL_ERR_NO_MEMORY: No memory resource available to create a semaphore object.
Note:
The create function MUST not wait for the platform resources and it should return PAL_ERR_RTOS_RESOURCE, unless the platform API is blocking.

Definition at line 719 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osSemaphoreDelete ( palSemaphoreID_t *  semaphoreID )

Delete a semaphore object.

Parameters:
inout]semaphoreID: The ID of the semaphore to delete. In success, `*semaphoreID` = NULL.
Returns:
PAL_SUCCESS when the semaphore was deleted successfully. One of the following error codes in case of failure:
PAL_ERR_RTOS_RESOURCE - Semaphore already released.
PAL_ERR_RTOS_PARAMETER - Semaphore ID is invalid.
Note:
After this call, the `semaphore_id` is no longer valid and cannot be used.

Delete a semaphore object.

Parameters:
inout]semaphoreID: The ID of the semaphore to delete. In success, *semaphoreID = NULL.
Returns:
PAL_SUCCESS when the semaphore was deleted successfully, one of the following error codes in case of failure: PAL_ERR_RTOS_RESOURCE - Semaphore already released. PAL_ERR_RTOS_PARAMETER - Semaphore ID is invalid.
Note:
After this call, the semaphore_id is no longer valid and cannot be used.

Definition at line 844 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osSemaphoreRelease ( palSemaphoreID_t  semaphoreID )

Release a semaphore token.

Parameters:
[in]semaphoreIDThe handle for the semaphore.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Release a semaphore token.

Parameters:
[in]semaphoreIDThe handle for the semaphore.
Returns:
The status in the form of palStatus_t; PAL_SUCCESS(0) in case of success, a negative value indicating a specific error code in case of failure.

Definition at line 803 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osSemaphoreWait ( palSemaphoreID_t  semaphoreID,
uint32_t  millisec,
int32_t *  countersAvailable 
)

Wait until a semaphore token becomes available.

Parameters:
[in]semaphoreIDThe handle for the semaphore.
[in]millisecThe timeout for the waiting operation if the timeout expires before the semaphore is released and an error is returned from the function.
[out]countersAvailableThe number of semaphores available. If semaphores are not available (timeout/error) zero is returned.
Returns:
PAL_SUCCESS(0) in case of success. One of the following error codes in case of failure:
  • PAL_ERR_RTOS_TIMEOUT - Semaphore was not available until timeout expired.
  • PAL_ERR_RTOS_PARAMETER - Semaphore ID is invalid.

Definition at line 754 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osSetRtcTime ( uint64_t  rtcSetTime )

This function calls the platform layer and sets the new RTC to the H/W.

Parameters:
[in]uint64_trtcSetTime the new RTC time
Returns:
PAL_SUCCESS when the RTC return correctly

Definition at line 1257 of file Linux/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osThreadCreate ( palThreadFuncPtr  function,
void *  funcArgument,
palThreadPriority_t  priority,
uint32_t  stackSize,
palThreadID_t threadID 
)

Create and run the thread.

Parameters:
[in]functionA function pointer to the thread callback function.
[in]funcArgumentAn argument for the thread function.
[in]priorityThe priority of the thread.
[in]stackSizeThe stack size of the thread, can NOT be 0.
[out]threadID,:The created thread ID handle. In case of error, this value is NULL.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Definition at line 283 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palThreadID_t pal_plat_osThreadGetId ( void   )

Get the ID of the current thread.

Returns:
The ID of the current thread. In case of error, returns PAL_MAX_UINT32.

Definition at line 346 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osThreadTerminate ( palThreadID_t threadID )

Terminate and free allocated data for the thread.

Parameters:
[in]threadDataA pointer to a palThreadData_t structure containing information about the thread.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Definition at line 352 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osTimerCreate ( palTimerFuncPtr  function,
void *  funcArgument,
palTimerType_t  timerType,
palTimerID_t *  timerID 
)

Create a timer.

Parameters:
[in]functionA function pointer to the timer callback function.
[in]funcArgumentAn argument for the timer callback function.
[in]timerTypeThe timer type to be created, periodic or `oneShot`.
[out]timerIDThe ID of the created timer. Zero value indicates an error.
Returns:
PAL_SUCCESS when the timer was created successfully. A specific error in case of failure.
PAL_ERR_NO_MEMORY: No memory resource available to create a timer object.
Note:
The timer callback function runs according to the platform resources of stack size and priority.
The create function MUST not wait for platform resources and it should return PAL_ERR_RTOS_RESOURCE, unless the platform API is blocking.

Create a timer.

Parameters:
[in]functionA function pointer to the timer callback function.
[in]funcArgumentAn argument for the timer callback function.
[in]timerTypeThe timer type to be created, periodic or oneShot.
[out]timerIDThe ID of the created timer, zero value indicates an error.
Returns:
PAL_SUCCESS when the timer was created successfully. A specific error in case of failure.

Definition at line 393 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osTimerDelete ( palTimerID_t *  timerID )

Delete the timer object.

Parameters:
inout]timerID The handle for the timer to delete. In success, `*timerID` = NULL.
Returns:
PAL_SUCCESS when the timer was deleted successfully. PAL_ERR_RTOS_PARAMETER when the `timerID` is incorrect.
Note:
In case of a running timer, `pal_platosTimerDelete()` MUST stop the timer before deletion.

Delete the timer object

Parameters:
inout]timerID The handle for the timer to delete. In success, *timerID = NULL.
Returns:
PAL_SUCCESS when the timer was deleted successfully, PAL_ERR_RTOS_PARAMETER when the timerID is incorrect.

Definition at line 545 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osTimerStart ( palTimerID_t  timerID,
uint32_t  millisec 
)

Start or restart a timer.

Parameters:
[in]timerIDThe handle for the timer to start.
[in]millisec,:The time in milliseconds to set the timer to, MUST be larger than 0. In case the value is 0, the error PAL_ERR_RTOS_VALUE will be returned.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Start or restart a timer.

Parameters:
[in]timerIDThe handle for the timer to start.
[in]millisecThe time in milliseconds to set the timer to.
Returns:
The status in the form of palStatus_t; PAL_SUCCESS(0) in case of success, a negative value indicating a specific error code in case of failure.

Definition at line 457 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_osTimerStop ( palTimerID_t  timerID )

Stop a timer.

Parameters:
[in]timerIDThe handle for the timer to stop.
Returns:
PAL_SUCCESS(0) in case of success. A negative value indicating a specific error code in case of failure.

Stop a timer.

Parameters:
[in]timerIDThe handle for the timer to stop.
Returns:
The status in the form of palStatus_t; PAL_SUCCESS(0) in case of success, a negative value indicating a specific error code in case of failure.

Definition at line 511 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_rtcDeInit ( void   )

This function DeInitialize the RTC module.

Returns:
PAL_SUCCESS when the success or error upon failing

Definition at line 1298 of file Linux/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_rtcInit ( void   )

This function initialize the RTC module.

Returns:
PAL_SUCCESS when the success or error upon failing

Definition at line 1288 of file Linux/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_RTOSDestroy ( void   )

De-initialize thread objects.

De-Initialize thread objects.

Definition at line 154 of file FreeRTOS/RTOS/pal_plat_rtos.c.

palStatus_t pal_plat_RTOSInitialize ( void *  opaqueContext )

Initialize all data structures (semaphores, mutexes, memory pools, message queues) at system initialization. In case of a failure in any of the initializations, the function returns an error and stops the rest of the initializations.

Parameters:
[in]opaqueContextThe context passed to the initialization (not required for generic CMSIS, pass NULL in this case).
Returns:
PAL_SUCCESS(0) in case of success, PAL_ERR_CREATION_FAILED in case of failure.

Initialize all data structures (semaphores, mutexs, memory pools, message queues) at system initialization. In case of a failure in any of the initializations, the function returns with an error and stops the rest of the initializations.

Parameters:
[in]opaqueContextThe context passed to the initialization (not required for generic CMSIS, pass NULL in this case).
Returns:
PAL_SUCCESS(0) in case of success, PAL_ERR_CREATION_FAILED in case of failure.

Definition at line 119 of file FreeRTOS/RTOS/pal_plat_rtos.c.