summaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/include/mach/powerdomain.h
diff options
context:
space:
mode:
authorPeter 'p2' De Schrijver2008-10-15 17:13:48 +0200
committerKevin Hilman2009-09-03 00:08:24 +0200
commit331b93f41dff21c8f95709032cb184fb82bf2003 (patch)
tree6945e875909ae2571bd3344c978395414e61781c /arch/arm/plat-omap/include/mach/powerdomain.h
parentOMAP: PM: Add closures to clkdm_for_each and pwrdm_for_each. (diff)
downloadkernel-qcow2-linux-331b93f41dff21c8f95709032cb184fb82bf2003.tar.gz
kernel-qcow2-linux-331b93f41dff21c8f95709032cb184fb82bf2003.tar.xz
kernel-qcow2-linux-331b93f41dff21c8f95709032cb184fb82bf2003.zip
OMAP: PM: Add pm-debug counters
This patch provides the debugfs entries and a function which will be called by the PM code to register the time spent per domain per state. Also some new fields are added to the powerdomain struct to keep the time information. NOTE: As of v2.6.29, using getnstimeofday() after drivers are suspended is no longer safe since the timekeeping subsystem is also suspended as part of the suspend process. Instead use sched_clock() which on OMAP returns the 32k SYNC timer in nanoseconds. Also, do not print out status for meta powerdomains (dpll*) Signed-off-by: Peter 'p2' De Schrijver <peter.de-schrijver@nokia.com> Signed-off-by: Tero Kristo <tero.kristo@nokia.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/plat-omap/include/mach/powerdomain.h')
-rw-r--r--arch/arm/plat-omap/include/mach/powerdomain.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/mach/powerdomain.h b/arch/arm/plat-omap/include/mach/powerdomain.h
index de03f3dbbf3d..6271d8556a40 100644
--- a/arch/arm/plat-omap/include/mach/powerdomain.h
+++ b/arch/arm/plat-omap/include/mach/powerdomain.h
@@ -119,6 +119,11 @@ struct powerdomain {
int state;
unsigned state_counter[4];
+
+#ifdef CONFIG_PM_DEBUG
+ s64 timer;
+ s64 state_timer[4];
+#endif
};