blob: 609665e339b6b8d45b797c84fc11b14202ce1252 [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
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010035static void opp_debug_create_supplies(struct dev_pm_opp *opp,
Viresh Kumardfbe4672016-12-01 16:28:19 +053036 struct opp_table *opp_table,
37 struct dentry *pdentry)
38{
39 struct dentry *d;
Viresh Kumar1fae7882017-05-23 09:32:13 +053040 int i;
Viresh Kumardfbe4672016-12-01 16:28:19 +053041
Viresh Kumar1fae7882017-05-23 09:32:13 +053042 for (i = 0; i < opp_table->regulator_count; i++) {
Arvind Yadavd7410292017-09-21 11:15:36 +053043 char name[15];
44
45 snprintf(name, sizeof(name), "supply-%d", i);
Viresh Kumardfbe4672016-12-01 16:28:19 +053046
47 /* Create per-opp directory */
48 d = debugfs_create_dir(name, pdentry);
49
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010050 debugfs_create_ulong("u_volt_target", S_IRUGO, d,
51 &opp->supplies[i].u_volt);
Viresh Kumardfbe4672016-12-01 16:28:19 +053052
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010053 debugfs_create_ulong("u_volt_min", S_IRUGO, d,
54 &opp->supplies[i].u_volt_min);
Viresh Kumardfbe4672016-12-01 16:28:19 +053055
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010056 debugfs_create_ulong("u_volt_max", S_IRUGO, d,
57 &opp->supplies[i].u_volt_max);
Viresh Kumardfbe4672016-12-01 16:28:19 +053058
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010059 debugfs_create_ulong("u_amp", S_IRUGO, d,
60 &opp->supplies[i].u_amp);
Viresh Kumar1fae7882017-05-23 09:32:13 +053061 }
Viresh Kumardfbe4672016-12-01 16:28:19 +053062}
63
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010064void opp_debug_create_one(struct dev_pm_opp *opp, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +053065{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053066 struct dentry *pdentry = opp_table->dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +053067 struct dentry *d;
Viresh Kumara1e8c132018-04-06 14:35:45 +053068 unsigned long id;
Viresh Kumardeaa5142015-11-11 07:59:01 +053069 char name[25]; /* 20 chars for 64 bit value + 5 (opp:\0) */
70
Viresh Kumara1e8c132018-04-06 14:35:45 +053071 /*
72 * Get directory name for OPP.
73 *
74 * - Normally rate is unique to each OPP, use it to get unique opp-name.
75 * - For some devices rate isn't available, use index instead.
76 */
77 if (likely(opp->rate))
78 id = opp->rate;
79 else
80 id = _get_opp_count(opp_table);
81
82 snprintf(name, sizeof(name), "opp:%lu", id);
Viresh Kumardeaa5142015-11-11 07:59:01 +053083
84 /* Create per-opp directory */
85 d = debugfs_create_dir(name, pdentry);
Viresh Kumardeaa5142015-11-11 07:59:01 +053086
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010087 debugfs_create_bool("available", S_IRUGO, d, &opp->available);
88 debugfs_create_bool("dynamic", S_IRUGO, d, &opp->dynamic);
89 debugfs_create_bool("turbo", S_IRUGO, d, &opp->turbo);
90 debugfs_create_bool("suspend", S_IRUGO, d, &opp->suspend);
91 debugfs_create_u32("performance_state", S_IRUGO, d, &opp->pstate);
92 debugfs_create_ulong("rate_hz", S_IRUGO, d, &opp->rate);
93 debugfs_create_ulong("clock_latency_ns", S_IRUGO, d,
94 &opp->clock_latency_ns);
Viresh Kumardeaa5142015-11-11 07:59:01 +053095
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +010096 opp_debug_create_supplies(opp, opp_table, d);
Viresh Kumardeaa5142015-11-11 07:59:01 +053097
98 opp->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +053099}
100
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100101static void opp_list_debug_create_dir(struct opp_device *opp_dev,
102 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530103{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530104 const struct device *dev = opp_dev->dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530105 struct dentry *d;
106
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530107 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530108
109 /* Create device specific directory */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530110 d = debugfs_create_dir(opp_table->dentry_name, rootdir);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530111
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530112 opp_dev->dentry = d;
113 opp_table->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530114}
115
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100116static void opp_list_debug_create_link(struct opp_device *opp_dev,
117 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530118{
Viresh Kumardeaa5142015-11-11 07:59:01 +0530119 char name[NAME_MAX];
Viresh Kumardeaa5142015-11-11 07:59:01 +0530120
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530121 opp_set_dev_name(opp_dev->dev, name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530122
123 /* Create device specific directory link */
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100124 opp_dev->dentry = debugfs_create_symlink(name, rootdir,
125 opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530126}
127
128/**
129 * opp_debug_register - add a device opp node to the debugfs 'opp' directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530130 * @opp_dev: opp-dev pointer for device
131 * @opp_table: the device-opp being added
Viresh Kumardeaa5142015-11-11 07:59:01 +0530132 *
133 * Dynamically adds device specific directory in debugfs 'opp' directory. If the
134 * device-opp is shared with other devices, then links will be created for all
135 * devices except the first.
Viresh Kumardeaa5142015-11-11 07:59:01 +0530136 */
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100137void opp_debug_register(struct opp_device *opp_dev, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530138{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530139 if (opp_table->dentry)
Greg Kroah-Hartmana2dea4c2019-01-22 16:21:17 +0100140 opp_list_debug_create_link(opp_dev, opp_table);
141 else
142 opp_list_debug_create_dir(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530143}
144
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530145static void opp_migrate_dentry(struct opp_device *opp_dev,
146 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530147{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530148 struct opp_device *new_dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530149 const struct device *dev;
150 struct dentry *dentry;
151
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530152 /* Look for next opp-dev */
153 list_for_each_entry(new_dev, &opp_table->dev_list, node)
154 if (new_dev != opp_dev)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530155 break;
156
157 /* new_dev is guaranteed to be valid here */
158 dev = new_dev->dev;
159 debugfs_remove_recursive(new_dev->dentry);
160
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530161 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530162
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530163 dentry = debugfs_rename(rootdir, opp_dev->dentry, rootdir,
164 opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530165 if (!dentry) {
166 dev_err(dev, "%s: Failed to rename link from: %s to %s\n",
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530167 __func__, dev_name(opp_dev->dev), dev_name(dev));
Viresh Kumardeaa5142015-11-11 07:59:01 +0530168 return;
169 }
170
171 new_dev->dentry = dentry;
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530172 opp_table->dentry = dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530173}
174
175/**
176 * opp_debug_unregister - remove a device opp node from debugfs opp directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530177 * @opp_dev: opp-dev pointer for device
178 * @opp_table: the device-opp being removed
Viresh Kumardeaa5142015-11-11 07:59:01 +0530179 *
180 * Dynamically removes device specific directory from debugfs 'opp' directory.
181 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530182void opp_debug_unregister(struct opp_device *opp_dev,
183 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530184{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530185 if (opp_dev->dentry == opp_table->dentry) {
Viresh Kumardeaa5142015-11-11 07:59:01 +0530186 /* Move the real dentry object under another device */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530187 if (!list_is_singular(&opp_table->dev_list)) {
188 opp_migrate_dentry(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530189 goto out;
190 }
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530191 opp_table->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530192 }
193
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530194 debugfs_remove_recursive(opp_dev->dentry);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530195
196out:
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530197 opp_dev->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530198}
199
200static int __init opp_debug_init(void)
201{
202 /* Create /sys/kernel/debug/opp directory */
203 rootdir = debugfs_create_dir("opp", NULL);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530204
205 return 0;
206}
207core_initcall(opp_debug_init);