blob: 58aff8485df9c9843f1bb78a21b4e120f9dff8c5 [file] [log] [blame]
Paul Walmsleyd459bfe2008-08-19 11:08:43 +03001/*
2 * OMAP2/3 clockdomain framework functions
3 *
4 * Copyright (C) 2008 Texas Instruments, Inc.
5 * Copyright (C) 2008 Nokia Corporation
6 *
7 * Written by Paul Walmsley and Jouni Högander
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#ifdef CONFIG_OMAP_DEBUG_CLOCKDOMAIN
14# define DEBUG
15#endif
16
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/device.h>
20#include <linux/list.h>
21#include <linux/errno.h>
22#include <linux/delay.h>
23#include <linux/clk.h>
24#include <linux/limits.h>
Paul Walmsley5b74c672009-02-03 02:10:03 -070025#include <linux/err.h>
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030026
27#include <linux/io.h>
28
29#include <linux/bitops.h>
30
31#include <mach/clock.h>
32
33#include "prm.h"
34#include "prm-regbits-24xx.h"
35#include "cm.h"
36
37#include <mach/powerdomain.h>
38#include <mach/clockdomain.h>
39
40/* clkdm_list contains all registered struct clockdomains */
41static LIST_HEAD(clkdm_list);
42
43/* clkdm_mutex protects clkdm_list add and del ops */
44static DEFINE_MUTEX(clkdm_mutex);
45
46/* array of powerdomain deps to be added/removed when clkdm in hwsup mode */
47static struct clkdm_pwrdm_autodep *autodeps;
48
49
50/* Private functions */
51
52/*
53 * _autodep_lookup - resolve autodep pwrdm names to pwrdm pointers; store
54 * @autodep: struct clkdm_pwrdm_autodep * to resolve
55 *
56 * Resolve autodep powerdomain names to powerdomain pointers via
57 * pwrdm_lookup() and store the pointers in the autodep structure. An
58 * "autodep" is a powerdomain sleep/wakeup dependency that is
59 * automatically added and removed whenever clocks in the associated
60 * clockdomain are enabled or disabled (respectively) when the
61 * clockdomain is in hardware-supervised mode. Meant to be called
62 * once at clockdomain layer initialization, since these should remain
63 * fixed for a particular architecture. No return value.
64 */
65static void _autodep_lookup(struct clkdm_pwrdm_autodep *autodep)
66{
67 struct powerdomain *pwrdm;
68
69 if (!autodep)
70 return;
71
72 if (!omap_chip_is(autodep->omap_chip))
73 return;
74
Paul Walmsley5b74c672009-02-03 02:10:03 -070075 pwrdm = pwrdm_lookup(autodep->pwrdm.name);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030076 if (!pwrdm) {
Russell King7aec53a2009-02-22 21:00:55 +000077 pr_err("clockdomain: autodeps: powerdomain %s does not exist\n",
78 autodep->pwrdm.name);
Paul Walmsley5b74c672009-02-03 02:10:03 -070079 pwrdm = ERR_PTR(-ENOENT);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030080 }
Paul Walmsley5b74c672009-02-03 02:10:03 -070081 autodep->pwrdm.ptr = pwrdm;
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030082}
83
84/*
85 * _clkdm_add_autodeps - add auto sleepdeps/wkdeps to clkdm upon clock enable
86 * @clkdm: struct clockdomain *
87 *
88 * Add the "autodep" sleep & wakeup dependencies to clockdomain 'clkdm'
89 * in hardware-supervised mode. Meant to be called from clock framework
90 * when a clock inside clockdomain 'clkdm' is enabled. No return value.
91 */
92static void _clkdm_add_autodeps(struct clockdomain *clkdm)
93{
94 struct clkdm_pwrdm_autodep *autodep;
95
Paul Walmsley5b74c672009-02-03 02:10:03 -070096 for (autodep = autodeps; autodep->pwrdm.ptr; autodep++) {
97 if (IS_ERR(autodep->pwrdm.ptr))
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030098 continue;
99
Paul Walmsleyd96df002009-01-27 19:44:35 -0700100 if (!omap_chip_is(autodep->omap_chip))
101 continue;
102
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300103 pr_debug("clockdomain: adding %s sleepdep/wkdep for "
Paul Walmsley5b74c672009-02-03 02:10:03 -0700104 "pwrdm %s\n", autodep->pwrdm.ptr->name,
105 clkdm->pwrdm.ptr->name);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300106
Paul Walmsley5b74c672009-02-03 02:10:03 -0700107 pwrdm_add_sleepdep(clkdm->pwrdm.ptr, autodep->pwrdm.ptr);
108 pwrdm_add_wkdep(clkdm->pwrdm.ptr, autodep->pwrdm.ptr);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300109 }
110}
111
112/*
113 * _clkdm_add_autodeps - remove auto sleepdeps/wkdeps from clkdm
114 * @clkdm: struct clockdomain *
115 *
116 * Remove the "autodep" sleep & wakeup dependencies from clockdomain 'clkdm'
117 * in hardware-supervised mode. Meant to be called from clock framework
118 * when a clock inside clockdomain 'clkdm' is disabled. No return value.
119 */
120static void _clkdm_del_autodeps(struct clockdomain *clkdm)
121{
122 struct clkdm_pwrdm_autodep *autodep;
123
Paul Walmsley5b74c672009-02-03 02:10:03 -0700124 for (autodep = autodeps; autodep->pwrdm.ptr; autodep++) {
125 if (IS_ERR(autodep->pwrdm.ptr))
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300126 continue;
127
Paul Walmsleyd96df002009-01-27 19:44:35 -0700128 if (!omap_chip_is(autodep->omap_chip))
129 continue;
130
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300131 pr_debug("clockdomain: removing %s sleepdep/wkdep for "
Paul Walmsley5b74c672009-02-03 02:10:03 -0700132 "pwrdm %s\n", autodep->pwrdm.ptr->name,
133 clkdm->pwrdm.ptr->name);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300134
Paul Walmsley5b74c672009-02-03 02:10:03 -0700135 pwrdm_del_sleepdep(clkdm->pwrdm.ptr, autodep->pwrdm.ptr);
136 pwrdm_del_wkdep(clkdm->pwrdm.ptr, autodep->pwrdm.ptr);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300137 }
138}
139
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600140/*
141 * _omap2_clkdm_set_hwsup - set the hwsup idle transition bit
142 * @clkdm: struct clockdomain *
143 * @enable: int 0 to disable, 1 to enable
144 *
145 * Internal helper for actually switching the bit that controls hwsup
146 * idle transitions for clkdm.
147 */
148static void _omap2_clkdm_set_hwsup(struct clockdomain *clkdm, int enable)
149{
150 u32 v;
151
152 if (cpu_is_omap24xx()) {
153 if (enable)
154 v = OMAP24XX_CLKSTCTRL_ENABLE_AUTO;
155 else
156 v = OMAP24XX_CLKSTCTRL_DISABLE_AUTO;
157 } else if (cpu_is_omap34xx()) {
158 if (enable)
159 v = OMAP34XX_CLKSTCTRL_ENABLE_AUTO;
160 else
161 v = OMAP34XX_CLKSTCTRL_DISABLE_AUTO;
162 } else {
163 BUG();
164 }
165
166 cm_rmw_mod_reg_bits(clkdm->clktrctrl_mask,
167 v << __ffs(clkdm->clktrctrl_mask),
168 clkdm->pwrdm.ptr->prcm_offs, CM_CLKSTCTRL);
169}
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300170
171static struct clockdomain *_clkdm_lookup(const char *name)
172{
173 struct clockdomain *clkdm, *temp_clkdm;
174
175 if (!name)
176 return NULL;
177
178 clkdm = NULL;
179
180 list_for_each_entry(temp_clkdm, &clkdm_list, node) {
181 if (!strcmp(name, temp_clkdm->name)) {
182 clkdm = temp_clkdm;
183 break;
184 }
185 }
186
187 return clkdm;
188}
189
190
191/* Public functions */
192
193/**
194 * clkdm_init - set up the clockdomain layer
195 * @clkdms: optional pointer to an array of clockdomains to register
196 * @init_autodeps: optional pointer to an array of autodeps to register
197 *
198 * Set up internal state. If a pointer to an array of clockdomains
199 * was supplied, loop through the list of clockdomains, register all
200 * that are available on the current platform. Similarly, if a
201 * pointer to an array of clockdomain-powerdomain autodependencies was
202 * provided, register those. No return value.
203 */
204void clkdm_init(struct clockdomain **clkdms,
205 struct clkdm_pwrdm_autodep *init_autodeps)
206{
207 struct clockdomain **c = NULL;
208 struct clkdm_pwrdm_autodep *autodep = NULL;
209
210 if (clkdms)
211 for (c = clkdms; *c; c++)
212 clkdm_register(*c);
213
214 autodeps = init_autodeps;
215 if (autodeps)
Paul Walmsley5b74c672009-02-03 02:10:03 -0700216 for (autodep = autodeps; autodep->pwrdm.ptr; autodep++)
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300217 _autodep_lookup(autodep);
218}
219
220/**
221 * clkdm_register - register a clockdomain
222 * @clkdm: struct clockdomain * to register
223 *
224 * Adds a clockdomain to the internal clockdomain list.
225 * Returns -EINVAL if given a null pointer, -EEXIST if a clockdomain is
226 * already registered by the provided name, or 0 upon success.
227 */
228int clkdm_register(struct clockdomain *clkdm)
229{
230 int ret = -EINVAL;
231 struct powerdomain *pwrdm;
232
233 if (!clkdm || !clkdm->name)
234 return -EINVAL;
235
236 if (!omap_chip_is(clkdm->omap_chip))
237 return -EINVAL;
238
Paul Walmsley5b74c672009-02-03 02:10:03 -0700239 pwrdm = pwrdm_lookup(clkdm->pwrdm.name);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300240 if (!pwrdm) {
Russell King7aec53a2009-02-22 21:00:55 +0000241 pr_err("clockdomain: %s: powerdomain %s does not exist\n",
242 clkdm->name, clkdm->pwrdm.name);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300243 return -EINVAL;
244 }
Paul Walmsley5b74c672009-02-03 02:10:03 -0700245 clkdm->pwrdm.ptr = pwrdm;
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300246
247 mutex_lock(&clkdm_mutex);
248 /* Verify that the clockdomain is not already registered */
249 if (_clkdm_lookup(clkdm->name)) {
250 ret = -EEXIST;
251 goto cr_unlock;
Russell King7aec53a2009-02-22 21:00:55 +0000252 }
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300253
254 list_add(&clkdm->node, &clkdm_list);
255
Paul Walmsley8420bb12008-08-19 11:08:44 +0300256 pwrdm_add_clkdm(pwrdm, clkdm);
257
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300258 pr_debug("clockdomain: registered %s\n", clkdm->name);
259 ret = 0;
260
261cr_unlock:
262 mutex_unlock(&clkdm_mutex);
263
264 return ret;
265}
266
267/**
268 * clkdm_unregister - unregister a clockdomain
269 * @clkdm: struct clockdomain * to unregister
270 *
271 * Removes a clockdomain from the internal clockdomain list. Returns
272 * -EINVAL if clkdm argument is NULL.
273 */
274int clkdm_unregister(struct clockdomain *clkdm)
275{
276 if (!clkdm)
277 return -EINVAL;
278
Paul Walmsley5b74c672009-02-03 02:10:03 -0700279 pwrdm_del_clkdm(clkdm->pwrdm.ptr, clkdm);
Paul Walmsley8420bb12008-08-19 11:08:44 +0300280
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300281 mutex_lock(&clkdm_mutex);
282 list_del(&clkdm->node);
283 mutex_unlock(&clkdm_mutex);
284
285 pr_debug("clockdomain: unregistered %s\n", clkdm->name);
286
287 return 0;
288}
289
290/**
291 * clkdm_lookup - look up a clockdomain by name, return a pointer
292 * @name: name of clockdomain
293 *
294 * Find a registered clockdomain by its name. Returns a pointer to the
295 * struct clockdomain if found, or NULL otherwise.
296 */
297struct clockdomain *clkdm_lookup(const char *name)
298{
299 struct clockdomain *clkdm, *temp_clkdm;
300
301 if (!name)
302 return NULL;
303
304 clkdm = NULL;
305
306 mutex_lock(&clkdm_mutex);
307 list_for_each_entry(temp_clkdm, &clkdm_list, node) {
308 if (!strcmp(name, temp_clkdm->name)) {
309 clkdm = temp_clkdm;
310 break;
311 }
312 }
313 mutex_unlock(&clkdm_mutex);
314
315 return clkdm;
316}
317
318/**
319 * clkdm_for_each - call function on each registered clockdomain
320 * @fn: callback function *
321 *
322 * Call the supplied function for each registered clockdomain.
323 * The callback function can return anything but 0 to bail
324 * out early from the iterator. The callback function is called with
325 * the clkdm_mutex held, so no clockdomain structure manipulation
326 * functions should be called from the callback, although hardware
327 * clockdomain control functions are fine. Returns the last return
328 * value of the callback function, which should be 0 for success or
329 * anything else to indicate failure; or -EINVAL if the function pointer
330 * is null.
331 */
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300332int clkdm_for_each(int (*fn)(struct clockdomain *clkdm, void *user),
333 void *user)
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300334{
335 struct clockdomain *clkdm;
336 int ret = 0;
337
338 if (!fn)
339 return -EINVAL;
340
341 mutex_lock(&clkdm_mutex);
342 list_for_each_entry(clkdm, &clkdm_list, node) {
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300343 ret = (*fn)(clkdm, user);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300344 if (ret)
345 break;
346 }
347 mutex_unlock(&clkdm_mutex);
348
349 return ret;
350}
351
352
Paul Walmsleye89087c2008-05-20 18:41:35 -0600353/**
354 * clkdm_get_pwrdm - return a ptr to the pwrdm that this clkdm resides in
355 * @clkdm: struct clockdomain *
356 *
357 * Return a pointer to the struct powerdomain that the specified clockdomain
358 * 'clkdm' exists in, or returns NULL if clkdm argument is NULL.
359 */
360struct powerdomain *clkdm_get_pwrdm(struct clockdomain *clkdm)
361{
362 if (!clkdm)
363 return NULL;
364
Paul Walmsley5b74c672009-02-03 02:10:03 -0700365 return clkdm->pwrdm.ptr;
Paul Walmsleye89087c2008-05-20 18:41:35 -0600366}
367
368
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300369/* Hardware clockdomain control */
370
371/**
372 * omap2_clkdm_clktrctrl_read - read the clkdm's current state transition mode
373 * @clk: struct clk * of a clockdomain
374 *
375 * Return the clockdomain's current state transition mode from the
376 * corresponding domain CM_CLKSTCTRL register. Returns -EINVAL if clk
377 * is NULL or the current mode upon success.
378 */
379static int omap2_clkdm_clktrctrl_read(struct clockdomain *clkdm)
380{
381 u32 v;
382
383 if (!clkdm)
384 return -EINVAL;
385
Paul Walmsley5b74c672009-02-03 02:10:03 -0700386 v = cm_read_mod_reg(clkdm->pwrdm.ptr->prcm_offs, CM_CLKSTCTRL);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300387 v &= clkdm->clktrctrl_mask;
388 v >>= __ffs(clkdm->clktrctrl_mask);
389
390 return v;
391}
392
393/**
394 * omap2_clkdm_sleep - force clockdomain sleep transition
395 * @clkdm: struct clockdomain *
396 *
397 * Instruct the CM to force a sleep transition on the specified
398 * clockdomain 'clkdm'. Returns -EINVAL if clk is NULL or if
399 * clockdomain does not support software-initiated sleep; 0 upon
400 * success.
401 */
402int omap2_clkdm_sleep(struct clockdomain *clkdm)
403{
404 if (!clkdm)
405 return -EINVAL;
406
407 if (!(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) {
408 pr_debug("clockdomain: %s does not support forcing "
409 "sleep via software\n", clkdm->name);
410 return -EINVAL;
411 }
412
413 pr_debug("clockdomain: forcing sleep on %s\n", clkdm->name);
414
415 if (cpu_is_omap24xx()) {
416
417 cm_set_mod_reg_bits(OMAP24XX_FORCESTATE,
Paul Walmsley5b74c672009-02-03 02:10:03 -0700418 clkdm->pwrdm.ptr->prcm_offs, PM_PWSTCTRL);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300419
420 } else if (cpu_is_omap34xx()) {
421
422 u32 v = (OMAP34XX_CLKSTCTRL_FORCE_SLEEP <<
423 __ffs(clkdm->clktrctrl_mask));
424
425 cm_rmw_mod_reg_bits(clkdm->clktrctrl_mask, v,
Paul Walmsley5b74c672009-02-03 02:10:03 -0700426 clkdm->pwrdm.ptr->prcm_offs, CM_CLKSTCTRL);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300427
428 } else {
429 BUG();
430 };
431
432 return 0;
433}
434
435/**
436 * omap2_clkdm_wakeup - force clockdomain wakeup transition
437 * @clkdm: struct clockdomain *
438 *
439 * Instruct the CM to force a wakeup transition on the specified
440 * clockdomain 'clkdm'. Returns -EINVAL if clkdm is NULL or if the
441 * clockdomain does not support software-controlled wakeup; 0 upon
442 * success.
443 */
444int omap2_clkdm_wakeup(struct clockdomain *clkdm)
445{
446 if (!clkdm)
447 return -EINVAL;
448
449 if (!(clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) {
450 pr_debug("clockdomain: %s does not support forcing "
451 "wakeup via software\n", clkdm->name);
452 return -EINVAL;
453 }
454
455 pr_debug("clockdomain: forcing wakeup on %s\n", clkdm->name);
456
457 if (cpu_is_omap24xx()) {
458
459 cm_clear_mod_reg_bits(OMAP24XX_FORCESTATE,
Paul Walmsley5b74c672009-02-03 02:10:03 -0700460 clkdm->pwrdm.ptr->prcm_offs, PM_PWSTCTRL);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300461
462 } else if (cpu_is_omap34xx()) {
463
464 u32 v = (OMAP34XX_CLKSTCTRL_FORCE_WAKEUP <<
465 __ffs(clkdm->clktrctrl_mask));
466
467 cm_rmw_mod_reg_bits(clkdm->clktrctrl_mask, v,
Paul Walmsley5b74c672009-02-03 02:10:03 -0700468 clkdm->pwrdm.ptr->prcm_offs, CM_CLKSTCTRL);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300469
470 } else {
471 BUG();
472 };
473
474 return 0;
475}
476
477/**
478 * omap2_clkdm_allow_idle - enable hwsup idle transitions for clkdm
479 * @clkdm: struct clockdomain *
480 *
481 * Allow the hardware to automatically switch the clockdomain into
482 * active or idle states, as needed by downstream clocks. If the
483 * clockdomain has any downstream clocks enabled in the clock
484 * framework, wkdep/sleepdep autodependencies are added; this is so
485 * device drivers can read and write to the device. No return value.
486 */
487void omap2_clkdm_allow_idle(struct clockdomain *clkdm)
488{
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300489 if (!clkdm)
490 return;
491
492 if (!(clkdm->flags & CLKDM_CAN_ENABLE_AUTO)) {
493 pr_debug("clock: automatic idle transitions cannot be enabled "
494 "on clockdomain %s\n", clkdm->name);
495 return;
496 }
497
498 pr_debug("clockdomain: enabling automatic idle transitions for %s\n",
499 clkdm->name);
500
501 if (atomic_read(&clkdm->usecount) > 0)
502 _clkdm_add_autodeps(clkdm);
503
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600504 _omap2_clkdm_set_hwsup(clkdm, 1);
Peter 'p2' De Schrijverba20bb12008-10-15 17:48:43 +0300505
506 pwrdm_clkdm_state_switch(clkdm);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300507}
508
509/**
510 * omap2_clkdm_deny_idle - disable hwsup idle transitions for clkdm
511 * @clkdm: struct clockdomain *
512 *
513 * Prevent the hardware from automatically switching the clockdomain
514 * into inactive or idle states. If the clockdomain has downstream
515 * clocks enabled in the clock framework, wkdep/sleepdep
516 * autodependencies are removed. No return value.
517 */
518void omap2_clkdm_deny_idle(struct clockdomain *clkdm)
519{
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300520 if (!clkdm)
521 return;
522
523 if (!(clkdm->flags & CLKDM_CAN_DISABLE_AUTO)) {
524 pr_debug("clockdomain: automatic idle transitions cannot be "
525 "disabled on %s\n", clkdm->name);
526 return;
527 }
528
529 pr_debug("clockdomain: disabling automatic idle transitions for %s\n",
530 clkdm->name);
531
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600532 _omap2_clkdm_set_hwsup(clkdm, 0);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300533
534 if (atomic_read(&clkdm->usecount) > 0)
535 _clkdm_del_autodeps(clkdm);
536}
537
538
539/* Clockdomain-to-clock framework interface code */
540
541/**
542 * omap2_clkdm_clk_enable - add an enabled downstream clock to this clkdm
543 * @clkdm: struct clockdomain *
544 * @clk: struct clk * of the enabled downstream clock
545 *
546 * Increment the usecount of this clockdomain 'clkdm' and ensure that
547 * it is awake. Intended to be called by clk_enable() code. If the
548 * clockdomain is in software-supervised idle mode, force the
549 * clockdomain to wake. If the clockdomain is in hardware-supervised
550 * idle mode, add clkdm-pwrdm autodependencies, to ensure that devices
551 * in the clockdomain can be read from/written to by on-chip processors.
552 * Returns -EINVAL if passed null pointers; returns 0 upon success or
553 * if the clockdomain is in hwsup idle mode.
554 */
555int omap2_clkdm_clk_enable(struct clockdomain *clkdm, struct clk *clk)
556{
557 int v;
558
559 /*
560 * XXX Rewrite this code to maintain a list of enabled
561 * downstream clocks for debugging purposes?
562 */
563
564 if (!clkdm || !clk)
565 return -EINVAL;
566
567 if (atomic_inc_return(&clkdm->usecount) > 1)
568 return 0;
569
570 /* Clockdomain now has one enabled downstream clock */
571
572 pr_debug("clockdomain: clkdm %s: clk %s now enabled\n", clkdm->name,
573 clk->name);
574
575 v = omap2_clkdm_clktrctrl_read(clkdm);
576
577 if ((cpu_is_omap34xx() && v == OMAP34XX_CLKSTCTRL_ENABLE_AUTO) ||
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600578 (cpu_is_omap24xx() && v == OMAP24XX_CLKSTCTRL_ENABLE_AUTO)) {
579 /* Disable HW transitions when we are changing deps */
580 _omap2_clkdm_set_hwsup(clkdm, 0);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300581 _clkdm_add_autodeps(clkdm);
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600582 _omap2_clkdm_set_hwsup(clkdm, 1);
583 } else {
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300584 omap2_clkdm_wakeup(clkdm);
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600585 }
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300586
Tomi Valkeinen054ce502009-01-27 19:44:31 -0700587 pwrdm_wait_transition(clkdm->pwrdm.ptr);
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300588 pwrdm_clkdm_state_switch(clkdm);
Tomi Valkeinen054ce502009-01-27 19:44:31 -0700589
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300590 return 0;
591}
592
593/**
594 * omap2_clkdm_clk_disable - remove an enabled downstream clock from this clkdm
595 * @clkdm: struct clockdomain *
596 * @clk: struct clk * of the disabled downstream clock
597 *
598 * Decrement the usecount of this clockdomain 'clkdm'. Intended to be
599 * called by clk_disable() code. If the usecount goes to 0, put the
600 * clockdomain to sleep (software-supervised mode) or remove the
601 * clkdm-pwrdm autodependencies (hardware-supervised mode). Returns
602 * -EINVAL if passed null pointers; -ERANGE if the clkdm usecount
603 * underflows and debugging is enabled; or returns 0 upon success or
604 * if the clockdomain is in hwsup idle mode.
605 */
606int omap2_clkdm_clk_disable(struct clockdomain *clkdm, struct clk *clk)
607{
608 int v;
609
610 /*
611 * XXX Rewrite this code to maintain a list of enabled
612 * downstream clocks for debugging purposes?
613 */
614
615 if (!clkdm || !clk)
616 return -EINVAL;
617
618#ifdef DEBUG
619 if (atomic_read(&clkdm->usecount) == 0) {
620 WARN_ON(1); /* underflow */
621 return -ERANGE;
622 }
623#endif
624
625 if (atomic_dec_return(&clkdm->usecount) > 0)
626 return 0;
627
628 /* All downstream clocks of this clockdomain are now disabled */
629
630 pr_debug("clockdomain: clkdm %s: clk %s now disabled\n", clkdm->name,
631 clk->name);
632
633 v = omap2_clkdm_clktrctrl_read(clkdm);
634
635 if ((cpu_is_omap34xx() && v == OMAP34XX_CLKSTCTRL_ENABLE_AUTO) ||
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600636 (cpu_is_omap24xx() && v == OMAP24XX_CLKSTCTRL_ENABLE_AUTO)) {
637 /* Disable HW transitions when we are changing deps */
638 _omap2_clkdm_set_hwsup(clkdm, 0);
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300639 _clkdm_del_autodeps(clkdm);
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600640 _omap2_clkdm_set_hwsup(clkdm, 1);
641 } else {
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300642 omap2_clkdm_sleep(clkdm);
Kalle Jokiniemia0219fb2009-10-14 16:40:37 -0600643 }
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300644
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300645 pwrdm_clkdm_state_switch(clkdm);
646
Paul Walmsleyd459bfe2008-08-19 11:08:43 +0300647 return 0;
648}
649