pm: stats: minor cleanups

- Rename time start/stop variables
- Use uint8_t vs. int as loop index variable type
- Flag unused variables

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-11-22 19:17:50 +01:00 committed by Carles Cufí
commit 8893d33539

View file

@ -13,13 +13,6 @@
#include <stats/stats.h>
#include <sys/printk.h>
struct pm_cpu_timing {
uint32_t timer_start;
uint32_t timer_end;
};
static struct pm_cpu_timing pm_cpu_timings[CONFIG_MP_NUM_CPUS];
STATS_SECT_START(pm_cpu_stats)
STATS_SECT_ENTRY32(state_count)
STATS_SECT_ENTRY32(state_last_cycles)
@ -32,21 +25,27 @@ STATS_NAME(pm_cpu_stats, state_last_cycles)
STATS_NAME(pm_cpu_stats, state_total_cycles)
STATS_NAME_END(pm_cpu_stats);
#define PM_STAT_NAME_LEN sizeof("pm_cpu_XXX_state_X_stats")
static char pm_cpu_stat_names[CONFIG_MP_NUM_CPUS][PM_STATE_COUNT][PM_STAT_NAME_LEN];
static struct stats_pm_cpu_stats pm_cpu_stats[CONFIG_MP_NUM_CPUS][PM_STATE_COUNT];
static STATS_SECT_DECL(pm_cpu_stats) stats[CONFIG_MP_NUM_CPUS][PM_STATE_COUNT];
static int pm_stats_init(const struct device *unused)
#define PM_STAT_NAME_LEN sizeof("pm_cpu_XXX_state_X_stats")
static char names[CONFIG_MP_NUM_CPUS][PM_STATE_COUNT][PM_STAT_NAME_LEN];
static uint32_t time_start[CONFIG_MP_NUM_CPUS];
static uint32_t time_stop[CONFIG_MP_NUM_CPUS];
static int pm_stats_init(const struct device *dev)
{
for (int i = 0; i < CONFIG_MP_NUM_CPUS; i++) {
for (int j = 0; j < PM_STATE_COUNT; j++) {
snprintk(pm_cpu_stat_names[i][j], PM_STAT_NAME_LEN,
ARG_UNUSED(dev);
for (uint8_t i = 0U; i < CONFIG_MP_NUM_CPUS; i++) {
for (uint8_t j = 0U; j < PM_STATE_COUNT; j++) {
snprintk(names[i][j], PM_STAT_NAME_LEN,
"pm_cpu_%03d_state_%1d_stats", i, j);
stats_init(&(pm_cpu_stats[i][j].s_hdr), STATS_SIZE_32, 3,
STATS_NAME_INIT_PARMS(pm_cpu_stats));
stats_register(pm_cpu_stat_names[i][j], &(pm_cpu_stats[i][j].s_hdr));
stats_init(&(stats[i][j].s_hdr), STATS_SIZE_32, 3U,
STATS_NAME_INIT_PARMS(stats));
stats_register(names[i][j], &(stats[i][j].s_hdr));
}
}
return 0;
}
@ -54,22 +53,20 @@ SYS_INIT(pm_stats_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
void pm_stats_start(void)
{
pm_cpu_timings[_current_cpu->id].timer_start = k_cycle_get_32();
time_start[_current_cpu->id] = k_cycle_get_32();
}
void pm_stats_stop(void)
{
pm_cpu_timings[_current_cpu->id].timer_end = k_cycle_get_32();
time_stop[_current_cpu->id] = k_cycle_get_32();
}
void pm_stats_update(enum pm_state state)
{
uint8_t cpu = _current_cpu->id;
uint32_t time_total =
pm_cpu_timings[cpu].timer_end -
pm_cpu_timings[cpu].timer_start;
uint32_t time_total = time_stop[cpu] - time_start[cpu];
STATS_INC(pm_cpu_stats[cpu][state], state_count);
STATS_INCN(pm_cpu_stats[cpu][state], state_total_cycles, time_total);
STATS_SET(pm_cpu_stats[cpu][state], state_last_cycles, time_total);
STATS_INC(stats[cpu][state], state_count);
STATS_INCN(stats[cpu][state], state_total_cycles, time_total);
STATS_SET(stats[cpu][state], state_last_cycles, time_total);
}