libnvdimm, region: quiet region probe
[linux-2.6-block.git] / include / linux / clk.h
CommitLineData
1da177e4 1/*
f8ce2547 2 * linux/include/linux/clk.h
1da177e4
LT
3 *
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
b2476490 6 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
1da177e4
LT
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
686f8c5d
TP
12#ifndef __LINUX_CLK_H
13#define __LINUX_CLK_H
1da177e4 14
9f1612d3 15#include <linux/err.h>
40d3e0f4 16#include <linux/kernel.h>
b2476490 17#include <linux/notifier.h>
40d3e0f4 18
1da177e4 19struct device;
b2476490 20struct clk;
71a2f115
KM
21struct device_node;
22struct of_phandle_args;
b2476490 23
b2476490
MT
24/**
25 * DOC: clk notifier callback types
26 *
27 * PRE_RATE_CHANGE - called immediately before the clk rate is changed,
28 * to indicate that the rate change will proceed. Drivers must
29 * immediately terminate any operations that will be affected by the
fb72a059
SB
30 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
31 * NOTIFY_STOP or NOTIFY_BAD.
b2476490
MT
32 *
33 * ABORT_RATE_CHANGE: called if the rate change failed for some reason
34 * after PRE_RATE_CHANGE. In this case, all registered notifiers on
35 * the clk will be called with ABORT_RATE_CHANGE. Callbacks must
fb72a059 36 * always return NOTIFY_DONE or NOTIFY_OK.
b2476490
MT
37 *
38 * POST_RATE_CHANGE - called after the clk rate change has successfully
fb72a059 39 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
b2476490 40 *
1da177e4 41 */
b2476490
MT
42#define PRE_RATE_CHANGE BIT(0)
43#define POST_RATE_CHANGE BIT(1)
44#define ABORT_RATE_CHANGE BIT(2)
1da177e4 45
b2476490
MT
46/**
47 * struct clk_notifier - associate a clk with a notifier
48 * @clk: struct clk * to associate the notifier with
49 * @notifier_head: a blocking_notifier_head for this clk
50 * @node: linked list pointers
51 *
52 * A list of struct clk_notifier is maintained by the notifier code.
53 * An entry is created whenever code registers the first notifier on a
54 * particular @clk. Future notifiers on that @clk are added to the
55 * @notifier_head.
56 */
57struct clk_notifier {
58 struct clk *clk;
59 struct srcu_notifier_head notifier_head;
60 struct list_head node;
61};
1da177e4 62
b2476490
MT
63/**
64 * struct clk_notifier_data - rate data to pass to the notifier callback
65 * @clk: struct clk * being changed
66 * @old_rate: previous rate of this clk
67 * @new_rate: new rate of this clk
68 *
69 * For a pre-notifier, old_rate is the clk's rate before this rate
70 * change, and new_rate is what the rate will be in the future. For a
71 * post-notifier, old_rate and new_rate are both set to the clk's
72 * current rate (this was done to optimize the implementation).
1da177e4 73 */
b2476490
MT
74struct clk_notifier_data {
75 struct clk *clk;
76 unsigned long old_rate;
77 unsigned long new_rate;
78};
79
266e4e9d
DA
80/**
81 * struct clk_bulk_data - Data used for bulk clk operations.
82 *
83 * @id: clock consumer ID
84 * @clk: struct clk * to store the associated clock
85 *
86 * The CLK APIs provide a series of clk_bulk_() API calls as
87 * a convenience to consumers which require multiple clks. This
88 * structure is used to manage data for these calls.
89 */
90struct clk_bulk_data {
91 const char *id;
92 struct clk *clk;
93};
94
e81b87d2
KK
95#ifdef CONFIG_COMMON_CLK
96
86bcfa2e
MT
97/**
98 * clk_notifier_register: register a clock rate-change notifier callback
99 * @clk: clock whose rate we are interested in
100 * @nb: notifier block with callback function pointer
101 *
102 * ProTip: debugging across notifier chains can be frustrating. Make sure that
103 * your notifier callback function prints a nice big warning in case of
104 * failure.
105 */
b2476490
MT
106int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
107
86bcfa2e
MT
108/**
109 * clk_notifier_unregister: unregister a clock rate-change notifier callback
110 * @clk: clock whose rate we are no longer interested in
111 * @nb: notifier block which will be unregistered
112 */
b2476490
MT
113int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
114
5279fc40
BB
115/**
116 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
117 * for a clock source.
118 * @clk: clock source
119 *
120 * This gets the clock source accuracy expressed in ppb.
121 * A perfect clock returns 0.
122 */
123long clk_get_accuracy(struct clk *clk);
124
e59c5371
MT
125/**
126 * clk_set_phase - adjust the phase shift of a clock signal
127 * @clk: clock signal source
128 * @degrees: number of degrees the signal is shifted
129 *
130 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
131 * success, -EERROR otherwise.
132 */
133int clk_set_phase(struct clk *clk, int degrees);
134
135/**
136 * clk_get_phase - return the phase shift of a clock signal
137 * @clk: clock signal source
138 *
139 * Returns the phase shift of a clock node in degrees, otherwise returns
140 * -EERROR.
141 */
142int clk_get_phase(struct clk *clk);
143
3d3801ef
MT
144/**
145 * clk_is_match - check if two clk's point to the same hardware clock
146 * @p: clk compared against q
147 * @q: clk compared against p
148 *
149 * Returns true if the two struct clk pointers both point to the same hardware
0e056eb5 150 * clock node. Put differently, returns true if @p and @q
151 * share the same &struct clk_core object.
3d3801ef
MT
152 *
153 * Returns false otherwise. Note that two NULL clks are treated as matching.
154 */
155bool clk_is_match(const struct clk *p, const struct clk *q);
156
5279fc40
BB
157#else
158
e81b87d2
KK
159static inline int clk_notifier_register(struct clk *clk,
160 struct notifier_block *nb)
161{
162 return -ENOTSUPP;
163}
164
165static inline int clk_notifier_unregister(struct clk *clk,
166 struct notifier_block *nb)
167{
168 return -ENOTSUPP;
169}
170
5279fc40
BB
171static inline long clk_get_accuracy(struct clk *clk)
172{
173 return -ENOTSUPP;
174}
175
e59c5371
MT
176static inline long clk_set_phase(struct clk *clk, int phase)
177{
178 return -ENOTSUPP;
179}
180
181static inline long clk_get_phase(struct clk *clk)
182{
183 return -ENOTSUPP;
184}
185
3d3801ef
MT
186static inline bool clk_is_match(const struct clk *p, const struct clk *q)
187{
188 return p == q;
189}
190
7e87aed9 191#endif
1da177e4 192
93abe8e4
VK
193/**
194 * clk_prepare - prepare a clock source
195 * @clk: clock source
196 *
197 * This prepares the clock source for use.
198 *
199 * Must not be called from within atomic context.
200 */
201#ifdef CONFIG_HAVE_CLK_PREPARE
202int clk_prepare(struct clk *clk);
266e4e9d
DA
203int __must_check clk_bulk_prepare(int num_clks,
204 const struct clk_bulk_data *clks);
93abe8e4
VK
205#else
206static inline int clk_prepare(struct clk *clk)
207{
208 might_sleep();
209 return 0;
210}
266e4e9d
DA
211
212static inline int clk_bulk_prepare(int num_clks, struct clk_bulk_data *clks)
213{
214 might_sleep();
215 return 0;
216}
93abe8e4
VK
217#endif
218
219/**
220 * clk_unprepare - undo preparation of a clock source
221 * @clk: clock source
222 *
223 * This undoes a previously prepared clock. The caller must balance
224 * the number of prepare and unprepare calls.
225 *
226 * Must not be called from within atomic context.
227 */
228#ifdef CONFIG_HAVE_CLK_PREPARE
229void clk_unprepare(struct clk *clk);
266e4e9d 230void clk_bulk_unprepare(int num_clks, const struct clk_bulk_data *clks);
93abe8e4
VK
231#else
232static inline void clk_unprepare(struct clk *clk)
233{
234 might_sleep();
235}
266e4e9d
DA
236static inline void clk_bulk_unprepare(int num_clks, struct clk_bulk_data *clks)
237{
238 might_sleep();
239}
93abe8e4
VK
240#endif
241
242#ifdef CONFIG_HAVE_CLK
1da177e4
LT
243/**
244 * clk_get - lookup and obtain a reference to a clock producer.
245 * @dev: device for clock "consumer"
a58b3a4a 246 * @id: clock consumer ID
1da177e4
LT
247 *
248 * Returns a struct clk corresponding to the clock producer, or
ea3f4eac
RK
249 * valid IS_ERR() condition containing errno. The implementation
250 * uses @dev and @id to determine the clock consumer, and thereby
251 * the clock producer. (IOW, @id may be identical strings, but
252 * clk_get may return different clock producers depending on @dev.)
f47fc0ac
RK
253 *
254 * Drivers must assume that the clock source is not enabled.
f7ad160b
AR
255 *
256 * clk_get should not be called from within interrupt context.
1da177e4
LT
257 */
258struct clk *clk_get(struct device *dev, const char *id);
259
266e4e9d
DA
260/**
261 * clk_bulk_get - lookup and obtain a number of references to clock producer.
262 * @dev: device for clock "consumer"
263 * @num_clks: the number of clk_bulk_data
264 * @clks: the clk_bulk_data table of consumer
265 *
266 * This helper function allows drivers to get several clk consumers in one
267 * operation. If any of the clk cannot be acquired then any clks
268 * that were obtained will be freed before returning to the caller.
269 *
270 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
271 * successfully, or valid IS_ERR() condition containing errno.
272 * The implementation uses @dev and @clk_bulk_data.id to determine the
273 * clock consumer, and thereby the clock producer.
274 * The clock returned is stored in each @clk_bulk_data.clk field.
275 *
276 * Drivers must assume that the clock source is not enabled.
277 *
278 * clk_bulk_get should not be called from within interrupt context.
279 */
280int __must_check clk_bulk_get(struct device *dev, int num_clks,
281 struct clk_bulk_data *clks);
282
618aee02
DA
283/**
284 * devm_clk_bulk_get - managed get multiple clk consumers
285 * @dev: device for clock "consumer"
286 * @num_clks: the number of clk_bulk_data
287 * @clks: the clk_bulk_data table of consumer
288 *
289 * Return 0 on success, an errno on failure.
290 *
291 * This helper function allows drivers to get several clk
292 * consumers in one operation with management, the clks will
293 * automatically be freed when the device is unbound.
294 */
295int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
296 struct clk_bulk_data *clks);
297
a8a97db9
MB
298/**
299 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
300 * @dev: device for clock "consumer"
a58b3a4a 301 * @id: clock consumer ID
a8a97db9
MB
302 *
303 * Returns a struct clk corresponding to the clock producer, or
304 * valid IS_ERR() condition containing errno. The implementation
305 * uses @dev and @id to determine the clock consumer, and thereby
306 * the clock producer. (IOW, @id may be identical strings, but
307 * clk_get may return different clock producers depending on @dev.)
308 *
309 * Drivers must assume that the clock source is not enabled.
310 *
311 * devm_clk_get should not be called from within interrupt context.
312 *
313 * The clock will automatically be freed when the device is unbound
314 * from the bus.
315 */
316struct clk *devm_clk_get(struct device *dev, const char *id);
317
71a2f115
KM
318/**
319 * devm_get_clk_from_child - lookup and obtain a managed reference to a
320 * clock producer from child node.
321 * @dev: device for clock "consumer"
322 * @np: pointer to clock consumer node
323 * @con_id: clock consumer ID
324 *
325 * This function parses the clocks, and uses them to look up the
326 * struct clk from the registered list of clock providers by using
327 * @np and @con_id
328 *
329 * The clock will automatically be freed when the device is unbound
330 * from the bus.
331 */
332struct clk *devm_get_clk_from_child(struct device *dev,
333 struct device_node *np, const char *con_id);
55e9b8b7
JB
334/**
335 * clk_rate_exclusive_get - get exclusivity over the rate control of a
336 * producer
337 * @clk: clock source
338 *
339 * This function allows drivers to get exclusive control over the rate of a
340 * provider. It prevents any other consumer to execute, even indirectly,
341 * opereation which could alter the rate of the provider or cause glitches
342 *
343 * If exlusivity is claimed more than once on clock, even by the same driver,
344 * the rate effectively gets locked as exclusivity can't be preempted.
345 *
346 * Must not be called from within atomic context.
347 *
348 * Returns success (0) or negative errno.
349 */
350int clk_rate_exclusive_get(struct clk *clk);
351
352/**
353 * clk_rate_exclusive_put - release exclusivity over the rate control of a
354 * producer
355 * @clk: clock source
356 *
357 * This function allows drivers to release the exclusivity it previously got
358 * from clk_rate_exclusive_get()
359 *
360 * The caller must balance the number of clk_rate_exclusive_get() and
361 * clk_rate_exclusive_put() calls.
362 *
363 * Must not be called from within atomic context.
364 */
365void clk_rate_exclusive_put(struct clk *clk);
71a2f115 366
1da177e4
LT
367/**
368 * clk_enable - inform the system when the clock source should be running.
369 * @clk: clock source
370 *
371 * If the clock can not be enabled/disabled, this should return success.
372 *
40d3e0f4
RK
373 * May be called from atomic contexts.
374 *
1da177e4
LT
375 * Returns success (0) or negative errno.
376 */
377int clk_enable(struct clk *clk);
378
266e4e9d
DA
379/**
380 * clk_bulk_enable - inform the system when the set of clks should be running.
381 * @num_clks: the number of clk_bulk_data
382 * @clks: the clk_bulk_data table of consumer
383 *
384 * May be called from atomic contexts.
385 *
386 * Returns success (0) or negative errno.
387 */
388int __must_check clk_bulk_enable(int num_clks,
389 const struct clk_bulk_data *clks);
390
1da177e4
LT
391/**
392 * clk_disable - inform the system when the clock source is no longer required.
393 * @clk: clock source
f47fc0ac
RK
394 *
395 * Inform the system that a clock source is no longer required by
396 * a driver and may be shut down.
397 *
40d3e0f4
RK
398 * May be called from atomic contexts.
399 *
f47fc0ac
RK
400 * Implementation detail: if the clock source is shared between
401 * multiple drivers, clk_enable() calls must be balanced by the
402 * same number of clk_disable() calls for the clock source to be
403 * disabled.
1da177e4
LT
404 */
405void clk_disable(struct clk *clk);
406
266e4e9d
DA
407/**
408 * clk_bulk_disable - inform the system when the set of clks is no
409 * longer required.
410 * @num_clks: the number of clk_bulk_data
411 * @clks: the clk_bulk_data table of consumer
412 *
413 * Inform the system that a set of clks is no longer required by
414 * a driver and may be shut down.
415 *
416 * May be called from atomic contexts.
417 *
418 * Implementation detail: if the set of clks is shared between
419 * multiple drivers, clk_bulk_enable() calls must be balanced by the
420 * same number of clk_bulk_disable() calls for the clock source to be
421 * disabled.
422 */
423void clk_bulk_disable(int num_clks, const struct clk_bulk_data *clks);
424
1da177e4
LT
425/**
426 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
427 * This is only valid once the clock source has been enabled.
428 * @clk: clock source
429 */
430unsigned long clk_get_rate(struct clk *clk);
431
432/**
433 * clk_put - "free" the clock source
434 * @clk: clock source
f47fc0ac
RK
435 *
436 * Note: drivers must ensure that all clk_enable calls made on this
437 * clock source are balanced by clk_disable calls prior to calling
438 * this function.
f7ad160b
AR
439 *
440 * clk_put should not be called from within interrupt context.
1da177e4
LT
441 */
442void clk_put(struct clk *clk);
443
266e4e9d
DA
444/**
445 * clk_bulk_put - "free" the clock source
446 * @num_clks: the number of clk_bulk_data
447 * @clks: the clk_bulk_data table of consumer
448 *
449 * Note: drivers must ensure that all clk_bulk_enable calls made on this
450 * clock source are balanced by clk_bulk_disable calls prior to calling
451 * this function.
452 *
453 * clk_bulk_put should not be called from within interrupt context.
454 */
455void clk_bulk_put(int num_clks, struct clk_bulk_data *clks);
456
a8a97db9
MB
457/**
458 * devm_clk_put - "free" a managed clock source
da3dae54 459 * @dev: device used to acquire the clock
a8a97db9
MB
460 * @clk: clock source acquired with devm_clk_get()
461 *
462 * Note: drivers must ensure that all clk_enable calls made on this
463 * clock source are balanced by clk_disable calls prior to calling
464 * this function.
465 *
466 * clk_put should not be called from within interrupt context.
467 */
468void devm_clk_put(struct device *dev, struct clk *clk);
1da177e4
LT
469
470/*
471 * The remaining APIs are optional for machine class support.
472 */
473
474
475/**
476 * clk_round_rate - adjust a rate to the exact rate a clock can provide
477 * @clk: clock source
478 * @rate: desired clock rate in Hz
479 *
d2d14a77
RK
480 * This answers the question "if I were to pass @rate to clk_set_rate(),
481 * what clock rate would I end up with?" without changing the hardware
482 * in any way. In other words:
483 *
484 * rate = clk_round_rate(clk, r);
485 *
486 * and:
487 *
488 * clk_set_rate(clk, r);
489 * rate = clk_get_rate(clk);
490 *
491 * are equivalent except the former does not modify the clock hardware
492 * in any way.
493 *
1da177e4
LT
494 * Returns rounded clock rate in Hz, or negative errno.
495 */
496long clk_round_rate(struct clk *clk, unsigned long rate);
8b7730dd 497
1da177e4
LT
498/**
499 * clk_set_rate - set the clock rate for a clock source
500 * @clk: clock source
501 * @rate: desired clock rate in Hz
502 *
503 * Returns success (0) or negative errno.
504 */
505int clk_set_rate(struct clk *clk, unsigned long rate);
8b7730dd 506
55e9b8b7
JB
507/**
508 * clk_set_rate_exclusive- set the clock rate and claim exclusivity over
509 * clock source
510 * @clk: clock source
511 * @rate: desired clock rate in Hz
512 *
513 * This helper function allows drivers to atomically set the rate of a producer
514 * and claim exclusivity over the rate control of the producer.
515 *
516 * It is essentially a combination of clk_set_rate() and
517 * clk_rate_exclusite_get(). Caller must balance this call with a call to
518 * clk_rate_exclusive_put()
519 *
520 * Returns success (0) or negative errno.
521 */
522int clk_set_rate_exclusive(struct clk *clk, unsigned long rate);
523
4e88f3de
TR
524/**
525 * clk_has_parent - check if a clock is a possible parent for another
526 * @clk: clock source
527 * @parent: parent clock source
528 *
529 * This function can be used in drivers that need to check that a clock can be
530 * the parent of another without actually changing the parent.
531 *
532 * Returns true if @parent is a possible parent for @clk, false otherwise.
533 */
534bool clk_has_parent(struct clk *clk, struct clk *parent);
535
1c8e6004
TV
536/**
537 * clk_set_rate_range - set a rate range for a clock source
538 * @clk: clock source
539 * @min: desired minimum clock rate in Hz, inclusive
540 * @max: desired maximum clock rate in Hz, inclusive
541 *
542 * Returns success (0) or negative errno.
543 */
544int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
545
546/**
547 * clk_set_min_rate - set a minimum clock rate for a clock source
548 * @clk: clock source
549 * @rate: desired minimum clock rate in Hz, inclusive
550 *
551 * Returns success (0) or negative errno.
552 */
553int clk_set_min_rate(struct clk *clk, unsigned long rate);
554
555/**
556 * clk_set_max_rate - set a maximum clock rate for a clock source
557 * @clk: clock source
558 * @rate: desired maximum clock rate in Hz, inclusive
559 *
560 * Returns success (0) or negative errno.
561 */
562int clk_set_max_rate(struct clk *clk, unsigned long rate);
563
1da177e4
LT
564/**
565 * clk_set_parent - set the parent clock source for this clock
566 * @clk: clock source
567 * @parent: parent clock source
568 *
569 * Returns success (0) or negative errno.
570 */
571int clk_set_parent(struct clk *clk, struct clk *parent);
572
573/**
574 * clk_get_parent - get the parent clock source for this clock
575 * @clk: clock source
576 *
577 * Returns struct clk corresponding to parent clock source, or
578 * valid IS_ERR() condition containing errno.
579 */
580struct clk *clk_get_parent(struct clk *clk);
581
05fd8e73
SH
582/**
583 * clk_get_sys - get a clock based upon the device name
584 * @dev_id: device name
585 * @con_id: connection ID
586 *
587 * Returns a struct clk corresponding to the clock producer, or
588 * valid IS_ERR() condition containing errno. The implementation
589 * uses @dev_id and @con_id to determine the clock consumer, and
590 * thereby the clock producer. In contrast to clk_get() this function
591 * takes the device name instead of the device itself for identification.
592 *
593 * Drivers must assume that the clock source is not enabled.
594 *
595 * clk_get_sys should not be called from within interrupt context.
596 */
597struct clk *clk_get_sys(const char *dev_id, const char *con_id);
598
93abe8e4
VK
599#else /* !CONFIG_HAVE_CLK */
600
601static inline struct clk *clk_get(struct device *dev, const char *id)
602{
603 return NULL;
604}
605
266e4e9d
DA
606static inline int clk_bulk_get(struct device *dev, int num_clks,
607 struct clk_bulk_data *clks)
608{
609 return 0;
610}
611
93abe8e4
VK
612static inline struct clk *devm_clk_get(struct device *dev, const char *id)
613{
614 return NULL;
615}
616
618aee02
DA
617static inline int devm_clk_bulk_get(struct device *dev, int num_clks,
618 struct clk_bulk_data *clks)
619{
620 return 0;
621}
622
71a2f115
KM
623static inline struct clk *devm_get_clk_from_child(struct device *dev,
624 struct device_node *np, const char *con_id)
625{
626 return NULL;
627}
628
93abe8e4
VK
629static inline void clk_put(struct clk *clk) {}
630
266e4e9d
DA
631static inline void clk_bulk_put(int num_clks, struct clk_bulk_data *clks) {}
632
93abe8e4
VK
633static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
634
55e9b8b7
JB
635
636static inline int clk_rate_exclusive_get(struct clk *clk)
637{
638 return 0;
639}
640
641static inline void clk_rate_exclusive_put(struct clk *clk) {}
642
93abe8e4
VK
643static inline int clk_enable(struct clk *clk)
644{
645 return 0;
646}
647
266e4e9d
DA
648static inline int clk_bulk_enable(int num_clks, struct clk_bulk_data *clks)
649{
650 return 0;
651}
652
93abe8e4
VK
653static inline void clk_disable(struct clk *clk) {}
654
266e4e9d
DA
655
656static inline void clk_bulk_disable(int num_clks,
657 struct clk_bulk_data *clks) {}
658
93abe8e4
VK
659static inline unsigned long clk_get_rate(struct clk *clk)
660{
661 return 0;
662}
663
664static inline int clk_set_rate(struct clk *clk, unsigned long rate)
665{
666 return 0;
667}
668
55e9b8b7
JB
669static inline int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
670{
671 return 0;
672}
673
93abe8e4
VK
674static inline long clk_round_rate(struct clk *clk, unsigned long rate)
675{
676 return 0;
677}
678
4e88f3de
TR
679static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
680{
681 return true;
682}
683
93abe8e4
VK
684static inline int clk_set_parent(struct clk *clk, struct clk *parent)
685{
686 return 0;
687}
688
689static inline struct clk *clk_get_parent(struct clk *clk)
690{
691 return NULL;
692}
693
b81ea968
DL
694static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
695{
696 return NULL;
697}
93abe8e4
VK
698#endif
699
700/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
701static inline int clk_prepare_enable(struct clk *clk)
702{
703 int ret;
704
705 ret = clk_prepare(clk);
706 if (ret)
707 return ret;
708 ret = clk_enable(clk);
709 if (ret)
710 clk_unprepare(clk);
711
712 return ret;
713}
714
715/* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
716static inline void clk_disable_unprepare(struct clk *clk)
717{
718 clk_disable(clk);
719 clk_unprepare(clk);
720}
721
3c48d86c
BA
722static inline int clk_bulk_prepare_enable(int num_clks,
723 struct clk_bulk_data *clks)
724{
725 int ret;
726
727 ret = clk_bulk_prepare(num_clks, clks);
728 if (ret)
729 return ret;
730 ret = clk_bulk_enable(num_clks, clks);
731 if (ret)
732 clk_bulk_unprepare(num_clks, clks);
733
734 return ret;
735}
736
737static inline void clk_bulk_disable_unprepare(int num_clks,
738 struct clk_bulk_data *clks)
739{
740 clk_bulk_disable(num_clks, clks);
741 clk_bulk_unprepare(num_clks, clks);
742}
743
137f8a72 744#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
766e6a4e
GL
745struct clk *of_clk_get(struct device_node *np, int index);
746struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
747struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
748#else
749static inline struct clk *of_clk_get(struct device_node *np, int index)
750{
9f1612d3 751 return ERR_PTR(-ENOENT);
766e6a4e
GL
752}
753static inline struct clk *of_clk_get_by_name(struct device_node *np,
754 const char *name)
755{
9f1612d3 756 return ERR_PTR(-ENOENT);
766e6a4e 757}
428c9de5
GU
758static inline struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
759{
760 return ERR_PTR(-ENOENT);
761}
766e6a4e
GL
762#endif
763
1da177e4 764#endif