1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * linux/include/linux/clk.h
4 *
5 * Copyright (C) 2004 ARM Limited.
6 * Written by Deep Blue Solutions Limited.
7 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
8 */
9 #ifndef __LINUX_CLK_H
10 #define __LINUX_CLK_H
11
12 #include <linux/err.h>
13 #include <linux/kernel.h>
14 #include <linux/notifier.h>
15
16 struct device;
17 struct clk;
18 struct device_node;
19 struct of_phandle_args;
20
21 /**
22 * DOC: clk notifier callback types
23 *
24 * PRE_RATE_CHANGE - called immediately before the clk rate is changed,
25 * to indicate that the rate change will proceed. Drivers must
26 * immediately terminate any operations that will be affected by the
27 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
28 * NOTIFY_STOP or NOTIFY_BAD.
29 *
30 * ABORT_RATE_CHANGE: called if the rate change failed for some reason
31 * after PRE_RATE_CHANGE. In this case, all registered notifiers on
32 * the clk will be called with ABORT_RATE_CHANGE. Callbacks must
33 * always return NOTIFY_DONE or NOTIFY_OK.
34 *
35 * POST_RATE_CHANGE - called after the clk rate change has successfully
36 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
37 *
38 */
39 #define PRE_RATE_CHANGE BIT(0)
40 #define POST_RATE_CHANGE BIT(1)
41 #define ABORT_RATE_CHANGE BIT(2)
42
43 /**
44 * struct clk_notifier - associate a clk with a notifier
45 * @clk: struct clk * to associate the notifier with
46 * @notifier_head: a blocking_notifier_head for this clk
47 * @node: linked list pointers
48 *
49 * A list of struct clk_notifier is maintained by the notifier code.
50 * An entry is created whenever code registers the first notifier on a
51 * particular @clk. Future notifiers on that @clk are added to the
52 * @notifier_head.
53 */
54 struct clk_notifier {
55 struct clk *clk;
56 struct srcu_notifier_head notifier_head;
57 struct list_head node;
58 };
59
60 /**
61 * struct clk_notifier_data - rate data to pass to the notifier callback
62 * @clk: struct clk * being changed
63 * @old_rate: previous rate of this clk
64 * @new_rate: new rate of this clk
65 *
66 * For a pre-notifier, old_rate is the clk's rate before this rate
67 * change, and new_rate is what the rate will be in the future. For a
68 * post-notifier, old_rate and new_rate are both set to the clk's
69 * current rate (this was done to optimize the implementation).
70 */
71 struct clk_notifier_data {
72 struct clk *clk;
73 unsigned long old_rate;
74 unsigned long new_rate;
75 };
76
77 /**
78 * struct clk_bulk_data - Data used for bulk clk operations.
79 *
80 * @id: clock consumer ID
81 * @clk: struct clk * to store the associated clock
82 *
83 * The CLK APIs provide a series of clk_bulk_() API calls as
84 * a convenience to consumers which require multiple clks. This
85 * structure is used to manage data for these calls.
86 */
87 struct clk_bulk_data {
88 const char *id;
89 struct clk *clk;
90 };
91
92 #ifdef CONFIG_COMMON_CLK
93
94 /**
95 * clk_notifier_register: register a clock rate-change notifier callback
96 * @clk: clock whose rate we are interested in
97 * @nb: notifier block with callback function pointer
98 *
99 * ProTip: debugging across notifier chains can be frustrating. Make sure that
100 * your notifier callback function prints a nice big warning in case of
101 * failure.
102 */
103 int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
104
105 /**
106 * clk_notifier_unregister: unregister a clock rate-change notifier callback
107 * @clk: clock whose rate we are no longer interested in
108 * @nb: notifier block which will be unregistered
109 */
110 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
111
112 /**
113 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
114 * for a clock source.
115 * @clk: clock source
116 *
117 * This gets the clock source accuracy expressed in ppb.
118 * A perfect clock returns 0.
119 */
120 long clk_get_accuracy(struct clk *clk);
121
122 /**
123 * clk_set_phase - adjust the phase shift of a clock signal
124 * @clk: clock signal source
125 * @degrees: number of degrees the signal is shifted
126 *
127 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
128 * success, -EERROR otherwise.
129 */
130 int clk_set_phase(struct clk *clk, int degrees);
131
132 /**
133 * clk_get_phase - return the phase shift of a clock signal
134 * @clk: clock signal source
135 *
136 * Returns the phase shift of a clock node in degrees, otherwise returns
137 * -EERROR.
138 */
139 int clk_get_phase(struct clk *clk);
140
141 /**
142 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
143 * @clk: clock signal source
144 * @num: numerator of the duty cycle ratio to be applied
145 * @den: denominator of the duty cycle ratio to be applied
146 *
147 * Adjust the duty cycle of a clock signal by the specified ratio. Returns 0 on
148 * success, -EERROR otherwise.
149 */
150 int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den);
151
152 /**
153 * clk_get_duty_cycle - return the duty cycle ratio of a clock signal
154 * @clk: clock signal source
155 * @scale: scaling factor to be applied to represent the ratio as an integer
156 *
157 * Returns the duty cycle ratio multiplied by the scale provided, otherwise
158 * returns -EERROR.
159 */
160 int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale);
161
162 /**
163 * clk_is_match - check if two clk's point to the same hardware clock
164 * @p: clk compared against q
165 * @q: clk compared against p
166 *
167 * Returns true if the two struct clk pointers both point to the same hardware
168 * clock node. Put differently, returns true if @p and @q
169 * share the same &struct clk_core object.
170 *
171 * Returns false otherwise. Note that two NULL clks are treated as matching.
172 */
173 bool clk_is_match(const struct clk *p, const struct clk *q);
174
175 #else
176
clk_notifier_register(struct clk * clk,struct notifier_block * nb)177 static inline int clk_notifier_register(struct clk *clk,
178 struct notifier_block *nb)
179 {
180 return -ENOTSUPP;
181 }
182
clk_notifier_unregister(struct clk * clk,struct notifier_block * nb)183 static inline int clk_notifier_unregister(struct clk *clk,
184 struct notifier_block *nb)
185 {
186 return -ENOTSUPP;
187 }
188
clk_get_accuracy(struct clk * clk)189 static inline long clk_get_accuracy(struct clk *clk)
190 {
191 return -ENOTSUPP;
192 }
193
clk_set_phase(struct clk * clk,int phase)194 static inline long clk_set_phase(struct clk *clk, int phase)
195 {
196 return -ENOTSUPP;
197 }
198
clk_get_phase(struct clk * clk)199 static inline long clk_get_phase(struct clk *clk)
200 {
201 return -ENOTSUPP;
202 }
203
clk_set_duty_cycle(struct clk * clk,unsigned int num,unsigned int den)204 static inline int clk_set_duty_cycle(struct clk *clk, unsigned int num,
205 unsigned int den)
206 {
207 return -ENOTSUPP;
208 }
209
clk_get_scaled_duty_cycle(struct clk * clk,unsigned int scale)210 static inline unsigned int clk_get_scaled_duty_cycle(struct clk *clk,
211 unsigned int scale)
212 {
213 return 0;
214 }
215
clk_is_match(const struct clk * p,const struct clk * q)216 static inline bool clk_is_match(const struct clk *p, const struct clk *q)
217 {
218 return p == q;
219 }
220
221 #endif
222
223 /**
224 * clk_prepare - prepare a clock source
225 * @clk: clock source
226 *
227 * This prepares the clock source for use.
228 *
229 * Must not be called from within atomic context.
230 */
231 #ifdef CONFIG_HAVE_CLK_PREPARE
232 int clk_prepare(struct clk *clk);
233 int __must_check clk_bulk_prepare(int num_clks,
234 const struct clk_bulk_data *clks);
235 #else
clk_prepare(struct clk * clk)236 static inline int clk_prepare(struct clk *clk)
237 {
238 might_sleep();
239 return 0;
240 }
241
242 static inline int __must_check
clk_bulk_prepare(int num_clks,const struct clk_bulk_data * clks)243 clk_bulk_prepare(int num_clks, const struct clk_bulk_data *clks)
244 {
245 might_sleep();
246 return 0;
247 }
248 #endif
249
250 /**
251 * clk_unprepare - undo preparation of a clock source
252 * @clk: clock source
253 *
254 * This undoes a previously prepared clock. The caller must balance
255 * the number of prepare and unprepare calls.
256 *
257 * Must not be called from within atomic context.
258 */
259 #ifdef CONFIG_HAVE_CLK_PREPARE
260 void clk_unprepare(struct clk *clk);
261 void clk_bulk_unprepare(int num_clks, const struct clk_bulk_data *clks);
262 #else
clk_unprepare(struct clk * clk)263 static inline void clk_unprepare(struct clk *clk)
264 {
265 might_sleep();
266 }
clk_bulk_unprepare(int num_clks,const struct clk_bulk_data * clks)267 static inline void clk_bulk_unprepare(int num_clks,
268 const struct clk_bulk_data *clks)
269 {
270 might_sleep();
271 }
272 #endif
273
274 #ifdef CONFIG_HAVE_CLK
275 /**
276 * clk_get - lookup and obtain a reference to a clock producer.
277 * @dev: device for clock "consumer"
278 * @id: clock consumer ID
279 *
280 * Returns a struct clk corresponding to the clock producer, or
281 * valid IS_ERR() condition containing errno. The implementation
282 * uses @dev and @id to determine the clock consumer, and thereby
283 * the clock producer. (IOW, @id may be identical strings, but
284 * clk_get may return different clock producers depending on @dev.)
285 *
286 * Drivers must assume that the clock source is not enabled.
287 *
288 * clk_get should not be called from within interrupt context.
289 */
290 struct clk *clk_get(struct device *dev, const char *id);
291
292 /**
293 * clk_bulk_get - lookup and obtain a number of references to clock producer.
294 * @dev: device for clock "consumer"
295 * @num_clks: the number of clk_bulk_data
296 * @clks: the clk_bulk_data table of consumer
297 *
298 * This helper function allows drivers to get several clk consumers in one
299 * operation. If any of the clk cannot be acquired then any clks
300 * that were obtained will be freed before returning to the caller.
301 *
302 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
303 * successfully, or valid IS_ERR() condition containing errno.
304 * The implementation uses @dev and @clk_bulk_data.id to determine the
305 * clock consumer, and thereby the clock producer.
306 * The clock returned is stored in each @clk_bulk_data.clk field.
307 *
308 * Drivers must assume that the clock source is not enabled.
309 *
310 * clk_bulk_get should not be called from within interrupt context.
311 */
312 int __must_check clk_bulk_get(struct device *dev, int num_clks,
313 struct clk_bulk_data *clks);
314 /**
315 * clk_bulk_get_all - lookup and obtain all available references to clock
316 * producer.
317 * @dev: device for clock "consumer"
318 * @clks: pointer to the clk_bulk_data table of consumer
319 *
320 * This helper function allows drivers to get all clk consumers in one
321 * operation. If any of the clk cannot be acquired then any clks
322 * that were obtained will be freed before returning to the caller.
323 *
324 * Returns a positive value for the number of clocks obtained while the
325 * clock references are stored in the clk_bulk_data table in @clks field.
326 * Returns 0 if there're none and a negative value if something failed.
327 *
328 * Drivers must assume that the clock source is not enabled.
329 *
330 * clk_bulk_get should not be called from within interrupt context.
331 */
332 int __must_check clk_bulk_get_all(struct device *dev,
333 struct clk_bulk_data **clks);
334
335 /**
336 * clk_bulk_get_optional - lookup and obtain a number of references to clock producer
337 * @dev: device for clock "consumer"
338 * @num_clks: the number of clk_bulk_data
339 * @clks: the clk_bulk_data table of consumer
340 *
341 * Behaves the same as clk_bulk_get() except where there is no clock producer.
342 * In this case, instead of returning -ENOENT, the function returns 0 and
343 * NULL for a clk for which a clock producer could not be determined.
344 */
345 int __must_check clk_bulk_get_optional(struct device *dev, int num_clks,
346 struct clk_bulk_data *clks);
347 /**
348 * devm_clk_bulk_get - managed get multiple clk consumers
349 * @dev: device for clock "consumer"
350 * @num_clks: the number of clk_bulk_data
351 * @clks: the clk_bulk_data table of consumer
352 *
353 * Return 0 on success, an errno on failure.
354 *
355 * This helper function allows drivers to get several clk
356 * consumers in one operation with management, the clks will
357 * automatically be freed when the device is unbound.
358 */
359 int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
360 struct clk_bulk_data *clks);
361 /**
362 * devm_clk_bulk_get_optional - managed get multiple optional consumer clocks
363 * @dev: device for clock "consumer"
364 * @num_clks: the number of clk_bulk_data
365 * @clks: pointer to the clk_bulk_data table of consumer
366 *
367 * Behaves the same as devm_clk_bulk_get() except where there is no clock
368 * producer. In this case, instead of returning -ENOENT, the function returns
369 * NULL for given clk. It is assumed all clocks in clk_bulk_data are optional.
370 *
371 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
372 * successfully or for any clk there was no clk provider available, otherwise
373 * returns valid IS_ERR() condition containing errno.
374 * The implementation uses @dev and @clk_bulk_data.id to determine the
375 * clock consumer, and thereby the clock producer.
376 * The clock returned is stored in each @clk_bulk_data.clk field.
377 *
378 * Drivers must assume that the clock source is not enabled.
379 *
380 * clk_bulk_get should not be called from within interrupt context.
381 */
382 int __must_check devm_clk_bulk_get_optional(struct device *dev, int num_clks,
383 struct clk_bulk_data *clks);
384 /**
385 * devm_clk_bulk_get_all - managed get multiple clk consumers
386 * @dev: device for clock "consumer"
387 * @clks: pointer to the clk_bulk_data table of consumer
388 *
389 * Returns a positive value for the number of clocks obtained while the
390 * clock references are stored in the clk_bulk_data table in @clks field.
391 * Returns 0 if there're none and a negative value if something failed.
392 *
393 * This helper function allows drivers to get several clk
394 * consumers in one operation with management, the clks will
395 * automatically be freed when the device is unbound.
396 */
397
398 int __must_check devm_clk_bulk_get_all(struct device *dev,
399 struct clk_bulk_data **clks);
400
401 /**
402 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
403 * @dev: device for clock "consumer"
404 * @id: clock consumer ID
405 *
406 * Returns a struct clk corresponding to the clock producer, or
407 * valid IS_ERR() condition containing errno. The implementation
408 * uses @dev and @id to determine the clock consumer, and thereby
409 * the clock producer. (IOW, @id may be identical strings, but
410 * clk_get may return different clock producers depending on @dev.)
411 *
412 * Drivers must assume that the clock source is not enabled.
413 *
414 * devm_clk_get should not be called from within interrupt context.
415 *
416 * The clock will automatically be freed when the device is unbound
417 * from the bus.
418 */
419 struct clk *devm_clk_get(struct device *dev, const char *id);
420
421 /**
422 * devm_clk_get_prepared - devm_clk_get() + clk_prepare()
423 * @dev: device for clock "consumer"
424 * @id: clock consumer ID
425 *
426 * Context: May sleep.
427 *
428 * Return: a struct clk corresponding to the clock producer, or
429 * valid IS_ERR() condition containing errno. The implementation
430 * uses @dev and @id to determine the clock consumer, and thereby
431 * the clock producer. (IOW, @id may be identical strings, but
432 * clk_get may return different clock producers depending on @dev.)
433 *
434 * The returned clk (if valid) is prepared. Drivers must however assume
435 * that the clock is not enabled.
436 *
437 * The clock will automatically be unprepared and freed when the device
438 * is unbound from the bus.
439 */
440 struct clk *devm_clk_get_prepared(struct device *dev, const char *id);
441
442 /**
443 * devm_clk_get_enabled - devm_clk_get() + clk_prepare_enable()
444 * @dev: device for clock "consumer"
445 * @id: clock consumer ID
446 *
447 * Context: May sleep.
448 *
449 * Return: a struct clk corresponding to the clock producer, or
450 * valid IS_ERR() condition containing errno. The implementation
451 * uses @dev and @id to determine the clock consumer, and thereby
452 * the clock producer. (IOW, @id may be identical strings, but
453 * clk_get may return different clock producers depending on @dev.)
454 *
455 * The returned clk (if valid) is prepared and enabled.
456 *
457 * The clock will automatically be disabled, unprepared and freed
458 * when the device is unbound from the bus.
459 */
460 struct clk *devm_clk_get_enabled(struct device *dev, const char *id);
461
462 /**
463 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
464 * clock producer.
465 * @dev: device for clock "consumer"
466 * @id: clock consumer ID
467 *
468 * Behaves the same as devm_clk_get() except where there is no clock producer.
469 * In this case, instead of returning -ENOENT, the function returns NULL.
470 */
471 struct clk *devm_clk_get_optional(struct device *dev, const char *id);
472
473 /**
474 * devm_clk_get_optional_prepared - devm_clk_get_optional() + clk_prepare()
475 * @dev: device for clock "consumer"
476 * @id: clock consumer ID
477 *
478 * Context: May sleep.
479 *
480 * Return: a struct clk corresponding to the clock producer, or
481 * valid IS_ERR() condition containing errno. The implementation
482 * uses @dev and @id to determine the clock consumer, and thereby
483 * the clock producer. If no such clk is found, it returns NULL
484 * which serves as a dummy clk. That's the only difference compared
485 * to devm_clk_get_prepared().
486 *
487 * The returned clk (if valid) is prepared. Drivers must however
488 * assume that the clock is not enabled.
489 *
490 * The clock will automatically be unprepared and freed when the
491 * device is unbound from the bus.
492 */
493 struct clk *devm_clk_get_optional_prepared(struct device *dev, const char *id);
494
495 /**
496 * devm_clk_get_optional_enabled - devm_clk_get_optional() +
497 * clk_prepare_enable()
498 * @dev: device for clock "consumer"
499 * @id: clock consumer ID
500 *
501 * Context: May sleep.
502 *
503 * Return: a struct clk corresponding to the clock producer, or
504 * valid IS_ERR() condition containing errno. The implementation
505 * uses @dev and @id to determine the clock consumer, and thereby
506 * the clock producer. If no such clk is found, it returns NULL
507 * which serves as a dummy clk. That's the only difference compared
508 * to devm_clk_get_enabled().
509 *
510 * The returned clk (if valid) is prepared and enabled.
511 *
512 * The clock will automatically be disabled, unprepared and freed
513 * when the device is unbound from the bus.
514 */
515 struct clk *devm_clk_get_optional_enabled(struct device *dev, const char *id);
516
517 /**
518 * devm_get_clk_from_child - lookup and obtain a managed reference to a
519 * clock producer from child node.
520 * @dev: device for clock "consumer"
521 * @np: pointer to clock consumer node
522 * @con_id: clock consumer ID
523 *
524 * This function parses the clocks, and uses them to look up the
525 * struct clk from the registered list of clock providers by using
526 * @np and @con_id
527 *
528 * The clock will automatically be freed when the device is unbound
529 * from the bus.
530 */
531 struct clk *devm_get_clk_from_child(struct device *dev,
532 struct device_node *np, const char *con_id);
533 /**
534 * clk_rate_exclusive_get - get exclusivity over the rate control of a
535 * producer
536 * @clk: clock source
537 *
538 * This function allows drivers to get exclusive control over the rate of a
539 * provider. It prevents any other consumer to execute, even indirectly,
540 * opereation which could alter the rate of the provider or cause glitches
541 *
542 * If exlusivity is claimed more than once on clock, even by the same driver,
543 * the rate effectively gets locked as exclusivity can't be preempted.
544 *
545 * Must not be called from within atomic context.
546 *
547 * Returns success (0) or negative errno.
548 */
549 int clk_rate_exclusive_get(struct clk *clk);
550
551 /**
552 * clk_rate_exclusive_put - release exclusivity over the rate control of a
553 * producer
554 * @clk: clock source
555 *
556 * This function allows drivers to release the exclusivity it previously got
557 * from clk_rate_exclusive_get()
558 *
559 * The caller must balance the number of clk_rate_exclusive_get() and
560 * clk_rate_exclusive_put() calls.
561 *
562 * Must not be called from within atomic context.
563 */
564 void clk_rate_exclusive_put(struct clk *clk);
565
566 /**
567 * clk_enable - inform the system when the clock source should be running.
568 * @clk: clock source
569 *
570 * If the clock can not be enabled/disabled, this should return success.
571 *
572 * May be called from atomic contexts.
573 *
574 * Returns success (0) or negative errno.
575 */
576 int clk_enable(struct clk *clk);
577
578 /**
579 * clk_bulk_enable - inform the system when the set of clks should be running.
580 * @num_clks: the number of clk_bulk_data
581 * @clks: the clk_bulk_data table of consumer
582 *
583 * May be called from atomic contexts.
584 *
585 * Returns success (0) or negative errno.
586 */
587 int __must_check clk_bulk_enable(int num_clks,
588 const struct clk_bulk_data *clks);
589
590 /**
591 * clk_disable - inform the system when the clock source is no longer required.
592 * @clk: clock source
593 *
594 * Inform the system that a clock source is no longer required by
595 * a driver and may be shut down.
596 *
597 * May be called from atomic contexts.
598 *
599 * Implementation detail: if the clock source is shared between
600 * multiple drivers, clk_enable() calls must be balanced by the
601 * same number of clk_disable() calls for the clock source to be
602 * disabled.
603 */
604 void clk_disable(struct clk *clk);
605
606 /**
607 * clk_bulk_disable - inform the system when the set of clks is no
608 * longer required.
609 * @num_clks: the number of clk_bulk_data
610 * @clks: the clk_bulk_data table of consumer
611 *
612 * Inform the system that a set of clks is no longer required by
613 * a driver and may be shut down.
614 *
615 * May be called from atomic contexts.
616 *
617 * Implementation detail: if the set of clks is shared between
618 * multiple drivers, clk_bulk_enable() calls must be balanced by the
619 * same number of clk_bulk_disable() calls for the clock source to be
620 * disabled.
621 */
622 void clk_bulk_disable(int num_clks, const struct clk_bulk_data *clks);
623
624 /**
625 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
626 * This is only valid once the clock source has been enabled.
627 * @clk: clock source
628 */
629 unsigned long clk_get_rate(struct clk *clk);
630
631 /**
632 * clk_put - "free" the clock source
633 * @clk: clock source
634 *
635 * Note: drivers must ensure that all clk_enable calls made on this
636 * clock source are balanced by clk_disable calls prior to calling
637 * this function.
638 *
639 * clk_put should not be called from within interrupt context.
640 */
641 void clk_put(struct clk *clk);
642
643 /**
644 * clk_bulk_put - "free" the clock source
645 * @num_clks: the number of clk_bulk_data
646 * @clks: the clk_bulk_data table of consumer
647 *
648 * Note: drivers must ensure that all clk_bulk_enable calls made on this
649 * clock source are balanced by clk_bulk_disable calls prior to calling
650 * this function.
651 *
652 * clk_bulk_put should not be called from within interrupt context.
653 */
654 void clk_bulk_put(int num_clks, struct clk_bulk_data *clks);
655
656 /**
657 * clk_bulk_put_all - "free" all the clock source
658 * @num_clks: the number of clk_bulk_data
659 * @clks: the clk_bulk_data table of consumer
660 *
661 * Note: drivers must ensure that all clk_bulk_enable calls made on this
662 * clock source are balanced by clk_bulk_disable calls prior to calling
663 * this function.
664 *
665 * clk_bulk_put_all should not be called from within interrupt context.
666 */
667 void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks);
668
669 /**
670 * devm_clk_put - "free" a managed clock source
671 * @dev: device used to acquire the clock
672 * @clk: clock source acquired with devm_clk_get()
673 *
674 * Note: drivers must ensure that all clk_enable calls made on this
675 * clock source are balanced by clk_disable calls prior to calling
676 * this function.
677 *
678 * clk_put should not be called from within interrupt context.
679 */
680 void devm_clk_put(struct device *dev, struct clk *clk);
681
682 /*
683 * The remaining APIs are optional for machine class support.
684 */
685
686
687 /**
688 * clk_round_rate - adjust a rate to the exact rate a clock can provide
689 * @clk: clock source
690 * @rate: desired clock rate in Hz
691 *
692 * This answers the question "if I were to pass @rate to clk_set_rate(),
693 * what clock rate would I end up with?" without changing the hardware
694 * in any way. In other words:
695 *
696 * rate = clk_round_rate(clk, r);
697 *
698 * and:
699 *
700 * clk_set_rate(clk, r);
701 * rate = clk_get_rate(clk);
702 *
703 * are equivalent except the former does not modify the clock hardware
704 * in any way.
705 *
706 * Returns rounded clock rate in Hz, or negative errno.
707 */
708 long clk_round_rate(struct clk *clk, unsigned long rate);
709
710 /**
711 * clk_set_rate - set the clock rate for a clock source
712 * @clk: clock source
713 * @rate: desired clock rate in Hz
714 *
715 * Updating the rate starts at the top-most affected clock and then
716 * walks the tree down to the bottom-most clock that needs updating.
717 *
718 * Returns success (0) or negative errno.
719 */
720 int clk_set_rate(struct clk *clk, unsigned long rate);
721
722 /**
723 * clk_set_rate_exclusive- set the clock rate and claim exclusivity over
724 * clock source
725 * @clk: clock source
726 * @rate: desired clock rate in Hz
727 *
728 * This helper function allows drivers to atomically set the rate of a producer
729 * and claim exclusivity over the rate control of the producer.
730 *
731 * It is essentially a combination of clk_set_rate() and
732 * clk_rate_exclusite_get(). Caller must balance this call with a call to
733 * clk_rate_exclusive_put()
734 *
735 * Returns success (0) or negative errno.
736 */
737 int clk_set_rate_exclusive(struct clk *clk, unsigned long rate);
738
739 /**
740 * clk_has_parent - check if a clock is a possible parent for another
741 * @clk: clock source
742 * @parent: parent clock source
743 *
744 * This function can be used in drivers that need to check that a clock can be
745 * the parent of another without actually changing the parent.
746 *
747 * Returns true if @parent is a possible parent for @clk, false otherwise.
748 */
749 bool clk_has_parent(struct clk *clk, struct clk *parent);
750
751 /**
752 * clk_set_rate_range - set a rate range for a clock source
753 * @clk: clock source
754 * @min: desired minimum clock rate in Hz, inclusive
755 * @max: desired maximum clock rate in Hz, inclusive
756 *
757 * Returns success (0) or negative errno.
758 */
759 int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
760
761 /**
762 * clk_set_min_rate - set a minimum clock rate for a clock source
763 * @clk: clock source
764 * @rate: desired minimum clock rate in Hz, inclusive
765 *
766 * Returns success (0) or negative errno.
767 */
768 int clk_set_min_rate(struct clk *clk, unsigned long rate);
769
770 /**
771 * clk_set_max_rate - set a maximum clock rate for a clock source
772 * @clk: clock source
773 * @rate: desired maximum clock rate in Hz, inclusive
774 *
775 * Returns success (0) or negative errno.
776 */
777 int clk_set_max_rate(struct clk *clk, unsigned long rate);
778
779 /**
780 * clk_set_parent - set the parent clock source for this clock
781 * @clk: clock source
782 * @parent: parent clock source
783 *
784 * Returns success (0) or negative errno.
785 */
786 int clk_set_parent(struct clk *clk, struct clk *parent);
787
788 /**
789 * clk_get_parent - get the parent clock source for this clock
790 * @clk: clock source
791 *
792 * Returns struct clk corresponding to parent clock source, or
793 * valid IS_ERR() condition containing errno.
794 */
795 struct clk *clk_get_parent(struct clk *clk);
796
797 /**
798 * clk_get_sys - get a clock based upon the device name
799 * @dev_id: device name
800 * @con_id: connection ID
801 *
802 * Returns a struct clk corresponding to the clock producer, or
803 * valid IS_ERR() condition containing errno. The implementation
804 * uses @dev_id and @con_id to determine the clock consumer, and
805 * thereby the clock producer. In contrast to clk_get() this function
806 * takes the device name instead of the device itself for identification.
807 *
808 * Drivers must assume that the clock source is not enabled.
809 *
810 * clk_get_sys should not be called from within interrupt context.
811 */
812 struct clk *clk_get_sys(const char *dev_id, const char *con_id);
813
814 /**
815 * clk_save_context - save clock context for poweroff
816 *
817 * Saves the context of the clock register for powerstates in which the
818 * contents of the registers will be lost. Occurs deep within the suspend
819 * code so locking is not necessary.
820 */
821 int clk_save_context(void);
822
823 /**
824 * clk_restore_context - restore clock context after poweroff
825 *
826 * This occurs with all clocks enabled. Occurs deep within the resume code
827 * so locking is not necessary.
828 */
829 void clk_restore_context(void);
830
831 #else /* !CONFIG_HAVE_CLK */
832
clk_get(struct device * dev,const char * id)833 static inline struct clk *clk_get(struct device *dev, const char *id)
834 {
835 return NULL;
836 }
837
clk_bulk_get(struct device * dev,int num_clks,struct clk_bulk_data * clks)838 static inline int __must_check clk_bulk_get(struct device *dev, int num_clks,
839 struct clk_bulk_data *clks)
840 {
841 return 0;
842 }
843
clk_bulk_get_optional(struct device * dev,int num_clks,struct clk_bulk_data * clks)844 static inline int __must_check clk_bulk_get_optional(struct device *dev,
845 int num_clks, struct clk_bulk_data *clks)
846 {
847 return 0;
848 }
849
clk_bulk_get_all(struct device * dev,struct clk_bulk_data ** clks)850 static inline int __must_check clk_bulk_get_all(struct device *dev,
851 struct clk_bulk_data **clks)
852 {
853 return 0;
854 }
855
devm_clk_get(struct device * dev,const char * id)856 static inline struct clk *devm_clk_get(struct device *dev, const char *id)
857 {
858 return NULL;
859 }
860
devm_clk_get_prepared(struct device * dev,const char * id)861 static inline struct clk *devm_clk_get_prepared(struct device *dev,
862 const char *id)
863 {
864 return NULL;
865 }
866
devm_clk_get_enabled(struct device * dev,const char * id)867 static inline struct clk *devm_clk_get_enabled(struct device *dev,
868 const char *id)
869 {
870 return NULL;
871 }
872
devm_clk_get_optional(struct device * dev,const char * id)873 static inline struct clk *devm_clk_get_optional(struct device *dev,
874 const char *id)
875 {
876 return NULL;
877 }
878
devm_clk_get_optional_prepared(struct device * dev,const char * id)879 static inline struct clk *devm_clk_get_optional_prepared(struct device *dev,
880 const char *id)
881 {
882 return NULL;
883 }
884
devm_clk_get_optional_enabled(struct device * dev,const char * id)885 static inline struct clk *devm_clk_get_optional_enabled(struct device *dev,
886 const char *id)
887 {
888 return NULL;
889 }
890
devm_clk_bulk_get(struct device * dev,int num_clks,struct clk_bulk_data * clks)891 static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
892 struct clk_bulk_data *clks)
893 {
894 return 0;
895 }
896
devm_clk_bulk_get_optional(struct device * dev,int num_clks,struct clk_bulk_data * clks)897 static inline int __must_check devm_clk_bulk_get_optional(struct device *dev,
898 int num_clks, struct clk_bulk_data *clks)
899 {
900 return 0;
901 }
902
devm_clk_bulk_get_all(struct device * dev,struct clk_bulk_data ** clks)903 static inline int __must_check devm_clk_bulk_get_all(struct device *dev,
904 struct clk_bulk_data **clks)
905 {
906
907 return 0;
908 }
909
devm_get_clk_from_child(struct device * dev,struct device_node * np,const char * con_id)910 static inline struct clk *devm_get_clk_from_child(struct device *dev,
911 struct device_node *np, const char *con_id)
912 {
913 return NULL;
914 }
915
clk_put(struct clk * clk)916 static inline void clk_put(struct clk *clk) {}
917
clk_bulk_put(int num_clks,struct clk_bulk_data * clks)918 static inline void clk_bulk_put(int num_clks, struct clk_bulk_data *clks) {}
919
clk_bulk_put_all(int num_clks,struct clk_bulk_data * clks)920 static inline void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks) {}
921
devm_clk_put(struct device * dev,struct clk * clk)922 static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
923
924
clk_rate_exclusive_get(struct clk * clk)925 static inline int clk_rate_exclusive_get(struct clk *clk)
926 {
927 return 0;
928 }
929
clk_rate_exclusive_put(struct clk * clk)930 static inline void clk_rate_exclusive_put(struct clk *clk) {}
931
clk_enable(struct clk * clk)932 static inline int clk_enable(struct clk *clk)
933 {
934 return 0;
935 }
936
clk_bulk_enable(int num_clks,const struct clk_bulk_data * clks)937 static inline int __must_check clk_bulk_enable(int num_clks,
938 const struct clk_bulk_data *clks)
939 {
940 return 0;
941 }
942
clk_disable(struct clk * clk)943 static inline void clk_disable(struct clk *clk) {}
944
945
clk_bulk_disable(int num_clks,const struct clk_bulk_data * clks)946 static inline void clk_bulk_disable(int num_clks,
947 const struct clk_bulk_data *clks) {}
948
clk_get_rate(struct clk * clk)949 static inline unsigned long clk_get_rate(struct clk *clk)
950 {
951 return 0;
952 }
953
clk_set_rate(struct clk * clk,unsigned long rate)954 static inline int clk_set_rate(struct clk *clk, unsigned long rate)
955 {
956 return 0;
957 }
958
clk_set_rate_exclusive(struct clk * clk,unsigned long rate)959 static inline int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
960 {
961 return 0;
962 }
963
clk_round_rate(struct clk * clk,unsigned long rate)964 static inline long clk_round_rate(struct clk *clk, unsigned long rate)
965 {
966 return 0;
967 }
968
clk_has_parent(struct clk * clk,struct clk * parent)969 static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
970 {
971 return true;
972 }
973
clk_set_rate_range(struct clk * clk,unsigned long min,unsigned long max)974 static inline int clk_set_rate_range(struct clk *clk, unsigned long min,
975 unsigned long max)
976 {
977 return 0;
978 }
979
clk_set_min_rate(struct clk * clk,unsigned long rate)980 static inline int clk_set_min_rate(struct clk *clk, unsigned long rate)
981 {
982 return 0;
983 }
984
clk_set_max_rate(struct clk * clk,unsigned long rate)985 static inline int clk_set_max_rate(struct clk *clk, unsigned long rate)
986 {
987 return 0;
988 }
989
clk_set_parent(struct clk * clk,struct clk * parent)990 static inline int clk_set_parent(struct clk *clk, struct clk *parent)
991 {
992 return 0;
993 }
994
clk_get_parent(struct clk * clk)995 static inline struct clk *clk_get_parent(struct clk *clk)
996 {
997 return NULL;
998 }
999
clk_get_sys(const char * dev_id,const char * con_id)1000 static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
1001 {
1002 return NULL;
1003 }
1004
clk_save_context(void)1005 static inline int clk_save_context(void)
1006 {
1007 return 0;
1008 }
1009
clk_restore_context(void)1010 static inline void clk_restore_context(void) {}
1011
1012 #endif
1013
1014 /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
clk_prepare_enable(struct clk * clk)1015 static inline int clk_prepare_enable(struct clk *clk)
1016 {
1017 int ret;
1018
1019 ret = clk_prepare(clk);
1020 if (ret)
1021 return ret;
1022 ret = clk_enable(clk);
1023 if (ret)
1024 clk_unprepare(clk);
1025
1026 return ret;
1027 }
1028
1029 /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
clk_disable_unprepare(struct clk * clk)1030 static inline void clk_disable_unprepare(struct clk *clk)
1031 {
1032 clk_disable(clk);
1033 clk_unprepare(clk);
1034 }
1035
1036 static inline int __must_check
clk_bulk_prepare_enable(int num_clks,const struct clk_bulk_data * clks)1037 clk_bulk_prepare_enable(int num_clks, const struct clk_bulk_data *clks)
1038 {
1039 int ret;
1040
1041 ret = clk_bulk_prepare(num_clks, clks);
1042 if (ret)
1043 return ret;
1044 ret = clk_bulk_enable(num_clks, clks);
1045 if (ret)
1046 clk_bulk_unprepare(num_clks, clks);
1047
1048 return ret;
1049 }
1050
clk_bulk_disable_unprepare(int num_clks,const struct clk_bulk_data * clks)1051 static inline void clk_bulk_disable_unprepare(int num_clks,
1052 const struct clk_bulk_data *clks)
1053 {
1054 clk_bulk_disable(num_clks, clks);
1055 clk_bulk_unprepare(num_clks, clks);
1056 }
1057
1058 /**
1059 * clk_get_optional - lookup and obtain a reference to an optional clock
1060 * producer.
1061 * @dev: device for clock "consumer"
1062 * @id: clock consumer ID
1063 *
1064 * Behaves the same as clk_get() except where there is no clock producer. In
1065 * this case, instead of returning -ENOENT, the function returns NULL.
1066 */
clk_get_optional(struct device * dev,const char * id)1067 static inline struct clk *clk_get_optional(struct device *dev, const char *id)
1068 {
1069 struct clk *clk = clk_get(dev, id);
1070
1071 if (clk == ERR_PTR(-ENOENT))
1072 return NULL;
1073
1074 return clk;
1075 }
1076
1077 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
1078 struct clk *of_clk_get(struct device_node *np, int index);
1079 struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
1080 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
1081 #else
of_clk_get(struct device_node * np,int index)1082 static inline struct clk *of_clk_get(struct device_node *np, int index)
1083 {
1084 return ERR_PTR(-ENOENT);
1085 }
of_clk_get_by_name(struct device_node * np,const char * name)1086 static inline struct clk *of_clk_get_by_name(struct device_node *np,
1087 const char *name)
1088 {
1089 return ERR_PTR(-ENOENT);
1090 }
of_clk_get_from_provider(struct of_phandle_args * clkspec)1091 static inline struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
1092 {
1093 return ERR_PTR(-ENOENT);
1094 }
1095 #endif
1096
1097 #endif
1098