blob: fe43b72a8ec5b2e9e526c793fbb4b2485e77ebdf [file] [log] [blame]
Matt Wagantalld64560fe2011-01-26 16:20:54 -08001/*
2 * Copyright (C) 2007 Google, Inc.
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -07003 * Copyright (c) 2007-2013, The Linux Foundation. All rights reserved.
Matt Wagantalld64560fe2011-01-26 16:20:54 -08004 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/ctype.h>
19#include <linux/debugfs.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070020#include <linux/seq_file.h>
Matt Wagantalld64560fe2011-01-26 16:20:54 -080021#include <linux/clk.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070022#include <linux/list.h>
23#include <linux/clkdev.h>
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -070024#include <linux/uaccess.h>
Matt Wagantall33d01f52012-02-23 23:27:44 -080025#include <mach/clk-provider.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070026
Matt Wagantalld64560fe2011-01-26 16:20:54 -080027#include "clock.h"
Matt Wagantalld64560fe2011-01-26 16:20:54 -080028
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -070029static LIST_HEAD(clk_list);
30static DEFINE_SPINLOCK(clk_list_lock);
31
32static struct dentry *debugfs_base;
33static u32 debug_suspend;
34
35struct clk_table {
36 struct list_head node;
37 struct clk_lookup *clocks;
38 size_t num_clocks;
39};
40
Matt Wagantalld64560fe2011-01-26 16:20:54 -080041static int clock_debug_rate_set(void *data, u64 val)
42{
43 struct clk *clock = data;
44 int ret;
45
46 /* Only increases to max rate will succeed, but that's actually good
47 * for debugging purposes so we don't check for error. */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070048 if (clock->flags & CLKFLAG_MAX)
Matt Wagantalld64560fe2011-01-26 16:20:54 -080049 clk_set_max_rate(clock, val);
Matt Wagantall8e6126f2011-11-08 13:34:19 -080050 ret = clk_set_rate(clock, val);
51 if (ret)
Stephen Boyd753ab932012-08-02 13:14:38 -070052 pr_err("clk_set_rate(%s, %lu) failed (%d)\n", clock->dbg_name,
53 (unsigned long)val, ret);
Matt Wagantall8e6126f2011-11-08 13:34:19 -080054
Matt Wagantalld64560fe2011-01-26 16:20:54 -080055 return ret;
56}
57
58static int clock_debug_rate_get(void *data, u64 *val)
59{
60 struct clk *clock = data;
61 *val = clk_get_rate(clock);
62 return 0;
63}
64
65DEFINE_SIMPLE_ATTRIBUTE(clock_rate_fops, clock_debug_rate_get,
66 clock_debug_rate_set, "%llu\n");
67
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070068static struct clk *measure;
69
70static int clock_debug_measure_get(void *data, u64 *val)
71{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070072 struct clk *clock = data;
Stephen Boyda52d7e32011-11-10 11:59:00 -080073 int ret, is_hw_gated;
74
75 /* Check to see if the clock is in hardware gating mode */
Stephen Boyd0f7e5642012-08-02 12:59:33 -070076 if (clock->ops->in_hwcg_mode)
Stephen Boyda52d7e32011-11-10 11:59:00 -080077 is_hw_gated = clock->ops->in_hwcg_mode(clock);
78 else
79 is_hw_gated = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070080
81 ret = clk_set_parent(measure, clock);
Stephen Boyda52d7e32011-11-10 11:59:00 -080082 if (!ret) {
83 /*
84 * Disable hw gating to get accurate rate measurements. Only do
85 * this if the clock is explictly enabled by software. This
86 * allows us to detect errors where clocks are on even though
87 * software is not requesting them to be on due to broken
88 * hardware gating signals.
89 */
90 if (is_hw_gated && clock->count)
91 clock->ops->disable_hwcg(clock);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070092 *val = clk_get_rate(measure);
Stephen Boyda52d7e32011-11-10 11:59:00 -080093 /* Reenable hwgating if it was disabled */
94 if (is_hw_gated && clock->count)
95 clock->ops->enable_hwcg(clock);
96 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070097
98 return ret;
99}
100
101DEFINE_SIMPLE_ATTRIBUTE(clock_measure_fops, clock_debug_measure_get,
102 NULL, "%lld\n");
103
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800104static int clock_debug_enable_set(void *data, u64 val)
105{
106 struct clk *clock = data;
107 int rc = 0;
108
109 if (val)
Stephen Boyd3bbf3462012-01-12 00:19:23 -0800110 rc = clk_prepare_enable(clock);
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800111 else
Stephen Boyd3bbf3462012-01-12 00:19:23 -0800112 clk_disable_unprepare(clock);
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800113
114 return rc;
115}
116
117static int clock_debug_enable_get(void *data, u64 *val)
118{
119 struct clk *clock = data;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700120 int enabled;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800121
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700122 if (clock->ops->is_enabled)
123 enabled = clock->ops->is_enabled(clock);
124 else
125 enabled = !!(clock->count);
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800126
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700127 *val = enabled;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800128 return 0;
129}
130
131DEFINE_SIMPLE_ATTRIBUTE(clock_enable_fops, clock_debug_enable_get,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700132 clock_debug_enable_set, "%lld\n");
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800133
134static int clock_debug_local_get(void *data, u64 *val)
135{
136 struct clk *clock = data;
137
Matt Wagantallacb8d022012-02-14 15:28:23 -0800138 if (!clock->ops->is_local)
139 *val = true;
140 else
141 *val = clock->ops->is_local(clock);
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800142
143 return 0;
144}
145
146DEFINE_SIMPLE_ATTRIBUTE(clock_local_fops, clock_debug_local_get,
147 NULL, "%llu\n");
148
Stephen Boyda52d7e32011-11-10 11:59:00 -0800149static int clock_debug_hwcg_get(void *data, u64 *val)
150{
151 struct clk *clock = data;
Stephen Boyd0f7e5642012-08-02 12:59:33 -0700152 if (clock->ops->in_hwcg_mode)
153 *val = !!clock->ops->in_hwcg_mode(clock);
154 else
155 *val = 0;
Stephen Boyda52d7e32011-11-10 11:59:00 -0800156 return 0;
157}
158
159DEFINE_SIMPLE_ATTRIBUTE(clock_hwcg_fops, clock_debug_hwcg_get,
160 NULL, "%llu\n");
161
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800162static int fmax_rates_show(struct seq_file *m, void *unused)
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800163{
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800164 struct clk *clock = m->private;
165 int level = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700166
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800167 int vdd_level = find_vdd_level(clock, clock->rate);
168 if (vdd_level < 0) {
169 seq_printf(m, "could not find_vdd_level for %s, %ld\n",
170 clock->dbg_name, clock->rate);
171 return 0;
172 }
Saravana Kannan55e959d2012-10-15 22:16:04 -0700173 for (level = 0; level < clock->num_fmax; level++) {
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800174 if (vdd_level == level)
175 seq_printf(m, "[%lu] ", clock->fmax[level]);
176 else
177 seq_printf(m, "%lu ", clock->fmax[level]);
178 }
179 seq_printf(m, "\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700180
Stephen Boyd31c01e82012-04-13 15:22:00 -0700181 return 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700182}
183
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800184static int fmax_rates_open(struct inode *inode, struct file *file)
Stephen Boydcd50fae2011-11-03 11:05:42 -0700185{
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800186 return single_open(file, fmax_rates_show, inode->i_private);
Stephen Boydcd50fae2011-11-03 11:05:42 -0700187}
188
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800189static const struct file_operations fmax_rates_fops = {
190 .open = fmax_rates_open,
191 .read = seq_read,
192 .llseek = seq_lseek,
193 .release = seq_release,
194};
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700195
196static int list_rates_show(struct seq_file *m, void *unused)
197{
198 struct clk *clock = m->private;
Matt Wagantalle18bbc82011-10-06 10:07:28 -0700199 int rate, level, fmax = 0, i = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700200
Matt Wagantalle18bbc82011-10-06 10:07:28 -0700201 /* Find max frequency supported within voltage constraints. */
202 if (!clock->vdd_class) {
Matt Wagantalle426f9042011-11-01 16:21:34 -0700203 fmax = INT_MAX;
Matt Wagantalle18bbc82011-10-06 10:07:28 -0700204 } else {
Saravana Kannan55e959d2012-10-15 22:16:04 -0700205 for (level = 0; level < clock->num_fmax; level++)
Matt Wagantalle18bbc82011-10-06 10:07:28 -0700206 if (clock->fmax[level])
207 fmax = clock->fmax[level];
208 }
209
210 /*
211 * List supported frequencies <= fmax. Higher frequencies may appear in
212 * the frequency table, but are not valid and should not be listed.
213 */
214 while ((rate = clock->ops->list_rate(clock, i++)) >= 0) {
215 if (rate <= fmax)
216 seq_printf(m, "%u\n", rate);
217 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700218
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800219 return 0;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800220}
221
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700222static int list_rates_open(struct inode *inode, struct file *file)
223{
224 return single_open(file, list_rates_show, inode->i_private);
225}
226
227static const struct file_operations list_rates_fops = {
228 .open = list_rates_open,
229 .read = seq_read,
230 .llseek = seq_lseek,
231 .release = seq_release,
232};
233
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700234static ssize_t clock_parent_read(struct file *filp, char __user *ubuf,
235 size_t cnt, loff_t *ppos)
Saravana Kannan531051f2012-09-27 16:19:07 -0700236{
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700237 struct clk *clock = filp->private_data;
238 struct clk *p = clock->parent;
239 char name[256] = {0};
Saravana Kannan531051f2012-09-27 16:19:07 -0700240
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700241 snprintf(name, sizeof(name), "%s\n", p ? p->dbg_name : "None\n");
Saravana Kannan531051f2012-09-27 16:19:07 -0700242
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700243 return simple_read_from_buffer(ubuf, cnt, ppos, name, strlen(name));
Saravana Kannan531051f2012-09-27 16:19:07 -0700244}
245
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700246
247static ssize_t clock_parent_write(struct file *filp,
248 const char __user *ubuf, size_t cnt, loff_t *ppos)
Saravana Kannan531051f2012-09-27 16:19:07 -0700249{
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700250 struct clk *clock = filp->private_data;
251 char buf[256];
252 char *cmp;
253 unsigned long flags;
254 struct clk_table *table;
255 int i, ret;
256 struct clk *parent = NULL;
257
258 cnt = min(cnt, sizeof(buf) - 1);
259 if (copy_from_user(&buf, ubuf, cnt))
260 return -EFAULT;
261 buf[cnt] = '\0';
262 cmp = strstrip(buf);
263
264 spin_lock_irqsave(&clk_list_lock, flags);
265 list_for_each_entry(table, &clk_list, node) {
266 for (i = 0; i < table->num_clocks; i++)
267 if (!strcmp(cmp, table->clocks[i].clk->dbg_name)) {
268 parent = table->clocks[i].clk;
269 break;
270 }
271 if (parent)
272 break;
273 }
274
275 if (!parent) {
276 ret = -EINVAL;
277 goto err;
278 }
279
280 spin_unlock_irqrestore(&clk_list_lock, flags);
281 ret = clk_set_parent(clock, table->clocks[i].clk);
282 if (ret)
283 return ret;
284
285 return cnt;
286err:
287 spin_unlock_irqrestore(&clk_list_lock, flags);
288 return ret;
Saravana Kannan531051f2012-09-27 16:19:07 -0700289}
290
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700291
Saravana Kannan531051f2012-09-27 16:19:07 -0700292static const struct file_operations clock_parent_fops = {
Vikram Mulukutlaa0073af2013-04-10 14:24:38 -0700293 .open = simple_open,
294 .read = clock_parent_read,
295 .write = clock_parent_write,
Patrick Daly0a78a0e2012-07-23 13:18:59 -0700296};
297
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800298static int clock_debug_add(struct clk *clock)
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800299{
300 char temp[50], *ptr;
Stephen Boyd6e6d9b52011-01-26 16:20:55 -0800301 struct dentry *clk_dir;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800302
Stephen Boyd6e6d9b52011-01-26 16:20:55 -0800303 if (!debugfs_base)
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800304 return -ENOMEM;
305
Saravana Kannan7f626982011-09-26 19:02:02 -0700306 strlcpy(temp, clock->dbg_name, ARRAY_SIZE(temp));
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800307 for (ptr = temp; *ptr; ptr++)
308 *ptr = tolower(*ptr);
309
Stephen Boyd6e6d9b52011-01-26 16:20:55 -0800310 clk_dir = debugfs_create_dir(temp, debugfs_base);
311 if (!clk_dir)
312 return -ENOMEM;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800313
Stephen Boyd6e6d9b52011-01-26 16:20:55 -0800314 if (!debugfs_create_file("rate", S_IRUGO | S_IWUSR, clk_dir,
315 clock, &clock_rate_fops))
316 goto error;
317
318 if (!debugfs_create_file("enable", S_IRUGO | S_IWUSR, clk_dir,
319 clock, &clock_enable_fops))
320 goto error;
321
322 if (!debugfs_create_file("is_local", S_IRUGO, clk_dir, clock,
323 &clock_local_fops))
324 goto error;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700325
Stephen Boyda52d7e32011-11-10 11:59:00 -0800326 if (!debugfs_create_file("has_hw_gating", S_IRUGO, clk_dir, clock,
327 &clock_hwcg_fops))
328 goto error;
329
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700330 if (measure &&
331 !clk_set_parent(measure, clock) &&
332 !debugfs_create_file("measure", S_IRUGO, clk_dir, clock,
333 &clock_measure_fops))
334 goto error;
335
336 if (clock->ops->list_rate)
337 if (!debugfs_create_file("list_rates",
338 S_IRUGO, clk_dir, clock, &list_rates_fops))
339 goto error;
340
Patrick Daly0a78a0e2012-07-23 13:18:59 -0700341 if (clock->vdd_class && !debugfs_create_file("fmax_rates",
342 S_IRUGO, clk_dir, clock, &fmax_rates_fops))
343 goto error;
344
Saravana Kannan531051f2012-09-27 16:19:07 -0700345 if (!debugfs_create_file("parent", S_IRUGO, clk_dir, clock,
346 &clock_parent_fops))
347 goto error;
348
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800349 return 0;
Stephen Boyd6e6d9b52011-01-26 16:20:55 -0800350error:
351 debugfs_remove_recursive(clk_dir);
352 return -ENOMEM;
Matt Wagantalld64560fe2011-01-26 16:20:54 -0800353}
Matt Wagantall665f0cf2012-02-27 15:54:43 -0800354
355/**
356 * clock_debug_register() - Add additional clocks to clock debugfs hierarchy
357 * @table: Table of clocks to create debugfs nodes for
358 * @size: Size of @table
359 *
360 * Use this function to register additional clocks in debugfs. The clock debugfs
361 * hierarchy must have already been initialized with clock_debug_init() prior to
362 * calling this function. Unlike clock_debug_init(), this may be called multiple
363 * times with different clock lists and can be used after the kernel has
364 * finished booting.
365 */
366int clock_debug_register(struct clk_lookup *table, size_t size)
367{
368 struct clk_table *clk_table;
369 unsigned long flags;
370 int i;
371
372 clk_table = kmalloc(sizeof(*clk_table), GFP_KERNEL);
373 if (!clk_table)
374 return -ENOMEM;
375
376 clk_table->clocks = table;
377 clk_table->num_clocks = size;
378
379 spin_lock_irqsave(&clk_list_lock, flags);
380 list_add_tail(&clk_table->node, &clk_list);
381 spin_unlock_irqrestore(&clk_list_lock, flags);
382
383 for (i = 0; i < size; i++)
384 clock_debug_add(table[i].clk);
385
386 return 0;
387}
388
389/**
390 * clock_debug_init() - Initialize clock debugfs
391 */
392int __init clock_debug_init(void)
393{
394 debugfs_base = debugfs_create_dir("clk", NULL);
395 if (!debugfs_base)
396 return -ENOMEM;
397 if (!debugfs_create_u32("debug_suspend", S_IRUGO | S_IWUSR,
398 debugfs_base, &debug_suspend)) {
399 debugfs_remove_recursive(debugfs_base);
400 return -ENOMEM;
401 }
402
403 measure = clk_get_sys("debug", "measure");
404 if (IS_ERR(measure))
405 measure = NULL;
406
407 return 0;
408}
409
410static int clock_debug_print_clock(struct clk *c)
411{
412 char *start = "";
413
414 if (!c || !c->prepare_count)
415 return 0;
416
417 pr_info("\t");
418 do {
419 if (c->vdd_class)
420 pr_cont("%s%s:%u:%u [%ld, %lu]", start, c->dbg_name,
421 c->prepare_count, c->count, c->rate,
422 c->vdd_class->cur_level);
423 else
424 pr_cont("%s%s:%u:%u [%ld]", start, c->dbg_name,
425 c->prepare_count, c->count, c->rate);
426 start = " -> ";
427 } while ((c = clk_get_parent(c)));
428
429 pr_cont("\n");
430
431 return 1;
432}
433
434/**
435 * clock_debug_print_enabled() - Print names of enabled clocks for suspend debug
436 *
437 * Print the names of enabled clocks and their parents if debug_suspend is set
438 */
439void clock_debug_print_enabled(void)
440{
441 struct clk_table *table;
442 unsigned long flags;
443 int i, cnt = 0;
444
445 if (likely(!debug_suspend))
446 return;
447
448 pr_info("Enabled clocks:\n");
449 spin_lock_irqsave(&clk_list_lock, flags);
450 list_for_each_entry(table, &clk_list, node) {
451 for (i = 0; i < table->num_clocks; i++)
452 cnt += clock_debug_print_clock(table->clocks[i].clk);
453 }
454 spin_unlock_irqrestore(&clk_list_lock, flags);
455
456 if (cnt)
457 pr_info("Enabled clock count: %d\n", cnt);
458 else
459 pr_info("No clocks enabled.\n");
460
461}