1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP Power Management debug routines
5 * Copyright (C) 2005 Texas Instruments, Inc.
6 * Copyright (C) 2006-2008 Nokia Corporation
9 * Richard Woodruff <r-woodruff2@ti.com>
12 * Amit Kucheria <amit.kucheria@nokia.com>
13 * Igor Stoppa <igor.stoppa@nokia.com>
16 * Based on pm.c for omap2
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/sched/clock.h>
22 #include <linux/clk.h>
23 #include <linux/err.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
29 #include "powerdomain.h"
30 #include "clockdomain.h"
33 #include "cm2xxx_3xxx.h"
34 #include "prm2xxx_3xxx.h"
39 #ifdef CONFIG_DEBUG_FS
40 #include <linux/debugfs.h>
41 #include <linux/seq_file.h>
43 static int pm_dbg_init_done
;
45 static int pm_dbg_init(void);
47 static const char pwrdm_state_names
[][PWRDM_MAX_PWRSTS
] = {
54 void pm_dbg_update_time(struct powerdomain
*pwrdm
, int prev
)
58 if (!pm_dbg_init_done
)
61 /* Update timer for previous state */
64 pwrdm
->state_timer
[prev
] += t
- pwrdm
->timer
;
69 static int clkdm_dbg_show_counter(struct clockdomain
*clkdm
, void *user
)
71 struct seq_file
*s
= (struct seq_file
*)user
;
73 if (strcmp(clkdm
->name
, "emu_clkdm") == 0 ||
74 strcmp(clkdm
->name
, "wkup_clkdm") == 0 ||
75 strncmp(clkdm
->name
, "dpll", 4) == 0)
78 seq_printf(s
, "%s->%s (%d)\n", clkdm
->name
, clkdm
->pwrdm
.ptr
->name
,
84 static int pwrdm_dbg_show_counter(struct powerdomain
*pwrdm
, void *user
)
86 struct seq_file
*s
= (struct seq_file
*)user
;
89 if (strcmp(pwrdm
->name
, "emu_pwrdm") == 0 ||
90 strcmp(pwrdm
->name
, "wkup_pwrdm") == 0 ||
91 strncmp(pwrdm
->name
, "dpll", 4) == 0)
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
));
98 seq_printf(s
, "%s (%s)", pwrdm
->name
,
99 pwrdm_state_names
[pwrdm
->state
]);
100 for (i
= 0; i
< PWRDM_MAX_PWRSTS
; i
++)
101 seq_printf(s
, ",%s:%d", pwrdm_state_names
[i
],
102 pwrdm
->state_counter
[i
]);
104 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
]);
113 static int pwrdm_dbg_show_timer(struct powerdomain
*pwrdm
, void *user
)
115 struct seq_file
*s
= (struct seq_file
*)user
;
118 if (strcmp(pwrdm
->name
, "emu_pwrdm") == 0 ||
119 strcmp(pwrdm
->name
, "wkup_pwrdm") == 0 ||
120 strncmp(pwrdm
->name
, "dpll", 4) == 0)
123 pwrdm_state_switch(pwrdm
);
125 seq_printf(s
, "%s (%s)", pwrdm
->name
,
126 pwrdm_state_names
[pwrdm
->state
]);
128 for (i
= 0; i
< 4; i
++)
129 seq_printf(s
, ",%s:%lld", pwrdm_state_names
[i
],
130 pwrdm
->state_timer
[i
]);
136 static int pm_dbg_counters_show(struct seq_file
*s
, void *unused
)
138 pwrdm_for_each(pwrdm_dbg_show_counter
, s
);
139 clkdm_for_each(clkdm_dbg_show_counter
, s
);
143 DEFINE_SHOW_ATTRIBUTE(pm_dbg_counters
);
145 static int pm_dbg_timers_show(struct seq_file
*s
, void *unused
)
147 pwrdm_for_each(pwrdm_dbg_show_timer
, s
);
150 DEFINE_SHOW_ATTRIBUTE(pm_dbg_timers
);
152 static int pwrdm_suspend_get(void *data
, u64
*val
)
156 if (cpu_is_omap34xx())
157 ret
= omap3_pm_get_suspend_state((struct powerdomain
*)data
);
165 static int pwrdm_suspend_set(void *data
, u64 val
)
167 if (cpu_is_omap34xx())
168 return omap3_pm_set_suspend_state(
169 (struct powerdomain
*)data
, (int)val
);
173 DEFINE_SIMPLE_ATTRIBUTE(pwrdm_suspend_fops
, pwrdm_suspend_get
,
174 pwrdm_suspend_set
, "%llu\n");
176 static int __init
pwrdms_setup(struct powerdomain
*pwrdm
, void *dir
)
184 for (i
= 0; i
< 4; i
++)
185 pwrdm
->state_timer
[i
] = 0;
189 if (strncmp(pwrdm
->name
, "dpll", 4) == 0)
192 d
= debugfs_create_dir(pwrdm
->name
, (struct dentry
*)dir
);
193 debugfs_create_file("suspend", S_IRUGO
|S_IWUSR
, d
, pwrdm
,
194 &pwrdm_suspend_fops
);
199 static int option_get(void *data
, u64
*val
)
208 static int option_set(void *data
, u64 val
)
214 if (option
== &enable_off_mode
) {
215 if (cpu_is_omap34xx())
216 omap3_pm_off_mode_enable(val
);
222 DEFINE_SIMPLE_ATTRIBUTE(pm_dbg_option_fops
, option_get
, option_set
, "%llu\n");
224 static int __init
pm_dbg_init(void)
228 if (pm_dbg_init_done
)
231 d
= debugfs_create_dir("pm_debug", NULL
);
233 debugfs_create_file("count", 0444, d
, NULL
, &pm_dbg_counters_fops
);
234 debugfs_create_file("time", 0444, d
, NULL
, &pm_dbg_timers_fops
);
236 pwrdm_for_each(pwrdms_setup
, (void *)d
);
238 debugfs_create_file("enable_off_mode", S_IRUGO
| S_IWUSR
, d
,
239 &enable_off_mode
, &pm_dbg_option_fops
);
240 pm_dbg_init_done
= 1;
244 omap_arch_initcall(pm_dbg_init
);