Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Google, Inc. |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 3 | * Copyright (c) 2007-2013, The Linux Foundation. All rights reserved. |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 4 | * |
| 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 20 | #include <linux/seq_file.h> |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 21 | #include <linux/clk.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 22 | #include <linux/list.h> |
| 23 | #include <linux/clkdev.h> |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 24 | #include <linux/uaccess.h> |
Matt Wagantall | 33d01f5 | 2012-02-23 23:27:44 -0800 | [diff] [blame] | 25 | #include <mach/clk-provider.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 26 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 27 | #include "clock.h" |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 28 | |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 29 | static LIST_HEAD(clk_list); |
| 30 | static DEFINE_SPINLOCK(clk_list_lock); |
| 31 | |
| 32 | static struct dentry *debugfs_base; |
| 33 | static u32 debug_suspend; |
| 34 | |
| 35 | struct clk_table { |
| 36 | struct list_head node; |
| 37 | struct clk_lookup *clocks; |
| 38 | size_t num_clocks; |
| 39 | }; |
| 40 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 41 | static 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 48 | if (clock->flags & CLKFLAG_MAX) |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 49 | clk_set_max_rate(clock, val); |
Matt Wagantall | 8e6126f | 2011-11-08 13:34:19 -0800 | [diff] [blame] | 50 | ret = clk_set_rate(clock, val); |
| 51 | if (ret) |
Stephen Boyd | 753ab93 | 2012-08-02 13:14:38 -0700 | [diff] [blame] | 52 | pr_err("clk_set_rate(%s, %lu) failed (%d)\n", clock->dbg_name, |
| 53 | (unsigned long)val, ret); |
Matt Wagantall | 8e6126f | 2011-11-08 13:34:19 -0800 | [diff] [blame] | 54 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 55 | return ret; |
| 56 | } |
| 57 | |
| 58 | static 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 | |
| 65 | DEFINE_SIMPLE_ATTRIBUTE(clock_rate_fops, clock_debug_rate_get, |
| 66 | clock_debug_rate_set, "%llu\n"); |
| 67 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 68 | static struct clk *measure; |
| 69 | |
| 70 | static int clock_debug_measure_get(void *data, u64 *val) |
| 71 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 72 | struct clk *clock = data; |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 73 | int ret, is_hw_gated; |
| 74 | |
| 75 | /* Check to see if the clock is in hardware gating mode */ |
Stephen Boyd | 0f7e564 | 2012-08-02 12:59:33 -0700 | [diff] [blame] | 76 | if (clock->ops->in_hwcg_mode) |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 77 | is_hw_gated = clock->ops->in_hwcg_mode(clock); |
| 78 | else |
| 79 | is_hw_gated = 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 80 | |
| 81 | ret = clk_set_parent(measure, clock); |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 82 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 92 | *val = clk_get_rate(measure); |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 93 | /* Reenable hwgating if it was disabled */ |
| 94 | if (is_hw_gated && clock->count) |
| 95 | clock->ops->enable_hwcg(clock); |
| 96 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 97 | |
| 98 | return ret; |
| 99 | } |
| 100 | |
| 101 | DEFINE_SIMPLE_ATTRIBUTE(clock_measure_fops, clock_debug_measure_get, |
| 102 | NULL, "%lld\n"); |
| 103 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 104 | static int clock_debug_enable_set(void *data, u64 val) |
| 105 | { |
| 106 | struct clk *clock = data; |
| 107 | int rc = 0; |
| 108 | |
| 109 | if (val) |
Stephen Boyd | 3bbf346 | 2012-01-12 00:19:23 -0800 | [diff] [blame] | 110 | rc = clk_prepare_enable(clock); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 111 | else |
Stephen Boyd | 3bbf346 | 2012-01-12 00:19:23 -0800 | [diff] [blame] | 112 | clk_disable_unprepare(clock); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 113 | |
| 114 | return rc; |
| 115 | } |
| 116 | |
| 117 | static int clock_debug_enable_get(void *data, u64 *val) |
| 118 | { |
| 119 | struct clk *clock = data; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 120 | int enabled; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 121 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 122 | if (clock->ops->is_enabled) |
| 123 | enabled = clock->ops->is_enabled(clock); |
| 124 | else |
| 125 | enabled = !!(clock->count); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 126 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 127 | *val = enabled; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | DEFINE_SIMPLE_ATTRIBUTE(clock_enable_fops, clock_debug_enable_get, |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 132 | clock_debug_enable_set, "%lld\n"); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 133 | |
| 134 | static int clock_debug_local_get(void *data, u64 *val) |
| 135 | { |
| 136 | struct clk *clock = data; |
| 137 | |
Matt Wagantall | acb8d02 | 2012-02-14 15:28:23 -0800 | [diff] [blame] | 138 | if (!clock->ops->is_local) |
| 139 | *val = true; |
| 140 | else |
| 141 | *val = clock->ops->is_local(clock); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | DEFINE_SIMPLE_ATTRIBUTE(clock_local_fops, clock_debug_local_get, |
| 147 | NULL, "%llu\n"); |
| 148 | |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 149 | static int clock_debug_hwcg_get(void *data, u64 *val) |
| 150 | { |
| 151 | struct clk *clock = data; |
Stephen Boyd | 0f7e564 | 2012-08-02 12:59:33 -0700 | [diff] [blame] | 152 | if (clock->ops->in_hwcg_mode) |
| 153 | *val = !!clock->ops->in_hwcg_mode(clock); |
| 154 | else |
| 155 | *val = 0; |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | DEFINE_SIMPLE_ATTRIBUTE(clock_hwcg_fops, clock_debug_hwcg_get, |
| 160 | NULL, "%llu\n"); |
| 161 | |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 162 | static int fmax_rates_show(struct seq_file *m, void *unused) |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 163 | { |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 164 | struct clk *clock = m->private; |
| 165 | int level = 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 166 | |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 167 | 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 Kannan | 55e959d | 2012-10-15 22:16:04 -0700 | [diff] [blame] | 173 | for (level = 0; level < clock->num_fmax; level++) { |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 174 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 180 | |
Stephen Boyd | 31c01e8 | 2012-04-13 15:22:00 -0700 | [diff] [blame] | 181 | return 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 184 | static int fmax_rates_open(struct inode *inode, struct file *file) |
Stephen Boyd | cd50fae | 2011-11-03 11:05:42 -0700 | [diff] [blame] | 185 | { |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 186 | return single_open(file, fmax_rates_show, inode->i_private); |
Stephen Boyd | cd50fae | 2011-11-03 11:05:42 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 189 | static 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 195 | |
| 196 | static int list_rates_show(struct seq_file *m, void *unused) |
| 197 | { |
| 198 | struct clk *clock = m->private; |
Matt Wagantall | e18bbc8 | 2011-10-06 10:07:28 -0700 | [diff] [blame] | 199 | int rate, level, fmax = 0, i = 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 200 | |
Matt Wagantall | e18bbc8 | 2011-10-06 10:07:28 -0700 | [diff] [blame] | 201 | /* Find max frequency supported within voltage constraints. */ |
| 202 | if (!clock->vdd_class) { |
Matt Wagantall | e426f904 | 2011-11-01 16:21:34 -0700 | [diff] [blame] | 203 | fmax = INT_MAX; |
Matt Wagantall | e18bbc8 | 2011-10-06 10:07:28 -0700 | [diff] [blame] | 204 | } else { |
Saravana Kannan | 55e959d | 2012-10-15 22:16:04 -0700 | [diff] [blame] | 205 | for (level = 0; level < clock->num_fmax; level++) |
Matt Wagantall | e18bbc8 | 2011-10-06 10:07:28 -0700 | [diff] [blame] | 206 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 218 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 219 | return 0; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 220 | } |
| 221 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 222 | static int list_rates_open(struct inode *inode, struct file *file) |
| 223 | { |
| 224 | return single_open(file, list_rates_show, inode->i_private); |
| 225 | } |
| 226 | |
| 227 | static 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 Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 234 | static ssize_t clock_parent_read(struct file *filp, char __user *ubuf, |
| 235 | size_t cnt, loff_t *ppos) |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 236 | { |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 237 | struct clk *clock = filp->private_data; |
| 238 | struct clk *p = clock->parent; |
| 239 | char name[256] = {0}; |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 240 | |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 241 | snprintf(name, sizeof(name), "%s\n", p ? p->dbg_name : "None\n"); |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 242 | |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 243 | return simple_read_from_buffer(ubuf, cnt, ppos, name, strlen(name)); |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 246 | |
| 247 | static ssize_t clock_parent_write(struct file *filp, |
| 248 | const char __user *ubuf, size_t cnt, loff_t *ppos) |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 249 | { |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 250 | 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; |
| 286 | err: |
| 287 | spin_unlock_irqrestore(&clk_list_lock, flags); |
| 288 | return ret; |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 291 | |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 292 | static const struct file_operations clock_parent_fops = { |
Vikram Mulukutla | a0073af | 2013-04-10 14:24:38 -0700 | [diff] [blame] | 293 | .open = simple_open, |
| 294 | .read = clock_parent_read, |
| 295 | .write = clock_parent_write, |
Patrick Daly | 0a78a0e | 2012-07-23 13:18:59 -0700 | [diff] [blame] | 296 | }; |
| 297 | |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 298 | static int clock_debug_add(struct clk *clock) |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 299 | { |
| 300 | char temp[50], *ptr; |
Stephen Boyd | 6e6d9b5 | 2011-01-26 16:20:55 -0800 | [diff] [blame] | 301 | struct dentry *clk_dir; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 302 | |
Stephen Boyd | 6e6d9b5 | 2011-01-26 16:20:55 -0800 | [diff] [blame] | 303 | if (!debugfs_base) |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 304 | return -ENOMEM; |
| 305 | |
Saravana Kannan | 7f62698 | 2011-09-26 19:02:02 -0700 | [diff] [blame] | 306 | strlcpy(temp, clock->dbg_name, ARRAY_SIZE(temp)); |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 307 | for (ptr = temp; *ptr; ptr++) |
| 308 | *ptr = tolower(*ptr); |
| 309 | |
Stephen Boyd | 6e6d9b5 | 2011-01-26 16:20:55 -0800 | [diff] [blame] | 310 | clk_dir = debugfs_create_dir(temp, debugfs_base); |
| 311 | if (!clk_dir) |
| 312 | return -ENOMEM; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 313 | |
Stephen Boyd | 6e6d9b5 | 2011-01-26 16:20:55 -0800 | [diff] [blame] | 314 | 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 325 | |
Stephen Boyd | a52d7e3 | 2011-11-10 11:59:00 -0800 | [diff] [blame] | 326 | if (!debugfs_create_file("has_hw_gating", S_IRUGO, clk_dir, clock, |
| 327 | &clock_hwcg_fops)) |
| 328 | goto error; |
| 329 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 330 | 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 Daly | 0a78a0e | 2012-07-23 13:18:59 -0700 | [diff] [blame] | 341 | if (clock->vdd_class && !debugfs_create_file("fmax_rates", |
| 342 | S_IRUGO, clk_dir, clock, &fmax_rates_fops)) |
| 343 | goto error; |
| 344 | |
Saravana Kannan | 531051f | 2012-09-27 16:19:07 -0700 | [diff] [blame] | 345 | if (!debugfs_create_file("parent", S_IRUGO, clk_dir, clock, |
| 346 | &clock_parent_fops)) |
| 347 | goto error; |
| 348 | |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 349 | return 0; |
Stephen Boyd | 6e6d9b5 | 2011-01-26 16:20:55 -0800 | [diff] [blame] | 350 | error: |
| 351 | debugfs_remove_recursive(clk_dir); |
| 352 | return -ENOMEM; |
Matt Wagantall | d64560fe | 2011-01-26 16:20:54 -0800 | [diff] [blame] | 353 | } |
Matt Wagantall | 665f0cf | 2012-02-27 15:54:43 -0800 | [diff] [blame] | 354 | |
| 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 | */ |
| 366 | int 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 | */ |
| 392 | int __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 | |
| 410 | static 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 | */ |
| 439 | void 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 | } |