blob: fceb1e525d26b9541859c906b79e369c95681186 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Kevin Hilman8bd22942009-05-28 10:56:16 -07002/*
3 * OMAP Power Management debug routines
4 *
5 * Copyright (C) 2005 Texas Instruments, Inc.
6 * Copyright (C) 2006-2008 Nokia Corporation
7 *
8 * Written by:
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Tony Lindgren
11 * Juha Yrjola
12 * Amit Kucheria <amit.kucheria@nokia.com>
13 * Igor Stoppa <igor.stoppa@nokia.com>
14 * Jouni Hogander
15 *
16 * Based on pm.c for omap2
Kevin Hilman8bd22942009-05-28 10:56:16 -070017 */
18
19#include <linux/kernel.h>
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030020#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +010021#include <linux/sched/clock.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070022#include <linux/clk.h>
23#include <linux/err.h>
24#include <linux/io.h>
Tero Kristo68d47782008-11-26 12:26:24 +020025#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070027
Paul Walmsleya135eaa2012-09-27 10:33:34 -060028#include "clock.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070029#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070030#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070031
Tony Lindgrene4c060d2012-10-05 13:25:59 -070032#include "soc.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070033#include "cm2xxx_3xxx.h"
34#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070035#include "pm.h"
36
Thara Gopinath6cdee912010-08-12 13:52:25 +053037u32 enable_off_mode;
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030038
39#ifdef CONFIG_DEBUG_FS
40#include <linux/debugfs.h>
41#include <linux/seq_file.h>
42
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030043static int pm_dbg_init_done;
44
Russell Kingc8fb13d2011-05-27 13:56:12 -070045static int pm_dbg_init(void);
Sergio Aguirre6b34f9d2010-01-14 11:01:15 -060046
Paul Walmsley2354eb52009-12-08 16:33:12 -070047static const char pwrdm_state_names[][PWRDM_MAX_PWRSTS] = {
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030048 "OFF",
49 "RET",
50 "INA",
51 "ON"
52};
53
54void pm_dbg_update_time(struct powerdomain *pwrdm, int prev)
55{
56 s64 t;
57
58 if (!pm_dbg_init_done)
59 return ;
60
61 /* Update timer for previous state */
62 t = sched_clock();
63
64 pwrdm->state_timer[prev] += t - pwrdm->timer;
65
66 pwrdm->timer = t;
67}
68
69static int clkdm_dbg_show_counter(struct clockdomain *clkdm, void *user)
70{
71 struct seq_file *s = (struct seq_file *)user;
72
73 if (strcmp(clkdm->name, "emu_clkdm") == 0 ||
74 strcmp(clkdm->name, "wkup_clkdm") == 0 ||
75 strncmp(clkdm->name, "dpll", 4) == 0)
76 return 0;
77
Paul Walmsley92493872013-01-26 00:58:17 -070078 seq_printf(s, "%s->%s (%d)\n", clkdm->name, clkdm->pwrdm.ptr->name,
79 clkdm->usecount);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030080
81 return 0;
82}
83
84static int pwrdm_dbg_show_counter(struct powerdomain *pwrdm, void *user)
85{
86 struct seq_file *s = (struct seq_file *)user;
87 int i;
88
89 if (strcmp(pwrdm->name, "emu_pwrdm") == 0 ||
90 strcmp(pwrdm->name, "wkup_pwrdm") == 0 ||
91 strncmp(pwrdm->name, "dpll", 4) == 0)
92 return 0;
93
94 if (pwrdm->state != pwrdm_read_pwrst(pwrdm))
95 printk(KERN_ERR "pwrdm state mismatch(%s) %d != %d\n",
96 pwrdm->name, pwrdm->state, pwrdm_read_pwrst(pwrdm));
97
98 seq_printf(s, "%s (%s)", pwrdm->name,
99 pwrdm_state_names[pwrdm->state]);
Paul Walmsley2354eb52009-12-08 16:33:12 -0700100 for (i = 0; i < PWRDM_MAX_PWRSTS; i++)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300101 seq_printf(s, ",%s:%d", pwrdm_state_names[i],
102 pwrdm->state_counter[i]);
103
Thara Gopinathcde08f82010-02-24 12:05:50 -0700104 seq_printf(s, ",RET-LOGIC-OFF:%d", pwrdm->ret_logic_off_counter);
105 for (i = 0; i < pwrdm->banks; i++)
106 seq_printf(s, ",RET-MEMBANK%d-OFF:%d", i + 1,
107 pwrdm->ret_mem_off_counter[i]);
108
Markus Elfring5c02b012016-10-15 22:30:44 +0200109 seq_putc(s, '\n');
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300110 return 0;
111}
112
113static int pwrdm_dbg_show_timer(struct powerdomain *pwrdm, void *user)
114{
115 struct seq_file *s = (struct seq_file *)user;
116 int i;
117
118 if (strcmp(pwrdm->name, "emu_pwrdm") == 0 ||
119 strcmp(pwrdm->name, "wkup_pwrdm") == 0 ||
120 strncmp(pwrdm->name, "dpll", 4) == 0)
121 return 0;
122
123 pwrdm_state_switch(pwrdm);
124
125 seq_printf(s, "%s (%s)", pwrdm->name,
126 pwrdm_state_names[pwrdm->state]);
127
128 for (i = 0; i < 4; i++)
129 seq_printf(s, ",%s:%lld", pwrdm_state_names[i],
130 pwrdm->state_timer[i]);
131
Markus Elfring5c02b012016-10-15 22:30:44 +0200132 seq_putc(s, '\n');
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300133 return 0;
134}
135
Andy Shevchenkoeb07fe92018-07-09 10:23:41 +0300136static int pm_dbg_counters_show(struct seq_file *s, void *unused)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300137{
138 pwrdm_for_each(pwrdm_dbg_show_counter, s);
139 clkdm_for_each(clkdm_dbg_show_counter, s);
140
141 return 0;
142}
Andy Shevchenkoeb07fe92018-07-09 10:23:41 +0300143DEFINE_SHOW_ATTRIBUTE(pm_dbg_counters);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300144
Andy Shevchenkoeb07fe92018-07-09 10:23:41 +0300145static int pm_dbg_timers_show(struct seq_file *s, void *unused)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300146{
147 pwrdm_for_each(pwrdm_dbg_show_timer, s);
148 return 0;
149}
Andy Shevchenkoeb07fe92018-07-09 10:23:41 +0300150DEFINE_SHOW_ATTRIBUTE(pm_dbg_timers);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300151
Tero Kristo68d47782008-11-26 12:26:24 +0200152static int pwrdm_suspend_get(void *data, u64 *val)
153{
Thara Gopinath6cdee912010-08-12 13:52:25 +0530154 int ret = -EINVAL;
155
156 if (cpu_is_omap34xx())
157 ret = omap3_pm_get_suspend_state((struct powerdomain *)data);
Roel Kluin61b17d92009-12-16 17:22:04 +0100158 *val = ret;
Tero Kristo68d47782008-11-26 12:26:24 +0200159
Roel Kluin61b17d92009-12-16 17:22:04 +0100160 if (ret >= 0)
Tero Kristo68d47782008-11-26 12:26:24 +0200161 return 0;
162 return *val;
163}
164
165static int pwrdm_suspend_set(void *data, u64 val)
166{
Thara Gopinath6cdee912010-08-12 13:52:25 +0530167 if (cpu_is_omap34xx())
168 return omap3_pm_set_suspend_state(
169 (struct powerdomain *)data, (int)val);
170 return -EINVAL;
Tero Kristo68d47782008-11-26 12:26:24 +0200171}
172
173DEFINE_SIMPLE_ATTRIBUTE(pwrdm_suspend_fops, pwrdm_suspend_get,
174 pwrdm_suspend_set, "%llu\n");
175
176static int __init pwrdms_setup(struct powerdomain *pwrdm, void *dir)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300177{
178 int i;
179 s64 t;
Tero Kristo68d47782008-11-26 12:26:24 +0200180 struct dentry *d;
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300181
182 t = sched_clock();
183
184 for (i = 0; i < 4; i++)
185 pwrdm->state_timer[i] = 0;
186
187 pwrdm->timer = t;
188
Tero Kristo68d47782008-11-26 12:26:24 +0200189 if (strncmp(pwrdm->name, "dpll", 4) == 0)
190 return 0;
191
192 d = debugfs_create_dir(pwrdm->name, (struct dentry *)dir);
Greg Kroah-Hartman30ed9972019-01-22 15:41:14 +0100193 debugfs_create_file("suspend", S_IRUGO|S_IWUSR, d, pwrdm,
194 &pwrdm_suspend_fops);
Tero Kristo68d47782008-11-26 12:26:24 +0200195
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300196 return 0;
197}
198
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700199static int option_get(void *data, u64 *val)
200{
201 u32 *option = data;
202
203 *val = *option;
204
205 return 0;
206}
207
208static int option_set(void *data, u64 val)
209{
210 u32 *option = data;
211
212 *option = val;
213
Thara Gopinath6cdee912010-08-12 13:52:25 +0530214 if (option == &enable_off_mode) {
215 if (cpu_is_omap34xx())
216 omap3_pm_off_mode_enable(val);
217 }
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700218
219 return 0;
220}
221
222DEFINE_SIMPLE_ATTRIBUTE(pm_dbg_option_fops, option_get, option_set, "%llu\n");
223
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300224static int __init pm_dbg_init(void)
225{
226 struct dentry *d;
227
Tero Kristo2811d6b2008-10-29 13:31:24 +0200228 if (pm_dbg_init_done)
229 return 0;
230
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300231 d = debugfs_create_dir("pm_debug", NULL);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300232
Greg Kroah-Hartman30ed9972019-01-22 15:41:14 +0100233 debugfs_create_file("count", 0444, d, NULL, &pm_dbg_counters_fops);
234 debugfs_create_file("time", 0444, d, NULL, &pm_dbg_timers_fops);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300235
Paul Walmsleye909d62a82010-01-26 20:13:00 -0700236 pwrdm_for_each(pwrdms_setup, (void *)d);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300237
Greg Kroah-Hartman30ed9972019-01-22 15:41:14 +0100238 debugfs_create_file("enable_off_mode", S_IRUGO | S_IWUSR, d,
239 &enable_off_mode, &pm_dbg_option_fops);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300240 pm_dbg_init_done = 1;
241
242 return 0;
243}
Tony Lindgrenb76c8b192013-01-11 11:24:18 -0800244omap_arch_initcall(pm_dbg_init);
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300245
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +0300246#endif