]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/clk.h
fib_trie: Only display main table in /proc/net/route
[mirror_ubuntu-artful-kernel.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
LT
19struct device;
20
b2476490
MT
21struct clk;
22
23#ifdef CONFIG_COMMON_CLK
24
25/**
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
fb72a059
SB
31 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
32 * NOTIFY_STOP or NOTIFY_BAD.
b2476490
MT
33 *
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
fb72a059 37 * always return NOTIFY_DONE or NOTIFY_OK.
b2476490
MT
38 *
39 * POST_RATE_CHANGE - called after the clk rate change has successfully
fb72a059 40 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
b2476490 41 *
1da177e4 42 */
b2476490
MT
43#define PRE_RATE_CHANGE BIT(0)
44#define POST_RATE_CHANGE BIT(1)
45#define ABORT_RATE_CHANGE BIT(2)
1da177e4 46
b2476490
MT
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};
1da177e4 63
b2476490
MT
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).
1da177e4 74 */
b2476490
MT
75struct clk_notifier_data {
76 struct clk *clk;
77 unsigned long old_rate;
78 unsigned long new_rate;
79};
80
86bcfa2e
MT
81/**
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 */
b2476490
MT
90int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
91
86bcfa2e
MT
92/**
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 */
b2476490
MT
97int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
98
5279fc40
BB
99/**
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
e59c5371
MT
109/**
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
5279fc40
BB
128#else
129
130static inline long clk_get_accuracy(struct clk *clk)
131{
132 return -ENOTSUPP;
133}
134
e59c5371
MT
135static inline long clk_set_phase(struct clk *clk, int phase)
136{
137 return -ENOTSUPP;
138}
139
140static inline long clk_get_phase(struct clk *clk)
141{
142 return -ENOTSUPP;
143}
144
7e87aed9 145#endif
1da177e4 146
93abe8e4
VK
147/**
148 * clk_prepare - prepare a clock source
149 * @clk: clock source
150 *
151 * This prepares the clock source for use.
152 *
153 * Must not be called from within atomic context.
154 */
155#ifdef CONFIG_HAVE_CLK_PREPARE
156int clk_prepare(struct clk *clk);
157#else
158static inline int clk_prepare(struct clk *clk)
159{
160 might_sleep();
161 return 0;
162}
163#endif
164
165/**
166 * clk_unprepare - undo preparation of a clock source
167 * @clk: clock source
168 *
169 * This undoes a previously prepared clock. The caller must balance
170 * the number of prepare and unprepare calls.
171 *
172 * Must not be called from within atomic context.
173 */
174#ifdef CONFIG_HAVE_CLK_PREPARE
175void clk_unprepare(struct clk *clk);
176#else
177static inline void clk_unprepare(struct clk *clk)
178{
179 might_sleep();
180}
181#endif
182
183#ifdef CONFIG_HAVE_CLK
1da177e4
LT
184/**
185 * clk_get - lookup and obtain a reference to a clock producer.
186 * @dev: device for clock "consumer"
a58b3a4a 187 * @id: clock consumer ID
1da177e4
LT
188 *
189 * Returns a struct clk corresponding to the clock producer, or
ea3f4eac
RK
190 * valid IS_ERR() condition containing errno. The implementation
191 * uses @dev and @id to determine the clock consumer, and thereby
192 * the clock producer. (IOW, @id may be identical strings, but
193 * clk_get may return different clock producers depending on @dev.)
f47fc0ac
RK
194 *
195 * Drivers must assume that the clock source is not enabled.
f7ad160b
AR
196 *
197 * clk_get should not be called from within interrupt context.
1da177e4
LT
198 */
199struct clk *clk_get(struct device *dev, const char *id);
200
a8a97db9
MB
201/**
202 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
203 * @dev: device for clock "consumer"
a58b3a4a 204 * @id: clock consumer ID
a8a97db9
MB
205 *
206 * Returns a struct clk corresponding to the clock producer, or
207 * valid IS_ERR() condition containing errno. The implementation
208 * uses @dev and @id to determine the clock consumer, and thereby
209 * the clock producer. (IOW, @id may be identical strings, but
210 * clk_get may return different clock producers depending on @dev.)
211 *
212 * Drivers must assume that the clock source is not enabled.
213 *
214 * devm_clk_get should not be called from within interrupt context.
215 *
216 * The clock will automatically be freed when the device is unbound
217 * from the bus.
218 */
219struct clk *devm_clk_get(struct device *dev, const char *id);
220
1da177e4
LT
221/**
222 * clk_enable - inform the system when the clock source should be running.
223 * @clk: clock source
224 *
225 * If the clock can not be enabled/disabled, this should return success.
226 *
40d3e0f4
RK
227 * May be called from atomic contexts.
228 *
1da177e4
LT
229 * Returns success (0) or negative errno.
230 */
231int clk_enable(struct clk *clk);
232
233/**
234 * clk_disable - inform the system when the clock source is no longer required.
235 * @clk: clock source
f47fc0ac
RK
236 *
237 * Inform the system that a clock source is no longer required by
238 * a driver and may be shut down.
239 *
40d3e0f4
RK
240 * May be called from atomic contexts.
241 *
f47fc0ac
RK
242 * Implementation detail: if the clock source is shared between
243 * multiple drivers, clk_enable() calls must be balanced by the
244 * same number of clk_disable() calls for the clock source to be
245 * disabled.
1da177e4
LT
246 */
247void clk_disable(struct clk *clk);
248
1da177e4
LT
249/**
250 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
251 * This is only valid once the clock source has been enabled.
252 * @clk: clock source
253 */
254unsigned long clk_get_rate(struct clk *clk);
255
256/**
257 * clk_put - "free" the clock source
258 * @clk: clock source
f47fc0ac
RK
259 *
260 * Note: drivers must ensure that all clk_enable calls made on this
261 * clock source are balanced by clk_disable calls prior to calling
262 * this function.
f7ad160b
AR
263 *
264 * clk_put should not be called from within interrupt context.
1da177e4
LT
265 */
266void clk_put(struct clk *clk);
267
a8a97db9
MB
268/**
269 * devm_clk_put - "free" a managed clock source
da3dae54 270 * @dev: device used to acquire the clock
a8a97db9
MB
271 * @clk: clock source acquired with devm_clk_get()
272 *
273 * Note: drivers must ensure that all clk_enable calls made on this
274 * clock source are balanced by clk_disable calls prior to calling
275 * this function.
276 *
277 * clk_put should not be called from within interrupt context.
278 */
279void devm_clk_put(struct device *dev, struct clk *clk);
1da177e4
LT
280
281/*
282 * The remaining APIs are optional for machine class support.
283 */
284
285
286/**
287 * clk_round_rate - adjust a rate to the exact rate a clock can provide
288 * @clk: clock source
289 * @rate: desired clock rate in Hz
290 *
291 * Returns rounded clock rate in Hz, or negative errno.
292 */
293long clk_round_rate(struct clk *clk, unsigned long rate);
8b7730dd 294
1da177e4
LT
295/**
296 * clk_set_rate - set the clock rate for a clock source
297 * @clk: clock source
298 * @rate: desired clock rate in Hz
299 *
300 * Returns success (0) or negative errno.
301 */
302int clk_set_rate(struct clk *clk, unsigned long rate);
8b7730dd 303
4e88f3de
TR
304/**
305 * clk_has_parent - check if a clock is a possible parent for another
306 * @clk: clock source
307 * @parent: parent clock source
308 *
309 * This function can be used in drivers that need to check that a clock can be
310 * the parent of another without actually changing the parent.
311 *
312 * Returns true if @parent is a possible parent for @clk, false otherwise.
313 */
314bool clk_has_parent(struct clk *clk, struct clk *parent);
315
1c8e6004
TV
316/**
317 * clk_set_rate_range - set a rate range for a clock source
318 * @clk: clock source
319 * @min: desired minimum clock rate in Hz, inclusive
320 * @max: desired maximum clock rate in Hz, inclusive
321 *
322 * Returns success (0) or negative errno.
323 */
324int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
325
326/**
327 * clk_set_min_rate - set a minimum clock rate for a clock source
328 * @clk: clock source
329 * @rate: desired minimum clock rate in Hz, inclusive
330 *
331 * Returns success (0) or negative errno.
332 */
333int clk_set_min_rate(struct clk *clk, unsigned long rate);
334
335/**
336 * clk_set_max_rate - set a maximum clock rate for a clock source
337 * @clk: clock source
338 * @rate: desired maximum clock rate in Hz, inclusive
339 *
340 * Returns success (0) or negative errno.
341 */
342int clk_set_max_rate(struct clk *clk, unsigned long rate);
343
1da177e4
LT
344/**
345 * clk_set_parent - set the parent clock source for this clock
346 * @clk: clock source
347 * @parent: parent clock source
348 *
349 * Returns success (0) or negative errno.
350 */
351int clk_set_parent(struct clk *clk, struct clk *parent);
352
353/**
354 * clk_get_parent - get the parent clock source for this clock
355 * @clk: clock source
356 *
357 * Returns struct clk corresponding to parent clock source, or
358 * valid IS_ERR() condition containing errno.
359 */
360struct clk *clk_get_parent(struct clk *clk);
361
05fd8e73
SH
362/**
363 * clk_get_sys - get a clock based upon the device name
364 * @dev_id: device name
365 * @con_id: connection ID
366 *
367 * Returns a struct clk corresponding to the clock producer, or
368 * valid IS_ERR() condition containing errno. The implementation
369 * uses @dev_id and @con_id to determine the clock consumer, and
370 * thereby the clock producer. In contrast to clk_get() this function
371 * takes the device name instead of the device itself for identification.
372 *
373 * Drivers must assume that the clock source is not enabled.
374 *
375 * clk_get_sys should not be called from within interrupt context.
376 */
377struct clk *clk_get_sys(const char *dev_id, const char *con_id);
378
93abe8e4
VK
379#else /* !CONFIG_HAVE_CLK */
380
381static inline struct clk *clk_get(struct device *dev, const char *id)
382{
383 return NULL;
384}
385
386static inline struct clk *devm_clk_get(struct device *dev, const char *id)
387{
388 return NULL;
389}
390
391static inline void clk_put(struct clk *clk) {}
392
393static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
394
395static inline int clk_enable(struct clk *clk)
396{
397 return 0;
398}
399
400static inline void clk_disable(struct clk *clk) {}
401
402static inline unsigned long clk_get_rate(struct clk *clk)
403{
404 return 0;
405}
406
407static inline int clk_set_rate(struct clk *clk, unsigned long rate)
408{
409 return 0;
410}
411
412static inline long clk_round_rate(struct clk *clk, unsigned long rate)
413{
414 return 0;
415}
416
4e88f3de
TR
417static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
418{
419 return true;
420}
421
93abe8e4
VK
422static inline int clk_set_parent(struct clk *clk, struct clk *parent)
423{
424 return 0;
425}
426
427static inline struct clk *clk_get_parent(struct clk *clk)
428{
429 return NULL;
430}
431
432#endif
433
434/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
435static inline int clk_prepare_enable(struct clk *clk)
436{
437 int ret;
438
439 ret = clk_prepare(clk);
440 if (ret)
441 return ret;
442 ret = clk_enable(clk);
443 if (ret)
444 clk_unprepare(clk);
445
446 return ret;
447}
448
449/* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
450static inline void clk_disable_unprepare(struct clk *clk)
451{
452 clk_disable(clk);
453 clk_unprepare(clk);
454}
455
c0683039
TL
456/**
457 * clk_add_alias - add a new clock alias
458 * @alias: name for clock alias
459 * @alias_dev_name: device name
460 * @id: platform specific clock name
461 * @dev: device
462 *
463 * Allows using generic clock names for drivers by adding a new alias.
464 * Assumes clkdev, see clkdev.h for more info.
465 */
466int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
467 struct device *dev);
468
766e6a4e
GL
469struct device_node;
470struct of_phandle_args;
471
137f8a72 472#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
766e6a4e
GL
473struct clk *of_clk_get(struct device_node *np, int index);
474struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
475struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
476#else
477static inline struct clk *of_clk_get(struct device_node *np, int index)
478{
9f1612d3 479 return ERR_PTR(-ENOENT);
766e6a4e
GL
480}
481static inline struct clk *of_clk_get_by_name(struct device_node *np,
482 const char *name)
483{
9f1612d3 484 return ERR_PTR(-ENOENT);
766e6a4e
GL
485}
486#endif
487
1da177e4 488#endif