blob: 95f433db4ac709bdf003b5a52e28008c77a75425 [file] [log] [blame]
Viresh Kumardeaa5142015-11-11 07:59:01 +05301/*
2 * Generic OPP debugfs interface
3 *
4 * Copyright (C) 2015-2016 Viresh Kumar <viresh.kumar@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/debugfs.h>
14#include <linux/device.h>
15#include <linux/err.h>
16#include <linux/init.h>
17#include <linux/limits.h>
Viresh Kumardfbe4672016-12-01 16:28:19 +053018#include <linux/slab.h>
Viresh Kumardeaa5142015-11-11 07:59:01 +053019
20#include "opp.h"
21
22static struct dentry *rootdir;
23
24static void opp_set_dev_name(const struct device *dev, char *name)
25{
26 if (dev->parent)
27 snprintf(name, NAME_MAX, "%s-%s", dev_name(dev->parent),
28 dev_name(dev));
29 else
30 snprintf(name, NAME_MAX, "%s", dev_name(dev));
31}
32
33void opp_debug_remove_one(struct dev_pm_opp *opp)
34{
35 debugfs_remove_recursive(opp->dentry);
36}
37
Viresh Kumardfbe4672016-12-01 16:28:19 +053038static bool opp_debug_create_supplies(struct dev_pm_opp *opp,
39 struct opp_table *opp_table,
40 struct dentry *pdentry)
41{
42 struct dentry *d;
43 int i = 0;
44 char *name;
45
46 /* Always create at least supply-0 directory */
47 do {
48 name = kasprintf(GFP_KERNEL, "supply-%d", i);
49
50 /* Create per-opp directory */
51 d = debugfs_create_dir(name, pdentry);
52
53 kfree(name);
54
55 if (!d)
56 return false;
57
58 if (!debugfs_create_ulong("u_volt_target", S_IRUGO, d,
59 &opp->supplies[i].u_volt))
60 return false;
61
62 if (!debugfs_create_ulong("u_volt_min", S_IRUGO, d,
63 &opp->supplies[i].u_volt_min))
64 return false;
65
66 if (!debugfs_create_ulong("u_volt_max", S_IRUGO, d,
67 &opp->supplies[i].u_volt_max))
68 return false;
69
70 if (!debugfs_create_ulong("u_amp", S_IRUGO, d,
71 &opp->supplies[i].u_amp))
72 return false;
73 } while (++i < opp_table->regulator_count);
74
75 return true;
76}
77
Viresh Kumar2c2709d2016-02-16 14:17:53 +053078int opp_debug_create_one(struct dev_pm_opp *opp, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +053079{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053080 struct dentry *pdentry = opp_table->dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +053081 struct dentry *d;
82 char name[25]; /* 20 chars for 64 bit value + 5 (opp:\0) */
83
84 /* Rate is unique to each OPP, use it to give opp-name */
85 snprintf(name, sizeof(name), "opp:%lu", opp->rate);
86
87 /* Create per-opp directory */
88 d = debugfs_create_dir(name, pdentry);
89 if (!d)
90 return -ENOMEM;
91
92 if (!debugfs_create_bool("available", S_IRUGO, d, &opp->available))
93 return -ENOMEM;
94
95 if (!debugfs_create_bool("dynamic", S_IRUGO, d, &opp->dynamic))
96 return -ENOMEM;
97
98 if (!debugfs_create_bool("turbo", S_IRUGO, d, &opp->turbo))
99 return -ENOMEM;
100
101 if (!debugfs_create_bool("suspend", S_IRUGO, d, &opp->suspend))
102 return -ENOMEM;
103
104 if (!debugfs_create_ulong("rate_hz", S_IRUGO, d, &opp->rate))
105 return -ENOMEM;
106
Viresh Kumardfbe4672016-12-01 16:28:19 +0530107 if (!opp_debug_create_supplies(opp, opp_table, d))
Viresh Kumardeaa5142015-11-11 07:59:01 +0530108 return -ENOMEM;
109
110 if (!debugfs_create_ulong("clock_latency_ns", S_IRUGO, d,
111 &opp->clock_latency_ns))
112 return -ENOMEM;
113
114 opp->dentry = d;
115 return 0;
116}
117
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530118static int opp_list_debug_create_dir(struct opp_device *opp_dev,
119 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530120{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530121 const struct device *dev = opp_dev->dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530122 struct dentry *d;
123
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530124 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530125
126 /* Create device specific directory */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530127 d = debugfs_create_dir(opp_table->dentry_name, rootdir);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530128 if (!d) {
129 dev_err(dev, "%s: Failed to create debugfs dir\n", __func__);
130 return -ENOMEM;
131 }
132
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530133 opp_dev->dentry = d;
134 opp_table->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530135
136 return 0;
137}
138
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530139static int opp_list_debug_create_link(struct opp_device *opp_dev,
140 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530141{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530142 const struct device *dev = opp_dev->dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530143 char name[NAME_MAX];
144 struct dentry *d;
145
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530146 opp_set_dev_name(opp_dev->dev, name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530147
148 /* Create device specific directory link */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530149 d = debugfs_create_symlink(name, rootdir, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530150 if (!d) {
151 dev_err(dev, "%s: Failed to create link\n", __func__);
152 return -ENOMEM;
153 }
154
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530155 opp_dev->dentry = d;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530156
157 return 0;
158}
159
160/**
161 * opp_debug_register - add a device opp node to the debugfs 'opp' directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530162 * @opp_dev: opp-dev pointer for device
163 * @opp_table: the device-opp being added
Viresh Kumardeaa5142015-11-11 07:59:01 +0530164 *
165 * Dynamically adds device specific directory in debugfs 'opp' directory. If the
166 * device-opp is shared with other devices, then links will be created for all
167 * devices except the first.
168 *
169 * Return: 0 on success, otherwise negative error.
170 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530171int opp_debug_register(struct opp_device *opp_dev, struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530172{
173 if (!rootdir) {
174 pr_debug("%s: Uninitialized rootdir\n", __func__);
175 return -EINVAL;
176 }
177
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530178 if (opp_table->dentry)
179 return opp_list_debug_create_link(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530180
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530181 return opp_list_debug_create_dir(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530182}
183
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530184static void opp_migrate_dentry(struct opp_device *opp_dev,
185 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530186{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530187 struct opp_device *new_dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530188 const struct device *dev;
189 struct dentry *dentry;
190
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530191 /* Look for next opp-dev */
192 list_for_each_entry(new_dev, &opp_table->dev_list, node)
193 if (new_dev != opp_dev)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530194 break;
195
196 /* new_dev is guaranteed to be valid here */
197 dev = new_dev->dev;
198 debugfs_remove_recursive(new_dev->dentry);
199
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530200 opp_set_dev_name(dev, opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530201
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530202 dentry = debugfs_rename(rootdir, opp_dev->dentry, rootdir,
203 opp_table->dentry_name);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530204 if (!dentry) {
205 dev_err(dev, "%s: Failed to rename link from: %s to %s\n",
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530206 __func__, dev_name(opp_dev->dev), dev_name(dev));
Viresh Kumardeaa5142015-11-11 07:59:01 +0530207 return;
208 }
209
210 new_dev->dentry = dentry;
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530211 opp_table->dentry = dentry;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530212}
213
214/**
215 * opp_debug_unregister - remove a device opp node from debugfs opp directory
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530216 * @opp_dev: opp-dev pointer for device
217 * @opp_table: the device-opp being removed
Viresh Kumardeaa5142015-11-11 07:59:01 +0530218 *
219 * Dynamically removes device specific directory from debugfs 'opp' directory.
220 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530221void opp_debug_unregister(struct opp_device *opp_dev,
222 struct opp_table *opp_table)
Viresh Kumardeaa5142015-11-11 07:59:01 +0530223{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530224 if (opp_dev->dentry == opp_table->dentry) {
Viresh Kumardeaa5142015-11-11 07:59:01 +0530225 /* Move the real dentry object under another device */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530226 if (!list_is_singular(&opp_table->dev_list)) {
227 opp_migrate_dentry(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530228 goto out;
229 }
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530230 opp_table->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530231 }
232
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530233 debugfs_remove_recursive(opp_dev->dentry);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530234
235out:
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530236 opp_dev->dentry = NULL;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530237}
238
239static int __init opp_debug_init(void)
240{
241 /* Create /sys/kernel/debug/opp directory */
242 rootdir = debugfs_create_dir("opp", NULL);
243 if (!rootdir) {
244 pr_err("%s: Failed to create root directory\n", __func__);
245 return -ENOMEM;
246 }
247
248 return 0;
249}
250core_initcall(opp_debug_init);