blob: 596c185b5dda4501c119921f5860eda843d1ab74 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Viresh Kumardeaa5142015-11-11 07:59:01 +05302/*
3 * Generic OPP debugfs interface
4 *
5 * Copyright (C) 2015-2016 Viresh Kumar <viresh.kumar@linaro.org>
Viresh Kumardeaa5142015-11-11 07:59:01 +05306 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include <linux/debugfs.h>
11#include <linux/device.h>
12#include <linux/err.h>
13#include <linux/init.h>
14#include <linux/limits.h>
Viresh Kumardfbe4672016-12-01 16:28:19 +053015#include <linux/slab.h>
Viresh Kumardeaa5142015-11-11 07:59:01 +053016
17#include "opp.h"
18
19static struct dentry *rootdir;
20
21static void opp_set_dev_name(const struct device *dev, char *name)
22{
23 if (dev->parent)
24 snprintf(name, NAME_MAX, "%s-%s", dev_name(dev->parent),
25 dev_name(dev));
26 else
27 snprintf(name, NAME_MAX, "%s", dev_name(dev));
28}
29
30void opp_debug_remove_one(struct dev_pm_opp *opp)
31{
32 debugfs_remove_recursive(opp->dentry);
33}
34
Viresh Kumar0430b1d2020-05-18 14:25:32 +030035static ssize_t bw_name_read(struct file *fp, char __user *userbuf,
36 size_t count, loff_t *ppos)
37{
38 struct icc_path *path = fp->private_data;
39 char buf[64];
40 int i;
41
42 i = scnprintf(buf, sizeof(buf), "%.62s\n", icc_get_name(path));
43
44 return simple_read_from_buffer(userbuf, count, ppos, buf, i);
45}
46
47static const struct file_operations bw_name_fops = {
48 .open = simple_open,
49 .read = bw_name_read,
50 .llseek = default_llseek,
51};
52
53static void opp_debug_create_bw(struct dev_pm_opp *opp,
54 struct opp_table *opp_table,
55 struct dentry *pdentry)
56{
57 struct dentry *d;
58 char name[11];
59 int i;
60
61 for (i = 0; i < opp_table->path_count; i++) {
62 snprintf(name, sizeof(name), "icc-path-%.1d", i);
63
64 /* Create per-path directory */
65 d = debugfs_create_dir(name, pdentry);
66
67 debugfs_create_file("name", S_IRUGO, d, opp_table->paths[i],
68 &bw_name_fops);
69 debugfs_create_u32("peak_bw", S_IRUGO, d,
70 &opp->bandwidth[i].peak);
71 debugfs_create_u32("avg_bw", S_IRUGO, d,
72 &opp->bandwidth[i].avg);
73 }
74}
75
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010076static void opp_debug_create_supplies(struct dev_pm_opp *opp,
Viresh Kumardfbe4672016-12-01 16:28:19 +053077 struct opp_table *opp_table,
78 struct dentry *pdentry)
79{
80 struct dentry *d;
Viresh Kumar1fae7882017-05-23 09:32:13 +053081 int i;
Viresh Kumardfbe4672016-12-01 16:28:19 +053082
Viresh Kumar1fae7882017-05-23 09:32:13 +053083 for (i = 0; i < opp_table->regulator_count; i++) {
Arvind Yadavd7410292017-09-21 11:15:36 +053084 char name[15];
85
86 snprintf(name, sizeof(name), "supply-%d", i);
Viresh Kumardfbe4672016-12-01 16:28:19 +053087
88 /* Create per-opp directory */
89 d = debugfs_create_dir(name, pdentry);
90
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010091 debugfs_create_ulong("u_volt_target", S_IRUGO, d,
92 &opp->supplies[i].u_volt);
Viresh Kumardfbe4672016-12-01 16:28:19 +053093
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010094 debugfs_create_ulong("u_volt_min", S_IRUGO, d,
95 &opp->supplies[i].u_volt_min);
Viresh Kumardfbe4672016-12-01 16:28:19 +053096
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010097 debugfs_create_ulong("u_volt_max", S_IRUGO, d,
98 &opp->supplies[i].u_volt_max);
Viresh Kumardfbe4672016-12-01 16:28:19 +053099
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100100 debugfs_create_ulong("u_amp", S_IRUGO, d,
101 &opp->supplies[i].u_amp);
Viresh Kumar1fae7882017-05-23 09:32:13 +0530102 }
Viresh Kumardfbe4672016-12-01 16:28:19 +0530103}
104
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100105void opp_debug_create_one(struct dev_pm_opp *opp, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530106{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530107 struct dentry *pdentry = opp_table->dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530108 struct dentry *d;
Viresh Kumara1e8c132018-04-06 14:35:45 +0530109 unsigned long id;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530110 char name[25]; /* 20 chars for 64 bit value + 5 (opp:\0) */
111
Viresh Kumara1e8c132018-04-06 14:35:45 +0530112 /*
113 * Get directory name for OPP.
114 *
115 * - Normally rate is unique to each OPP, use it to get unique opp-name.
116 * - For some devices rate isn't available, use index instead.
117 */
118 if (likely(opp->rate))
119 id = opp->rate;
120 else
121 id = _get_opp_count(opp_table);
122
123 snprintf(name, sizeof(name), "opp:%lu", id);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530124
125 /* Create per-opp directory */
126 d = debugfs_create_dir(name, pdentry);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530127
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100128 debugfs_create_bool("available", S_IRUGO, d, &opp->available);
129 debugfs_create_bool("dynamic", S_IRUGO, d, &opp->dynamic);
130 debugfs_create_bool("turbo", S_IRUGO, d, &opp->turbo);
131 debugfs_create_bool("suspend", S_IRUGO, d, &opp->suspend);
132 debugfs_create_u32("performance_state", S_IRUGO, d, &opp->pstate);
133 debugfs_create_ulong("rate_hz", S_IRUGO, d, &opp->rate);
134 debugfs_create_ulong("clock_latency_ns", S_IRUGO, d,
135 &opp->clock_latency_ns);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530136
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100137 opp_debug_create_supplies(opp, opp_table, d);
Viresh Kumar0430b1d2020-05-18 14:25:32 +0300138 opp_debug_create_bw(opp, opp_table, d);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530139
140 opp->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530141}
142
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100143static void opp_list_debug_create_dir(struct opp_device *opp_dev,
144 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530145{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530146 const struct device *dev = opp_dev->dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530147 struct dentry *d;
148
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530149 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530150
151 /* Create device specific directory */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530152 d = debugfs_create_dir(opp_table->dentry_name, rootdir);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530153
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530154 opp_dev->dentry = d;
155 opp_table->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530156}
157
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100158static void opp_list_debug_create_link(struct opp_device *opp_dev,
159 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530160{
Viresh Kumardeaa5142015-11-11 07:59:01 +0530161 char name[NAME_MAX];
Viresh Kumardeaa5142015-11-11 07:59:01 +0530162
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530163 opp_set_dev_name(opp_dev->dev, name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530164
165 /* Create device specific directory link */
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100166 opp_dev->dentry = debugfs_create_symlink(name, rootdir,
167 opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530168}
169
170/**
171 * opp_debug_register - add a device opp node to the debugfs 'opp' directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530172 * @opp_dev: opp-dev pointer for device
173 * @opp_table: the device-opp being added
Viresh Kumardeaa5142015-11-11 07:59:01 +0530174 *
175 * Dynamically adds device specific directory in debugfs 'opp' directory. If the
176 * device-opp is shared with other devices, then links will be created for all
177 * devices except the first.
Viresh Kumardeaa5142015-11-11 07:59:01 +0530178 */
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100179void opp_debug_register(struct opp_device *opp_dev, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530180{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530181 if (opp_table->dentry)
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100182 opp_list_debug_create_link(opp_dev, opp_table);
183 else
184 opp_list_debug_create_dir(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530185}
186
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530187static void opp_migrate_dentry(struct opp_device *opp_dev,
188 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530189{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530190 struct opp_device *new_dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530191 const struct device *dev;
192 struct dentry *dentry;
193
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530194 /* Look for next opp-dev */
195 list_for_each_entry(new_dev, &opp_table->dev_list, node)
196 if (new_dev != opp_dev)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530197 break;
198
199 /* new_dev is guaranteed to be valid here */
200 dev = new_dev->dev;
201 debugfs_remove_recursive(new_dev->dentry);
202
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530203 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530204
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530205 dentry = debugfs_rename(rootdir, opp_dev->dentry, rootdir,
206 opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530207 if (!dentry) {
208 dev_err(dev, "%s: Failed to rename link from: %s to %s\n",
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530209 __func__, dev_name(opp_dev->dev), dev_name(dev));
Viresh Kumardeaa5142015-11-11 07:59:01 +0530210 return;
211 }
212
213 new_dev->dentry = dentry;
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530214 opp_table->dentry = dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530215}
216
217/**
218 * opp_debug_unregister - remove a device opp node from debugfs opp directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530219 * @opp_dev: opp-dev pointer for device
220 * @opp_table: the device-opp being removed
Viresh Kumardeaa5142015-11-11 07:59:01 +0530221 *
222 * Dynamically removes device specific directory from debugfs 'opp' directory.
223 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530224void opp_debug_unregister(struct opp_device *opp_dev,
225 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530226{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530227 if (opp_dev->dentry == opp_table->dentry) {
Viresh Kumardeaa5142015-11-11 07:59:01 +0530228 /* Move the real dentry object under another device */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530229 if (!list_is_singular(&opp_table->dev_list)) {
230 opp_migrate_dentry(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530231 goto out;
232 }
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530233 opp_table->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530234 }
235
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530236 debugfs_remove_recursive(opp_dev->dentry);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530237
238out:
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530239 opp_dev->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530240}
241
242static int __init opp_debug_init(void)
243{
244 /* Create /sys/kernel/debug/opp directory */
245 rootdir = debugfs_create_dir("opp", NULL);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530246
247 return 0;
248}
249core_initcall(opp_debug_init);