OMAP: PM debug: Add PRCM register dump support
authorTero Kristo <tero.kristo@nokia.com>
Wed, 29 Oct 2008 11:31:24 +0000 (13:31 +0200)
committerKevin Hilman <khilman@deeprootsystems.com>
Wed, 2 Sep 2009 22:08:25 +0000 (15:08 -0700)
commit2811d6b3237c9b77007a6b2b10ee5b576da0574e
tree84febe1c3cdd2ece0b1f097d64cf9c597b1c833a
parent6199ab2690ca6f44f838603da079b3faa837e502
OMAP: PM debug: Add PRCM register dump support

Allows dumping out current register contents from the debug filesystem, and
also allows user to add arbitrary register save points into code. Current
register contents are available under debugfs at:

[debugfs]/pm_debug/registers/current

To add a save point, do following:

From module init (or somewhere before the save call, called only once):
  pm_dbg_init_regset(n); // n=1..4, allocates memory for dump area #n

From arbitrary code location:
  pm_dbg_regset_save(n); // n=1..4, saves registers to dump area #n

After this, the register dump can be seen under [debugfs]/pm_debug/registers/n

Signed-off-by: Tero Kristo <tero.kristo@nokia.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-omap2/pm-debug.c
arch/arm/mach-omap2/pm.h
This page took 0.029141 seconds and 5 git commands to generate.