2 * linux/include/linux/clk.h
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
6 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
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.
15 #include <linux/err.h>
16 #include <linux/kernel.h>
17 #include <linux/notifier.h>
22 struct of_phandle_args
;
25 * DOC: clk notifier callback types
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
30 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
31 * NOTIFY_STOP or NOTIFY_BAD.
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
36 * always return NOTIFY_DONE or NOTIFY_OK.
38 * POST_RATE_CHANGE - called after the clk rate change has successfully
39 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
42 #define PRE_RATE_CHANGE BIT(0)
43 #define POST_RATE_CHANGE BIT(1)
44 #define ABORT_RATE_CHANGE BIT(2)
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
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
59 struct srcu_notifier_head notifier_head
;
60 struct list_head node
;
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
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).
74 struct clk_notifier_data
{
76 unsigned long old_rate
;
77 unsigned long new_rate
;
81 * struct clk_bulk_data - Data used for bulk clk operations.
83 * @id: clock consumer ID
84 * @clk: struct clk * to store the associated clock
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.
90 struct clk_bulk_data
{
95 #ifdef CONFIG_COMMON_CLK
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
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
106 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
);
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
113 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
);
116 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
117 * for a clock source.
120 * This gets the clock source accuracy expressed in ppb.
121 * A perfect clock returns 0.
123 long clk_get_accuracy(struct clk
*clk
);
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
130 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
131 * success, -EERROR otherwise.
133 int clk_set_phase(struct clk
*clk
, int degrees
);
136 * clk_get_phase - return the phase shift of a clock signal
137 * @clk: clock signal source
139 * Returns the phase shift of a clock node in degrees, otherwise returns
142 int clk_get_phase(struct clk
*clk
);
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
149 * Returns true if the two struct clk pointers both point to the same hardware
150 * clock node. Put differently, returns true if @p and @q
151 * share the same &struct clk_core object.
153 * Returns false otherwise. Note that two NULL clks are treated as matching.
155 bool clk_is_match(const struct clk
*p
, const struct clk
*q
);
159 static inline int clk_notifier_register(struct clk
*clk
,
160 struct notifier_block
*nb
)
165 static inline int clk_notifier_unregister(struct clk
*clk
,
166 struct notifier_block
*nb
)
171 static inline long clk_get_accuracy(struct clk
*clk
)
176 static inline long clk_set_phase(struct clk
*clk
, int phase
)
181 static inline long clk_get_phase(struct clk
*clk
)
186 static inline bool clk_is_match(const struct clk
*p
, const struct clk
*q
)
194 * clk_prepare - prepare a clock source
197 * This prepares the clock source for use.
199 * Must not be called from within atomic context.
201 #ifdef CONFIG_HAVE_CLK_PREPARE
202 int clk_prepare(struct clk
*clk
);
203 int __must_check
clk_bulk_prepare(int num_clks
,
204 const struct clk_bulk_data
*clks
);
206 static inline int clk_prepare(struct clk
*clk
)
212 static inline int clk_bulk_prepare(int num_clks
, struct clk_bulk_data
*clks
)
220 * clk_unprepare - undo preparation of a clock source
223 * This undoes a previously prepared clock. The caller must balance
224 * the number of prepare and unprepare calls.
226 * Must not be called from within atomic context.
228 #ifdef CONFIG_HAVE_CLK_PREPARE
229 void clk_unprepare(struct clk
*clk
);
230 void clk_bulk_unprepare(int num_clks
, const struct clk_bulk_data
*clks
);
232 static inline void clk_unprepare(struct clk
*clk
)
236 static inline void clk_bulk_unprepare(int num_clks
, struct clk_bulk_data
*clks
)
242 #ifdef CONFIG_HAVE_CLK
244 * clk_get - lookup and obtain a reference to a clock producer.
245 * @dev: device for clock "consumer"
246 * @id: clock consumer ID
248 * Returns a struct clk corresponding to the clock producer, or
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.)
254 * Drivers must assume that the clock source is not enabled.
256 * clk_get should not be called from within interrupt context.
258 struct clk
*clk_get(struct device
*dev
, const char *id
);
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
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.
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.
276 * Drivers must assume that the clock source is not enabled.
278 * clk_bulk_get should not be called from within interrupt context.
280 int __must_check
clk_bulk_get(struct device
*dev
, int num_clks
,
281 struct clk_bulk_data
*clks
);
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
289 * Return 0 on success, an errno on failure.
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.
295 int __must_check
devm_clk_bulk_get(struct device
*dev
, int num_clks
,
296 struct clk_bulk_data
*clks
);
299 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
300 * @dev: device for clock "consumer"
301 * @id: clock consumer ID
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.)
309 * Drivers must assume that the clock source is not enabled.
311 * devm_clk_get should not be called from within interrupt context.
313 * The clock will automatically be freed when the device is unbound
316 struct clk
*devm_clk_get(struct device
*dev
, const char *id
);
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
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
329 * The clock will automatically be freed when the device is unbound
332 struct clk
*devm_get_clk_from_child(struct device
*dev
,
333 struct device_node
*np
, const char *con_id
);
336 * clk_enable - inform the system when the clock source should be running.
339 * If the clock can not be enabled/disabled, this should return success.
341 * May be called from atomic contexts.
343 * Returns success (0) or negative errno.
345 int clk_enable(struct clk
*clk
);
348 * clk_bulk_enable - inform the system when the set of clks should be running.
349 * @num_clks: the number of clk_bulk_data
350 * @clks: the clk_bulk_data table of consumer
352 * May be called from atomic contexts.
354 * Returns success (0) or negative errno.
356 int __must_check
clk_bulk_enable(int num_clks
,
357 const struct clk_bulk_data
*clks
);
360 * clk_disable - inform the system when the clock source is no longer required.
363 * Inform the system that a clock source is no longer required by
364 * a driver and may be shut down.
366 * May be called from atomic contexts.
368 * Implementation detail: if the clock source is shared between
369 * multiple drivers, clk_enable() calls must be balanced by the
370 * same number of clk_disable() calls for the clock source to be
373 void clk_disable(struct clk
*clk
);
376 * clk_bulk_disable - inform the system when the set of clks is no
378 * @num_clks: the number of clk_bulk_data
379 * @clks: the clk_bulk_data table of consumer
381 * Inform the system that a set of clks is no longer required by
382 * a driver and may be shut down.
384 * May be called from atomic contexts.
386 * Implementation detail: if the set of clks is shared between
387 * multiple drivers, clk_bulk_enable() calls must be balanced by the
388 * same number of clk_bulk_disable() calls for the clock source to be
391 void clk_bulk_disable(int num_clks
, const struct clk_bulk_data
*clks
);
394 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
395 * This is only valid once the clock source has been enabled.
398 unsigned long clk_get_rate(struct clk
*clk
);
401 * clk_put - "free" the clock source
404 * Note: drivers must ensure that all clk_enable calls made on this
405 * clock source are balanced by clk_disable calls prior to calling
408 * clk_put should not be called from within interrupt context.
410 void clk_put(struct clk
*clk
);
413 * clk_bulk_put - "free" the clock source
414 * @num_clks: the number of clk_bulk_data
415 * @clks: the clk_bulk_data table of consumer
417 * Note: drivers must ensure that all clk_bulk_enable calls made on this
418 * clock source are balanced by clk_bulk_disable calls prior to calling
421 * clk_bulk_put should not be called from within interrupt context.
423 void clk_bulk_put(int num_clks
, struct clk_bulk_data
*clks
);
426 * devm_clk_put - "free" a managed clock source
427 * @dev: device used to acquire the clock
428 * @clk: clock source acquired with devm_clk_get()
430 * Note: drivers must ensure that all clk_enable calls made on this
431 * clock source are balanced by clk_disable calls prior to calling
434 * clk_put should not be called from within interrupt context.
436 void devm_clk_put(struct device
*dev
, struct clk
*clk
);
439 * The remaining APIs are optional for machine class support.
444 * clk_round_rate - adjust a rate to the exact rate a clock can provide
446 * @rate: desired clock rate in Hz
448 * This answers the question "if I were to pass @rate to clk_set_rate(),
449 * what clock rate would I end up with?" without changing the hardware
450 * in any way. In other words:
452 * rate = clk_round_rate(clk, r);
456 * clk_set_rate(clk, r);
457 * rate = clk_get_rate(clk);
459 * are equivalent except the former does not modify the clock hardware
462 * Returns rounded clock rate in Hz, or negative errno.
464 long clk_round_rate(struct clk
*clk
, unsigned long rate
);
467 * clk_set_rate - set the clock rate for a clock source
469 * @rate: desired clock rate in Hz
471 * Returns success (0) or negative errno.
473 int clk_set_rate(struct clk
*clk
, unsigned long rate
);
476 * clk_has_parent - check if a clock is a possible parent for another
478 * @parent: parent clock source
480 * This function can be used in drivers that need to check that a clock can be
481 * the parent of another without actually changing the parent.
483 * Returns true if @parent is a possible parent for @clk, false otherwise.
485 bool clk_has_parent(struct clk
*clk
, struct clk
*parent
);
488 * clk_set_rate_range - set a rate range for a clock source
490 * @min: desired minimum clock rate in Hz, inclusive
491 * @max: desired maximum clock rate in Hz, inclusive
493 * Returns success (0) or negative errno.
495 int clk_set_rate_range(struct clk
*clk
, unsigned long min
, unsigned long max
);
498 * clk_set_min_rate - set a minimum clock rate for a clock source
500 * @rate: desired minimum clock rate in Hz, inclusive
502 * Returns success (0) or negative errno.
504 int clk_set_min_rate(struct clk
*clk
, unsigned long rate
);
507 * clk_set_max_rate - set a maximum clock rate for a clock source
509 * @rate: desired maximum clock rate in Hz, inclusive
511 * Returns success (0) or negative errno.
513 int clk_set_max_rate(struct clk
*clk
, unsigned long rate
);
516 * clk_set_parent - set the parent clock source for this clock
518 * @parent: parent clock source
520 * Returns success (0) or negative errno.
522 int clk_set_parent(struct clk
*clk
, struct clk
*parent
);
525 * clk_get_parent - get the parent clock source for this clock
528 * Returns struct clk corresponding to parent clock source, or
529 * valid IS_ERR() condition containing errno.
531 struct clk
*clk_get_parent(struct clk
*clk
);
534 * clk_get_sys - get a clock based upon the device name
535 * @dev_id: device name
536 * @con_id: connection ID
538 * Returns a struct clk corresponding to the clock producer, or
539 * valid IS_ERR() condition containing errno. The implementation
540 * uses @dev_id and @con_id to determine the clock consumer, and
541 * thereby the clock producer. In contrast to clk_get() this function
542 * takes the device name instead of the device itself for identification.
544 * Drivers must assume that the clock source is not enabled.
546 * clk_get_sys should not be called from within interrupt context.
548 struct clk
*clk_get_sys(const char *dev_id
, const char *con_id
);
550 #else /* !CONFIG_HAVE_CLK */
552 static inline struct clk
*clk_get(struct device
*dev
, const char *id
)
557 static inline int clk_bulk_get(struct device
*dev
, int num_clks
,
558 struct clk_bulk_data
*clks
)
563 static inline struct clk
*devm_clk_get(struct device
*dev
, const char *id
)
568 static inline int devm_clk_bulk_get(struct device
*dev
, int num_clks
,
569 struct clk_bulk_data
*clks
)
574 static inline struct clk
*devm_get_clk_from_child(struct device
*dev
,
575 struct device_node
*np
, const char *con_id
)
580 static inline void clk_put(struct clk
*clk
) {}
582 static inline void clk_bulk_put(int num_clks
, struct clk_bulk_data
*clks
) {}
584 static inline void devm_clk_put(struct device
*dev
, struct clk
*clk
) {}
586 static inline int clk_enable(struct clk
*clk
)
591 static inline int clk_bulk_enable(int num_clks
, struct clk_bulk_data
*clks
)
596 static inline void clk_disable(struct clk
*clk
) {}
599 static inline void clk_bulk_disable(int num_clks
,
600 struct clk_bulk_data
*clks
) {}
602 static inline unsigned long clk_get_rate(struct clk
*clk
)
607 static inline int clk_set_rate(struct clk
*clk
, unsigned long rate
)
612 static inline long clk_round_rate(struct clk
*clk
, unsigned long rate
)
617 static inline bool clk_has_parent(struct clk
*clk
, struct clk
*parent
)
622 static inline int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
627 static inline struct clk
*clk_get_parent(struct clk
*clk
)
632 static inline struct clk
*clk_get_sys(const char *dev_id
, const char *con_id
)
638 /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
639 static inline int clk_prepare_enable(struct clk
*clk
)
643 ret
= clk_prepare(clk
);
646 ret
= clk_enable(clk
);
653 /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
654 static inline void clk_disable_unprepare(struct clk
*clk
)
660 static inline int clk_bulk_prepare_enable(int num_clks
,
661 struct clk_bulk_data
*clks
)
665 ret
= clk_bulk_prepare(num_clks
, clks
);
668 ret
= clk_bulk_enable(num_clks
, clks
);
670 clk_bulk_unprepare(num_clks
, clks
);
675 static inline void clk_bulk_disable_unprepare(int num_clks
,
676 struct clk_bulk_data
*clks
)
678 clk_bulk_disable(num_clks
, clks
);
679 clk_bulk_unprepare(num_clks
, clks
);
682 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
683 struct clk
*of_clk_get(struct device_node
*np
, int index
);
684 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
);
685 struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
);
687 static inline struct clk
*of_clk_get(struct device_node
*np
, int index
)
689 return ERR_PTR(-ENOENT
);
691 static inline struct clk
*of_clk_get_by_name(struct device_node
*np
,
694 return ERR_PTR(-ENOENT
);
696 static inline struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
)
698 return ERR_PTR(-ENOENT
);