blob: eaaad7d181cd07b3b11c81aff402858c7ce7b579 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell Kingf8ce2542006-01-07 16:15:52 +00002 * linux/include/linux/clk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
Mike Turquetteb24764902012-03-15 23:11:19 -07006 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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 */
Todd Poynor686f8c52006-03-25 18:15:24 +000012#ifndef __LINUX_CLK_H
13#define __LINUX_CLK_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Shawn Guo9f1612d2012-07-18 11:52:22 +080015#include <linux/err.h>
Russell King40d3e0f2011-09-22 11:30:50 +010016#include <linux/kernel.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070017#include <linux/notifier.h>
Russell King40d3e0f2011-09-22 11:30:50 +010018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct device;
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct clk;
22
Shefali Jain0dc6e782017-11-27 13:06:27 +053023#ifdef CONFIG_COMMON_CLK
24
Mike Turquetteb24764902012-03-15 23:11:19 -070025/**
26 * DOC: clk notifier callback types
27 *
28 * PRE_RATE_CHANGE - called immediately before the clk rate is changed,
29 * to indicate that the rate change will proceed. Drivers must
30 * immediately terminate any operations that will be affected by the
Soren Brinkmannfb72a052013-04-03 12:17:12 -070031 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
32 * NOTIFY_STOP or NOTIFY_BAD.
Mike Turquetteb24764902012-03-15 23:11:19 -070033 *
34 * ABORT_RATE_CHANGE: called if the rate change failed for some reason
35 * after PRE_RATE_CHANGE. In this case, all registered notifiers on
36 * the clk will be called with ABORT_RATE_CHANGE. Callbacks must
Soren Brinkmannfb72a052013-04-03 12:17:12 -070037 * always return NOTIFY_DONE or NOTIFY_OK.
Mike Turquetteb24764902012-03-15 23:11:19 -070038 *
39 * POST_RATE_CHANGE - called after the clk rate change has successfully
Soren Brinkmannfb72a052013-04-03 12:17:12 -070040 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
Mike Turquetteb24764902012-03-15 23:11:19 -070041 *
42 */
43#define PRE_RATE_CHANGE BIT(0)
44#define POST_RATE_CHANGE BIT(1)
45#define ABORT_RATE_CHANGE BIT(2)
46
47/**
48 * struct clk_notifier - associate a clk with a notifier
49 * @clk: struct clk * to associate the notifier with
50 * @notifier_head: a blocking_notifier_head for this clk
51 * @node: linked list pointers
52 *
53 * A list of struct clk_notifier is maintained by the notifier code.
54 * An entry is created whenever code registers the first notifier on a
55 * particular @clk. Future notifiers on that @clk are added to the
56 * @notifier_head.
57 */
58struct clk_notifier {
59 struct clk *clk;
60 struct srcu_notifier_head notifier_head;
61 struct list_head node;
62};
63
64/**
65 * struct clk_notifier_data - rate data to pass to the notifier callback
66 * @clk: struct clk * being changed
67 * @old_rate: previous rate of this clk
68 * @new_rate: new rate of this clk
69 *
70 * For a pre-notifier, old_rate is the clk's rate before this rate
71 * change, and new_rate is what the rate will be in the future. For a
72 * post-notifier, old_rate and new_rate are both set to the clk's
73 * current rate (this was done to optimize the implementation).
74 */
75struct clk_notifier_data {
76 struct clk *clk;
77 unsigned long old_rate;
78 unsigned long new_rate;
79};
80
Mike Turquette86bcfa22014-02-24 16:08:41 -080081/**
82 * clk_notifier_register: register a clock rate-change notifier callback
83 * @clk: clock whose rate we are interested in
84 * @nb: notifier block with callback function pointer
85 *
86 * ProTip: debugging across notifier chains can be frustrating. Make sure that
87 * your notifier callback function prints a nice big warning in case of
88 * failure.
89 */
Mike Turquetteb24764902012-03-15 23:11:19 -070090int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
91
Mike Turquette86bcfa22014-02-24 16:08:41 -080092/**
93 * clk_notifier_unregister: unregister a clock rate-change notifier callback
94 * @clk: clock whose rate we are no longer interested in
95 * @nb: notifier block which will be unregistered
96 */
Mike Turquetteb24764902012-03-15 23:11:19 -070097int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
98
Boris BREZILLON5279fc42013-12-21 10:34:47 +010099/**
100 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
101 * for a clock source.
102 * @clk: clock source
103 *
104 * This gets the clock source accuracy expressed in ppb.
105 * A perfect clock returns 0.
106 */
107long clk_get_accuracy(struct clk *clk);
108
Mike Turquettee59c5372014-02-18 21:21:25 -0800109/**
110 * clk_set_phase - adjust the phase shift of a clock signal
111 * @clk: clock signal source
112 * @degrees: number of degrees the signal is shifted
113 *
114 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
115 * success, -EERROR otherwise.
116 */
117int clk_set_phase(struct clk *clk, int degrees);
118
119/**
120 * clk_get_phase - return the phase shift of a clock signal
121 * @clk: clock signal source
122 *
123 * Returns the phase shift of a clock node in degrees, otherwise returns
124 * -EERROR.
125 */
126int clk_get_phase(struct clk *clk);
127
Michael Turquette3d3801e2015-02-25 09:11:01 -0800128/**
129 * clk_is_match - check if two clk's point to the same hardware clock
130 * @p: clk compared against q
131 * @q: clk compared against p
132 *
133 * Returns true if the two struct clk pointers both point to the same hardware
134 * clock node. Put differently, returns true if struct clk *p and struct clk *q
135 * share the same struct clk_core object.
136 *
137 * Returns false otherwise. Note that two NULL clks are treated as matching.
138 */
139bool clk_is_match(const struct clk *p, const struct clk *q);
140
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100141#else
142
Krzysztof Kozlowskie81b87d2016-06-28 13:25:04 +0200143static inline int clk_notifier_register(struct clk *clk,
144 struct notifier_block *nb)
145{
146 return -ENOTSUPP;
147}
148
149static inline int clk_notifier_unregister(struct clk *clk,
150 struct notifier_block *nb)
151{
152 return -ENOTSUPP;
153}
154
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100155static inline long clk_get_accuracy(struct clk *clk)
156{
157 return -ENOTSUPP;
158}
159
Mike Turquettee59c5372014-02-18 21:21:25 -0800160static inline long clk_set_phase(struct clk *clk, int phase)
161{
162 return -ENOTSUPP;
163}
164
165static inline long clk_get_phase(struct clk *clk)
166{
167 return -ENOTSUPP;
168}
169
Michael Turquette3d3801e2015-02-25 09:11:01 -0800170static inline bool clk_is_match(const struct clk *p, const struct clk *q)
171{
172 return p == q;
173}
174
Mark Brown7e87aed2012-04-01 15:31:23 +0100175#endif
Mike Turquetteb24764902012-03-15 23:11:19 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/**
Viresh Kumar93abe8e2012-07-30 14:39:27 -0700178 * clk_prepare - prepare a clock source
179 * @clk: clock source
180 *
181 * This prepares the clock source for use.
182 *
183 * Must not be called from within atomic context.
184 */
185#ifdef CONFIG_HAVE_CLK_PREPARE
186int clk_prepare(struct clk *clk);
187#else
188static inline int clk_prepare(struct clk *clk)
189{
190 might_sleep();
191 return 0;
192}
193#endif
194
195/**
196 * clk_unprepare - undo preparation of a clock source
197 * @clk: clock source
198 *
199 * This undoes a previously prepared clock. The caller must balance
200 * the number of prepare and unprepare calls.
201 *
202 * Must not be called from within atomic context.
203 */
204#ifdef CONFIG_HAVE_CLK_PREPARE
205void clk_unprepare(struct clk *clk);
206#else
207static inline void clk_unprepare(struct clk *clk)
208{
209 might_sleep();
210}
211#endif
212
213#ifdef CONFIG_HAVE_CLK
214/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * clk_get - lookup and obtain a reference to a clock producer.
216 * @dev: device for clock "consumer"
Jan-Simon Möllera58b3a42012-07-23 20:48:56 +0200217 * @id: clock consumer ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *
219 * Returns a struct clk corresponding to the clock producer, or
Russell Kingea3f4ea2005-04-27 18:19:55 +0100220 * valid IS_ERR() condition containing errno. The implementation
221 * uses @dev and @id to determine the clock consumer, and thereby
222 * the clock producer. (IOW, @id may be identical strings, but
223 * clk_get may return different clock producers depending on @dev.)
Russell Kingf47fc0a2006-01-03 18:34:20 +0000224 *
225 * Drivers must assume that the clock source is not enabled.
Alex Raimondif7ad1602008-10-15 22:02:03 -0700226 *
227 * clk_get should not be called from within interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
229struct clk *clk_get(struct device *dev, const char *id);
230
231/**
Mark Browna8a97db2012-04-05 11:42:09 +0100232 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
233 * @dev: device for clock "consumer"
Jan-Simon Möllera58b3a42012-07-23 20:48:56 +0200234 * @id: clock consumer ID
Mark Browna8a97db2012-04-05 11:42:09 +0100235 *
236 * Returns a struct clk corresponding to the clock producer, or
237 * valid IS_ERR() condition containing errno. The implementation
238 * uses @dev and @id to determine the clock consumer, and thereby
239 * the clock producer. (IOW, @id may be identical strings, but
240 * clk_get may return different clock producers depending on @dev.)
241 *
242 * Drivers must assume that the clock source is not enabled.
243 *
244 * devm_clk_get should not be called from within interrupt context.
245 *
246 * The clock will automatically be freed when the device is unbound
247 * from the bus.
248 */
249struct clk *devm_clk_get(struct device *dev, const char *id);
250
251/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 * clk_enable - inform the system when the clock source should be running.
253 * @clk: clock source
254 *
255 * If the clock can not be enabled/disabled, this should return success.
256 *
Russell King40d3e0f2011-09-22 11:30:50 +0100257 * May be called from atomic contexts.
258 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * Returns success (0) or negative errno.
260 */
261int clk_enable(struct clk *clk);
262
263/**
264 * clk_disable - inform the system when the clock source is no longer required.
265 * @clk: clock source
Russell Kingf47fc0a2006-01-03 18:34:20 +0000266 *
267 * Inform the system that a clock source is no longer required by
268 * a driver and may be shut down.
269 *
Russell King40d3e0f2011-09-22 11:30:50 +0100270 * May be called from atomic contexts.
271 *
Russell Kingf47fc0a2006-01-03 18:34:20 +0000272 * Implementation detail: if the clock source is shared between
273 * multiple drivers, clk_enable() calls must be balanced by the
274 * same number of clk_disable() calls for the clock source to be
275 * disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
277void clk_disable(struct clk *clk);
278
279/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
281 * This is only valid once the clock source has been enabled.
282 * @clk: clock source
283 */
284unsigned long clk_get_rate(struct clk *clk);
285
286/**
287 * clk_put - "free" the clock source
288 * @clk: clock source
Russell Kingf47fc0a2006-01-03 18:34:20 +0000289 *
290 * Note: drivers must ensure that all clk_enable calls made on this
291 * clock source are balanced by clk_disable calls prior to calling
292 * this function.
Alex Raimondif7ad1602008-10-15 22:02:03 -0700293 *
294 * clk_put should not be called from within interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
296void clk_put(struct clk *clk);
297
Mark Browna8a97db2012-04-05 11:42:09 +0100298/**
299 * devm_clk_put - "free" a managed clock source
Masanari Iidada3dae52014-09-09 01:27:23 +0900300 * @dev: device used to acquire the clock
Mark Browna8a97db2012-04-05 11:42:09 +0100301 * @clk: clock source acquired with devm_clk_get()
302 *
303 * Note: drivers must ensure that all clk_enable calls made on this
304 * clock source are balanced by clk_disable calls prior to calling
305 * this function.
306 *
307 * clk_put should not be called from within interrupt context.
308 */
309void devm_clk_put(struct device *dev, struct clk *clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311/*
312 * The remaining APIs are optional for machine class support.
313 */
314
315
316/**
317 * clk_round_rate - adjust a rate to the exact rate a clock can provide
318 * @clk: clock source
319 * @rate: desired clock rate in Hz
320 *
Russell Kingd2d14a72015-03-14 15:12:35 +0000321 * This answers the question "if I were to pass @rate to clk_set_rate(),
322 * what clock rate would I end up with?" without changing the hardware
323 * in any way. In other words:
324 *
325 * rate = clk_round_rate(clk, r);
326 *
327 * and:
328 *
329 * clk_set_rate(clk, r);
330 * rate = clk_get_rate(clk);
331 *
332 * are equivalent except the former does not modify the clock hardware
333 * in any way.
334 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Returns rounded clock rate in Hz, or negative errno.
336 */
337long clk_round_rate(struct clk *clk, unsigned long rate);
Rob Herring8b7730d2012-04-09 15:24:59 -0500338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/**
340 * clk_set_rate - set the clock rate for a clock source
341 * @clk: clock source
342 * @rate: desired clock rate in Hz
343 *
344 * Returns success (0) or negative errno.
345 */
346int clk_set_rate(struct clk *clk, unsigned long rate);
Rob Herring8b7730d2012-04-09 15:24:59 -0500347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +0100349 * clk_has_parent - check if a clock is a possible parent for another
350 * @clk: clock source
351 * @parent: parent clock source
352 *
353 * This function can be used in drivers that need to check that a clock can be
354 * the parent of another without actually changing the parent.
355 *
356 * Returns true if @parent is a possible parent for @clk, false otherwise.
357 */
358bool clk_has_parent(struct clk *clk, struct clk *parent);
359
360/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100361 * clk_set_rate_range - set a rate range for a clock source
362 * @clk: clock source
363 * @min: desired minimum clock rate in Hz, inclusive
364 * @max: desired maximum clock rate in Hz, inclusive
365 *
366 * Returns success (0) or negative errno.
367 */
368int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
369
370/**
371 * clk_set_min_rate - set a minimum clock rate for a clock source
372 * @clk: clock source
373 * @rate: desired minimum clock rate in Hz, inclusive
374 *
375 * Returns success (0) or negative errno.
376 */
377int clk_set_min_rate(struct clk *clk, unsigned long rate);
378
379/**
380 * clk_set_max_rate - set a maximum clock rate for a clock source
381 * @clk: clock source
382 * @rate: desired maximum clock rate in Hz, inclusive
383 *
384 * Returns success (0) or negative errno.
385 */
386int clk_set_max_rate(struct clk *clk, unsigned long rate);
387
388/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * clk_set_parent - set the parent clock source for this clock
390 * @clk: clock source
391 * @parent: parent clock source
392 *
393 * Returns success (0) or negative errno.
394 */
395int clk_set_parent(struct clk *clk, struct clk *parent);
396
397/**
398 * clk_get_parent - get the parent clock source for this clock
399 * @clk: clock source
400 *
401 * Returns struct clk corresponding to parent clock source, or
402 * valid IS_ERR() condition containing errno.
403 */
404struct clk *clk_get_parent(struct clk *clk);
405
Sascha Hauer05fd8e72009-03-07 12:55:49 +0100406/**
407 * clk_get_sys - get a clock based upon the device name
408 * @dev_id: device name
409 * @con_id: connection ID
410 *
411 * Returns a struct clk corresponding to the clock producer, or
412 * valid IS_ERR() condition containing errno. The implementation
413 * uses @dev_id and @con_id to determine the clock consumer, and
414 * thereby the clock producer. In contrast to clk_get() this function
415 * takes the device name instead of the device itself for identification.
416 *
417 * Drivers must assume that the clock source is not enabled.
418 *
419 * clk_get_sys should not be called from within interrupt context.
420 */
421struct clk *clk_get_sys(const char *dev_id, const char *con_id);
422
Taniya Das63c20c72016-06-15 12:15:01 +0530423/**
424 * clk_set_flags - set the custom HW specific flags for this clock
425 * @clk: clock source
426 * @flags: custom flags which would be hardware specific, defined for specific
427 * hardware.
428 *
429 * Returns success 0 or negative errno.
430 */
431int clk_set_flags(struct clk *clk, unsigned long flags);
432
Taniya Das08d79242017-04-13 12:24:51 +0530433/**
434 * clk_list_frequnecy - enumerate supported frequencies
435 * @clk: clock source
436 * @index: identify frequency to list
437 *
438 * Returns a non-negative integer frequency for success
439 * or negative errno in case of failure.
440 */
441unsigned long clk_list_frequency(struct clk *clk, unsigned int index);
442
Viresh Kumar93abe8e2012-07-30 14:39:27 -0700443#else /* !CONFIG_HAVE_CLK */
444
445static inline struct clk *clk_get(struct device *dev, const char *id)
446{
447 return NULL;
448}
449
450static inline struct clk *devm_clk_get(struct device *dev, const char *id)
451{
452 return NULL;
453}
454
455static inline void clk_put(struct clk *clk) {}
456
457static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
458
459static inline int clk_enable(struct clk *clk)
460{
461 return 0;
462}
463
464static inline void clk_disable(struct clk *clk) {}
465
466static inline unsigned long clk_get_rate(struct clk *clk)
467{
468 return 0;
469}
470
471static inline int clk_set_rate(struct clk *clk, unsigned long rate)
472{
473 return 0;
474}
475
476static inline long clk_round_rate(struct clk *clk, unsigned long rate)
477{
478 return 0;
479}
480
Thierry Reding4e88f3d2015-01-21 17:13:00 +0100481static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
482{
483 return true;
484}
485
Viresh Kumar93abe8e2012-07-30 14:39:27 -0700486static inline int clk_set_parent(struct clk *clk, struct clk *parent)
487{
488 return 0;
489}
490
491static inline struct clk *clk_get_parent(struct clk *clk)
492{
493 return NULL;
494}
495
Daniel Lezcanob81ea962016-06-02 22:44:49 +0200496static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
497{
498 return NULL;
499}
Viresh Kumar93abe8e2012-07-30 14:39:27 -0700500#endif
501
502/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
503static inline int clk_prepare_enable(struct clk *clk)
504{
505 int ret;
506
507 ret = clk_prepare(clk);
508 if (ret)
509 return ret;
510 ret = clk_enable(clk);
511 if (ret)
512 clk_unprepare(clk);
513
514 return ret;
515}
516
517/* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
518static inline void clk_disable_unprepare(struct clk *clk)
519{
520 clk_disable(clk);
521 clk_unprepare(clk);
522}
523
Grant Likely766e6a42012-04-09 14:50:06 -0500524struct device_node;
525struct of_phandle_args;
526
Shefali Jain0dc6e782017-11-27 13:06:27 +0530527#if defined(CONFIG_OF)
Grant Likely766e6a42012-04-09 14:50:06 -0500528struct clk *of_clk_get(struct device_node *np, int index);
529struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
530struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
531#else
532static inline struct clk *of_clk_get(struct device_node *np, int index)
533{
Shawn Guo9f1612d2012-07-18 11:52:22 +0800534 return ERR_PTR(-ENOENT);
Grant Likely766e6a42012-04-09 14:50:06 -0500535}
536static inline struct clk *of_clk_get_by_name(struct device_node *np,
537 const char *name)
538{
Shawn Guo9f1612d2012-07-18 11:52:22 +0800539 return ERR_PTR(-ENOENT);
Grant Likely766e6a42012-04-09 14:50:06 -0500540}
541#endif
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#endif