Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/clock.c |
| 2 | * |
Ben Dooks | 50f430e | 2009-11-13 22:54:12 +0000 | [diff] [blame] | 3 | * Copyright 2004-2005 Simtec Electronics |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * S3C24XX Core clock control support |
| 7 | * |
| 8 | * Based on, and code from linux/arch/arm/mach-versatile/clock.c |
| 9 | ** |
| 10 | ** Copyright (C) 2004 ARM Limited. |
| 11 | ** Written by Deep Blue Solutions Limited. |
| 12 | * |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or |
| 17 | * (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 27 | */ |
| 28 | |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/errno.h> |
| 34 | #include <linux/err.h> |
| 35 | #include <linux/platform_device.h> |
Kay Sievers | edbaa60 | 2011-12-21 16:26:03 -0800 | [diff] [blame] | 36 | #include <linux/device.h> |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 37 | #include <linux/interrupt.h> |
| 38 | #include <linux/ioport.h> |
| 39 | #include <linux/clk.h> |
| 40 | #include <linux/spinlock.h> |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 41 | #include <linux/io.h> |
Amit Daniel Kachhap | 436c387 | 2011-01-12 13:40:04 +0900 | [diff] [blame] | 42 | #if defined(CONFIG_DEBUG_FS) |
| 43 | #include <linux/debugfs.h> |
| 44 | #endif |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 45 | |
| 46 | #include <mach/hardware.h> |
| 47 | #include <asm/irq.h> |
| 48 | |
| 49 | #include <plat/cpu-freq.h> |
| 50 | |
| 51 | #include <plat/clock.h> |
| 52 | #include <plat/cpu.h> |
| 53 | |
Marek Szyprowski | 7cf4b48 | 2010-10-07 17:19:10 +0900 | [diff] [blame] | 54 | #include <linux/serial_core.h> |
| 55 | #include <plat/regs-serial.h> /* for s3c24xx_uart_devs */ |
| 56 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 57 | /* clock information */ |
| 58 | |
| 59 | static LIST_HEAD(clocks); |
| 60 | |
| 61 | /* We originally used an mutex here, but some contexts (see resume) |
| 62 | * are calling functions such as clk_set_parent() with IRQs disabled |
| 63 | * causing an BUG to be triggered. |
| 64 | */ |
| 65 | DEFINE_SPINLOCK(clocks_lock); |
| 66 | |
Marek Szyprowski | caf2730 | 2011-09-05 20:10:06 +0900 | [diff] [blame] | 67 | /* Global watchdog clock used by arch_wtd_reset() callback */ |
| 68 | struct clk *s3c2410_wdtclk; |
| 69 | static int __init s3c_wdt_reset_init(void) |
| 70 | { |
| 71 | s3c2410_wdtclk = clk_get(NULL, "watchdog"); |
| 72 | if (IS_ERR(s3c2410_wdtclk)) |
| 73 | printk(KERN_WARNING "%s: warning: cannot get watchdog clock\n", __func__); |
| 74 | return 0; |
| 75 | } |
| 76 | arch_initcall(s3c_wdt_reset_init); |
| 77 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 78 | /* enable and disable calls for use with the clk struct */ |
| 79 | |
| 80 | static int clk_null_enable(struct clk *clk, int enable) |
| 81 | { |
| 82 | return 0; |
| 83 | } |
| 84 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 85 | int clk_enable(struct clk *clk) |
| 86 | { |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 87 | unsigned long flags; |
| 88 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 89 | if (IS_ERR(clk) || clk == NULL) |
| 90 | return -EINVAL; |
| 91 | |
| 92 | clk_enable(clk->parent); |
| 93 | |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 94 | spin_lock_irqsave(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 95 | |
| 96 | if ((clk->usage++) == 0) |
| 97 | (clk->enable)(clk, 1); |
| 98 | |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 99 | spin_unlock_irqrestore(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 100 | return 0; |
| 101 | } |
| 102 | |
| 103 | void clk_disable(struct clk *clk) |
| 104 | { |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 105 | unsigned long flags; |
| 106 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 107 | if (IS_ERR(clk) || clk == NULL) |
| 108 | return; |
| 109 | |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 110 | spin_lock_irqsave(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 111 | |
| 112 | if ((--clk->usage) == 0) |
| 113 | (clk->enable)(clk, 0); |
| 114 | |
Minho Ban | 0cdf3af | 2012-01-20 11:03:07 +0900 | [diff] [blame] | 115 | spin_unlock_irqrestore(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 116 | clk_disable(clk->parent); |
| 117 | } |
| 118 | |
| 119 | |
| 120 | unsigned long clk_get_rate(struct clk *clk) |
| 121 | { |
Chander Kashyap | 13acc29 | 2012-09-21 11:08:32 +0900 | [diff] [blame] | 122 | if (IS_ERR_OR_NULL(clk)) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 123 | return 0; |
| 124 | |
| 125 | if (clk->rate != 0) |
| 126 | return clk->rate; |
| 127 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 128 | if (clk->ops != NULL && clk->ops->get_rate != NULL) |
| 129 | return (clk->ops->get_rate)(clk); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 130 | |
| 131 | if (clk->parent != NULL) |
| 132 | return clk_get_rate(clk->parent); |
| 133 | |
| 134 | return clk->rate; |
| 135 | } |
| 136 | |
| 137 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 138 | { |
Chander Kashyap | 13acc29 | 2012-09-21 11:08:32 +0900 | [diff] [blame] | 139 | if (!IS_ERR_OR_NULL(clk) && clk->ops && clk->ops->round_rate) |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 140 | return (clk->ops->round_rate)(clk, rate); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 141 | |
| 142 | return rate; |
| 143 | } |
| 144 | |
| 145 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 146 | { |
Tushar Behera | d6838a6 | 2012-09-18 10:05:34 +0900 | [diff] [blame] | 147 | unsigned long flags; |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 148 | int ret; |
| 149 | |
Chander Kashyap | 13acc29 | 2012-09-21 11:08:32 +0900 | [diff] [blame] | 150 | if (IS_ERR_OR_NULL(clk)) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 151 | return -EINVAL; |
| 152 | |
| 153 | /* We do not default just do a clk->rate = rate as |
| 154 | * the clock may have been made this way by choice. |
| 155 | */ |
| 156 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 157 | WARN_ON(clk->ops == NULL); |
| 158 | WARN_ON(clk->ops && clk->ops->set_rate == NULL); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 159 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 160 | if (clk->ops == NULL || clk->ops->set_rate == NULL) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 161 | return -EINVAL; |
| 162 | |
Tushar Behera | d6838a6 | 2012-09-18 10:05:34 +0900 | [diff] [blame] | 163 | spin_lock_irqsave(&clocks_lock, flags); |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 164 | ret = (clk->ops->set_rate)(clk, rate); |
Tushar Behera | d6838a6 | 2012-09-18 10:05:34 +0900 | [diff] [blame] | 165 | spin_unlock_irqrestore(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 166 | |
| 167 | return ret; |
| 168 | } |
| 169 | |
| 170 | struct clk *clk_get_parent(struct clk *clk) |
| 171 | { |
| 172 | return clk->parent; |
| 173 | } |
| 174 | |
| 175 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 176 | { |
Mandeep Singh Baines | dbc5e1e | 2012-08-27 09:42:37 -0700 | [diff] [blame] | 177 | unsigned long flags; |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 178 | int ret = 0; |
| 179 | |
Chander Kashyap | 13acc29 | 2012-09-21 11:08:32 +0900 | [diff] [blame] | 180 | if (IS_ERR_OR_NULL(clk) || IS_ERR_OR_NULL(parent)) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 181 | return -EINVAL; |
| 182 | |
Mandeep Singh Baines | dbc5e1e | 2012-08-27 09:42:37 -0700 | [diff] [blame] | 183 | spin_lock_irqsave(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 184 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 185 | if (clk->ops && clk->ops->set_parent) |
| 186 | ret = (clk->ops->set_parent)(clk, parent); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 187 | |
Mandeep Singh Baines | dbc5e1e | 2012-08-27 09:42:37 -0700 | [diff] [blame] | 188 | spin_unlock_irqrestore(&clocks_lock, flags); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 189 | |
| 190 | return ret; |
| 191 | } |
| 192 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 193 | EXPORT_SYMBOL(clk_enable); |
| 194 | EXPORT_SYMBOL(clk_disable); |
| 195 | EXPORT_SYMBOL(clk_get_rate); |
| 196 | EXPORT_SYMBOL(clk_round_rate); |
| 197 | EXPORT_SYMBOL(clk_set_rate); |
| 198 | EXPORT_SYMBOL(clk_get_parent); |
| 199 | EXPORT_SYMBOL(clk_set_parent); |
| 200 | |
| 201 | /* base clocks */ |
| 202 | |
Kukjin Kim | ed27684 | 2010-01-14 12:50:23 +0900 | [diff] [blame] | 203 | int clk_default_setrate(struct clk *clk, unsigned long rate) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 204 | { |
| 205 | clk->rate = rate; |
| 206 | return 0; |
| 207 | } |
| 208 | |
Kukjin Kim | ed27684 | 2010-01-14 12:50:23 +0900 | [diff] [blame] | 209 | struct clk_ops clk_ops_def_setrate = { |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 210 | .set_rate = clk_default_setrate, |
| 211 | }; |
| 212 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 213 | struct clk clk_xtal = { |
| 214 | .name = "xtal", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 215 | .rate = 0, |
| 216 | .parent = NULL, |
| 217 | .ctrlbit = 0, |
| 218 | }; |
| 219 | |
Ben Dooks | 4b31d8b | 2008-10-21 14:07:00 +0100 | [diff] [blame] | 220 | struct clk clk_ext = { |
| 221 | .name = "ext", |
Ben Dooks | 4b31d8b | 2008-10-21 14:07:00 +0100 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | struct clk clk_epll = { |
| 225 | .name = "epll", |
Ben Dooks | 4b31d8b | 2008-10-21 14:07:00 +0100 | [diff] [blame] | 226 | }; |
| 227 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 228 | struct clk clk_mpll = { |
| 229 | .name = "mpll", |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 230 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 231 | }; |
| 232 | |
| 233 | struct clk clk_upll = { |
| 234 | .name = "upll", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 235 | .parent = NULL, |
| 236 | .ctrlbit = 0, |
| 237 | }; |
| 238 | |
| 239 | struct clk clk_f = { |
| 240 | .name = "fclk", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 241 | .rate = 0, |
| 242 | .parent = &clk_mpll, |
| 243 | .ctrlbit = 0, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | struct clk clk_h = { |
| 247 | .name = "hclk", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 248 | .rate = 0, |
| 249 | .parent = NULL, |
| 250 | .ctrlbit = 0, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 251 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | struct clk clk_p = { |
| 255 | .name = "pclk", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 256 | .rate = 0, |
| 257 | .parent = NULL, |
| 258 | .ctrlbit = 0, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 259 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 260 | }; |
| 261 | |
| 262 | struct clk clk_usb_bus = { |
| 263 | .name = "usb-bus", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 264 | .rate = 0, |
| 265 | .parent = &clk_upll, |
| 266 | }; |
| 267 | |
| 268 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 269 | struct clk s3c24xx_uclk = { |
| 270 | .name = "uclk", |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 271 | }; |
| 272 | |
| 273 | /* initialise the clock system */ |
| 274 | |
Ben Dooks | 8428d47 | 2010-01-25 10:44:10 +0900 | [diff] [blame] | 275 | /** |
| 276 | * s3c24xx_register_clock() - register a clock |
| 277 | * @clk: The clock to register |
| 278 | * |
| 279 | * Add the specified clock to the list of clocks known by the system. |
| 280 | */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 281 | int s3c24xx_register_clock(struct clk *clk) |
| 282 | { |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 283 | if (clk->enable == NULL) |
| 284 | clk->enable = clk_null_enable; |
| 285 | |
Thomas Abraham | f86c666 | 2011-06-14 19:12:26 +0900 | [diff] [blame] | 286 | /* fill up the clk_lookup structure and register it*/ |
| 287 | clk->lookup.dev_id = clk->devname; |
| 288 | clk->lookup.con_id = clk->name; |
| 289 | clk->lookup.clk = clk; |
| 290 | clkdev_add(&clk->lookup); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
Ben Dooks | 8428d47 | 2010-01-25 10:44:10 +0900 | [diff] [blame] | 295 | /** |
| 296 | * s3c24xx_register_clocks() - register an array of clock pointers |
| 297 | * @clks: Pointer to an array of struct clk pointers |
| 298 | * @nr_clks: The number of clocks in the @clks array. |
| 299 | * |
| 300 | * Call s3c24xx_register_clock() for all the clock pointers contained |
| 301 | * in the @clks list. Returns the number of failures. |
| 302 | */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 303 | int s3c24xx_register_clocks(struct clk **clks, int nr_clks) |
| 304 | { |
| 305 | int fails = 0; |
| 306 | |
| 307 | for (; nr_clks > 0; nr_clks--, clks++) { |
Ben Dooks | 50ee2d3 | 2010-01-25 10:46:51 +0900 | [diff] [blame] | 308 | if (s3c24xx_register_clock(*clks) < 0) { |
| 309 | struct clk *clk = *clks; |
| 310 | printk(KERN_ERR "%s: failed to register %p: %s\n", |
| 311 | __func__, clk, clk->name); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 312 | fails++; |
Ben Dooks | 50ee2d3 | 2010-01-25 10:46:51 +0900 | [diff] [blame] | 313 | } |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | return fails; |
| 317 | } |
| 318 | |
Ben Dooks | 1d9f13c | 2010-01-06 01:21:38 +0900 | [diff] [blame] | 319 | /** |
| 320 | * s3c_register_clocks() - register an array of clocks |
| 321 | * @clkp: Pointer to the first clock in the array. |
| 322 | * @nr_clks: Number of clocks to register. |
| 323 | * |
| 324 | * Call s3c24xx_register_clock() on the @clkp array given, printing an |
| 325 | * error if it fails to register the clock (unlikely). |
| 326 | */ |
Ben Dooks | ab5d97d | 2010-01-25 10:39:23 +0900 | [diff] [blame] | 327 | void __init s3c_register_clocks(struct clk *clkp, int nr_clks) |
Ben Dooks | 1d9f13c | 2010-01-06 01:21:38 +0900 | [diff] [blame] | 328 | { |
| 329 | int ret; |
| 330 | |
| 331 | for (; nr_clks > 0; nr_clks--, clkp++) { |
| 332 | ret = s3c24xx_register_clock(clkp); |
| 333 | |
| 334 | if (ret < 0) { |
| 335 | printk(KERN_ERR "Failed to register clock %s (%d)\n", |
| 336 | clkp->name, ret); |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
Ben Dooks | 4e04691 | 2010-04-28 12:58:13 +0900 | [diff] [blame] | 341 | /** |
| 342 | * s3c_disable_clocks() - disable an array of clocks |
| 343 | * @clkp: Pointer to the first clock in the array. |
| 344 | * @nr_clks: Number of clocks to register. |
| 345 | * |
| 346 | * for internal use only at initialisation time. disable the clocks in the |
| 347 | * @clkp array. |
| 348 | */ |
| 349 | |
| 350 | void __init s3c_disable_clocks(struct clk *clkp, int nr_clks) |
| 351 | { |
| 352 | for (; nr_clks > 0; nr_clks--, clkp++) |
| 353 | (clkp->enable)(clkp, 0); |
| 354 | } |
| 355 | |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 356 | /* initialise all the clocks */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 357 | |
| 358 | int __init s3c24xx_register_baseclocks(unsigned long xtal) |
| 359 | { |
Ben Dooks | 50f430e | 2009-11-13 22:54:12 +0000 | [diff] [blame] | 360 | printk(KERN_INFO "S3C24XX Clocks, Copyright 2004 Simtec Electronics\n"); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 361 | |
| 362 | clk_xtal.rate = xtal; |
| 363 | |
| 364 | /* register our clocks */ |
| 365 | |
| 366 | if (s3c24xx_register_clock(&clk_xtal) < 0) |
| 367 | printk(KERN_ERR "failed to register master xtal\n"); |
| 368 | |
| 369 | if (s3c24xx_register_clock(&clk_mpll) < 0) |
| 370 | printk(KERN_ERR "failed to register mpll clock\n"); |
| 371 | |
| 372 | if (s3c24xx_register_clock(&clk_upll) < 0) |
| 373 | printk(KERN_ERR "failed to register upll clock\n"); |
| 374 | |
| 375 | if (s3c24xx_register_clock(&clk_f) < 0) |
| 376 | printk(KERN_ERR "failed to register cpu fclk\n"); |
| 377 | |
| 378 | if (s3c24xx_register_clock(&clk_h) < 0) |
| 379 | printk(KERN_ERR "failed to register cpu hclk\n"); |
| 380 | |
| 381 | if (s3c24xx_register_clock(&clk_p) < 0) |
| 382 | printk(KERN_ERR "failed to register cpu pclk\n"); |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | |
Amit Daniel Kachhap | 436c387 | 2011-01-12 13:40:04 +0900 | [diff] [blame] | 387 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) |
| 388 | /* debugfs support to trace clock tree hierarchy and attributes */ |
| 389 | |
| 390 | static struct dentry *clk_debugfs_root; |
| 391 | |
| 392 | static int clk_debugfs_register_one(struct clk *c) |
| 393 | { |
| 394 | int err; |
Al Viro | 12520c4 | 2011-07-16 12:37:57 -0400 | [diff] [blame] | 395 | struct dentry *d; |
Amit Daniel Kachhap | 436c387 | 2011-01-12 13:40:04 +0900 | [diff] [blame] | 396 | struct clk *pa = c->parent; |
| 397 | char s[255]; |
| 398 | char *p = s; |
| 399 | |
Thomas Abraham | f86c666 | 2011-06-14 19:12:26 +0900 | [diff] [blame] | 400 | p += sprintf(p, "%s", c->devname); |
Amit Daniel Kachhap | 436c387 | 2011-01-12 13:40:04 +0900 | [diff] [blame] | 401 | |
| 402 | d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root); |
| 403 | if (!d) |
| 404 | return -ENOMEM; |
| 405 | |
| 406 | c->dent = d; |
| 407 | |
| 408 | d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usage); |
| 409 | if (!d) { |
| 410 | err = -ENOMEM; |
| 411 | goto err_out; |
| 412 | } |
| 413 | |
| 414 | d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); |
| 415 | if (!d) { |
| 416 | err = -ENOMEM; |
| 417 | goto err_out; |
| 418 | } |
| 419 | return 0; |
| 420 | |
| 421 | err_out: |
Al Viro | 12520c4 | 2011-07-16 12:37:57 -0400 | [diff] [blame] | 422 | debugfs_remove_recursive(c->dent); |
Amit Daniel Kachhap | 436c387 | 2011-01-12 13:40:04 +0900 | [diff] [blame] | 423 | return err; |
| 424 | } |
| 425 | |
| 426 | static int clk_debugfs_register(struct clk *c) |
| 427 | { |
| 428 | int err; |
| 429 | struct clk *pa = c->parent; |
| 430 | |
| 431 | if (pa && !pa->dent) { |
| 432 | err = clk_debugfs_register(pa); |
| 433 | if (err) |
| 434 | return err; |
| 435 | } |
| 436 | |
| 437 | if (!c->dent) { |
| 438 | err = clk_debugfs_register_one(c); |
| 439 | if (err) |
| 440 | return err; |
| 441 | } |
| 442 | return 0; |
| 443 | } |
| 444 | |
| 445 | static int __init clk_debugfs_init(void) |
| 446 | { |
| 447 | struct clk *c; |
| 448 | struct dentry *d; |
| 449 | int err; |
| 450 | |
| 451 | d = debugfs_create_dir("clock", NULL); |
| 452 | if (!d) |
| 453 | return -ENOMEM; |
| 454 | clk_debugfs_root = d; |
| 455 | |
| 456 | list_for_each_entry(c, &clocks, list) { |
| 457 | err = clk_debugfs_register(c); |
| 458 | if (err) |
| 459 | goto err_out; |
| 460 | } |
| 461 | return 0; |
| 462 | |
| 463 | err_out: |
| 464 | debugfs_remove_recursive(clk_debugfs_root); |
| 465 | return err; |
| 466 | } |
| 467 | late_initcall(clk_debugfs_init); |
| 468 | |
| 469 | #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */ |