@@ -339,6 +339,7 @@ struct cpuidle_driver omap3_idle_driver = {
*/
int __init omap3_idle_init(void)
{
+ const char *pd_states[4] = {"OFF", "RET", "INA", "ON "};
int i, count = 0;
struct omap3_processor_cx *cx;
struct cpuidle_state *state;
@@ -367,6 +368,9 @@ int __init omap3_idle_init(void)
if (cx->type == OMAP3_STATE_C1)
dev->safe_state = state;
sprintf(state->name, "C%d", count+1);
+ sprintf(state->desc, "MPU=%s NEON=%s CORE=%s",
+ pd_states[cx->mpu_state], pd_states[cx->mpu_state],
+ pd_states[cx->core_state]);
count++;
}