blob: 4f525b37c6fdcf00c65513d245abd32b02413f56 [file] [log] [blame]
Mike Turquetteb24764902012-03-15 23:11:19 -07001/*
2 * linux/include/linux/clk-provider.h
3 *
4 * Copyright (c) 2010-2011 Jeremy Kerr <jeremy.kerr@canonical.com>
5 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef __LINUX_CLK_PROVIDER_H
12#define __LINUX_CLK_PROVIDER_H
13
14#include <linux/clk.h>
15
16#ifdef CONFIG_COMMON_CLK
17
Mike Turquetteb24764902012-03-15 23:11:19 -070018/*
19 * flags used across common struct clk. these flags should only affect the
20 * top-level framework. custom flags for dealing with hardware specifics
21 * belong in struct clk_foo
22 */
23#define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */
24#define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */
25#define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */
26#define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */
27#define CLK_IS_ROOT BIT(4) /* root clk, has no parent */
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +053028#define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */
Ulf Hanssona093bde2012-08-31 14:21:28 +020029#define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
Mike Turquetteb24764902012-03-15 23:11:19 -070030
Saravana Kannan0197b3e2012-04-25 22:58:56 -070031struct clk_hw;
32
Mike Turquetteb24764902012-03-15 23:11:19 -070033/**
34 * struct clk_ops - Callback operations for hardware clocks; these are to
35 * be provided by the clock implementation, and will be called by drivers
36 * through the clk_* api.
37 *
38 * @prepare: Prepare the clock for enabling. This must not return until
39 * the clock is fully prepared, and it's safe to call clk_enable.
40 * This callback is intended to allow clock implementations to
41 * do any initialisation that may sleep. Called with
42 * prepare_lock held.
43 *
44 * @unprepare: Release the clock from its prepared state. This will typically
45 * undo any work done in the @prepare callback. Called with
46 * prepare_lock held.
47 *
Ulf Hansson3d6ee282013-03-12 20:26:02 +010048 * @is_prepared: Queries the hardware to determine if the clock is prepared.
49 * This function is allowed to sleep. Optional, if this op is not
50 * set then the prepare count will be used.
51 *
Ulf Hansson3cc82472013-03-12 20:26:04 +010052 * @unprepare_unused: Unprepare the clock atomically. Only called from
53 * clk_disable_unused for prepare clocks with special needs.
54 * Called with prepare mutex held. This function may sleep.
55 *
Mike Turquetteb24764902012-03-15 23:11:19 -070056 * @enable: Enable the clock atomically. This must not return until the
57 * clock is generating a valid clock signal, usable by consumer
58 * devices. Called with enable_lock held. This function must not
59 * sleep.
60 *
61 * @disable: Disable the clock atomically. Called with enable_lock held.
62 * This function must not sleep.
63 *
Stephen Boyd119c7122012-10-03 23:38:53 -070064 * @is_enabled: Queries the hardware to determine if the clock is enabled.
65 * This function must not sleep. Optional, if this op is not
66 * set then the enable count will be used.
67 *
Mike Turquette7c045a52012-12-04 11:00:35 -080068 * @disable_unused: Disable the clock atomically. Only called from
69 * clk_disable_unused for gate clocks with special needs.
70 * Called with enable_lock held. This function must not
71 * sleep.
72 *
Stephen Boyd7ce3e8c2012-10-03 23:38:54 -070073 * @recalc_rate Recalculate the rate of this clock, by querying hardware. The
Mike Turquetteb24764902012-03-15 23:11:19 -070074 * parent rate is an input parameter. It is up to the caller to
Stephen Boyd7ce3e8c2012-10-03 23:38:54 -070075 * ensure that the prepare_mutex is held across this call.
Mike Turquetteb24764902012-03-15 23:11:19 -070076 * Returns the calculated rate. Optional, but recommended - if
77 * this op is not set then clock rate will be initialized to 0.
78 *
79 * @round_rate: Given a target rate as input, returns the closest rate actually
80 * supported by the clock.
81 *
James Hogan71472c02013-07-29 12:25:00 +010082 * @determine_rate: Given a target rate as input, returns the closest rate
83 * actually supported by the clock, and optionally the parent clock
84 * that should be used to provide the clock rate.
85 *
Mike Turquetteb24764902012-03-15 23:11:19 -070086 * @get_parent: Queries the hardware to determine the parent of a clock. The
87 * return value is a u8 which specifies the index corresponding to
88 * the parent clock. This index can be applied to either the
89 * .parent_names or .parents arrays. In short, this function
90 * translates the parent value read from hardware into an array
91 * index. Currently only called when the clock is initialized by
92 * __clk_init. This callback is mandatory for clocks with
93 * multiple parents. It is optional (and unnecessary) for clocks
94 * with 0 or 1 parents.
95 *
96 * @set_parent: Change the input source of this clock; for clocks with multiple
97 * possible parents specify a new parent by passing in the index
98 * as a u8 corresponding to the parent in either the .parent_names
99 * or .parents arrays. This function in affect translates an
100 * array index into the value programmed into the hardware.
101 * Returns 0 on success, -EERROR otherwise.
102 *
Shawn Guo1c0035d2012-04-12 20:50:18 +0800103 * @set_rate: Change the rate of this clock. The requested rate is specified
104 * by the second argument, which should typically be the return
105 * of .round_rate call. The third argument gives the parent rate
106 * which is likely helpful for most .set_rate implementation.
107 * Returns 0 on success, -EERROR otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -0700108 *
109 * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow
110 * implementations to split any work between atomic (enable) and sleepable
111 * (prepare) contexts. If enabling a clock requires code that might sleep,
112 * this must be done in clk_prepare. Clock enable code that will never be
Stephen Boyd7ce3e8c2012-10-03 23:38:54 -0700113 * called in a sleepable context may be implemented in clk_enable.
Mike Turquetteb24764902012-03-15 23:11:19 -0700114 *
115 * Typically, drivers will call clk_prepare when a clock may be needed later
116 * (eg. when a device is opened), and clk_enable when the clock is actually
117 * required (eg. from an interrupt). Note that clk_prepare MUST have been
118 * called before clk_enable.
119 */
120struct clk_ops {
121 int (*prepare)(struct clk_hw *hw);
122 void (*unprepare)(struct clk_hw *hw);
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100123 int (*is_prepared)(struct clk_hw *hw);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100124 void (*unprepare_unused)(struct clk_hw *hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700125 int (*enable)(struct clk_hw *hw);
126 void (*disable)(struct clk_hw *hw);
127 int (*is_enabled)(struct clk_hw *hw);
Mike Turquette7c045a52012-12-04 11:00:35 -0800128 void (*disable_unused)(struct clk_hw *hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700129 unsigned long (*recalc_rate)(struct clk_hw *hw,
130 unsigned long parent_rate);
131 long (*round_rate)(struct clk_hw *hw, unsigned long,
132 unsigned long *);
James Hogan71472c02013-07-29 12:25:00 +0100133 long (*determine_rate)(struct clk_hw *hw, unsigned long rate,
134 unsigned long *best_parent_rate,
135 struct clk **best_parent_clk);
Mike Turquetteb24764902012-03-15 23:11:19 -0700136 int (*set_parent)(struct clk_hw *hw, u8 index);
137 u8 (*get_parent)(struct clk_hw *hw);
Shawn Guo1c0035d2012-04-12 20:50:18 +0800138 int (*set_rate)(struct clk_hw *hw, unsigned long,
139 unsigned long);
Mike Turquetteb24764902012-03-15 23:11:19 -0700140 void (*init)(struct clk_hw *hw);
141};
142
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700143/**
144 * struct clk_init_data - holds init data that's common to all clocks and is
145 * shared between the clock provider and the common clock framework.
146 *
147 * @name: clock name
148 * @ops: operations this clock supports
149 * @parent_names: array of string names for all possible parents
150 * @num_parents: number of possible parents
151 * @flags: framework-level hints and quirks
152 */
153struct clk_init_data {
154 const char *name;
155 const struct clk_ops *ops;
156 const char **parent_names;
157 u8 num_parents;
158 unsigned long flags;
159};
160
161/**
162 * struct clk_hw - handle for traversing from a struct clk to its corresponding
163 * hardware-specific structure. struct clk_hw should be declared within struct
164 * clk_foo and then referenced by the struct clk instance that uses struct
165 * clk_foo's clk_ops
166 *
167 * @clk: pointer to the struct clk instance that points back to this struct
168 * clk_hw instance
169 *
170 * @init: pointer to struct clk_init_data that contains the init data shared
171 * with the common clock framework.
172 */
173struct clk_hw {
174 struct clk *clk;
Mark Browndc4cd942012-05-14 15:12:42 +0100175 const struct clk_init_data *init;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700176};
177
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700178/*
179 * DOC: Basic clock implementations common to many platforms
180 *
181 * Each basic clock hardware type is comprised of a structure describing the
182 * clock hardware, implementations of the relevant callbacks in struct clk_ops,
183 * unique flags for that hardware type, a registration function and an
184 * alternative macro for static initialization
185 */
186
187/**
188 * struct clk_fixed_rate - fixed-rate clock
189 * @hw: handle between common and hardware-specific interfaces
190 * @fixed_rate: constant frequency of clock
191 */
192struct clk_fixed_rate {
193 struct clk_hw hw;
194 unsigned long fixed_rate;
195 u8 flags;
196};
197
Shawn Guobffad662012-03-27 15:23:23 +0800198extern const struct clk_ops clk_fixed_rate_ops;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700199struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
200 const char *parent_name, unsigned long flags,
201 unsigned long fixed_rate);
202
Grant Likely015ba402012-04-07 21:39:39 -0500203void of_fixed_clk_setup(struct device_node *np);
204
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700205/**
206 * struct clk_gate - gating clock
207 *
208 * @hw: handle between common and hardware-specific interfaces
209 * @reg: register controlling gate
210 * @bit_idx: single bit controlling gate
211 * @flags: hardware-specific flags
212 * @lock: register lock
213 *
214 * Clock which can gate its output. Implements .enable & .disable
215 *
216 * Flags:
Viresh Kumar1f73f312012-04-17 16:45:35 +0530217 * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700218 * enable the clock. Setting this flag does the opposite: setting the bit
219 * disable the clock and clearing it enables the clock
Haojian Zhuang04577992013-06-08 22:47:19 +0800220 * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit
221 * of this register, and mask of gate bits are in higher 16-bit of this
222 * register. While setting the gate bits, higher 16-bit should also be
223 * updated to indicate changing gate bits.
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700224 */
225struct clk_gate {
226 struct clk_hw hw;
227 void __iomem *reg;
228 u8 bit_idx;
229 u8 flags;
230 spinlock_t *lock;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700231};
232
233#define CLK_GATE_SET_TO_DISABLE BIT(0)
Haojian Zhuang04577992013-06-08 22:47:19 +0800234#define CLK_GATE_HIWORD_MASK BIT(1)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700235
Shawn Guobffad662012-03-27 15:23:23 +0800236extern const struct clk_ops clk_gate_ops;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700237struct clk *clk_register_gate(struct device *dev, const char *name,
238 const char *parent_name, unsigned long flags,
239 void __iomem *reg, u8 bit_idx,
240 u8 clk_gate_flags, spinlock_t *lock);
241
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530242struct clk_div_table {
243 unsigned int val;
244 unsigned int div;
245};
246
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700247/**
248 * struct clk_divider - adjustable divider clock
249 *
250 * @hw: handle between common and hardware-specific interfaces
251 * @reg: register containing the divider
252 * @shift: shift to the divider bit field
253 * @width: width of the divider bit field
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530254 * @table: array of value/divider pairs, last entry should have div = 0
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700255 * @lock: register lock
256 *
257 * Clock with an adjustable divider affecting its output frequency. Implements
258 * .recalc_rate, .set_rate and .round_rate
259 *
260 * Flags:
261 * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the
262 * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is
263 * the raw value read from the register, with the value of zero considered
Soren Brinkmann056b20532013-04-02 15:36:56 -0700264 * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set.
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700265 * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from
266 * the hardware register
Soren Brinkmann056b20532013-04-02 15:36:56 -0700267 * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have
268 * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor.
269 * Some hardware implementations gracefully handle this case and allow a
270 * zero divisor by not modifying their input clock
271 * (divide by one / bypass).
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800272 * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit
273 * of this register, and mask of divider bits are in higher 16-bit of this
274 * register. While setting the divider bits, higher 16-bit should also be
275 * updated to indicate changing divider bits.
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700276 */
277struct clk_divider {
278 struct clk_hw hw;
279 void __iomem *reg;
280 u8 shift;
281 u8 width;
282 u8 flags;
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530283 const struct clk_div_table *table;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700284 spinlock_t *lock;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700285};
286
287#define CLK_DIVIDER_ONE_BASED BIT(0)
288#define CLK_DIVIDER_POWER_OF_TWO BIT(1)
Soren Brinkmann056b20532013-04-02 15:36:56 -0700289#define CLK_DIVIDER_ALLOW_ZERO BIT(2)
Haojian Zhuangd57dfe72013-06-08 22:47:18 +0800290#define CLK_DIVIDER_HIWORD_MASK BIT(3)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700291
Shawn Guobffad662012-03-27 15:23:23 +0800292extern const struct clk_ops clk_divider_ops;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700293struct clk *clk_register_divider(struct device *dev, const char *name,
294 const char *parent_name, unsigned long flags,
295 void __iomem *reg, u8 shift, u8 width,
296 u8 clk_divider_flags, spinlock_t *lock);
Rajendra Nayak357c3f02012-06-29 19:06:32 +0530297struct clk *clk_register_divider_table(struct device *dev, const char *name,
298 const char *parent_name, unsigned long flags,
299 void __iomem *reg, u8 shift, u8 width,
300 u8 clk_divider_flags, const struct clk_div_table *table,
301 spinlock_t *lock);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700302
303/**
304 * struct clk_mux - multiplexer clock
305 *
306 * @hw: handle between common and hardware-specific interfaces
307 * @reg: register controlling multiplexer
308 * @shift: shift to multiplexer bit field
309 * @width: width of mutliplexer bit field
James Hogan3566d402013-03-25 14:35:07 +0000310 * @flags: hardware-specific flags
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700311 * @lock: register lock
312 *
313 * Clock with multiple selectable parents. Implements .get_parent, .set_parent
314 * and .recalc_rate
315 *
316 * Flags:
317 * CLK_MUX_INDEX_ONE - register index starts at 1, not 0
Viresh Kumar1f73f312012-04-17 16:45:35 +0530318 * CLK_MUX_INDEX_BIT - register index is a single bit (power of two)
Haojian Zhuangba492e92013-06-08 22:47:17 +0800319 * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this
320 * register, and mask of mux bits are in higher 16-bit of this register.
321 * While setting the mux bits, higher 16-bit should also be updated to
322 * indicate changing mux bits.
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700323 */
324struct clk_mux {
325 struct clk_hw hw;
326 void __iomem *reg;
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200327 u32 *table;
328 u32 mask;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700329 u8 shift;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700330 u8 flags;
331 spinlock_t *lock;
332};
333
334#define CLK_MUX_INDEX_ONE BIT(0)
335#define CLK_MUX_INDEX_BIT BIT(1)
Haojian Zhuangba492e92013-06-08 22:47:17 +0800336#define CLK_MUX_HIWORD_MASK BIT(2)
Tomasz Figac57acd12013-07-23 01:49:18 +0200337#define CLK_MUX_READ_ONLY BIT(3) /* mux setting cannot be changed */
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700338
Shawn Guobffad662012-03-27 15:23:23 +0800339extern const struct clk_ops clk_mux_ops;
Tomasz Figac57acd12013-07-23 01:49:18 +0200340extern const struct clk_ops clk_mux_ro_ops;
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200341
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700342struct clk *clk_register_mux(struct device *dev, const char *name,
Mark Brownd305fb72012-03-21 20:01:20 +0000343 const char **parent_names, u8 num_parents, unsigned long flags,
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700344 void __iomem *reg, u8 shift, u8 width,
345 u8 clk_mux_flags, spinlock_t *lock);
Mike Turquetteb24764902012-03-15 23:11:19 -0700346
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200347struct clk *clk_register_mux_table(struct device *dev, const char *name,
348 const char **parent_names, u8 num_parents, unsigned long flags,
349 void __iomem *reg, u8 shift, u32 mask,
350 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
351
Gregory CLEMENT79b16642013-04-12 13:57:44 +0200352void of_fixed_factor_clk_setup(struct device_node *node);
353
Mike Turquetteb24764902012-03-15 23:11:19 -0700354/**
Sascha Hauerf0948f52012-05-03 15:36:14 +0530355 * struct clk_fixed_factor - fixed multiplier and divider clock
356 *
357 * @hw: handle between common and hardware-specific interfaces
358 * @mult: multiplier
359 * @div: divider
360 *
361 * Clock with a fixed multiplier and divider. The output frequency is the
362 * parent clock rate divided by div and multiplied by mult.
363 * Implements .recalc_rate, .set_rate and .round_rate
364 */
365
366struct clk_fixed_factor {
367 struct clk_hw hw;
368 unsigned int mult;
369 unsigned int div;
370};
371
372extern struct clk_ops clk_fixed_factor_ops;
373struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
374 const char *parent_name, unsigned long flags,
375 unsigned int mult, unsigned int div);
376
Prashant Gaikwadece70092013-03-20 17:30:34 +0530377/***
378 * struct clk_composite - aggregate clock of mux, divider and gate clocks
379 *
380 * @hw: handle between common and hardware-specific interfaces
Mike Turquetted3a1c7b2013-04-11 11:31:36 -0700381 * @mux_hw: handle between composite and hardware-specific mux clock
382 * @rate_hw: handle between composite and hardware-specific rate clock
383 * @gate_hw: handle between composite and hardware-specific gate clock
Prashant Gaikwadece70092013-03-20 17:30:34 +0530384 * @mux_ops: clock ops for mux
Mike Turquetted3a1c7b2013-04-11 11:31:36 -0700385 * @rate_ops: clock ops for rate
Prashant Gaikwadece70092013-03-20 17:30:34 +0530386 * @gate_ops: clock ops for gate
387 */
388struct clk_composite {
389 struct clk_hw hw;
390 struct clk_ops ops;
391
392 struct clk_hw *mux_hw;
Mike Turquetted3a1c7b2013-04-11 11:31:36 -0700393 struct clk_hw *rate_hw;
Prashant Gaikwadece70092013-03-20 17:30:34 +0530394 struct clk_hw *gate_hw;
395
396 const struct clk_ops *mux_ops;
Mike Turquetted3a1c7b2013-04-11 11:31:36 -0700397 const struct clk_ops *rate_ops;
Prashant Gaikwadece70092013-03-20 17:30:34 +0530398 const struct clk_ops *gate_ops;
399};
400
401struct clk *clk_register_composite(struct device *dev, const char *name,
402 const char **parent_names, int num_parents,
403 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
Mike Turquetted3a1c7b2013-04-11 11:31:36 -0700404 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
Prashant Gaikwadece70092013-03-20 17:30:34 +0530405 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
406 unsigned long flags);
407
Sascha Hauerf0948f52012-05-03 15:36:14 +0530408/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700409 * clk_register - allocate a new clock, register it and return an opaque cookie
410 * @dev: device that is registering this clock
Mike Turquetteb24764902012-03-15 23:11:19 -0700411 * @hw: link to hardware-specific clock data
Mike Turquetteb24764902012-03-15 23:11:19 -0700412 *
413 * clk_register is the primary interface for populating the clock tree with new
414 * clock nodes. It returns a pointer to the newly allocated struct clk which
415 * cannot be dereferenced by driver code but may be used in conjuction with the
Mike Turquetted1302a32012-03-29 14:30:40 -0700416 * rest of the clock API. In the event of an error clk_register will return an
417 * error code; drivers must test for an error code after calling clk_register.
Mike Turquetteb24764902012-03-15 23:11:19 -0700418 */
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700419struct clk *clk_register(struct device *dev, struct clk_hw *hw);
Stephen Boyd46c87732012-09-24 13:38:04 -0700420struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700421
Mark Brown1df5c932012-04-18 09:07:12 +0100422void clk_unregister(struct clk *clk);
Stephen Boyd46c87732012-09-24 13:38:04 -0700423void devm_clk_unregister(struct device *dev, struct clk *clk);
Mark Brown1df5c932012-04-18 09:07:12 +0100424
Mike Turquetteb24764902012-03-15 23:11:19 -0700425/* helper functions */
426const char *__clk_get_name(struct clk *clk);
427struct clk_hw *__clk_get_hw(struct clk *clk);
428u8 __clk_get_num_parents(struct clk *clk);
429struct clk *__clk_get_parent(struct clk *clk);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100430struct clk *clk_get_parent_by_index(struct clk *clk, u8 index);
Linus Torvalds93874682012-12-11 11:25:08 -0800431unsigned int __clk_get_enable_count(struct clk *clk);
432unsigned int __clk_get_prepare_count(struct clk *clk);
Mike Turquetteb24764902012-03-15 23:11:19 -0700433unsigned long __clk_get_rate(struct clk *clk);
434unsigned long __clk_get_flags(struct clk *clk);
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100435bool __clk_is_prepared(struct clk *clk);
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700436bool __clk_is_enabled(struct clk *clk);
Mike Turquetteb24764902012-03-15 23:11:19 -0700437struct clk *__clk_lookup(const char *name);
438
439/*
440 * FIXME clock api without lock protection
441 */
442int __clk_prepare(struct clk *clk);
443void __clk_unprepare(struct clk *clk);
444void __clk_reparent(struct clk *clk, struct clk *new_parent);
445unsigned long __clk_round_rate(struct clk *clk, unsigned long rate);
446
Grant Likely766e6a42012-04-09 14:50:06 -0500447struct of_device_id;
448
449typedef void (*of_clk_init_cb_t)(struct device_node *);
450
Sebastian Hesselbarth0b151deb2013-05-01 02:58:28 +0200451struct clk_onecell_data {
452 struct clk **clks;
453 unsigned int clk_num;
454};
455
456#define CLK_OF_DECLARE(name, compat, fn) \
457 static const struct of_device_id __clk_of_table_##name \
458 __used __section(__clk_of_table) \
459 = { .compatible = compat, .data = fn };
460
461#ifdef CONFIG_OF
Grant Likely766e6a42012-04-09 14:50:06 -0500462int of_clk_add_provider(struct device_node *np,
463 struct clk *(*clk_src_get)(struct of_phandle_args *args,
464 void *data),
465 void *data);
466void of_clk_del_provider(struct device_node *np);
467struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
468 void *data);
Shawn Guo494bfec2012-08-22 21:36:27 +0800469struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data);
Grant Likely766e6a42012-04-09 14:50:06 -0500470const char *of_clk_get_parent_name(struct device_node *np, int index);
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +0530471
Grant Likely766e6a42012-04-09 14:50:06 -0500472void of_clk_init(const struct of_device_id *matches);
473
Sebastian Hesselbarth0b151deb2013-05-01 02:58:28 +0200474#else /* !CONFIG_OF */
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +0530475
Sebastian Hesselbarth0b151deb2013-05-01 02:58:28 +0200476static inline int of_clk_add_provider(struct device_node *np,
477 struct clk *(*clk_src_get)(struct of_phandle_args *args,
478 void *data),
479 void *data)
480{
481 return 0;
482}
483#define of_clk_del_provider(np) \
484 { while (0); }
485static inline struct clk *of_clk_src_simple_get(
486 struct of_phandle_args *clkspec, void *data)
487{
488 return ERR_PTR(-ENOENT);
489}
490static inline struct clk *of_clk_src_onecell_get(
491 struct of_phandle_args *clkspec, void *data)
492{
493 return ERR_PTR(-ENOENT);
494}
495static inline const char *of_clk_get_parent_name(struct device_node *np,
496 int index)
497{
498 return NULL;
499}
500#define of_clk_init(matches) \
501 { while (0); }
502#endif /* CONFIG_OF */
Mike Turquetteb24764902012-03-15 23:11:19 -0700503#endif /* CONFIG_COMMON_CLK */
504#endif /* CLK_PROVIDER_H */