2 * OMAP Power Management debug routines
4 * Copyright (C) 2005 Texas Instruments, Inc.
5 * Copyright (C) 2006-2008 Nokia Corporation
8 * Richard Woodruff <r-woodruff2@ti.com>
11 * Amit Kucheria <amit.kucheria@nokia.com>
12 * Igor Stoppa <igor.stoppa@nokia.com>
15 * Based on pm.c for omap2
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License version 2 as
19 * published by the Free Software Foundation.
22 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/clk.h>
25 #include <linux/err.h>
27 #include <linux/module.h>
28 #include <linux/slab.h>
30 #include <plat/clock.h>
31 #include <plat/board.h>
32 #include "powerdomain.h"
33 #include "clockdomain.h"
34 #include <plat/dmtimer.h>
35 #include <plat/omap-pm.h>
37 #include "cm2xxx_3xxx.h"
38 #include "prm2xxx_3xxx.h"
43 #ifdef CONFIG_DEBUG_FS
44 #include <linux/debugfs.h>
45 #include <linux/seq_file.h>
47 static int pm_dbg_init_done
;
49 static int pm_dbg_init(void);
52 DEBUG_FILE_COUNTERS
= 0,
56 static const char pwrdm_state_names
[][PWRDM_MAX_PWRSTS
] = {
63 void pm_dbg_update_time(struct powerdomain
*pwrdm
, int prev
)
67 if (!pm_dbg_init_done
)
70 /* Update timer for previous state */
73 pwrdm
->state_timer
[prev
] += t
- pwrdm
->timer
;
78 static int clkdm_dbg_show_counter(struct clockdomain
*clkdm
, void *user
)
80 struct seq_file
*s
= (struct seq_file
*)user
;
82 if (strcmp(clkdm
->name
, "emu_clkdm") == 0 ||
83 strcmp(clkdm
->name
, "wkup_clkdm") == 0 ||
84 strncmp(clkdm
->name
, "dpll", 4) == 0)
87 seq_printf(s
, "%s->%s (%d)", clkdm
->name
,
88 clkdm
->pwrdm
.ptr
->name
,
89 atomic_read(&clkdm
->usecount
));
95 static int pwrdm_dbg_show_counter(struct powerdomain
*pwrdm
, void *user
)
97 struct seq_file
*s
= (struct seq_file
*)user
;
100 if (strcmp(pwrdm
->name
, "emu_pwrdm") == 0 ||
101 strcmp(pwrdm
->name
, "wkup_pwrdm") == 0 ||
102 strncmp(pwrdm
->name
, "dpll", 4) == 0)
105 if (pwrdm
->state
!= pwrdm_read_pwrst(pwrdm
))
106 printk(KERN_ERR
"pwrdm state mismatch(%s) %d != %d\n",
107 pwrdm
->name
, pwrdm
->state
, pwrdm_read_pwrst(pwrdm
));
109 seq_printf(s
, "%s (%s)", pwrdm
->name
,
110 pwrdm_state_names
[pwrdm
->state
]);
111 for (i
= 0; i
< PWRDM_MAX_PWRSTS
; i
++)
112 seq_printf(s
, ",%s:%d", pwrdm_state_names
[i
],
113 pwrdm
->state_counter
[i
]);
115 seq_printf(s
, ",RET-LOGIC-OFF:%d", pwrdm
->ret_logic_off_counter
);
116 for (i
= 0; i
< pwrdm
->banks
; i
++)
117 seq_printf(s
, ",RET-MEMBANK%d-OFF:%d", i
+ 1,
118 pwrdm
->ret_mem_off_counter
[i
]);
125 static int pwrdm_dbg_show_timer(struct powerdomain
*pwrdm
, void *user
)
127 struct seq_file
*s
= (struct seq_file
*)user
;
130 if (strcmp(pwrdm
->name
, "emu_pwrdm") == 0 ||
131 strcmp(pwrdm
->name
, "wkup_pwrdm") == 0 ||
132 strncmp(pwrdm
->name
, "dpll", 4) == 0)
135 pwrdm_state_switch(pwrdm
);
137 seq_printf(s
, "%s (%s)", pwrdm
->name
,
138 pwrdm_state_names
[pwrdm
->state
]);
140 for (i
= 0; i
< 4; i
++)
141 seq_printf(s
, ",%s:%lld", pwrdm_state_names
[i
],
142 pwrdm
->state_timer
[i
]);
148 static int pm_dbg_show_counters(struct seq_file
*s
, void *unused
)
150 pwrdm_for_each(pwrdm_dbg_show_counter
, s
);
151 clkdm_for_each(clkdm_dbg_show_counter
, s
);
156 static int pm_dbg_show_timers(struct seq_file
*s
, void *unused
)
158 pwrdm_for_each(pwrdm_dbg_show_timer
, s
);
162 static int pm_dbg_open(struct inode
*inode
, struct file
*file
)
164 switch ((int)inode
->i_private
) {
165 case DEBUG_FILE_COUNTERS
:
166 return single_open(file
, pm_dbg_show_counters
,
168 case DEBUG_FILE_TIMERS
:
170 return single_open(file
, pm_dbg_show_timers
,
175 static const struct file_operations debug_fops
= {
179 .release
= single_release
,
182 static int pwrdm_suspend_get(void *data
, u64
*val
)
186 if (cpu_is_omap34xx())
187 ret
= omap3_pm_get_suspend_state((struct powerdomain
*)data
);
195 static int pwrdm_suspend_set(void *data
, u64 val
)
197 if (cpu_is_omap34xx())
198 return omap3_pm_set_suspend_state(
199 (struct powerdomain
*)data
, (int)val
);
203 DEFINE_SIMPLE_ATTRIBUTE(pwrdm_suspend_fops
, pwrdm_suspend_get
,
204 pwrdm_suspend_set
, "%llu\n");
206 static int __init
pwrdms_setup(struct powerdomain
*pwrdm
, void *dir
)
214 for (i
= 0; i
< 4; i
++)
215 pwrdm
->state_timer
[i
] = 0;
219 if (strncmp(pwrdm
->name
, "dpll", 4) == 0)
222 d
= debugfs_create_dir(pwrdm
->name
, (struct dentry
*)dir
);
224 (void) debugfs_create_file("suspend", S_IRUGO
|S_IWUSR
, d
,
225 (void *)pwrdm
, &pwrdm_suspend_fops
);
230 static int option_get(void *data
, u64
*val
)
239 static int option_set(void *data
, u64 val
)
245 if (option
== &enable_off_mode
) {
247 omap_pm_enable_off_mode();
249 omap_pm_disable_off_mode();
250 if (cpu_is_omap34xx())
251 omap3_pm_off_mode_enable(val
);
257 DEFINE_SIMPLE_ATTRIBUTE(pm_dbg_option_fops
, option_get
, option_set
, "%llu\n");
259 static int __init
pm_dbg_init(void)
263 if (pm_dbg_init_done
)
266 d
= debugfs_create_dir("pm_debug", NULL
);
270 (void) debugfs_create_file("count", S_IRUGO
,
271 d
, (void *)DEBUG_FILE_COUNTERS
, &debug_fops
);
272 (void) debugfs_create_file("time", S_IRUGO
,
273 d
, (void *)DEBUG_FILE_TIMERS
, &debug_fops
);
275 pwrdm_for_each(pwrdms_setup
, (void *)d
);
277 (void) debugfs_create_file("enable_off_mode", S_IRUGO
| S_IWUSR
, d
,
278 &enable_off_mode
, &pm_dbg_option_fops
);
279 pm_dbg_init_done
= 1;
283 arch_initcall(pm_dbg_init
);