1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic OPP debugfs interface
5 * Copyright (C) 2015-2016 Viresh Kumar <viresh.kumar@linaro.org>
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/debugfs.h>
11 #include <linux/device.h>
12 #include <linux/err.h>
14 #include <linux/init.h>
15 #include <linux/limits.h>
16 #include <linux/slab.h>
20 static struct dentry
*rootdir
;
22 static void opp_set_dev_name(const struct device
*dev
, char *name
)
25 snprintf(name
, NAME_MAX
, "%s-%s", dev_name(dev
->parent
),
28 snprintf(name
, NAME_MAX
, "%s", dev_name(dev
));
31 void opp_debug_remove_one(struct dev_pm_opp
*opp
)
33 debugfs_remove_recursive(opp
->dentry
);
36 static ssize_t
bw_name_read(struct file
*fp
, char __user
*userbuf
,
37 size_t count
, loff_t
*ppos
)
39 struct icc_path
*path
= fp
->private_data
;
40 const char *name
= icc_get_name(path
);
45 i
= scnprintf(buf
, sizeof(buf
), "%.62s\n", name
);
47 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, i
);
50 static const struct file_operations bw_name_fops
= {
53 .llseek
= default_llseek
,
56 static void opp_debug_create_bw(struct dev_pm_opp
*opp
,
57 struct opp_table
*opp_table
,
58 struct dentry
*pdentry
)
61 char name
[] = "icc-path-XXXXXXXXXXX"; /* Integers can take 11 chars max */
64 for (i
= 0; i
< opp_table
->path_count
; i
++) {
65 snprintf(name
, sizeof(name
), "icc-path-%d", i
);
67 /* Create per-path directory */
68 d
= debugfs_create_dir(name
, pdentry
);
70 debugfs_create_file("name", S_IRUGO
, d
, opp_table
->paths
[i
],
72 debugfs_create_u32("peak_bw", S_IRUGO
, d
,
73 &opp
->bandwidth
[i
].peak
);
74 debugfs_create_u32("avg_bw", S_IRUGO
, d
,
75 &opp
->bandwidth
[i
].avg
);
79 static void opp_debug_create_clks(struct dev_pm_opp
*opp
,
80 struct opp_table
*opp_table
,
81 struct dentry
*pdentry
)
83 char name
[] = "rate_hz_XXXXXXXXXXX"; /* Integers can take 11 chars max */
86 if (opp_table
->clk_count
== 1) {
87 debugfs_create_ulong("rate_hz", S_IRUGO
, pdentry
, &opp
->rates
[0]);
91 for (i
= 0; i
< opp_table
->clk_count
; i
++) {
92 snprintf(name
, sizeof(name
), "rate_hz_%d", i
);
93 debugfs_create_ulong(name
, S_IRUGO
, pdentry
, &opp
->rates
[i
]);
97 static void opp_debug_create_supplies(struct dev_pm_opp
*opp
,
98 struct opp_table
*opp_table
,
99 struct dentry
*pdentry
)
104 for (i
= 0; i
< opp_table
->regulator_count
; i
++) {
105 char name
[] = "supply-XXXXXXXXXXX"; /* Integers can take 11 chars max */
107 snprintf(name
, sizeof(name
), "supply-%d", i
);
109 /* Create per-opp directory */
110 d
= debugfs_create_dir(name
, pdentry
);
112 debugfs_create_ulong("u_volt_target", S_IRUGO
, d
,
113 &opp
->supplies
[i
].u_volt
);
115 debugfs_create_ulong("u_volt_min", S_IRUGO
, d
,
116 &opp
->supplies
[i
].u_volt_min
);
118 debugfs_create_ulong("u_volt_max", S_IRUGO
, d
,
119 &opp
->supplies
[i
].u_volt_max
);
121 debugfs_create_ulong("u_amp", S_IRUGO
, d
,
122 &opp
->supplies
[i
].u_amp
);
124 debugfs_create_ulong("u_watt", S_IRUGO
, d
,
125 &opp
->supplies
[i
].u_watt
);
129 void opp_debug_create_one(struct dev_pm_opp
*opp
, struct opp_table
*opp_table
)
131 struct dentry
*pdentry
= opp_table
->dentry
;
134 char name
[25]; /* 20 chars for 64 bit value + 5 (opp:\0) */
137 * Get directory name for OPP.
139 * - Normally rate is unique to each OPP, use it to get unique opp-name.
140 * - For some devices rate isn't available or there are multiple, use
141 * index instead for them.
143 if (likely(opp_table
->clk_count
== 1 && opp
->rates
[0]))
146 id
= _get_opp_count(opp_table
);
148 snprintf(name
, sizeof(name
), "opp:%lu", id
);
150 /* Create per-opp directory */
151 d
= debugfs_create_dir(name
, pdentry
);
153 debugfs_create_bool("available", S_IRUGO
, d
, &opp
->available
);
154 debugfs_create_bool("dynamic", S_IRUGO
, d
, &opp
->dynamic
);
155 debugfs_create_bool("turbo", S_IRUGO
, d
, &opp
->turbo
);
156 debugfs_create_bool("suspend", S_IRUGO
, d
, &opp
->suspend
);
157 debugfs_create_u32("level", S_IRUGO
, d
, &opp
->level
);
158 debugfs_create_ulong("clock_latency_ns", S_IRUGO
, d
,
159 &opp
->clock_latency_ns
);
161 opp
->of_name
= of_node_full_name(opp
->np
);
162 debugfs_create_str("of_name", S_IRUGO
, d
, (char **)&opp
->of_name
);
164 opp_debug_create_clks(opp
, opp_table
, d
);
165 opp_debug_create_supplies(opp
, opp_table
, d
);
166 opp_debug_create_bw(opp
, opp_table
, d
);
171 static void opp_list_debug_create_dir(struct opp_device
*opp_dev
,
172 struct opp_table
*opp_table
)
174 const struct device
*dev
= opp_dev
->dev
;
177 opp_set_dev_name(dev
, opp_table
->dentry_name
);
179 /* Create device specific directory */
180 d
= debugfs_create_dir(opp_table
->dentry_name
, rootdir
);
183 opp_table
->dentry
= d
;
186 static void opp_list_debug_create_link(struct opp_device
*opp_dev
,
187 struct opp_table
*opp_table
)
191 opp_set_dev_name(opp_dev
->dev
, name
);
193 /* Create device specific directory link */
194 opp_dev
->dentry
= debugfs_create_symlink(name
, rootdir
,
195 opp_table
->dentry_name
);
199 * opp_debug_register - add a device opp node to the debugfs 'opp' directory
200 * @opp_dev: opp-dev pointer for device
201 * @opp_table: the device-opp being added
203 * Dynamically adds device specific directory in debugfs 'opp' directory. If the
204 * device-opp is shared with other devices, then links will be created for all
205 * devices except the first.
207 void opp_debug_register(struct opp_device
*opp_dev
, struct opp_table
*opp_table
)
209 if (opp_table
->dentry
)
210 opp_list_debug_create_link(opp_dev
, opp_table
);
212 opp_list_debug_create_dir(opp_dev
, opp_table
);
215 static void opp_migrate_dentry(struct opp_device
*opp_dev
,
216 struct opp_table
*opp_table
)
218 struct opp_device
*new_dev
= NULL
, *iter
;
219 const struct device
*dev
;
220 struct dentry
*dentry
;
222 /* Look for next opp-dev */
223 list_for_each_entry(iter
, &opp_table
->dev_list
, node
)
224 if (iter
!= opp_dev
) {
231 /* new_dev is guaranteed to be valid here */
233 debugfs_remove_recursive(new_dev
->dentry
);
235 opp_set_dev_name(dev
, opp_table
->dentry_name
);
237 dentry
= debugfs_rename(rootdir
, opp_dev
->dentry
, rootdir
,
238 opp_table
->dentry_name
);
239 if (IS_ERR(dentry
)) {
240 dev_err(dev
, "%s: Failed to rename link from: %s to %s\n",
241 __func__
, dev_name(opp_dev
->dev
), dev_name(dev
));
245 new_dev
->dentry
= dentry
;
246 opp_table
->dentry
= dentry
;
250 * opp_debug_unregister - remove a device opp node from debugfs opp directory
251 * @opp_dev: opp-dev pointer for device
252 * @opp_table: the device-opp being removed
254 * Dynamically removes device specific directory from debugfs 'opp' directory.
256 void opp_debug_unregister(struct opp_device
*opp_dev
,
257 struct opp_table
*opp_table
)
259 if (opp_dev
->dentry
== opp_table
->dentry
) {
260 /* Move the real dentry object under another device */
261 if (!list_is_singular(&opp_table
->dev_list
)) {
262 opp_migrate_dentry(opp_dev
, opp_table
);
265 opp_table
->dentry
= NULL
;
268 debugfs_remove_recursive(opp_dev
->dentry
);
271 opp_dev
->dentry
= NULL
;
274 static int __init
opp_debug_init(void)
276 /* Create /sys/kernel/debug/opp directory */
277 rootdir
= debugfs_create_dir("opp", NULL
);
281 core_initcall(opp_debug_init
);