diff options
author | Jack Rosenthal <jrosenth@chromium.org> | 2019-05-17 13:09:51 -0600 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2019-05-22 20:57:10 -0700 |
commit | ddba0154f7c919144b1b0013ac0c6b172667822a (patch) | |
tree | c07477b3d4e6161280370e1b835a6e5d69645f31 | |
parent | d3f26175e58a1686def18af02239b4693674bc8f (diff) | |
download | chrome-ec-ddba0154f7c919144b1b0013ac0c6b172667822a.tar.gz |
ish: refactor statistic collection and command
This commit re-writes the power manangment statistic collection and
idlestats command to no longer use conditional compilation, and to
reduce repetitive code.
BUG=b:132178013,b:132929262
BRANCH=none
TEST=observed output of idlestats command on arcada_ish, everything
appears to be normal
Change-Id: I3075eba2ae3f681a2d7d1891f5014de4b6db24a2
Signed-off-by: Jack Rosenthal <jrosenth@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1617079
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: Jett Rink <jettrink@chromium.org>
-rw-r--r-- | chip/ish/power_mgt.c | 104 |
1 files changed, 45 insertions, 59 deletions
diff --git a/chip/ish/power_mgt.c b/chip/ish/power_mgt.c index 06d910479d..63d9b6bc5d 100644 --- a/chip/ish/power_mgt.c +++ b/chip/ish/power_mgt.c @@ -61,29 +61,32 @@ static struct pm_context pm_ctx = { }; /* D0ix statistics data, including each state's count and total stay time */ -struct pm_statistics { - uint64_t d0i0_cnt; - uint64_t d0i0_time_us; - -#ifdef CONFIG_ISH_PM_D0I1 - uint64_t d0i1_cnt; - uint64_t d0i1_time_us; -#endif - -#ifdef CONFIG_ISH_PM_D0I2 - uint64_t d0i2_cnt; - uint64_t d0i2_time_us; -#endif - -#ifdef CONFIG_ISH_PM_D0I3 - uint64_t d0i3_cnt; - uint64_t d0i3_time_us; -#endif +struct pm_stat { + uint64_t count; + uint64_t total_time_us; +}; -} __packed; +struct pm_statistics { + struct pm_stat d0i0; + struct pm_stat d0i1; + struct pm_stat d0i2; + struct pm_stat d0i3; +}; static struct pm_statistics pm_stats; +/* + * Log a new statistic + * + * t0: start time, in us + * t1: end time, in us + */ +static void log_pm_stat(struct pm_stat *stat, uint64_t t0, uint64_t t1) +{ + stat->total_time_us += t1 - t0; + stat->count++; +} + #ifdef CONFIG_ISH_PM_AONTASK /* The GDT which initialized in init.S */ @@ -275,8 +278,7 @@ static void enter_d0i0(void) t1 = __hw_clock_source_read(); pm_ctx.aon_share->pm_state = ISH_PM_STATE_D0; - pm_stats.d0i0_time_us += t1 - t0; - pm_stats.d0i0_cnt++; + log_pm_stat(&pm_stats.d0i0, t0, t1); } /** @@ -359,8 +361,7 @@ static void enter_d0i1(void) pm_ctx.aon_share->pm_state = ISH_PM_STATE_D0; t1 = __hw_clock_source_read(); - pm_stats.d0i1_time_us += t1 - t0; - pm_stats.d0i1_cnt++; + log_pm_stat(&pm_stats.d0i1, t0, t1); /* restore interrupts */ task_disable_irq(ISH_PMU_WAKEUP_IRQ); @@ -410,8 +411,7 @@ static void enter_d0i2(void) t1 = __hw_clock_source_read(); pm_ctx.aon_share->pm_state = ISH_PM_STATE_D0; - pm_stats.d0i2_time_us += t1 - t0; - pm_stats.d0i2_cnt++; + log_pm_stat(&pm_stats.d0i2, t0, t1); /* restore interrupts */ task_disable_irq(ISH_PMU_WAKEUP_IRQ); @@ -461,8 +461,7 @@ static void enter_d0i3(void) t1 = __hw_clock_source_read(); pm_ctx.aon_share->pm_state = ISH_PM_STATE_D0; - pm_stats.d0i3_time_us += t1 - t0; - pm_stats.d0i3_cnt++; + log_pm_stat(&pm_stats.d0i3, t0, t1); /* restore interrupts */ task_disable_irq(ISH_PMU_WAKEUP_IRQ); @@ -622,59 +621,46 @@ void __idle(void) } } +/* + * helper for command_idle_stats + */ +static void print_stats(const char *name, const struct pm_stat *stat) +{ + if (stat->count) + ccprintf(" %s:\n" + " counts: %lu\n" + " time: %.6lus\n", + name, stat->count, stat->total_time_us); +} + /** * Print low power idle statistics */ static int command_idle_stats(int argc, char **argv) { -#if defined(CONFIG_ISH_PM_D0I2) || defined(CONFIG_ISH_PM_D0I3) struct ish_aon_share *aon_share = pm_ctx.aon_share; -#endif - ccprintf("Aontask exist: %s\n", pm_ctx.aon_valid ? "Yes" : "No"); + ccprintf("Aontask exists: %s\n", pm_ctx.aon_valid ? "Yes" : "No"); + ccprintf("Total time on: %.6lus\n", get_time().val); ccprintf("Idle sleep:\n"); - ccprintf(" D0i0:\n"); - ccprintf(" counts: %lu\n", pm_stats.d0i0_cnt); - ccprintf(" time: %.6lus\n", pm_stats.d0i0_time_us); + print_stats("D0i0", &pm_stats.d0i0); ccprintf("Deep sleep:\n"); -#ifdef CONFIG_ISH_PM_D0I1 - ccprintf(" D0i1:\n"); - ccprintf(" counts: %lu\n", pm_stats.d0i1_cnt); - ccprintf(" time: %.6lus\n", pm_stats.d0i1_time_us); -#endif + print_stats("D0i1", &pm_stats.d0i1); + print_stats("D0i2", &pm_stats.d0i2); + print_stats("D0i3", &pm_stats.d0i3); -#ifdef CONFIG_ISH_PM_D0I2 - if (pm_ctx.aon_valid) { - ccprintf(" D0i2:\n"); - ccprintf(" counts: %lu\n", pm_stats.d0i2_cnt); - ccprintf(" time: %.6lus\n", pm_stats.d0i2_time_us); - } -#endif - -#ifdef CONFIG_ISH_PM_D0I3 - if (pm_ctx.aon_valid) { - ccprintf(" D0i3:\n"); - ccprintf(" counts: %lu\n", pm_stats.d0i3_cnt); - ccprintf(" time: %.6lus\n", pm_stats.d0i3_time_us); - } -#endif - -#if defined(CONFIG_ISH_PM_D0I2) || defined(CONFIG_ISH_PM_D0I3) if (pm_ctx.aon_valid) { ccprintf(" Aontask status:\n"); ccprintf(" last error: %lu\n", aon_share->last_error); ccprintf(" error counts: %lu\n", aon_share->error_count); } -#endif - - ccprintf("Total time on: %.6lus\n", get_time().val); return EC_SUCCESS; } DECLARE_CONSOLE_COMMAND(idlestats, command_idle_stats, "", - "Print last idle stats"); + "Print power management statistics"); #ifdef CONFIG_ISH_PM_D0I1 |