net/mlx5: Fix use-after-free in self-healing flow
[linux-2.6-block.git] / include / linux / clk-provider.h
CommitLineData
b2476490
MT
1/*
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
aa514ce3 14#include <linux/io.h>
355bb165 15#include <linux/of.h>
eb06d6bb 16#include <linux/of_clk.h>
b2476490
MT
17
18#ifdef CONFIG_COMMON_CLK
19
b2476490
MT
20/*
21 * flags used across common struct clk. these flags should only affect the
22 * top-level framework. custom flags for dealing with hardware specifics
23 * belong in struct clk_foo
a6059ab9
GU
24 *
25 * Please update clk_flags[] in drivers/clk/clk.c when making changes here!
b2476490
MT
26 */
27#define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */
28#define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */
29#define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */
30#define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */
b9610e74 31 /* unused */
f7d8caad 32#define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */
a093bde2 33#define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
819c1de3 34#define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */
5279fc40 35#define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */
d8d91987 36#define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */
2eb8c710 37#define CLK_SET_RATE_UNGATE BIT(10) /* clock needs to run to set rate */
32b9b109 38#define CLK_IS_CRITICAL BIT(11) /* do not gate, ever */
a4b3518d
DA
39/* parents need enable during gate/ungate, set rate and re-parent */
40#define CLK_OPS_PARENT_ENABLE BIT(12)
9fba738a
JB
41/* duty cycle call may be forwarded to the parent clock */
42#define CLK_DUTY_CYCLE_PARENT BIT(13)
b2476490 43
61ae7656 44struct clk;
0197b3ea 45struct clk_hw;
035a61c3 46struct clk_core;
c646cbf1 47struct dentry;
0197b3ea 48
0817b62c
BB
49/**
50 * struct clk_rate_request - Structure encoding the clk constraints that
51 * a clock user might require.
52 *
53 * @rate: Requested clock rate. This field will be adjusted by
54 * clock drivers according to hardware capabilities.
55 * @min_rate: Minimum rate imposed by clk users.
1971dfb7 56 * @max_rate: Maximum rate imposed by clk users.
0817b62c
BB
57 * @best_parent_rate: The best parent rate a parent can provide to fulfill the
58 * requested constraints.
59 * @best_parent_hw: The most appropriate parent clock that fulfills the
60 * requested constraints.
61 *
62 */
63struct clk_rate_request {
64 unsigned long rate;
65 unsigned long min_rate;
66 unsigned long max_rate;
67 unsigned long best_parent_rate;
68 struct clk_hw *best_parent_hw;
69};
70
9fba738a
JB
71/**
72 * struct clk_duty - Struture encoding the duty cycle ratio of a clock
73 *
74 * @num: Numerator of the duty cycle ratio
75 * @den: Denominator of the duty cycle ratio
76 */
77struct clk_duty {
78 unsigned int num;
79 unsigned int den;
80};
81
b2476490
MT
82/**
83 * struct clk_ops - Callback operations for hardware clocks; these are to
84 * be provided by the clock implementation, and will be called by drivers
85 * through the clk_* api.
86 *
87 * @prepare: Prepare the clock for enabling. This must not return until
725b418b
GU
88 * the clock is fully prepared, and it's safe to call clk_enable.
89 * This callback is intended to allow clock implementations to
90 * do any initialisation that may sleep. Called with
91 * prepare_lock held.
b2476490
MT
92 *
93 * @unprepare: Release the clock from its prepared state. This will typically
725b418b
GU
94 * undo any work done in the @prepare callback. Called with
95 * prepare_lock held.
b2476490 96 *
3d6ee287
UH
97 * @is_prepared: Queries the hardware to determine if the clock is prepared.
98 * This function is allowed to sleep. Optional, if this op is not
99 * set then the prepare count will be used.
100 *
3cc8247f
UH
101 * @unprepare_unused: Unprepare the clock atomically. Only called from
102 * clk_disable_unused for prepare clocks with special needs.
103 * Called with prepare mutex held. This function may sleep.
104 *
b2476490 105 * @enable: Enable the clock atomically. This must not return until the
725b418b
GU
106 * clock is generating a valid clock signal, usable by consumer
107 * devices. Called with enable_lock held. This function must not
108 * sleep.
b2476490
MT
109 *
110 * @disable: Disable the clock atomically. Called with enable_lock held.
725b418b 111 * This function must not sleep.
b2476490 112 *
119c7127 113 * @is_enabled: Queries the hardware to determine if the clock is enabled.
725b418b
GU
114 * This function must not sleep. Optional, if this op is not
115 * set then the enable count will be used.
119c7127 116 *
7c045a55
MT
117 * @disable_unused: Disable the clock atomically. Only called from
118 * clk_disable_unused for gate clocks with special needs.
119 * Called with enable_lock held. This function must not
120 * sleep.
121 *
7ce3e8cc 122 * @recalc_rate Recalculate the rate of this clock, by querying hardware. The
725b418b
GU
123 * parent rate is an input parameter. It is up to the caller to
124 * ensure that the prepare_mutex is held across this call.
125 * Returns the calculated rate. Optional, but recommended - if
126 * this op is not set then clock rate will be initialized to 0.
b2476490
MT
127 *
128 * @round_rate: Given a target rate as input, returns the closest rate actually
54e73016
GU
129 * supported by the clock. The parent rate is an input/output
130 * parameter.
b2476490 131 *
71472c0c
JH
132 * @determine_rate: Given a target rate as input, returns the closest rate
133 * actually supported by the clock, and optionally the parent clock
134 * that should be used to provide the clock rate.
135 *
b2476490 136 * @set_parent: Change the input source of this clock; for clocks with multiple
54e73016
GU
137 * possible parents specify a new parent by passing in the index
138 * as a u8 corresponding to the parent in either the .parent_names
139 * or .parents arrays. This function in affect translates an
140 * array index into the value programmed into the hardware.
141 * Returns 0 on success, -EERROR otherwise.
142 *
b2476490 143 * @get_parent: Queries the hardware to determine the parent of a clock. The
725b418b
GU
144 * return value is a u8 which specifies the index corresponding to
145 * the parent clock. This index can be applied to either the
146 * .parent_names or .parents arrays. In short, this function
147 * translates the parent value read from hardware into an array
148 * index. Currently only called when the clock is initialized by
149 * __clk_init. This callback is mandatory for clocks with
150 * multiple parents. It is optional (and unnecessary) for clocks
151 * with 0 or 1 parents.
b2476490 152 *
1c0035d7
SG
153 * @set_rate: Change the rate of this clock. The requested rate is specified
154 * by the second argument, which should typically be the return
155 * of .round_rate call. The third argument gives the parent rate
156 * which is likely helpful for most .set_rate implementation.
157 * Returns 0 on success, -EERROR otherwise.
b2476490 158 *
3fa2252b
SB
159 * @set_rate_and_parent: Change the rate and the parent of this clock. The
160 * requested rate is specified by the second argument, which
161 * should typically be the return of .round_rate call. The
162 * third argument gives the parent rate which is likely helpful
163 * for most .set_rate_and_parent implementation. The fourth
164 * argument gives the parent index. This callback is optional (and
165 * unnecessary) for clocks with 0 or 1 parents as well as
166 * for clocks that can tolerate switching the rate and the parent
167 * separately via calls to .set_parent and .set_rate.
168 * Returns 0 on success, -EERROR otherwise.
169 *
54e73016
GU
170 * @recalc_accuracy: Recalculate the accuracy of this clock. The clock accuracy
171 * is expressed in ppb (parts per billion). The parent accuracy is
172 * an input parameter.
173 * Returns the calculated accuracy. Optional - if this op is not
174 * set then clock accuracy will be initialized to parent accuracy
175 * or 0 (perfect clock) if clock has no parent.
176 *
9824cf73
MR
177 * @get_phase: Queries the hardware to get the current phase of a clock.
178 * Returned values are 0-359 degrees on success, negative
179 * error codes on failure.
180 *
e59c5371
MT
181 * @set_phase: Shift the phase this clock signal in degrees specified
182 * by the second argument. Valid values for degrees are
183 * 0-359. Return 0 on success, otherwise -EERROR.
184 *
9fba738a
JB
185 * @get_duty_cycle: Queries the hardware to get the current duty cycle ratio
186 * of a clock. Returned values denominator cannot be 0 and must be
187 * superior or equal to the numerator.
188 *
189 * @set_duty_cycle: Apply the duty cycle ratio to this clock signal specified by
190 * the numerator (2nd argurment) and denominator (3rd argument).
191 * Argument must be a valid ratio (denominator > 0
192 * and >= numerator) Return 0 on success, otherwise -EERROR.
193 *
54e73016
GU
194 * @init: Perform platform-specific initialization magic.
195 * This is not not used by any of the basic clock types.
196 * Please consider other ways of solving initialization problems
197 * before using this callback, as its use is discouraged.
198 *
c646cbf1
AE
199 * @debug_init: Set up type-specific debugfs entries for this clock. This
200 * is called once, after the debugfs directory entry for this
201 * clock has been created. The dentry pointer representing that
202 * directory is provided as an argument. Called with
203 * prepare_lock held. Returns 0 on success, -EERROR otherwise.
204 *
3fa2252b 205 *
b2476490
MT
206 * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow
207 * implementations to split any work between atomic (enable) and sleepable
208 * (prepare) contexts. If enabling a clock requires code that might sleep,
209 * this must be done in clk_prepare. Clock enable code that will never be
7ce3e8cc 210 * called in a sleepable context may be implemented in clk_enable.
b2476490
MT
211 *
212 * Typically, drivers will call clk_prepare when a clock may be needed later
213 * (eg. when a device is opened), and clk_enable when the clock is actually
214 * required (eg. from an interrupt). Note that clk_prepare MUST have been
215 * called before clk_enable.
216 */
217struct clk_ops {
218 int (*prepare)(struct clk_hw *hw);
219 void (*unprepare)(struct clk_hw *hw);
3d6ee287 220 int (*is_prepared)(struct clk_hw *hw);
3cc8247f 221 void (*unprepare_unused)(struct clk_hw *hw);
b2476490
MT
222 int (*enable)(struct clk_hw *hw);
223 void (*disable)(struct clk_hw *hw);
224 int (*is_enabled)(struct clk_hw *hw);
7c045a55 225 void (*disable_unused)(struct clk_hw *hw);
b2476490
MT
226 unsigned long (*recalc_rate)(struct clk_hw *hw,
227 unsigned long parent_rate);
54e73016
GU
228 long (*round_rate)(struct clk_hw *hw, unsigned long rate,
229 unsigned long *parent_rate);
0817b62c
BB
230 int (*determine_rate)(struct clk_hw *hw,
231 struct clk_rate_request *req);
b2476490
MT
232 int (*set_parent)(struct clk_hw *hw, u8 index);
233 u8 (*get_parent)(struct clk_hw *hw);
54e73016
GU
234 int (*set_rate)(struct clk_hw *hw, unsigned long rate,
235 unsigned long parent_rate);
3fa2252b
SB
236 int (*set_rate_and_parent)(struct clk_hw *hw,
237 unsigned long rate,
238 unsigned long parent_rate, u8 index);
5279fc40
BB
239 unsigned long (*recalc_accuracy)(struct clk_hw *hw,
240 unsigned long parent_accuracy);
9824cf73 241 int (*get_phase)(struct clk_hw *hw);
e59c5371 242 int (*set_phase)(struct clk_hw *hw, int degrees);
9fba738a
JB
243 int (*get_duty_cycle)(struct clk_hw *hw,
244 struct clk_duty *duty);
245 int (*set_duty_cycle)(struct clk_hw *hw,
246 struct clk_duty *duty);
b2476490 247 void (*init)(struct clk_hw *hw);
d75d50c0 248 void (*debug_init)(struct clk_hw *hw, struct dentry *dentry);
b2476490
MT
249};
250
0197b3ea
SK
251/**
252 * struct clk_init_data - holds init data that's common to all clocks and is
253 * shared between the clock provider and the common clock framework.
254 *
255 * @name: clock name
256 * @ops: operations this clock supports
257 * @parent_names: array of string names for all possible parents
258 * @num_parents: number of possible parents
259 * @flags: framework-level hints and quirks
260 */
261struct clk_init_data {
262 const char *name;
263 const struct clk_ops *ops;
2893c379 264 const char * const *parent_names;
0197b3ea
SK
265 u8 num_parents;
266 unsigned long flags;
267};
268
269/**
270 * struct clk_hw - handle for traversing from a struct clk to its corresponding
271 * hardware-specific structure. struct clk_hw should be declared within struct
272 * clk_foo and then referenced by the struct clk instance that uses struct
273 * clk_foo's clk_ops
274 *
035a61c3
TV
275 * @core: pointer to the struct clk_core instance that points back to this
276 * struct clk_hw instance
277 *
278 * @clk: pointer to the per-user struct clk instance that can be used to call
279 * into the clk API
0197b3ea
SK
280 *
281 * @init: pointer to struct clk_init_data that contains the init data shared
282 * with the common clock framework.
283 */
284struct clk_hw {
035a61c3 285 struct clk_core *core;
0197b3ea 286 struct clk *clk;
dc4cd941 287 const struct clk_init_data *init;
0197b3ea
SK
288};
289
9d9f78ed
MT
290/*
291 * DOC: Basic clock implementations common to many platforms
292 *
293 * Each basic clock hardware type is comprised of a structure describing the
294 * clock hardware, implementations of the relevant callbacks in struct clk_ops,
295 * unique flags for that hardware type, a registration function and an
296 * alternative macro for static initialization
297 */
298
299/**
300 * struct clk_fixed_rate - fixed-rate clock
301 * @hw: handle between common and hardware-specific interfaces
302 * @fixed_rate: constant frequency of clock
303 */
304struct clk_fixed_rate {
305 struct clk_hw hw;
306 unsigned long fixed_rate;
0903ea60 307 unsigned long fixed_accuracy;
9d9f78ed
MT
308 u8 flags;
309};
310
5fd9c05c
GT
311#define to_clk_fixed_rate(_hw) container_of(_hw, struct clk_fixed_rate, hw)
312
bffad66e 313extern const struct clk_ops clk_fixed_rate_ops;
9d9f78ed
MT
314struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
315 const char *parent_name, unsigned long flags,
316 unsigned long fixed_rate);
26ef56be
SB
317struct clk_hw *clk_hw_register_fixed_rate(struct device *dev, const char *name,
318 const char *parent_name, unsigned long flags,
319 unsigned long fixed_rate);
0903ea60
BB
320struct clk *clk_register_fixed_rate_with_accuracy(struct device *dev,
321 const char *name, const char *parent_name, unsigned long flags,
322 unsigned long fixed_rate, unsigned long fixed_accuracy);
0b225e41 323void clk_unregister_fixed_rate(struct clk *clk);
26ef56be
SB
324struct clk_hw *clk_hw_register_fixed_rate_with_accuracy(struct device *dev,
325 const char *name, const char *parent_name, unsigned long flags,
326 unsigned long fixed_rate, unsigned long fixed_accuracy);
52445637 327void clk_hw_unregister_fixed_rate(struct clk_hw *hw);
26ef56be 328
015ba402
GL
329void of_fixed_clk_setup(struct device_node *np);
330
9d9f78ed
MT
331/**
332 * struct clk_gate - gating clock
333 *
334 * @hw: handle between common and hardware-specific interfaces
335 * @reg: register controlling gate
336 * @bit_idx: single bit controlling gate
337 * @flags: hardware-specific flags
338 * @lock: register lock
339 *
340 * Clock which can gate its output. Implements .enable & .disable
341 *
342 * Flags:
1f73f31a 343 * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to
725b418b
GU
344 * enable the clock. Setting this flag does the opposite: setting the bit
345 * disable the clock and clearing it enables the clock
04577994 346 * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit
725b418b
GU
347 * of this register, and mask of gate bits are in higher 16-bit of this
348 * register. While setting the gate bits, higher 16-bit should also be
349 * updated to indicate changing gate bits.
9d9f78ed
MT
350 */
351struct clk_gate {
352 struct clk_hw hw;
353 void __iomem *reg;
354 u8 bit_idx;
355 u8 flags;
356 spinlock_t *lock;
9d9f78ed
MT
357};
358
5fd9c05c
GT
359#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
360
9d9f78ed 361#define CLK_GATE_SET_TO_DISABLE BIT(0)
04577994 362#define CLK_GATE_HIWORD_MASK BIT(1)
9d9f78ed 363
bffad66e 364extern const struct clk_ops clk_gate_ops;
9d9f78ed
MT
365struct clk *clk_register_gate(struct device *dev, const char *name,
366 const char *parent_name, unsigned long flags,
367 void __iomem *reg, u8 bit_idx,
368 u8 clk_gate_flags, spinlock_t *lock);
e270d8cb
SB
369struct clk_hw *clk_hw_register_gate(struct device *dev, const char *name,
370 const char *parent_name, unsigned long flags,
371 void __iomem *reg, u8 bit_idx,
372 u8 clk_gate_flags, spinlock_t *lock);
4e3c021f 373void clk_unregister_gate(struct clk *clk);
e270d8cb 374void clk_hw_unregister_gate(struct clk_hw *hw);
0a9c869d 375int clk_gate_is_enabled(struct clk_hw *hw);
9d9f78ed 376
357c3f0a
RN
377struct clk_div_table {
378 unsigned int val;
379 unsigned int div;
380};
381
9d9f78ed
MT
382/**
383 * struct clk_divider - adjustable divider clock
384 *
385 * @hw: handle between common and hardware-specific interfaces
386 * @reg: register containing the divider
387 * @shift: shift to the divider bit field
388 * @width: width of the divider bit field
357c3f0a 389 * @table: array of value/divider pairs, last entry should have div = 0
9d9f78ed
MT
390 * @lock: register lock
391 *
392 * Clock with an adjustable divider affecting its output frequency. Implements
393 * .recalc_rate, .set_rate and .round_rate
394 *
395 * Flags:
396 * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the
725b418b
GU
397 * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is
398 * the raw value read from the register, with the value of zero considered
056b2053 399 * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set.
9d9f78ed 400 * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from
725b418b 401 * the hardware register
056b2053
SB
402 * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have
403 * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor.
404 * Some hardware implementations gracefully handle this case and allow a
405 * zero divisor by not modifying their input clock
406 * (divide by one / bypass).
d57dfe75 407 * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit
725b418b
GU
408 * of this register, and mask of divider bits are in higher 16-bit of this
409 * register. While setting the divider bits, higher 16-bit should also be
410 * updated to indicate changing divider bits.
774b5143
MC
411 * CLK_DIVIDER_ROUND_CLOSEST - Makes the best calculated divider to be rounded
412 * to the closest integer instead of the up one.
79c6ab50
HS
413 * CLK_DIVIDER_READ_ONLY - The divider settings are preconfigured and should
414 * not be changed by the clock framework.
afe76c8f
JQ
415 * CLK_DIVIDER_MAX_AT_ZERO - For dividers which are like CLK_DIVIDER_ONE_BASED
416 * except when the value read from the register is zero, the divisor is
417 * 2^width of the field.
9d9f78ed
MT
418 */
419struct clk_divider {
420 struct clk_hw hw;
421 void __iomem *reg;
422 u8 shift;
423 u8 width;
424 u8 flags;
357c3f0a 425 const struct clk_div_table *table;
9d9f78ed 426 spinlock_t *lock;
9d9f78ed
MT
427};
428
e6d3cc7b 429#define clk_div_mask(width) ((1 << (width)) - 1)
5fd9c05c
GT
430#define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
431
9d9f78ed
MT
432#define CLK_DIVIDER_ONE_BASED BIT(0)
433#define CLK_DIVIDER_POWER_OF_TWO BIT(1)
056b2053 434#define CLK_DIVIDER_ALLOW_ZERO BIT(2)
d57dfe75 435#define CLK_DIVIDER_HIWORD_MASK BIT(3)
774b5143 436#define CLK_DIVIDER_ROUND_CLOSEST BIT(4)
79c6ab50 437#define CLK_DIVIDER_READ_ONLY BIT(5)
afe76c8f 438#define CLK_DIVIDER_MAX_AT_ZERO BIT(6)
9d9f78ed 439
bffad66e 440extern const struct clk_ops clk_divider_ops;
50359819 441extern const struct clk_ops clk_divider_ro_ops;
bca9690b
SB
442
443unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
444 unsigned int val, const struct clk_div_table *table,
12a26c29 445 unsigned long flags, unsigned long width);
22833a91
MR
446long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
447 unsigned long rate, unsigned long *prate,
448 const struct clk_div_table *table,
449 u8 width, unsigned long flags);
b15ee490
JB
450long divider_ro_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
451 unsigned long rate, unsigned long *prate,
452 const struct clk_div_table *table, u8 width,
453 unsigned long flags, unsigned int val);
bca9690b
SB
454int divider_get_val(unsigned long rate, unsigned long parent_rate,
455 const struct clk_div_table *table, u8 width,
456 unsigned long flags);
457
9d9f78ed
MT
458struct clk *clk_register_divider(struct device *dev, const char *name,
459 const char *parent_name, unsigned long flags,
460 void __iomem *reg, u8 shift, u8 width,
461 u8 clk_divider_flags, spinlock_t *lock);
eb7d264f
SB
462struct clk_hw *clk_hw_register_divider(struct device *dev, const char *name,
463 const char *parent_name, unsigned long flags,
464 void __iomem *reg, u8 shift, u8 width,
465 u8 clk_divider_flags, spinlock_t *lock);
357c3f0a
RN
466struct clk *clk_register_divider_table(struct device *dev, const char *name,
467 const char *parent_name, unsigned long flags,
468 void __iomem *reg, u8 shift, u8 width,
469 u8 clk_divider_flags, const struct clk_div_table *table,
470 spinlock_t *lock);
eb7d264f
SB
471struct clk_hw *clk_hw_register_divider_table(struct device *dev,
472 const char *name, const char *parent_name, unsigned long flags,
473 void __iomem *reg, u8 shift, u8 width,
474 u8 clk_divider_flags, const struct clk_div_table *table,
475 spinlock_t *lock);
4e3c021f 476void clk_unregister_divider(struct clk *clk);
eb7d264f 477void clk_hw_unregister_divider(struct clk_hw *hw);
9d9f78ed
MT
478
479/**
480 * struct clk_mux - multiplexer clock
481 *
482 * @hw: handle between common and hardware-specific interfaces
483 * @reg: register controlling multiplexer
fe3f338f 484 * @table: array of register values corresponding to the parent index
9d9f78ed 485 * @shift: shift to multiplexer bit field
fe3f338f 486 * @mask: mask of mutliplexer bit field
3566d40c 487 * @flags: hardware-specific flags
9d9f78ed
MT
488 * @lock: register lock
489 *
490 * Clock with multiple selectable parents. Implements .get_parent, .set_parent
491 * and .recalc_rate
492 *
493 * Flags:
494 * CLK_MUX_INDEX_ONE - register index starts at 1, not 0
1f73f31a 495 * CLK_MUX_INDEX_BIT - register index is a single bit (power of two)
ba492e90 496 * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this
725b418b
GU
497 * register, and mask of mux bits are in higher 16-bit of this register.
498 * While setting the mux bits, higher 16-bit should also be updated to
499 * indicate changing mux bits.
15a02c1f
SB
500 * CLK_MUX_ROUND_CLOSEST - Use the parent rate that is closest to the desired
501 * frequency.
9d9f78ed
MT
502 */
503struct clk_mux {
504 struct clk_hw hw;
505 void __iomem *reg;
ce4f3313
PDS
506 u32 *table;
507 u32 mask;
9d9f78ed 508 u8 shift;
9d9f78ed
MT
509 u8 flags;
510 spinlock_t *lock;
511};
512
5fd9c05c
GT
513#define to_clk_mux(_hw) container_of(_hw, struct clk_mux, hw)
514
9d9f78ed
MT
515#define CLK_MUX_INDEX_ONE BIT(0)
516#define CLK_MUX_INDEX_BIT BIT(1)
ba492e90 517#define CLK_MUX_HIWORD_MASK BIT(2)
15a02c1f
SB
518#define CLK_MUX_READ_ONLY BIT(3) /* mux can't be changed */
519#define CLK_MUX_ROUND_CLOSEST BIT(4)
9d9f78ed 520
bffad66e 521extern const struct clk_ops clk_mux_ops;
c57acd14 522extern const struct clk_ops clk_mux_ro_ops;
ce4f3313 523
9d9f78ed 524struct clk *clk_register_mux(struct device *dev, const char *name,
2893c379
SH
525 const char * const *parent_names, u8 num_parents,
526 unsigned long flags,
9d9f78ed
MT
527 void __iomem *reg, u8 shift, u8 width,
528 u8 clk_mux_flags, spinlock_t *lock);
264b3171
SB
529struct clk_hw *clk_hw_register_mux(struct device *dev, const char *name,
530 const char * const *parent_names, u8 num_parents,
531 unsigned long flags,
532 void __iomem *reg, u8 shift, u8 width,
533 u8 clk_mux_flags, spinlock_t *lock);
b2476490 534
ce4f3313 535struct clk *clk_register_mux_table(struct device *dev, const char *name,
2893c379
SH
536 const char * const *parent_names, u8 num_parents,
537 unsigned long flags,
ce4f3313
PDS
538 void __iomem *reg, u8 shift, u32 mask,
539 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
264b3171
SB
540struct clk_hw *clk_hw_register_mux_table(struct device *dev, const char *name,
541 const char * const *parent_names, u8 num_parents,
542 unsigned long flags,
543 void __iomem *reg, u8 shift, u32 mask,
544 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
ce4f3313 545
77deb66d
JB
546int clk_mux_val_to_index(struct clk_hw *hw, u32 *table, unsigned int flags,
547 unsigned int val);
548unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index);
549
4e3c021f 550void clk_unregister_mux(struct clk *clk);
264b3171 551void clk_hw_unregister_mux(struct clk_hw *hw);
4e3c021f 552
79b16641
GC
553void of_fixed_factor_clk_setup(struct device_node *node);
554
f0948f59
SH
555/**
556 * struct clk_fixed_factor - fixed multiplier and divider clock
557 *
558 * @hw: handle between common and hardware-specific interfaces
559 * @mult: multiplier
560 * @div: divider
561 *
562 * Clock with a fixed multiplier and divider. The output frequency is the
563 * parent clock rate divided by div and multiplied by mult.
564 * Implements .recalc_rate, .set_rate and .round_rate
565 */
566
567struct clk_fixed_factor {
568 struct clk_hw hw;
569 unsigned int mult;
570 unsigned int div;
571};
572
5fd9c05c
GT
573#define to_clk_fixed_factor(_hw) container_of(_hw, struct clk_fixed_factor, hw)
574
3037e9ea 575extern const struct clk_ops clk_fixed_factor_ops;
f0948f59
SH
576struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
577 const char *parent_name, unsigned long flags,
578 unsigned int mult, unsigned int div);
cbf9591f 579void clk_unregister_fixed_factor(struct clk *clk);
0759ac8a
SB
580struct clk_hw *clk_hw_register_fixed_factor(struct device *dev,
581 const char *name, const char *parent_name, unsigned long flags,
582 unsigned int mult, unsigned int div);
583void clk_hw_unregister_fixed_factor(struct clk_hw *hw);
f0948f59 584
e2d0e90f
HK
585/**
586 * struct clk_fractional_divider - adjustable fractional divider clock
587 *
588 * @hw: handle between common and hardware-specific interfaces
589 * @reg: register containing the divider
590 * @mshift: shift to the numerator bit field
591 * @mwidth: width of the numerator bit field
592 * @nshift: shift to the denominator bit field
593 * @nwidth: width of the denominator bit field
594 * @lock: register lock
595 *
596 * Clock with adjustable fractional divider affecting its output frequency.
597 */
e2d0e90f
HK
598struct clk_fractional_divider {
599 struct clk_hw hw;
600 void __iomem *reg;
601 u8 mshift;
934e2536 602 u8 mwidth;
e2d0e90f
HK
603 u32 mmask;
604 u8 nshift;
934e2536 605 u8 nwidth;
e2d0e90f
HK
606 u32 nmask;
607 u8 flags;
ec52e462
EZ
608 void (*approximation)(struct clk_hw *hw,
609 unsigned long rate, unsigned long *parent_rate,
610 unsigned long *m, unsigned long *n);
e2d0e90f
HK
611 spinlock_t *lock;
612};
613
5fd9c05c
GT
614#define to_clk_fd(_hw) container_of(_hw, struct clk_fractional_divider, hw)
615
e2d0e90f
HK
616extern const struct clk_ops clk_fractional_divider_ops;
617struct clk *clk_register_fractional_divider(struct device *dev,
618 const char *name, const char *parent_name, unsigned long flags,
619 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
620 u8 clk_divider_flags, spinlock_t *lock);
39b44cff
SB
621struct clk_hw *clk_hw_register_fractional_divider(struct device *dev,
622 const char *name, const char *parent_name, unsigned long flags,
623 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
624 u8 clk_divider_flags, spinlock_t *lock);
625void clk_hw_unregister_fractional_divider(struct clk_hw *hw);
e2d0e90f 626
f2e0a532
MR
627/**
628 * struct clk_multiplier - adjustable multiplier clock
629 *
630 * @hw: handle between common and hardware-specific interfaces
631 * @reg: register containing the multiplier
632 * @shift: shift to the multiplier bit field
633 * @width: width of the multiplier bit field
634 * @lock: register lock
635 *
636 * Clock with an adjustable multiplier affecting its output frequency.
637 * Implements .recalc_rate, .set_rate and .round_rate
638 *
639 * Flags:
640 * CLK_MULTIPLIER_ZERO_BYPASS - By default, the multiplier is the value read
641 * from the register, with 0 being a valid value effectively
642 * zeroing the output clock rate. If CLK_MULTIPLIER_ZERO_BYPASS is
643 * set, then a null multiplier will be considered as a bypass,
644 * leaving the parent rate unmodified.
645 * CLK_MULTIPLIER_ROUND_CLOSEST - Makes the best calculated divider to be
646 * rounded to the closest integer instead of the down one.
647 */
648struct clk_multiplier {
649 struct clk_hw hw;
650 void __iomem *reg;
651 u8 shift;
652 u8 width;
653 u8 flags;
654 spinlock_t *lock;
655};
656
5fd9c05c
GT
657#define to_clk_multiplier(_hw) container_of(_hw, struct clk_multiplier, hw)
658
f2e0a532
MR
659#define CLK_MULTIPLIER_ZERO_BYPASS BIT(0)
660#define CLK_MULTIPLIER_ROUND_CLOSEST BIT(1)
661
662extern const struct clk_ops clk_multiplier_ops;
663
ece70094
PG
664/***
665 * struct clk_composite - aggregate clock of mux, divider and gate clocks
666 *
667 * @hw: handle between common and hardware-specific interfaces
d3a1c7be
MT
668 * @mux_hw: handle between composite and hardware-specific mux clock
669 * @rate_hw: handle between composite and hardware-specific rate clock
670 * @gate_hw: handle between composite and hardware-specific gate clock
ece70094 671 * @mux_ops: clock ops for mux
d3a1c7be 672 * @rate_ops: clock ops for rate
ece70094
PG
673 * @gate_ops: clock ops for gate
674 */
675struct clk_composite {
676 struct clk_hw hw;
677 struct clk_ops ops;
678
679 struct clk_hw *mux_hw;
d3a1c7be 680 struct clk_hw *rate_hw;
ece70094
PG
681 struct clk_hw *gate_hw;
682
683 const struct clk_ops *mux_ops;
d3a1c7be 684 const struct clk_ops *rate_ops;
ece70094
PG
685 const struct clk_ops *gate_ops;
686};
687
5fd9c05c
GT
688#define to_clk_composite(_hw) container_of(_hw, struct clk_composite, hw)
689
ece70094 690struct clk *clk_register_composite(struct device *dev, const char *name,
2893c379 691 const char * const *parent_names, int num_parents,
ece70094 692 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
d3a1c7be 693 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
ece70094
PG
694 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
695 unsigned long flags);
92a39d90 696void clk_unregister_composite(struct clk *clk);
49cb392d
SB
697struct clk_hw *clk_hw_register_composite(struct device *dev, const char *name,
698 const char * const *parent_names, int num_parents,
699 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
700 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
701 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
702 unsigned long flags);
703void clk_hw_unregister_composite(struct clk_hw *hw);
ece70094 704
c873d14d
JS
705/***
706 * struct clk_gpio_gate - gpio gated clock
707 *
708 * @hw: handle between common and hardware-specific interfaces
709 * @gpiod: gpio descriptor
710 *
711 * Clock with a gpio control for enabling and disabling the parent clock.
712 * Implements .enable, .disable and .is_enabled
713 */
714
715struct clk_gpio {
716 struct clk_hw hw;
717 struct gpio_desc *gpiod;
718};
719
5fd9c05c
GT
720#define to_clk_gpio(_hw) container_of(_hw, struct clk_gpio, hw)
721
c873d14d
JS
722extern const struct clk_ops clk_gpio_gate_ops;
723struct clk *clk_register_gpio_gate(struct device *dev, const char *name,
908a543a 724 const char *parent_name, struct gpio_desc *gpiod,
c873d14d 725 unsigned long flags);
b120743a 726struct clk_hw *clk_hw_register_gpio_gate(struct device *dev, const char *name,
908a543a 727 const char *parent_name, struct gpio_desc *gpiod,
b120743a
SB
728 unsigned long flags);
729void clk_hw_unregister_gpio_gate(struct clk_hw *hw);
c873d14d 730
80eeb1f0
SS
731/**
732 * struct clk_gpio_mux - gpio controlled clock multiplexer
733 *
734 * @hw: see struct clk_gpio
735 * @gpiod: gpio descriptor to select the parent of this clock multiplexer
736 *
737 * Clock with a gpio control for selecting the parent clock.
738 * Implements .get_parent, .set_parent and .determine_rate
739 */
740
741extern const struct clk_ops clk_gpio_mux_ops;
742struct clk *clk_register_gpio_mux(struct device *dev, const char *name,
908a543a
LW
743 const char * const *parent_names, u8 num_parents, struct gpio_desc *gpiod,
744 unsigned long flags);
b120743a 745struct clk_hw *clk_hw_register_gpio_mux(struct device *dev, const char *name,
908a543a
LW
746 const char * const *parent_names, u8 num_parents, struct gpio_desc *gpiod,
747 unsigned long flags);
b120743a 748void clk_hw_unregister_gpio_mux(struct clk_hw *hw);
80eeb1f0 749
b2476490
MT
750/**
751 * clk_register - allocate a new clock, register it and return an opaque cookie
752 * @dev: device that is registering this clock
b2476490 753 * @hw: link to hardware-specific clock data
b2476490
MT
754 *
755 * clk_register is the primary interface for populating the clock tree with new
756 * clock nodes. It returns a pointer to the newly allocated struct clk which
757 * cannot be dereferenced by driver code but may be used in conjuction with the
d1302a36
MT
758 * rest of the clock API. In the event of an error clk_register will return an
759 * error code; drivers must test for an error code after calling clk_register.
b2476490 760 */
0197b3ea 761struct clk *clk_register(struct device *dev, struct clk_hw *hw);
46c8773a 762struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw);
b2476490 763
4143804c
SB
764int __must_check clk_hw_register(struct device *dev, struct clk_hw *hw);
765int __must_check devm_clk_hw_register(struct device *dev, struct clk_hw *hw);
766
1df5c939 767void clk_unregister(struct clk *clk);
46c8773a 768void devm_clk_unregister(struct device *dev, struct clk *clk);
1df5c939 769
4143804c
SB
770void clk_hw_unregister(struct clk_hw *hw);
771void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw);
772
b2476490 773/* helper functions */
b76281cb 774const char *__clk_get_name(const struct clk *clk);
e7df6f6e 775const char *clk_hw_get_name(const struct clk_hw *hw);
b2476490 776struct clk_hw *__clk_get_hw(struct clk *clk);
e7df6f6e
SB
777unsigned int clk_hw_get_num_parents(const struct clk_hw *hw);
778struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw);
779struct clk_hw *clk_hw_get_parent_by_index(const struct clk_hw *hw,
1a9c069c 780 unsigned int index);
93874681 781unsigned int __clk_get_enable_count(struct clk *clk);
e7df6f6e 782unsigned long clk_hw_get_rate(const struct clk_hw *hw);
b2476490 783unsigned long __clk_get_flags(struct clk *clk);
e7df6f6e
SB
784unsigned long clk_hw_get_flags(const struct clk_hw *hw);
785bool clk_hw_is_prepared(const struct clk_hw *hw);
e55a839a 786bool clk_hw_rate_is_protected(const struct clk_hw *hw);
be68bf88 787bool clk_hw_is_enabled(const struct clk_hw *hw);
2ac6b1f5 788bool __clk_is_enabled(struct clk *clk);
b2476490 789struct clk *__clk_lookup(const char *name);
0817b62c
BB
790int __clk_mux_determine_rate(struct clk_hw *hw,
791 struct clk_rate_request *req);
792int __clk_determine_rate(struct clk_hw *core, struct clk_rate_request *req);
793int __clk_mux_determine_rate_closest(struct clk_hw *hw,
794 struct clk_rate_request *req);
4ad69b80
JB
795int clk_mux_determine_rate_flags(struct clk_hw *hw,
796 struct clk_rate_request *req,
797 unsigned long flags);
42c86547 798void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent);
9783c0d9
SB
799void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
800 unsigned long max_rate);
b2476490 801
2e65d8bf
JMC
802static inline void __clk_hw_set_clk(struct clk_hw *dst, struct clk_hw *src)
803{
804 dst->clk = src->clk;
805 dst->core = src->core;
806}
807
22833a91
MR
808static inline long divider_round_rate(struct clk_hw *hw, unsigned long rate,
809 unsigned long *prate,
810 const struct clk_div_table *table,
811 u8 width, unsigned long flags)
812{
813 return divider_round_rate_parent(hw, clk_hw_get_parent(hw),
814 rate, prate, table, width, flags);
815}
816
b15ee490
JB
817static inline long divider_ro_round_rate(struct clk_hw *hw, unsigned long rate,
818 unsigned long *prate,
819 const struct clk_div_table *table,
820 u8 width, unsigned long flags,
821 unsigned int val)
822{
823 return divider_ro_round_rate_parent(hw, clk_hw_get_parent(hw),
824 rate, prate, table, width, flags,
825 val);
826}
827
b2476490
MT
828/*
829 * FIXME clock api without lock protection
830 */
1a9c069c 831unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate);
b2476490 832
766e6a4e
GL
833struct of_device_id;
834
0b151deb
SH
835struct clk_onecell_data {
836 struct clk **clks;
837 unsigned int clk_num;
838};
839
0861e5b8 840struct clk_hw_onecell_data {
5963f19c 841 unsigned int num;
0861e5b8
SB
842 struct clk_hw *hws[];
843};
844
819b4861
TK
845extern struct of_device_id __clk_of_table;
846
54196ccb 847#define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn)
0b151deb 848
c7296c51
RRD
849/*
850 * Use this macro when you have a driver that requires two initialization
851 * routines, one at of_clk_init(), and one at platform device probe
852 */
853#define CLK_OF_DECLARE_DRIVER(name, compat, fn) \
339e1e54 854 static void __init name##_of_clk_init_driver(struct device_node *np) \
c7296c51
RRD
855 { \
856 of_node_clear_flag(np, OF_POPULATED); \
857 fn(np); \
858 } \
859 OF_DECLARE_1(clk, name, compat, name##_of_clk_init_driver)
860
1ded879e
CZ
861#define CLK_HW_INIT(_name, _parent, _ops, _flags) \
862 (&(struct clk_init_data) { \
863 .flags = _flags, \
864 .name = _name, \
865 .parent_names = (const char *[]) { _parent }, \
866 .num_parents = 1, \
867 .ops = _ops, \
868 })
869
870#define CLK_HW_INIT_PARENTS(_name, _parents, _ops, _flags) \
871 (&(struct clk_init_data) { \
872 .flags = _flags, \
873 .name = _name, \
874 .parent_names = _parents, \
875 .num_parents = ARRAY_SIZE(_parents), \
876 .ops = _ops, \
877 })
878
879#define CLK_HW_INIT_NO_PARENT(_name, _ops, _flags) \
880 (&(struct clk_init_data) { \
881 .flags = _flags, \
882 .name = _name, \
883 .parent_names = NULL, \
884 .num_parents = 0, \
885 .ops = _ops, \
886 })
887
888#define CLK_FIXED_FACTOR(_struct, _name, _parent, \
889 _div, _mult, _flags) \
890 struct clk_fixed_factor _struct = { \
891 .div = _div, \
892 .mult = _mult, \
893 .hw.init = CLK_HW_INIT(_name, \
894 _parent, \
895 &clk_fixed_factor_ops, \
896 _flags), \
897 }
898
0b151deb 899#ifdef CONFIG_OF
766e6a4e
GL
900int of_clk_add_provider(struct device_node *np,
901 struct clk *(*clk_src_get)(struct of_phandle_args *args,
902 void *data),
903 void *data);
0861e5b8
SB
904int of_clk_add_hw_provider(struct device_node *np,
905 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
906 void *data),
907 void *data);
aa795c41
SB
908int devm_of_clk_add_hw_provider(struct device *dev,
909 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
910 void *data),
911 void *data);
766e6a4e 912void of_clk_del_provider(struct device_node *np);
aa795c41 913void devm_of_clk_del_provider(struct device *dev);
766e6a4e
GL
914struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
915 void *data);
0861e5b8
SB
916struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec,
917 void *data);
494bfec9 918struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data);
0861e5b8
SB
919struct clk_hw *of_clk_hw_onecell_get(struct of_phandle_args *clkspec,
920 void *data);
2e61dfb3
DN
921int of_clk_parent_fill(struct device_node *np, const char **parents,
922 unsigned int size);
d56f8994
LJ
923int of_clk_detect_critical(struct device_node *np, int index,
924 unsigned long *flags);
766e6a4e 925
0b151deb 926#else /* !CONFIG_OF */
f2f6c255 927
0b151deb
SH
928static inline int of_clk_add_provider(struct device_node *np,
929 struct clk *(*clk_src_get)(struct of_phandle_args *args,
930 void *data),
931 void *data)
932{
933 return 0;
934}
0861e5b8
SB
935static inline int of_clk_add_hw_provider(struct device_node *np,
936 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
937 void *data),
938 void *data)
939{
940 return 0;
941}
aa795c41
SB
942static inline int devm_of_clk_add_hw_provider(struct device *dev,
943 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
944 void *data),
945 void *data)
946{
947 return 0;
948}
20dd882a 949static inline void of_clk_del_provider(struct device_node *np) {}
aa795c41 950static inline void devm_of_clk_del_provider(struct device *dev) {}
0b151deb
SH
951static inline struct clk *of_clk_src_simple_get(
952 struct of_phandle_args *clkspec, void *data)
953{
954 return ERR_PTR(-ENOENT);
955}
0861e5b8
SB
956static inline struct clk_hw *
957of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
958{
959 return ERR_PTR(-ENOENT);
960}
0b151deb
SH
961static inline struct clk *of_clk_src_onecell_get(
962 struct of_phandle_args *clkspec, void *data)
963{
964 return ERR_PTR(-ENOENT);
965}
0861e5b8
SB
966static inline struct clk_hw *
967of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
968{
969 return ERR_PTR(-ENOENT);
970}
679c51cf
SB
971static inline int of_clk_parent_fill(struct device_node *np,
972 const char **parents, unsigned int size)
973{
974 return 0;
975}
d56f8994
LJ
976static inline int of_clk_detect_critical(struct device_node *np, int index,
977 unsigned long *flags)
978{
979 return 0;
980}
0b151deb 981#endif /* CONFIG_OF */
aa514ce3
GS
982
983/*
984 * wrap access to peripherals in accessor routines
985 * for improved portability across platforms
986 */
987
6d8cdb68
GS
988#if IS_ENABLED(CONFIG_PPC)
989
990static inline u32 clk_readl(u32 __iomem *reg)
991{
992 return ioread32be(reg);
993}
994
995static inline void clk_writel(u32 val, u32 __iomem *reg)
996{
997 iowrite32be(val, reg);
998}
999
1000#else /* platform dependent I/O accessors */
1001
aa514ce3
GS
1002static inline u32 clk_readl(u32 __iomem *reg)
1003{
1004 return readl(reg);
1005}
1006
1007static inline void clk_writel(u32 val, u32 __iomem *reg)
1008{
1009 writel(val, reg);
1010}
1011
6d8cdb68
GS
1012#endif /* platform dependent I/O accessors */
1013
b2476490
MT
1014#endif /* CONFIG_COMMON_CLK */
1015#endif /* CLK_PROVIDER_H */