Skip to content

Commit

Permalink
xtos: move sof/lib/perf_cnt.h to application interface
Browse files Browse the repository at this point in the history
The SOF perf_cnt.h provides a simple performance counter interface that
is used in SOF to track performance at audio module and pipeline level.

Majority of the implementation is RTOS agnostic, relying on
sof_cycle_get_64() to sample platform clock, and timer_get_system() for
CPU clock, both defined in rtos/timer.h. There is however some
conditional rules for Zephyr to use timing_counter_get() if SOF is built
with CONFIG_TIMING_FUNCTIONS=y.

The amount of RTOS variation does not seem to warrant branching the
whole perf_cnt.h to RTOS layer. Move perf_cnt.h back to application
interface, so the single implementation can be shared.

Link: #9015
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
  • Loading branch information
kv2019i authored and lgirdwood committed Oct 1, 2024
1 parent 23d3d55 commit 66bb497
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

/**
* \file xtos/include/sof/lib/perf_cnt.h
* \file include/sof/lib/perf_cnt.h
* \brief Simple performance counters
* \author Marcin Maka <marcin.maka@linux.intel.com>
*/
Expand Down

0 comments on commit 66bb497

Please sign in to comment.