blob: acb698d5780f84a74bc21a25129d2bdb41b77e61 [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
2 * OMAP Power Management debug routines
3 *
4 * Copyright (C) 2005 Texas Instruments, Inc.
5 * Copyright (C) 2006-2008 Nokia Corporation
6 *
7 * Written by:
8 * Richard Woodruff <r-woodruff2@ti.com>
9 * Tony Lindgren
10 * Juha Yrjola
11 * Amit Kucheria <amit.kucheria@nokia.com>
12 * Igor Stoppa <igor.stoppa@nokia.com>
13 * Jouni Hogander
14 *
15 * Based on pm.c for omap2
16 *
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.
20 */
21
22#include <linux/kernel.h>
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030023#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +010024#include <linux/sched/clock.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070025#include <linux/clk.h>
26#include <linux/err.h>
27#include <linux/io.h>
Tero Kristo68d47782008-11-26 12:26:24 +020028#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070030
Paul Walmsleya135eaa2012-09-27 10:33:34 -060031#include "clock.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070032#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070033#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070034
Tony Lindgrene4c060d2012-10-05 13:25:59 -070035#include "soc.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070036#include "cm2xxx_3xxx.h"
37#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070038#include "pm.h"
39
Thara Gopinath6cdee912010-08-12 13:52:25 +053040u32 enable_off_mode;
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030041
42#ifdef CONFIG_DEBUG_FS
43#include <linux/debugfs.h>
44#include <linux/seq_file.h>
45
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030046static int pm_dbg_init_done;
47
Russell Kingc8fb13d2011-05-27 13:56:12 -070048static int pm_dbg_init(void);
Sergio Aguirre6b34f9d2010-01-14 11:01:15 -060049
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030050enum {
51 DEBUG_FILE_COUNTERS = 0,
52 DEBUG_FILE_TIMERS,
53};
54
Paul Walmsley2354eb52009-12-08 16:33:12 -070055static const char pwrdm_state_names[][PWRDM_MAX_PWRSTS] = {
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030056 "OFF",
57 "RET",
58 "INA",
59 "ON"
60};
61
62void pm_dbg_update_time(struct powerdomain *pwrdm, int prev)
63{
64 s64 t;
65
66 if (!pm_dbg_init_done)
67 return ;
68
69 /* Update timer for previous state */
70 t = sched_clock();
71
72 pwrdm->state_timer[prev] += t - pwrdm->timer;
73
74 pwrdm->timer = t;
75}
76
77static int clkdm_dbg_show_counter(struct clockdomain *clkdm, void *user)
78{
79 struct seq_file *s = (struct seq_file *)user;
80
81 if (strcmp(clkdm->name, "emu_clkdm") == 0 ||
82 strcmp(clkdm->name, "wkup_clkdm") == 0 ||
83 strncmp(clkdm->name, "dpll", 4) == 0)
84 return 0;
85
Paul Walmsley92493872013-01-26 00:58:17 -070086 seq_printf(s, "%s->%s (%d)\n", clkdm->name, clkdm->pwrdm.ptr->name,
87 clkdm->usecount);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030088
89 return 0;
90}
91
92static int pwrdm_dbg_show_counter(struct powerdomain *pwrdm, void *user)
93{
94 struct seq_file *s = (struct seq_file *)user;
95 int i;
96
97 if (strcmp(pwrdm->name, "emu_pwrdm") == 0 ||
98 strcmp(pwrdm->name, "wkup_pwrdm") == 0 ||
99 strncmp(pwrdm->name, "dpll", 4) == 0)
100 return 0;
101
102 if (pwrdm->state != pwrdm_read_pwrst(pwrdm))
103 printk(KERN_ERR "pwrdm state mismatch(%s) %d != %d\n",
104 pwrdm->name, pwrdm->state, pwrdm_read_pwrst(pwrdm));
105
106 seq_printf(s, "%s (%s)", pwrdm->name,
107 pwrdm_state_names[pwrdm->state]);
Paul Walmsley2354eb52009-12-08 16:33:12 -0700108 for (i = 0; i < PWRDM_MAX_PWRSTS; i++)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300109 seq_printf(s, ",%s:%d", pwrdm_state_names[i],
110 pwrdm->state_counter[i]);
111
Thara Gopinathcde08f82010-02-24 12:05:50 -0700112 seq_printf(s, ",RET-LOGIC-OFF:%d", pwrdm->ret_logic_off_counter);
113 for (i = 0; i < pwrdm->banks; i++)
114 seq_printf(s, ",RET-MEMBANK%d-OFF:%d", i + 1,
115 pwrdm->ret_mem_off_counter[i]);
116
Markus Elfring5c02b012016-10-15 22:30:44 +0200117 seq_putc(s, '\n');
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300118 return 0;
119}
120
121static int pwrdm_dbg_show_timer(struct powerdomain *pwrdm, void *user)
122{
123 struct seq_file *s = (struct seq_file *)user;
124 int i;
125
126 if (strcmp(pwrdm->name, "emu_pwrdm") == 0 ||
127 strcmp(pwrdm->name, "wkup_pwrdm") == 0 ||
128 strncmp(pwrdm->name, "dpll", 4) == 0)
129 return 0;
130
131 pwrdm_state_switch(pwrdm);
132
133 seq_printf(s, "%s (%s)", pwrdm->name,
134 pwrdm_state_names[pwrdm->state]);
135
136 for (i = 0; i < 4; i++)
137 seq_printf(s, ",%s:%lld", pwrdm_state_names[i],
138 pwrdm->state_timer[i]);
139
Markus Elfring5c02b012016-10-15 22:30:44 +0200140 seq_putc(s, '\n');
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300141 return 0;
142}
143
144static int pm_dbg_show_counters(struct seq_file *s, void *unused)
145{
146 pwrdm_for_each(pwrdm_dbg_show_counter, s);
147 clkdm_for_each(clkdm_dbg_show_counter, s);
148
149 return 0;
150}
151
152static int pm_dbg_show_timers(struct seq_file *s, void *unused)
153{
154 pwrdm_for_each(pwrdm_dbg_show_timer, s);
155 return 0;
156}
157
158static int pm_dbg_open(struct inode *inode, struct file *file)
159{
160 switch ((int)inode->i_private) {
161 case DEBUG_FILE_COUNTERS:
162 return single_open(file, pm_dbg_show_counters,
163 &inode->i_private);
164 case DEBUG_FILE_TIMERS:
165 default:
166 return single_open(file, pm_dbg_show_timers,
167 &inode->i_private);
Peter Senna Tschudinc09fcc432012-09-18 18:36:11 +0200168 }
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300169}
170
171static const struct file_operations debug_fops = {
172 .open = pm_dbg_open,
173 .read = seq_read,
174 .llseek = seq_lseek,
175 .release = single_release,
176};
177
Tero Kristo68d47782008-11-26 12:26:24 +0200178static int pwrdm_suspend_get(void *data, u64 *val)
179{
Thara Gopinath6cdee912010-08-12 13:52:25 +0530180 int ret = -EINVAL;
181
182 if (cpu_is_omap34xx())
183 ret = omap3_pm_get_suspend_state((struct powerdomain *)data);
Roel Kluin61b17d92009-12-16 17:22:04 +0100184 *val = ret;
Tero Kristo68d47782008-11-26 12:26:24 +0200185
Roel Kluin61b17d92009-12-16 17:22:04 +0100186 if (ret >= 0)
Tero Kristo68d47782008-11-26 12:26:24 +0200187 return 0;
188 return *val;
189}
190
191static int pwrdm_suspend_set(void *data, u64 val)
192{
Thara Gopinath6cdee912010-08-12 13:52:25 +0530193 if (cpu_is_omap34xx())
194 return omap3_pm_set_suspend_state(
195 (struct powerdomain *)data, (int)val);
196 return -EINVAL;
Tero Kristo68d47782008-11-26 12:26:24 +0200197}
198
199DEFINE_SIMPLE_ATTRIBUTE(pwrdm_suspend_fops, pwrdm_suspend_get,
200 pwrdm_suspend_set, "%llu\n");
201
202static int __init pwrdms_setup(struct powerdomain *pwrdm, void *dir)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300203{
204 int i;
205 s64 t;
Tero Kristo68d47782008-11-26 12:26:24 +0200206 struct dentry *d;
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300207
208 t = sched_clock();
209
210 for (i = 0; i < 4; i++)
211 pwrdm->state_timer[i] = 0;
212
213 pwrdm->timer = t;
214
Tero Kristo68d47782008-11-26 12:26:24 +0200215 if (strncmp(pwrdm->name, "dpll", 4) == 0)
216 return 0;
217
218 d = debugfs_create_dir(pwrdm->name, (struct dentry *)dir);
Russell Kingd808aa62013-02-24 10:52:18 +0000219 if (d)
Jean Pihet401606f2012-02-01 09:37:31 +0100220 (void) debugfs_create_file("suspend", S_IRUGO|S_IWUSR, d,
Tero Kristo68d47782008-11-26 12:26:24 +0200221 (void *)pwrdm, &pwrdm_suspend_fops);
222
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300223 return 0;
224}
225
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700226static int option_get(void *data, u64 *val)
227{
228 u32 *option = data;
229
230 *val = *option;
231
232 return 0;
233}
234
235static int option_set(void *data, u64 val)
236{
237 u32 *option = data;
238
239 *option = val;
240
Thara Gopinath6cdee912010-08-12 13:52:25 +0530241 if (option == &enable_off_mode) {
242 if (cpu_is_omap34xx())
243 omap3_pm_off_mode_enable(val);
244 }
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700245
246 return 0;
247}
248
249DEFINE_SIMPLE_ATTRIBUTE(pm_dbg_option_fops, option_get, option_set, "%llu\n");
250
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300251static int __init pm_dbg_init(void)
252{
253 struct dentry *d;
254
Tero Kristo2811d6b2008-10-29 13:31:24 +0200255 if (pm_dbg_init_done)
256 return 0;
257
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300258 d = debugfs_create_dir("pm_debug", NULL);
Russell Kingd808aa62013-02-24 10:52:18 +0000259 if (!d)
260 return -EINVAL;
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300261
262 (void) debugfs_create_file("count", S_IRUGO,
263 d, (void *)DEBUG_FILE_COUNTERS, &debug_fops);
264 (void) debugfs_create_file("time", S_IRUGO,
265 d, (void *)DEBUG_FILE_TIMERS, &debug_fops);
266
Paul Walmsleye909d62a82010-01-26 20:13:00 -0700267 pwrdm_for_each(pwrdms_setup, (void *)d);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300268
Vasiliy Kulikovf9fbe472011-02-04 12:23:16 +0000269 (void) debugfs_create_file("enable_off_mode", S_IRUGO | S_IWUSR, d,
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700270 &enable_off_mode, &pm_dbg_option_fops);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300271 pm_dbg_init_done = 1;
272
273 return 0;
274}
Tony Lindgrenb76c8b192013-01-11 11:24:18 -0800275omap_arch_initcall(pm_dbg_init);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300276
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300277#endif