mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-15 09:17:44 -04:00
* Use new version of CI-CD Actions, checkout@v3 instead of checkout@v2 on all jobs * Use cSpell spell check, and use ubuntu-20.04 for formatting check * Add in bot formatting action * Update freertos_demo.yml and freertos_plus_demo.yml files to increase github log readability * Add in a Qemu demo onto the workflows.
253 lines
7.9 KiB
C
253 lines
7.9 KiB
C
/*
|
|
* Percepio Trace Recorder for Tracealyzer v4.6.0
|
|
* Copyright 2021 Percepio AB
|
|
* www.percepio.com
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @brief Public trace timestamp APIs.
|
|
*/
|
|
|
|
#ifndef TRC_TIMESTAMP_H
|
|
#define TRC_TIMESTAMP_H
|
|
|
|
#if ( TRC_USE_TRACEALYZER_RECORDER == 1 )
|
|
|
|
#if ( TRC_CFG_RECORDER_MODE == TRC_RECORDER_MODE_STREAMING )
|
|
|
|
#include <trcTypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @defgroup trace_timestamp_apis Trace Timestamp APIs
|
|
* @ingroup trace_recorder_apis
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Trace Timestamp Structure
|
|
*/
|
|
typedef struct TraceTimestamp
|
|
{
|
|
uint32_t type; /**< Timer type (direction) */
|
|
TraceUnsignedBaseType_t frequency; /**< Timer Frequency */
|
|
uint32_t period; /**< Timer Period */
|
|
uint32_t wraparounds; /**< Nr of timer wraparounds */
|
|
uint32_t osTickHz; /**< RTOS tick frequency */
|
|
uint32_t latestTimestamp; /**< Latest timestamp */
|
|
uint32_t osTickCount; /**< RTOS tick count */
|
|
} TraceTimestamp_t;
|
|
|
|
extern TraceTimestamp_t * pxTraceTimestamp;
|
|
|
|
#define TRC_TIMESTAMP_RECORD_SIZE ( sizeof( TraceTimestamp_t ) )
|
|
|
|
/**
|
|
* @internal Trace Timestamp Buffer Structure
|
|
*/
|
|
typedef struct TraceTimestampBuffer
|
|
{
|
|
uint32_t buffer[ ( TRC_TIMESTAMP_RECORD_SIZE ) / sizeof( uint32_t ) ];
|
|
} TraceTimestampBuffer_t;
|
|
|
|
/**
|
|
* @internal Initialize trace timestamp system.
|
|
*
|
|
* @param[in] pxBuffer Pointer to memory that will be used by the
|
|
* trace timestamp system.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampInitialize( TraceTimestampBuffer_t * pxBuffer );
|
|
|
|
#if ( ( TRC_CFG_USE_TRACE_ASSERT ) == 1 )
|
|
|
|
/**
|
|
* @brief Gets current trace timestamp.
|
|
*
|
|
* @param[out] puiTimestamp Timestamp.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampGet( uint32_t * puiTimestamp );
|
|
|
|
/**
|
|
* @brief Gets trace timestamp wraparounds.
|
|
*
|
|
* @param[out] puiTimerWraparounds Timer wraparounds.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampGetWraparounds( uint32_t * puiTimerWraparounds );
|
|
|
|
/**
|
|
* @brief Sets trace timestamp frequency.
|
|
*
|
|
* @param[in] uxFrequency Frequency.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampSetFrequency( TraceUnsignedBaseType_t uxFrequency );
|
|
|
|
/**
|
|
* @brief Gets trace timestamp frequency.
|
|
*
|
|
* @param[out] puxFrequency Frequency.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampGetFrequency( TraceUnsignedBaseType_t * puxFrequency );
|
|
|
|
/**
|
|
* @brief Sets trace timestamp period.
|
|
*
|
|
* @param[in] uiPeriod Period.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampSetPeriod( uint32_t uiPeriod );
|
|
|
|
/**
|
|
* @brief Gets trace timestamp period.
|
|
*
|
|
* @param[out] puiPeriod Period.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampGetPeriod( uint32_t * puiPeriod );
|
|
|
|
/**
|
|
* @brief Sets trace timestamp OS tick count.
|
|
*
|
|
* @param[in] uiOsTickCount OS tick count.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampSetOsTickCount( uint32_t uiOsTickCount );
|
|
|
|
/**
|
|
* @brief Gets trace timestamp OS tick count.
|
|
*
|
|
* @param[in] puiOsTickCount
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceTimestampGetOsTickCount( uint32_t * puiOsTickCount );
|
|
|
|
#else /* ((TRC_CFG_USE_TRACE_ASSERT) == 1) */
|
|
|
|
/**
|
|
* @brief Gets current trace timestamp.
|
|
*
|
|
* @param[out] puiTimestamp Timestamp.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#if ( ( TRC_HWTC_TYPE == TRC_FREE_RUNNING_32BIT_INCR ) || ( TRC_HWTC_TYPE == TRC_CUSTOM_TIMER_INCR ) )
|
|
#define xTraceTimestampGet( puiTimestamp ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_4( *( puiTimestamp ) = TRC_HWTC_COUNT, ( *( puiTimestamp ) < pxTraceTimestamp->latestTimestamp ) ? pxTraceTimestamp->wraparounds++ : 0, pxTraceTimestamp->latestTimestamp = *( puiTimestamp ), TRC_SUCCESS )
|
|
#elif ( ( TRC_HWTC_TYPE == TRC_FREE_RUNNING_32BIT_DECR ) || ( TRC_HWTC_TYPE == TRC_CUSTOM_TIMER_DECR ) )
|
|
#define xTraceTimestampGet( puiTimestamp ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_4( *( puiTimestamp ) = TRC_HWTC_COUNT, ( *( puiTimestamp ) > pxTraceTimestamp->latestTimestamp ) ? pxTraceTimestamp->wraparounds++ : 0, pxTraceTimestamp->latestTimestamp = *( puiTimestamp ), TRC_SUCCESS )
|
|
#elif ( ( TRC_HWTC_TYPE == TRC_OS_TIMER_INCR ) || ( TRC_HWTC_TYPE == TRC_OS_TIMER_DECR ) )
|
|
#define xTraceTimestampGet( puiTimestamp ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_4( *( puiTimestamp ) = ( ( TRC_HWTC_COUNT ) & 0x00FFFFFFU ) + ( ( pxTraceTimestamp->osTickCount & 0x000000FFU ) << 24 ), pxTraceTimestamp->wraparounds = pxTraceTimestamp->osTickCount, pxTraceTimestamp->latestTimestamp = *( puiTimestamp ), TRC_SUCCESS )
|
|
#endif
|
|
|
|
/**
|
|
* @brief Gets trace timestamp wraparounds.
|
|
*
|
|
* @param[out] puiTimerWraparounds Timer wraparounds.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampGetWraparounds( puiTimerWraparounds ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( *( puiTimerWraparounds ) = pxTraceTimestamp->wraparounds, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Sets trace timestamp frequency.
|
|
*
|
|
* @param[in] uxFrequency Frequency.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampSetFrequency( uxFrequency ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( pxTraceTimestamp->frequency = uxFrequency, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Sets trace timestamp period.
|
|
*
|
|
* @param[in] uiPeriod Period.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampSetPeriod( uiPeriod ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( pxTraceTimestamp->period = uiPeriod, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Sets trace timestamp OS tick count.
|
|
*
|
|
* @param[in] uiOsTickCount OS tick count.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampSetOsTickCount( uiOsTickCount ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( pxTraceTimestamp->osTickCount = uiOsTickCount, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Gets trace timestamp frequency.
|
|
*
|
|
* @param[out] puxFrequency Frequency.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampGetFrequency( puxFrequency ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( *( puxFrequency ) = pxTraceTimestamp->frequency, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Gets trace timestamp period.
|
|
*
|
|
* @param[out] puiPeriod Period.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampGetPeriod( puiPeriod ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( *( puiPeriod ) = pxTraceTimestamp->period, TRC_SUCCESS )
|
|
|
|
/**
|
|
* @brief Gets trace timestamp OS tick count.
|
|
*
|
|
* @param[in] puiOsTickCount
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
#define xTraceTimestampGetOsTickCount( puiOsTickCount ) TRC_COMMA_EXPR_TO_STATEMENT_EXPR_2( *( puiOsTickCount ) = pxTraceTimestamp->osTickCount, TRC_SUCCESS )
|
|
|
|
#endif /* ((TRC_CFG_USE_TRACE_ASSERT) == 1) */
|
|
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* (TRC_CFG_RECORDER_MODE == TRC_RECORDER_MODE_STREAMING) */
|
|
|
|
#endif /* (TRC_USE_TRACEALYZER_RECORDER == 1) */
|
|
|
|
#endif /* TRC_TIMESTAMP_H */
|