From: Kevin Hilman <khilman@deeprootsystems.com>
To: Tero Kristo <tero.kristo@nokia.com>
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH 04/04] PM debug: Add PRCM register dump support
Date: Wed, 29 Oct 2008 11:18:56 -0700 [thread overview]
Message-ID: <87bpx38dtb.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1225279884-30668-5-git-send-email-tero.kristo@nokia.com> (Tero Kristo's message of "Wed\, 29 Oct 2008 13\:31\:24 +0200")
Tero Kristo <tero.kristo@nokia.com> writes:
> 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>
Excellent, I was hoping this feature would be coming along.
Pulling into next PM branch.
Kevin
> ---
> arch/arm/mach-omap2/pm-debug.c | 208 ++++++++++++++++++++++++++++++++++++++++
> arch/arm/mach-omap2/pm.h | 4 +
> 2 files changed, 212 insertions(+), 0 deletions(-)
> mode change 100644 => 100755 arch/arm/mach-omap2/pm-debug.c
> mode change 100644 => 100755 arch/arm/mach-omap2/pm.h
>
> diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c
> old mode 100644
> new mode 100755
> index d21af83..05f3914
> --- a/arch/arm/mach-omap2/pm-debug.c
> +++ b/arch/arm/mach-omap2/pm-debug.c
> @@ -159,6 +159,8 @@ void omap2_pm_dump(int mode, int resume, unsigned int us)
> #include <linux/debugfs.h>
> #include <linux/seq_file.h>
>
> +static void pm_dbg_regset_store(u32 *ptr);
> +
> struct dentry *pm_dbg_dir;
>
> static int pm_dbg_init_done;
> @@ -168,6 +170,159 @@ enum {
> DEBUG_FILE_TIMERS,
> };
>
> +struct pm_module_def {
> + char name[8]; /* Name of the module */
> + short type; /* CM or PRM */
> + unsigned short offset;
> + int low; /* First register address on this module */
> + int high; /* Last register address on this module */
> +};
> +
> +#define MOD_CM 0
> +#define MOD_PRM 1
> +
> +static const struct pm_module_def pm_dbg_reg_modules[] = {
> + { "IVA2", MOD_CM, OMAP3430_IVA2_MOD, 0, 0x4c },
> + { "OCP", MOD_CM, OCP_MOD, 0, 0x10 },
> + { "MPU", MOD_CM, MPU_MOD, 4, 0x4c },
> + { "CORE", MOD_CM, CORE_MOD, 0, 0x4c },
> + { "SGX", MOD_CM, OMAP3430ES2_SGX_MOD, 0, 0x4c },
> + { "WKUP", MOD_CM, WKUP_MOD, 0, 0x40 },
> + { "CCR", MOD_CM, PLL_MOD, 0, 0x70 },
> + { "DSS", MOD_CM, OMAP3430_DSS_MOD, 0, 0x4c },
> + { "CAM", MOD_CM, OMAP3430_CAM_MOD, 0, 0x4c },
> + { "PER", MOD_CM, OMAP3430_PER_MOD, 0, 0x4c },
> + { "EMU", MOD_CM, OMAP3430_EMU_MOD, 0x40, 0x54 },
> + { "NEON", MOD_CM, OMAP3430_NEON_MOD, 0x20, 0x48 },
> + { "USB", MOD_CM, OMAP3430ES2_USBHOST_MOD, 0, 0x4c },
> +
> + { "IVA2", MOD_PRM, OMAP3430_IVA2_MOD, 0x50, 0xfc },
> + { "OCP", MOD_PRM, OCP_MOD, 4, 0x1c },
> + { "MPU", MOD_PRM, MPU_MOD, 0x58, 0xe8 },
> + { "CORE", MOD_PRM, CORE_MOD, 0x58, 0xf8 },
> + { "SGX", MOD_PRM, OMAP3430ES2_SGX_MOD, 0x58, 0xe8 },
> + { "WKUP", MOD_PRM, WKUP_MOD, 0xa0, 0xb0 },
> + { "CCR", MOD_PRM, PLL_MOD, 0x40, 0x70 },
> + { "DSS", MOD_PRM, OMAP3430_DSS_MOD, 0x58, 0xe8 },
> + { "CAM", MOD_PRM, OMAP3430_CAM_MOD, 0x58, 0xe8 },
> + { "PER", MOD_PRM, OMAP3430_PER_MOD, 0x58, 0xe8 },
> + { "EMU", MOD_PRM, OMAP3430_EMU_MOD, 0x58, 0xe4 },
> + { "GLBL", MOD_PRM, OMAP3430_GR_MOD, 0x20, 0xe4 },
> + { "NEON", MOD_PRM, OMAP3430_NEON_MOD, 0x58, 0xe8 },
> + { "USB", MOD_PRM, OMAP3430ES2_USBHOST_MOD, 0x58, 0xe8 },
> + { "", 0, 0, 0, 0 },
> +};
> +
> +#define PM_DBG_MAX_REG_SETS 4
> +
> +static void *pm_dbg_reg_set[PM_DBG_MAX_REG_SETS];
> +
> +static int pm_dbg_get_regset_size(void)
> +{
> + static int regset_size;
> +
> + if (regset_size == 0) {
> + int i = 0;
> +
> + while (pm_dbg_reg_modules[i].name[0] != 0) {
> + regset_size += pm_dbg_reg_modules[i].high +
> + 4 - pm_dbg_reg_modules[i].low;
> + i++;
> + }
> + }
> + return regset_size;
> +}
> +
> +static int pm_dbg_show_regs(struct seq_file *s, void *unused)
> +{
> + int i, j;
> + unsigned long val;
> + int reg_set = (int)s->private;
> + u32 *ptr;
> + void *store = NULL;
> + int regs;
> + int linefeed;
> +
> + if (reg_set == 0) {
> + store = kmalloc(pm_dbg_get_regset_size(), GFP_KERNEL);
> + ptr = store;
> + pm_dbg_regset_store(ptr);
> + } else {
> + ptr = pm_dbg_reg_set[reg_set - 1];
> + }
> +
> + i = 0;
> +
> + while (pm_dbg_reg_modules[i].name[0] != 0) {
> + regs = 0;
> + linefeed = 0;
> + if (pm_dbg_reg_modules[i].type == MOD_CM)
> + seq_printf(s, "MOD: CM_%s (%08x)\n",
> + pm_dbg_reg_modules[i].name,
> + (u32)(OMAP2_CM_BASE +
> + pm_dbg_reg_modules[i].offset));
> + else
> + seq_printf(s, "MOD: PRM_%s (%08x)\n",
> + pm_dbg_reg_modules[i].name,
> + (u32)(OMAP2_PRM_BASE +
> + pm_dbg_reg_modules[i].offset));
> +
> + for (j = pm_dbg_reg_modules[i].low;
> + j <= pm_dbg_reg_modules[i].high; j += 4) {
> + val = *(ptr++);
> + if (val != 0) {
> + regs++;
> + if (linefeed) {
> + seq_printf(s, "\n");
> + linefeed = 0;
> + }
> + seq_printf(s, " %02x => %08lx", j, val);
> + if (regs % 4 == 0)
> + linefeed = 1;
> + }
> + }
> + seq_printf(s, "\n");
> + i++;
> + }
> +
> + if (store != NULL)
> + kfree(store);
> +
> + return 0;
> +}
> +
> +static void pm_dbg_regset_store(u32 *ptr)
> +{
> + int i, j;
> + u32 val;
> +
> + i = 0;
> +
> + while (pm_dbg_reg_modules[i].name[0] != 0) {
> + for (j = pm_dbg_reg_modules[i].low;
> + j <= pm_dbg_reg_modules[i].high; j += 4) {
> + if (pm_dbg_reg_modules[i].type == MOD_CM)
> + val = cm_read_mod_reg(
> + pm_dbg_reg_modules[i].offset, j);
> + else
> + val = prm_read_mod_reg(
> + pm_dbg_reg_modules[i].offset, j);
> + *(ptr++) = val;
> + }
> + i++;
> + }
> +}
> +
> +int pm_dbg_regset_save(int reg_set)
> +{
> + if (pm_dbg_reg_set[reg_set-1] == NULL)
> + return -EINVAL;
> +
> + pm_dbg_regset_store(pm_dbg_reg_set[reg_set-1]);
> +
> + return 0;
> +}
> +
> static const char pwrdm_state_names[][4] = {
> "OFF",
> "RET",
> @@ -281,6 +436,11 @@ static int pm_dbg_open(struct inode *inode, struct file *file)
> };
> }
>
> +static int pm_dbg_reg_open(struct inode *inode, struct file *file)
> +{
> + return single_open(file, pm_dbg_show_regs, inode->i_private);
> +}
> +
> static const struct file_operations debug_fops = {
> .open = pm_dbg_open,
> .read = seq_read,
> @@ -288,6 +448,37 @@ static const struct file_operations debug_fops = {
> .release = single_release,
> };
>
> +static const struct file_operations debug_reg_fops = {
> + .open = pm_dbg_reg_open,
> + .read = seq_read,
> + .llseek = seq_lseek,
> + .release = single_release,
> +};
> +
> +int pm_dbg_regset_init(int reg_set)
> +{
> + char name[2];
> +
> + if (reg_set < 1 || reg_set > PM_DBG_MAX_REG_SETS ||
> + pm_dbg_reg_set[reg_set-1] != NULL)
> + return -EINVAL;
> +
> + pm_dbg_reg_set[reg_set-1] =
> + kmalloc(pm_dbg_get_regset_size(), GFP_KERNEL);
> +
> + if (pm_dbg_reg_set[reg_set-1] == NULL)
> + return -ENOMEM;
> +
> + if (pm_dbg_dir != NULL) {
> + sprintf(name, "%d", reg_set);
> +
> + (void) debugfs_create_file(name, S_IRUGO,
> + pm_dbg_dir, (void *)reg_set, &debug_reg_fops);
> + }
> +
> + return 0;
> +}
> +
> static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
> {
> int i;
> @@ -307,7 +498,9 @@ static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
>
> static int __init pm_dbg_init(void)
> {
> + int i;
> struct dentry *d;
> + char name[2];
>
> printk(KERN_INFO "pm_dbg_init()\n");
>
> @@ -322,6 +515,21 @@ static int __init pm_dbg_init(void)
>
> pwrdm_for_each(pwrdms_setup, NULL);
>
> + pm_dbg_dir = debugfs_create_dir("registers", d);
> + if (IS_ERR(pm_dbg_dir))
> + return PTR_ERR(pm_dbg_dir);
> +
> + (void) debugfs_create_file("current", S_IRUGO,
> + pm_dbg_dir, (void *)0, &debug_reg_fops);
> +
> + for (i = 0; i < PM_DBG_MAX_REG_SETS; i++)
> + if (pm_dbg_reg_set[i] != NULL) {
> + sprintf(name, "%d", i+1);
> + (void) debugfs_create_file(name, S_IRUGO,
> + pm_dbg_dir, (void *)(i+1), &debug_reg_fops);
> +
> + }
> +
> pm_dbg_init_done = 1;
>
> return 0;
> diff --git a/arch/arm/mach-omap2/pm.h b/arch/arm/mach-omap2/pm.h
> old mode 100644
> new mode 100755
> index b7d66be..8f1ebea
> --- a/arch/arm/mach-omap2/pm.h
> +++ b/arch/arm/mach-omap2/pm.h
> @@ -34,9 +34,13 @@ extern void omap3_pm_off_mode_enable(int);
> extern void omap2_pm_dump(int mode, int resume, unsigned int us);
> extern int omap2_pm_debug;
> extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
> +extern int pm_dbg_regset_save(int reg_set);
> +extern int pm_dbg_regset_init(int reg_set);
> #else
> #define omap2_pm_dump(mode, resume, us) do {} while (0);
> #define omap2_pm_debug 0
> #define pm_dbg_update_time(pwrdm, prev) do {} while (0);
> +#define pm_dbg_regset_save(reg_set) do {} while (0);
> +#define pm_dbg_regset_init(reg_set) do {} while (0);
> #endif /* CONFIG_PM_DEBUG */
> #endif
> --
> 1.5.4.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2008-10-29 18:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-29 11:31 [PATCH 00/04] PM OMAP3: Misc patches Tero Kristo
2008-10-29 11:31 ` [PATCH 01/04] Fix cpuidle off-modes to be controlled via sysfs Tero Kristo
2008-10-29 11:31 ` [PATCH 02/04] PM debug: do not print out status for meta powerdomains (dpll*) Tero Kristo
2008-10-29 11:31 ` [PATCH 03/04] PM counters: fix initialization race condition Tero Kristo
2008-10-29 11:31 ` [PATCH 04/04] PM debug: Add PRCM register dump support Tero Kristo
2008-10-29 18:18 ` Kevin Hilman [this message]
2008-10-29 18:16 ` [PATCH 03/04] PM counters: fix initialization race condition Kevin Hilman
2008-10-29 18:15 ` [PATCH 02/04] PM debug: do not print out status for meta powerdomains (dpll*) Kevin Hilman
2008-10-29 18:13 ` [PATCH 01/04] Fix cpuidle off-modes to be controlled via sysfs Kevin Hilman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bpx38dtb.fsf@deeprootsystems.com \
--to=khilman@deeprootsystems.com \
--cc=linux-omap@vger.kernel.org \
--cc=tero.kristo@nokia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.