![]() |
RTEMS 6.1
|
This file implements a benchmark timer using the PPC Timebase Register. More...
#include <bsp.h>#include <rtems.h>#include <rtems/btimer.h>#include <assert.h>#include <libcpu/powerpc-utility.h>Macros | |
| #define | BSP_Convert_decrementer(value) (value) |
Functions | |
| void | benchmark_timer_initialize (void) |
| Initialize the Benchmark Timer. | |
| benchmark_timer_t | benchmark_timer_read (void) |
| Read the Benchmark Timer. | |
| void | benchmark_timer_disable_subtracting_average_overhead (bool find_flag) |
| Disable Average Overhead Removal from the Benchmark Timer. | |
Variables | |
| uint64_t | Timer_driver_Start_time |
| bool | benchmark_timer_find_average_overhead = false |
| unsigned | clicks_overhead = 0 |
This file implements a benchmark timer using the PPC Timebase Register.
| void benchmark_timer_disable_subtracting_average_overhead | ( | bool | find_flag | ) |
Disable Average Overhead Removal from the Benchmark Timer.
This method places the benchmark timer in a "raw" mode where it returns the actual number of units which have passed between calls to benchmark_timer_initialize and benchmark_timer_read counting.
| [in] | find_flag | indicates to enable or disable the mode |
| void benchmark_timer_initialize | ( | void | ) |
Initialize the Benchmark Timer.
This method initializes the benchmark timer and resets it to begin counting.
| benchmark_timer_t benchmark_timer_read | ( | void | ) |
Read the Benchmark Timer.
This method stops the benchmark timer and returns the number of units that have passed since benchmark_timer_initialize was invoked.