1 /* SPDX-License-Identifier: GPL-2.0 */
6 #ifndef __LINUX_CLK_PROVIDER_H
7 #define __LINUX_CLK_PROVIDER_H
10 #include <linux/of_clk.h>
13 * flags used across common struct clk. these flags should only affect the
14 * top-level framework. custom flags for dealing with hardware specifics
15 * belong in struct clk_foo
17 * Please update clk_flags[] in drivers/clk/clk.c when making changes here!
19 #define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */
20 #define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */
21 #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */
22 #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */
25 #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
26 #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */
27 #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */
28 #define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */
29 #define CLK_SET_RATE_UNGATE BIT(10) /* clock needs to run to set rate */
30 #define CLK_IS_CRITICAL BIT(11) /* do not gate, ever */
31 /* parents need enable during gate/ungate, set rate and re-parent */
32 #define CLK_OPS_PARENT_ENABLE BIT(12)
33 /* duty cycle call may be forwarded to the parent clock */
34 #define CLK_DUTY_CYCLE_PARENT BIT(13)
42 * struct clk_rate_request - Structure encoding the clk constraints that
43 * a clock user might require.
45 * @rate: Requested clock rate. This field will be adjusted by
46 * clock drivers according to hardware capabilities.
47 * @min_rate: Minimum rate imposed by clk users.
48 * @max_rate: Maximum rate imposed by clk users.
49 * @best_parent_rate: The best parent rate a parent can provide to fulfill the
50 * requested constraints.
51 * @best_parent_hw: The most appropriate parent clock that fulfills the
52 * requested constraints.
55 struct clk_rate_request {
57 unsigned long min_rate;
58 unsigned long max_rate;
59 unsigned long best_parent_rate;
60 struct clk_hw *best_parent_hw;
64 * struct clk_duty - Struture encoding the duty cycle ratio of a clock
66 * @num: Numerator of the duty cycle ratio
67 * @den: Denominator of the duty cycle ratio
75 * struct clk_ops - Callback operations for hardware clocks; these are to
76 * be provided by the clock implementation, and will be called by drivers
77 * through the clk_* api.
79 * @prepare: Prepare the clock for enabling. This must not return until
80 * the clock is fully prepared, and it's safe to call clk_enable.
81 * This callback is intended to allow clock implementations to
82 * do any initialisation that may sleep. Called with
85 * @unprepare: Release the clock from its prepared state. This will typically
86 * undo any work done in the @prepare callback. Called with
89 * @is_prepared: Queries the hardware to determine if the clock is prepared.
90 * This function is allowed to sleep. Optional, if this op is not
91 * set then the prepare count will be used.
93 * @unprepare_unused: Unprepare the clock atomically. Only called from
94 * clk_disable_unused for prepare clocks with special needs.
95 * Called with prepare mutex held. This function may sleep.
97 * @enable: Enable the clock atomically. This must not return until the
98 * clock is generating a valid clock signal, usable by consumer
99 * devices. Called with enable_lock held. This function must not
102 * @disable: Disable the clock atomically. Called with enable_lock held.
103 * This function must not sleep.
105 * @is_enabled: Queries the hardware to determine if the clock is enabled.
106 * This function must not sleep. Optional, if this op is not
107 * set then the enable count will be used.
109 * @disable_unused: Disable the clock atomically. Only called from
110 * clk_disable_unused for gate clocks with special needs.
111 * Called with enable_lock held. This function must not
114 * @save_context: Save the context of the clock in prepration for poweroff.
116 * @restore_context: Restore the context of the clock after a restoration
119 * @recalc_rate Recalculate the rate of this clock, by querying hardware. The
120 * parent rate is an input parameter. It is up to the caller to
121 * ensure that the prepare_mutex is held across this call.
122 * Returns the calculated rate. Optional, but recommended - if
123 * this op is not set then clock rate will be initialized to 0.
125 * @round_rate: Given a target rate as input, returns the closest rate actually
126 * supported by the clock. The parent rate is an input/output
129 * @determine_rate: Given a target rate as input, returns the closest rate
130 * actually supported by the clock, and optionally the parent clock
131 * that should be used to provide the clock rate.
133 * @set_parent: Change the input source of this clock; for clocks with multiple
134 * possible parents specify a new parent by passing in the index
135 * as a u8 corresponding to the parent in either the .parent_names
136 * or .parents arrays. This function in affect translates an
137 * array index into the value programmed into the hardware.
138 * Returns 0 on success, -EERROR otherwise.
140 * @get_parent: Queries the hardware to determine the parent of a clock. The
141 * return value is a u8 which specifies the index corresponding to
142 * the parent clock. This index can be applied to either the
143 * .parent_names or .parents arrays. In short, this function
144 * translates the parent value read from hardware into an array
145 * index. Currently only called when the clock is initialized by
146 * __clk_init. This callback is mandatory for clocks with
147 * multiple parents. It is optional (and unnecessary) for clocks
148 * with 0 or 1 parents.
150 * @set_rate: Change the rate of this clock. The requested rate is specified
151 * by the second argument, which should typically be the return
152 * of .round_rate call. The third argument gives the parent rate
153 * which is likely helpful for most .set_rate implementation.
154 * Returns 0 on success, -EERROR otherwise.
156 * @set_rate_and_parent: Change the rate and the parent of this clock. The
157 * requested rate is specified by the second argument, which
158 * should typically be the return of .round_rate call. The
159 * third argument gives the parent rate which is likely helpful
160 * for most .set_rate_and_parent implementation. The fourth
161 * argument gives the parent index. This callback is optional (and
162 * unnecessary) for clocks with 0 or 1 parents as well as
163 * for clocks that can tolerate switching the rate and the parent
164 * separately via calls to .set_parent and .set_rate.
165 * Returns 0 on success, -EERROR otherwise.
167 * @recalc_accuracy: Recalculate the accuracy of this clock. The clock accuracy
168 * is expressed in ppb (parts per billion). The parent accuracy is
169 * an input parameter.
170 * Returns the calculated accuracy. Optional - if this op is not
171 * set then clock accuracy will be initialized to parent accuracy
172 * or 0 (perfect clock) if clock has no parent.
174 * @get_phase: Queries the hardware to get the current phase of a clock.
175 * Returned values are 0-359 degrees on success, negative
176 * error codes on failure.
178 * @set_phase: Shift the phase this clock signal in degrees specified
179 * by the second argument. Valid values for degrees are
180 * 0-359. Return 0 on success, otherwise -EERROR.
182 * @get_duty_cycle: Queries the hardware to get the current duty cycle ratio
183 * of a clock. Returned values denominator cannot be 0 and must be
184 * superior or equal to the numerator.
186 * @set_duty_cycle: Apply the duty cycle ratio to this clock signal specified by
187 * the numerator (2nd argurment) and denominator (3rd argument).
188 * Argument must be a valid ratio (denominator > 0
189 * and >= numerator) Return 0 on success, otherwise -EERROR.
191 * @init: Perform platform-specific initialization magic.
192 * This is not used by any of the basic clock types.
193 * This callback exist for HW which needs to perform some
194 * initialisation magic for CCF to get an accurate view of the
195 * clock. It may also be used dynamic resource allocation is
196 * required. It shall not used to deal with clock parameters,
197 * such as rate or parents.
198 * Returns 0 on success, -EERROR otherwise.
200 * @terminate: Free any resource allocated by init.
202 * @debug_init: Set up type-specific debugfs entries for this clock. This
203 * is called once, after the debugfs directory entry for this
204 * clock has been created. The dentry pointer representing that
205 * directory is provided as an argument. Called with
206 * prepare_lock held. Returns 0 on success, -EERROR otherwise.
209 * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow
210 * implementations to split any work between atomic (enable) and sleepable
211 * (prepare) contexts. If enabling a clock requires code that might sleep,
212 * this must be done in clk_prepare. Clock enable code that will never be
213 * called in a sleepable context may be implemented in clk_enable.
215 * Typically, drivers will call clk_prepare when a clock may be needed later
216 * (eg. when a device is opened), and clk_enable when the clock is actually
217 * required (eg. from an interrupt). Note that clk_prepare MUST have been
218 * called before clk_enable.
221 int (*prepare)(struct clk_hw *hw);
222 void (*unprepare)(struct clk_hw *hw);
223 int (*is_prepared)(struct clk_hw *hw);
224 void (*unprepare_unused)(struct clk_hw *hw);
225 int (*enable)(struct clk_hw *hw);
226 void (*disable)(struct clk_hw *hw);
227 int (*is_enabled)(struct clk_hw *hw);
228 void (*disable_unused)(struct clk_hw *hw);
229 int (*save_context)(struct clk_hw *hw);
230 void (*restore_context)(struct clk_hw *hw);
231 unsigned long (*recalc_rate)(struct clk_hw *hw,
232 unsigned long parent_rate);
233 long (*round_rate)(struct clk_hw *hw, unsigned long rate,
234 unsigned long *parent_rate);
235 int (*determine_rate)(struct clk_hw *hw,
236 struct clk_rate_request *req);
237 int (*set_parent)(struct clk_hw *hw, u8 index);
238 u8 (*get_parent)(struct clk_hw *hw);
239 int (*set_rate)(struct clk_hw *hw, unsigned long rate,
240 unsigned long parent_rate);
241 int (*set_rate_and_parent)(struct clk_hw *hw,
243 unsigned long parent_rate, u8 index);
244 unsigned long (*recalc_accuracy)(struct clk_hw *hw,
245 unsigned long parent_accuracy);
246 int (*get_phase)(struct clk_hw *hw);
247 int (*set_phase)(struct clk_hw *hw, int degrees);
248 int (*get_duty_cycle)(struct clk_hw *hw,
249 struct clk_duty *duty);
250 int (*set_duty_cycle)(struct clk_hw *hw,
251 struct clk_duty *duty);
252 int (*init)(struct clk_hw *hw);
253 void (*terminate)(struct clk_hw *hw);
254 void (*debug_init)(struct clk_hw *hw, struct dentry *dentry);
258 * struct clk_parent_data - clk parent information
259 * @hw: parent clk_hw pointer (used for clk providers with internal clks)
260 * @fw_name: parent name local to provider registering clk
261 * @name: globally unique parent name (used as a fallback)
262 * @index: parent index local to provider registering clk (if @fw_name absent)
264 struct clk_parent_data {
265 const struct clk_hw *hw;
272 * struct clk_init_data - holds init data that's common to all clocks and is
273 * shared between the clock provider and the common clock framework.
276 * @ops: operations this clock supports
277 * @parent_names: array of string names for all possible parents
278 * @parent_data: array of parent data for all possible parents (when some
279 * parents are external to the clk controller)
280 * @parent_hws: array of pointers to all possible parents (when all parents
281 * are internal to the clk controller)
282 * @num_parents: number of possible parents
283 * @flags: framework-level hints and quirks
285 struct clk_init_data {
287 const struct clk_ops *ops;
288 /* Only one of the following three should be assigned */
289 const char * const *parent_names;
290 const struct clk_parent_data *parent_data;
291 const struct clk_hw **parent_hws;
297 * struct clk_hw - handle for traversing from a struct clk to its corresponding
298 * hardware-specific structure. struct clk_hw should be declared within struct
299 * clk_foo and then referenced by the struct clk instance that uses struct
302 * @core: pointer to the struct clk_core instance that points back to this
303 * struct clk_hw instance
305 * @clk: pointer to the per-user struct clk instance that can be used to call
308 * @init: pointer to struct clk_init_data that contains the init data shared
309 * with the common clock framework. This pointer will be set to NULL once
310 * a clk_register() variant is called on this clk_hw pointer.
313 struct clk_core *core;
315 const struct clk_init_data *init;
319 * DOC: Basic clock implementations common to many platforms
321 * Each basic clock hardware type is comprised of a structure describing the
322 * clock hardware, implementations of the relevant callbacks in struct clk_ops,
323 * unique flags for that hardware type, a registration function and an
324 * alternative macro for static initialization
328 * struct clk_fixed_rate - fixed-rate clock
329 * @hw: handle between common and hardware-specific interfaces
330 * @fixed_rate: constant frequency of clock
331 * @fixed_accuracy: constant accuracy of clock in ppb (parts per billion)
332 * @flags: hardware specific flags
335 * * CLK_FIXED_RATE_PARENT_ACCURACY - Use the accuracy of the parent clk
336 * instead of what's set in @fixed_accuracy.
338 struct clk_fixed_rate {
340 unsigned long fixed_rate;
341 unsigned long fixed_accuracy;
345 #define CLK_FIXED_RATE_PARENT_ACCURACY BIT(0)
347 extern const struct clk_ops clk_fixed_rate_ops;
348 struct clk_hw *__clk_hw_register_fixed_rate(struct device *dev,
349 struct device_node *np, const char *name,
350 const char *parent_name, const struct clk_hw *parent_hw,
351 const struct clk_parent_data *parent_data, unsigned long flags,
352 unsigned long fixed_rate, unsigned long fixed_accuracy,
353 unsigned long clk_fixed_flags);
354 struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
355 const char *parent_name, unsigned long flags,
356 unsigned long fixed_rate);
358 * clk_hw_register_fixed_rate - register fixed-rate clock with the clock
360 * @dev: device that is registering this clock
361 * @name: name of this clock
362 * @parent_name: name of clock's parent
363 * @flags: framework-specific flags
364 * @fixed_rate: non-adjustable clock rate
366 #define clk_hw_register_fixed_rate(dev, name, parent_name, flags, fixed_rate) \
367 __clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), NULL, \
368 NULL, (flags), (fixed_rate), 0, 0)
370 * clk_hw_register_fixed_rate_parent_hw - register fixed-rate clock with
371 * the clock framework
372 * @dev: device that is registering this clock
373 * @name: name of this clock
374 * @parent_hw: pointer to parent clk
375 * @flags: framework-specific flags
376 * @fixed_rate: non-adjustable clock rate
378 #define clk_hw_register_fixed_rate_parent_hw(dev, name, parent_hw, flags, \
380 __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, (parent_hw), \
381 NULL, (flags), (fixed_rate), 0, 0)
383 * clk_hw_register_fixed_rate_parent_data - register fixed-rate clock with
384 * the clock framework
385 * @dev: device that is registering this clock
386 * @name: name of this clock
387 * @parent_data: parent clk data
388 * @flags: framework-specific flags
389 * @fixed_rate: non-adjustable clock rate
391 #define clk_hw_register_fixed_rate_parent_data(dev, name, parent_hw, flags, \
393 __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL, \
394 (parent_data), (flags), (fixed_rate), 0, \
397 * clk_hw_register_fixed_rate_with_accuracy - register fixed-rate clock with
398 * the clock framework
399 * @dev: device that is registering this clock
400 * @name: name of this clock
401 * @parent_name: name of clock's parent
402 * @flags: framework-specific flags
403 * @fixed_rate: non-adjustable clock rate
404 * @fixed_accuracy: non-adjustable clock accuracy
406 #define clk_hw_register_fixed_rate_with_accuracy(dev, name, parent_name, \
409 __clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), \
410 NULL, NULL, (flags), (fixed_rate), \
413 * clk_hw_register_fixed_rate_with_accuracy_parent_hw - register fixed-rate
414 * clock with the clock framework
415 * @dev: device that is registering this clock
416 * @name: name of this clock
417 * @parent_hw: pointer to parent clk
418 * @flags: framework-specific flags
419 * @fixed_rate: non-adjustable clock rate
420 * @fixed_accuracy: non-adjustable clock accuracy
422 #define clk_hw_register_fixed_rate_with_accuracy_parent_hw(dev, name, \
423 parent_hw, flags, fixed_rate, fixed_accuracy) \
424 __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, (parent_hw) \
425 NULL, NULL, (flags), (fixed_rate), \
428 * clk_hw_register_fixed_rate_with_accuracy_parent_data - register fixed-rate
429 * clock with the clock framework
430 * @dev: device that is registering this clock
431 * @name: name of this clock
432 * @parent_name: name of clock's parent
433 * @flags: framework-specific flags
434 * @fixed_rate: non-adjustable clock rate
435 * @fixed_accuracy: non-adjustable clock accuracy
437 #define clk_hw_register_fixed_rate_with_accuracy_parent_data(dev, name, \
438 parent_data, flags, fixed_rate, fixed_accuracy) \
439 __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL, \
440 (parent_data), NULL, (flags), \
441 (fixed_rate), (fixed_accuracy), 0)
443 void clk_unregister_fixed_rate(struct clk *clk);
444 void clk_hw_unregister_fixed_rate(struct clk_hw *hw);
446 void of_fixed_clk_setup(struct device_node *np);
449 * struct clk_gate - gating clock
451 * @hw: handle between common and hardware-specific interfaces
452 * @reg: register controlling gate
453 * @bit_idx: single bit controlling gate
454 * @flags: hardware-specific flags
455 * @lock: register lock
457 * Clock which can gate its output. Implements .enable & .disable
460 * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to
461 * enable the clock. Setting this flag does the opposite: setting the bit
462 * disable the clock and clearing it enables the clock
463 * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit
464 * of this register, and mask of gate bits are in higher 16-bit of this
465 * register. While setting the gate bits, higher 16-bit should also be
466 * updated to indicate changing gate bits.
467 * CLK_GATE_BIG_ENDIAN - by default little endian register accesses are used for
468 * the gate register. Setting this flag makes the register accesses big
479 #define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
481 #define CLK_GATE_SET_TO_DISABLE BIT(0)
482 #define CLK_GATE_HIWORD_MASK BIT(1)
483 #define CLK_GATE_BIG_ENDIAN BIT(2)
485 extern const struct clk_ops clk_gate_ops;
486 struct clk_hw *__clk_hw_register_gate(struct device *dev,
487 struct device_node *np, const char *name,
488 const char *parent_name, const struct clk_hw *parent_hw,
489 const struct clk_parent_data *parent_data,
491 void __iomem *reg, u8 bit_idx,
492 u8 clk_gate_flags, spinlock_t *lock);
493 struct clk *clk_register_gate(struct device *dev, const char *name,
494 const char *parent_name, unsigned long flags,
495 void __iomem *reg, u8 bit_idx,
496 u8 clk_gate_flags, spinlock_t *lock);
498 * clk_hw_register_gate - register a gate clock with the clock framework
499 * @dev: device that is registering this clock
500 * @name: name of this clock
501 * @parent_name: name of this clock's parent
502 * @flags: framework-specific flags for this clock
503 * @reg: register address to control gating of this clock
504 * @bit_idx: which bit in the register controls gating of this clock
505 * @clk_gate_flags: gate-specific flags for this clock
506 * @lock: shared register lock for this clock
508 #define clk_hw_register_gate(dev, name, parent_name, flags, reg, bit_idx, \
509 clk_gate_flags, lock) \
510 __clk_hw_register_gate((dev), NULL, (name), (parent_name), NULL, \
511 NULL, (flags), (reg), (bit_idx), \
512 (clk_gate_flags), (lock))
514 * clk_hw_register_gate_parent_hw - register a gate clock with the clock
516 * @dev: device that is registering this clock
517 * @name: name of this clock
518 * @parent_hw: pointer to parent clk
519 * @flags: framework-specific flags for this clock
520 * @reg: register address to control gating of this clock
521 * @bit_idx: which bit in the register controls gating of this clock
522 * @clk_gate_flags: gate-specific flags for this clock
523 * @lock: shared register lock for this clock
525 #define clk_hw_register_gate_parent_hw(dev, name, parent_hw, flags, reg, \
526 bit_idx, clk_gate_flags, lock) \
527 __clk_hw_register_gate((dev), NULL, (name), NULL, (parent_hw), \
528 NULL, (flags), (reg), (bit_idx), \
529 (clk_gate_flags), (lock))
531 * clk_hw_register_gate_parent_data - register a gate clock with the clock
533 * @dev: device that is registering this clock
534 * @name: name of this clock
535 * @parent_data: parent clk data
536 * @flags: framework-specific flags for this clock
537 * @reg: register address to control gating of this clock
538 * @bit_idx: which bit in the register controls gating of this clock
539 * @clk_gate_flags: gate-specific flags for this clock
540 * @lock: shared register lock for this clock
542 #define clk_hw_register_gate_parent_data(dev, name, parent_data, flags, reg, \
543 bit_idx, clk_gate_flags, lock) \
544 __clk_hw_register_gate((dev), NULL, (name), NULL, NULL, (parent_data), \
545 (flags), (reg), (bit_idx), \
546 (clk_gate_flags), (lock))
547 void clk_unregister_gate(struct clk *clk);
548 void clk_hw_unregister_gate(struct clk_hw *hw);
549 int clk_gate_is_enabled(struct clk_hw *hw);
551 struct clk_div_table {
557 * struct clk_divider - adjustable divider clock
559 * @hw: handle between common and hardware-specific interfaces
560 * @reg: register containing the divider
561 * @shift: shift to the divider bit field
562 * @width: width of the divider bit field
563 * @table: array of value/divider pairs, last entry should have div = 0
564 * @lock: register lock
566 * Clock with an adjustable divider affecting its output frequency. Implements
567 * .recalc_rate, .set_rate and .round_rate
570 * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the
571 * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is
572 * the raw value read from the register, with the value of zero considered
573 * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set.
574 * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from
575 * the hardware register
576 * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have
577 * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor.
578 * Some hardware implementations gracefully handle this case and allow a
579 * zero divisor by not modifying their input clock
580 * (divide by one / bypass).
581 * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit
582 * of this register, and mask of divider bits are in higher 16-bit of this
583 * register. While setting the divider bits, higher 16-bit should also be
584 * updated to indicate changing divider bits.
585 * CLK_DIVIDER_ROUND_CLOSEST - Makes the best calculated divider to be rounded
586 * to the closest integer instead of the up one.
587 * CLK_DIVIDER_READ_ONLY - The divider settings are preconfigured and should
588 * not be changed by the clock framework.
589 * CLK_DIVIDER_MAX_AT_ZERO - For dividers which are like CLK_DIVIDER_ONE_BASED
590 * except when the value read from the register is zero, the divisor is
591 * 2^width of the field.
592 * CLK_DIVIDER_BIG_ENDIAN - By default little endian register accesses are used
593 * for the divider register. Setting this flag makes the register accesses
602 const struct clk_div_table *table;
606 #define clk_div_mask(width) ((1 << (width)) - 1)
607 #define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
609 #define CLK_DIVIDER_ONE_BASED BIT(0)
610 #define CLK_DIVIDER_POWER_OF_TWO BIT(1)
611 #define CLK_DIVIDER_ALLOW_ZERO BIT(2)
612 #define CLK_DIVIDER_HIWORD_MASK BIT(3)
613 #define CLK_DIVIDER_ROUND_CLOSEST BIT(4)
614 #define CLK_DIVIDER_READ_ONLY BIT(5)
615 #define CLK_DIVIDER_MAX_AT_ZERO BIT(6)
616 #define CLK_DIVIDER_BIG_ENDIAN BIT(7)
618 extern const struct clk_ops clk_divider_ops;
619 extern const struct clk_ops clk_divider_ro_ops;
621 unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
622 unsigned int val, const struct clk_div_table *table,
623 unsigned long flags, unsigned long width);
624 long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
625 unsigned long rate, unsigned long *prate,
626 const struct clk_div_table *table,
627 u8 width, unsigned long flags);
628 long divider_ro_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
629 unsigned long rate, unsigned long *prate,
630 const struct clk_div_table *table, u8 width,
631 unsigned long flags, unsigned int val);
632 int divider_get_val(unsigned long rate, unsigned long parent_rate,
633 const struct clk_div_table *table, u8 width,
634 unsigned long flags);
636 struct clk_hw *__clk_hw_register_divider(struct device *dev,
637 struct device_node *np, const char *name,
638 const char *parent_name, const struct clk_hw *parent_hw,
639 const struct clk_parent_data *parent_data, unsigned long flags,
640 void __iomem *reg, u8 shift, u8 width, u8 clk_divider_flags,
641 const struct clk_div_table *table, spinlock_t *lock);
642 struct clk *clk_register_divider_table(struct device *dev, const char *name,
643 const char *parent_name, unsigned long flags,
644 void __iomem *reg, u8 shift, u8 width,
645 u8 clk_divider_flags, const struct clk_div_table *table,
648 * clk_register_divider - register a divider clock with the clock framework
649 * @dev: device registering this clock
650 * @name: name of this clock
651 * @parent_name: name of clock's parent
652 * @flags: framework-specific flags
653 * @reg: register address to adjust divider
654 * @shift: number of bits to shift the bitfield
655 * @width: width of the bitfield
656 * @clk_divider_flags: divider-specific flags for this clock
657 * @lock: shared register lock for this clock
659 #define clk_register_divider(dev, name, parent_name, flags, reg, shift, width, \
660 clk_divider_flags, lock) \
661 clk_register_divider_table((dev), (name), (parent_name), (flags), \
662 (reg), (shift), (width), \
663 (clk_divider_flags), NULL, (lock))
665 * clk_hw_register_divider - register a divider clock with the clock framework
666 * @dev: device registering this clock
667 * @name: name of this clock
668 * @parent_name: name of clock's parent
669 * @flags: framework-specific flags
670 * @reg: register address to adjust divider
671 * @shift: number of bits to shift the bitfield
672 * @width: width of the bitfield
673 * @clk_divider_flags: divider-specific flags for this clock
674 * @lock: shared register lock for this clock
676 #define clk_hw_register_divider(dev, name, parent_name, flags, reg, shift, \
677 width, clk_divider_flags, lock) \
678 __clk_hw_register_divider((dev), NULL, (name), (parent_name), NULL, \
679 NULL, (flags), (reg), (shift), (width), \
680 (clk_divider_flags), NULL, (lock))
682 * clk_hw_register_divider_parent_hw - register a divider clock with the clock
684 * @dev: device registering this clock
685 * @name: name of this clock
686 * @parent_hw: pointer to parent clk
687 * @flags: framework-specific flags
688 * @reg: register address to adjust divider
689 * @shift: number of bits to shift the bitfield
690 * @width: width of the bitfield
691 * @clk_divider_flags: divider-specific flags for this clock
692 * @lock: shared register lock for this clock
694 #define clk_hw_register_divider_parent_hw(dev, name, parent_hw, flags, reg, \
695 shift, width, clk_divider_flags, \
697 __clk_hw_register_divider((dev), NULL, (name), NULL, (parent_hw), \
698 NULL, (flags), (reg), (shift), (width), \
699 (clk_divider_flags), NULL, (lock))
701 * clk_hw_register_divider_parent_data - register a divider clock with the clock
703 * @dev: device registering this clock
704 * @name: name of this clock
705 * @parent_data: parent clk data
706 * @flags: framework-specific flags
707 * @reg: register address to adjust divider
708 * @shift: number of bits to shift the bitfield
709 * @width: width of the bitfield
710 * @clk_divider_flags: divider-specific flags for this clock
711 * @lock: shared register lock for this clock
713 #define clk_hw_register_divider_parent_data(dev, name, parent_data, flags, \
715 clk_divider_flags, lock) \
716 __clk_hw_register_divider((dev), NULL, (name), NULL, NULL, \
717 (parent_data), (flags), (reg), (shift), \
718 (width), (clk_divider_flags), NULL, (lock))
720 * clk_hw_register_divider_table - register a table based divider clock with
721 * the clock framework
722 * @dev: device registering this clock
723 * @name: name of this clock
724 * @parent_name: name of clock's parent
725 * @flags: framework-specific flags
726 * @reg: register address to adjust divider
727 * @shift: number of bits to shift the bitfield
728 * @width: width of the bitfield
729 * @clk_divider_flags: divider-specific flags for this clock
730 * @table: array of divider/value pairs ending with a div set to 0
731 * @lock: shared register lock for this clock
733 #define clk_hw_register_divider_table(dev, name, parent_name, flags, reg, \
734 shift, width, clk_divider_flags, table, \
736 __clk_hw_register_divider((dev), NULL, (name), (parent_name), NULL, \
737 NULL, (flags), (reg), (shift), (width), \
738 (clk_divider_flags), (table), (lock))
740 * clk_hw_register_divider_table_parent_hw - register a table based divider
741 * clock with the clock framework
742 * @dev: device registering this clock
743 * @name: name of this clock
744 * @parent_hw: pointer to parent clk
745 * @flags: framework-specific flags
746 * @reg: register address to adjust divider
747 * @shift: number of bits to shift the bitfield
748 * @width: width of the bitfield
749 * @clk_divider_flags: divider-specific flags for this clock
750 * @table: array of divider/value pairs ending with a div set to 0
751 * @lock: shared register lock for this clock
753 #define clk_hw_register_divider_table_parent_hw(dev, name, parent_hw, flags, \
755 clk_divider_flags, table, \
757 __clk_hw_register_divider((dev), NULL, (name), NULL, (parent_hw), \
758 NULL, (flags), (reg), (shift), (width), \
759 (clk_divider_flags), (table), (lock))
761 * clk_hw_register_divider_table_parent_data - register a table based divider
762 * clock with the clock framework
763 * @dev: device registering this clock
764 * @name: name of this clock
765 * @parent_data: parent clk data
766 * @flags: framework-specific flags
767 * @reg: register address to adjust divider
768 * @shift: number of bits to shift the bitfield
769 * @width: width of the bitfield
770 * @clk_divider_flags: divider-specific flags for this clock
771 * @table: array of divider/value pairs ending with a div set to 0
772 * @lock: shared register lock for this clock
774 #define clk_hw_register_divider_table_parent_data(dev, name, parent_data, \
775 flags, reg, shift, width, \
776 clk_divider_flags, table, \
778 __clk_hw_register_divider((dev), NULL, (name), NULL, NULL, \
779 (parent_data), (flags), (reg), (shift), \
780 (width), (clk_divider_flags), (table), \
783 void clk_unregister_divider(struct clk *clk);
784 void clk_hw_unregister_divider(struct clk_hw *hw);
787 * struct clk_mux - multiplexer clock
789 * @hw: handle between common and hardware-specific interfaces
790 * @reg: register controlling multiplexer
791 * @table: array of register values corresponding to the parent index
792 * @shift: shift to multiplexer bit field
793 * @mask: mask of mutliplexer bit field
794 * @flags: hardware-specific flags
795 * @lock: register lock
797 * Clock with multiple selectable parents. Implements .get_parent, .set_parent
801 * CLK_MUX_INDEX_ONE - register index starts at 1, not 0
802 * CLK_MUX_INDEX_BIT - register index is a single bit (power of two)
803 * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this
804 * register, and mask of mux bits are in higher 16-bit of this register.
805 * While setting the mux bits, higher 16-bit should also be updated to
806 * indicate changing mux bits.
807 * CLK_MUX_READ_ONLY - The mux registers can't be written, only read in the
808 * .get_parent clk_op.
809 * CLK_MUX_ROUND_CLOSEST - Use the parent rate that is closest to the desired
811 * CLK_MUX_BIG_ENDIAN - By default little endian register accesses are used for
812 * the mux register. Setting this flag makes the register accesses big
825 #define to_clk_mux(_hw) container_of(_hw, struct clk_mux, hw)
827 #define CLK_MUX_INDEX_ONE BIT(0)
828 #define CLK_MUX_INDEX_BIT BIT(1)
829 #define CLK_MUX_HIWORD_MASK BIT(2)
830 #define CLK_MUX_READ_ONLY BIT(3) /* mux can't be changed */
831 #define CLK_MUX_ROUND_CLOSEST BIT(4)
832 #define CLK_MUX_BIG_ENDIAN BIT(5)
834 extern const struct clk_ops clk_mux_ops;
835 extern const struct clk_ops clk_mux_ro_ops;
837 struct clk_hw *__clk_hw_register_mux(struct device *dev, struct device_node *np,
838 const char *name, u8 num_parents,
839 const char * const *parent_names,
840 const struct clk_hw **parent_hws,
841 const struct clk_parent_data *parent_data,
842 unsigned long flags, void __iomem *reg, u8 shift, u32 mask,
843 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
844 struct clk *clk_register_mux_table(struct device *dev, const char *name,
845 const char * const *parent_names, u8 num_parents,
846 unsigned long flags, void __iomem *reg, u8 shift, u32 mask,
847 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
849 #define clk_register_mux(dev, name, parent_names, num_parents, flags, reg, \
850 shift, width, clk_mux_flags, lock) \
851 clk_register_mux_table((dev), (name), (parent_names), (num_parents), \
852 (flags), (reg), (shift), BIT((width)) - 1, \
853 (clk_mux_flags), NULL, (lock))
854 #define clk_hw_register_mux_table(dev, name, parent_names, num_parents, \
855 flags, reg, shift, mask, clk_mux_flags, \
857 __clk_hw_register_mux((dev), NULL, (name), (num_parents), \
858 (parent_names), NULL, NULL, (flags), (reg), \
859 (shift), (mask), (clk_mux_flags), (table), \
861 #define clk_hw_register_mux(dev, name, parent_names, num_parents, flags, reg, \
862 shift, width, clk_mux_flags, lock) \
863 __clk_hw_register_mux((dev), NULL, (name), (num_parents), \
864 (parent_names), NULL, NULL, (flags), (reg), \
865 (shift), BIT((width)) - 1, (clk_mux_flags), \
867 #define clk_hw_register_mux_hws(dev, name, parent_hws, num_parents, flags, \
868 reg, shift, width, clk_mux_flags, lock) \
869 __clk_hw_register_mux((dev), NULL, (name), (num_parents), NULL, \
870 (parent_hws), NULL, (flags), (reg), (shift), \
871 BIT((width)) - 1, (clk_mux_flags), NULL, (lock))
872 #define clk_hw_register_mux_parent_data(dev, name, parent_data, num_parents, \
873 flags, reg, shift, width, \
874 clk_mux_flags, lock) \
875 __clk_hw_register_mux((dev), NULL, (name), (num_parents), NULL, NULL, \
876 (parent_data), (flags), (reg), (shift), \
877 BIT((width)) - 1, (clk_mux_flags), NULL, (lock))
879 int clk_mux_val_to_index(struct clk_hw *hw, u32 *table, unsigned int flags,
881 unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index);
883 void clk_unregister_mux(struct clk *clk);
884 void clk_hw_unregister_mux(struct clk_hw *hw);
886 void of_fixed_factor_clk_setup(struct device_node *node);
889 * struct clk_fixed_factor - fixed multiplier and divider clock
891 * @hw: handle between common and hardware-specific interfaces
895 * Clock with a fixed multiplier and divider. The output frequency is the
896 * parent clock rate divided by div and multiplied by mult.
897 * Implements .recalc_rate, .set_rate and .round_rate
900 struct clk_fixed_factor {
906 #define to_clk_fixed_factor(_hw) container_of(_hw, struct clk_fixed_factor, hw)
908 extern const struct clk_ops clk_fixed_factor_ops;
909 struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
910 const char *parent_name, unsigned long flags,
911 unsigned int mult, unsigned int div);
912 void clk_unregister_fixed_factor(struct clk *clk);
913 struct clk_hw *clk_hw_register_fixed_factor(struct device *dev,
914 const char *name, const char *parent_name, unsigned long flags,
915 unsigned int mult, unsigned int div);
916 void clk_hw_unregister_fixed_factor(struct clk_hw *hw);
919 * struct clk_fractional_divider - adjustable fractional divider clock
921 * @hw: handle between common and hardware-specific interfaces
922 * @reg: register containing the divider
923 * @mshift: shift to the numerator bit field
924 * @mwidth: width of the numerator bit field
925 * @nshift: shift to the denominator bit field
926 * @nwidth: width of the denominator bit field
927 * @lock: register lock
929 * Clock with adjustable fractional divider affecting its output frequency.
932 * CLK_FRAC_DIVIDER_ZERO_BASED - by default the numerator and denominator
933 * is the value read from the register. If CLK_FRAC_DIVIDER_ZERO_BASED
934 * is set then the numerator and denominator are both the value read
936 * CLK_FRAC_DIVIDER_BIG_ENDIAN - By default little endian register accesses are
937 * used for the divider register. Setting this flag makes the register
938 * accesses big endian.
940 struct clk_fractional_divider {
950 void (*approximation)(struct clk_hw *hw,
951 unsigned long rate, unsigned long *parent_rate,
952 unsigned long *m, unsigned long *n);
956 #define to_clk_fd(_hw) container_of(_hw, struct clk_fractional_divider, hw)
958 #define CLK_FRAC_DIVIDER_ZERO_BASED BIT(0)
959 #define CLK_FRAC_DIVIDER_BIG_ENDIAN BIT(1)
961 extern const struct clk_ops clk_fractional_divider_ops;
962 struct clk *clk_register_fractional_divider(struct device *dev,
963 const char *name, const char *parent_name, unsigned long flags,
964 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
965 u8 clk_divider_flags, spinlock_t *lock);
966 struct clk_hw *clk_hw_register_fractional_divider(struct device *dev,
967 const char *name, const char *parent_name, unsigned long flags,
968 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
969 u8 clk_divider_flags, spinlock_t *lock);
970 void clk_hw_unregister_fractional_divider(struct clk_hw *hw);
973 * struct clk_multiplier - adjustable multiplier clock
975 * @hw: handle between common and hardware-specific interfaces
976 * @reg: register containing the multiplier
977 * @shift: shift to the multiplier bit field
978 * @width: width of the multiplier bit field
979 * @lock: register lock
981 * Clock with an adjustable multiplier affecting its output frequency.
982 * Implements .recalc_rate, .set_rate and .round_rate
985 * CLK_MULTIPLIER_ZERO_BYPASS - By default, the multiplier is the value read
986 * from the register, with 0 being a valid value effectively
987 * zeroing the output clock rate. If CLK_MULTIPLIER_ZERO_BYPASS is
988 * set, then a null multiplier will be considered as a bypass,
989 * leaving the parent rate unmodified.
990 * CLK_MULTIPLIER_ROUND_CLOSEST - Makes the best calculated divider to be
991 * rounded to the closest integer instead of the down one.
992 * CLK_MULTIPLIER_BIG_ENDIAN - By default little endian register accesses are
993 * used for the multiplier register. Setting this flag makes the register
994 * accesses big endian.
996 struct clk_multiplier {
1005 #define to_clk_multiplier(_hw) container_of(_hw, struct clk_multiplier, hw)
1007 #define CLK_MULTIPLIER_ZERO_BYPASS BIT(0)
1008 #define CLK_MULTIPLIER_ROUND_CLOSEST BIT(1)
1009 #define CLK_MULTIPLIER_BIG_ENDIAN BIT(2)
1011 extern const struct clk_ops clk_multiplier_ops;
1014 * struct clk_composite - aggregate clock of mux, divider and gate clocks
1016 * @hw: handle between common and hardware-specific interfaces
1017 * @mux_hw: handle between composite and hardware-specific mux clock
1018 * @rate_hw: handle between composite and hardware-specific rate clock
1019 * @gate_hw: handle between composite and hardware-specific gate clock
1020 * @mux_ops: clock ops for mux
1021 * @rate_ops: clock ops for rate
1022 * @gate_ops: clock ops for gate
1024 struct clk_composite {
1028 struct clk_hw *mux_hw;
1029 struct clk_hw *rate_hw;
1030 struct clk_hw *gate_hw;
1032 const struct clk_ops *mux_ops;
1033 const struct clk_ops *rate_ops;
1034 const struct clk_ops *gate_ops;
1037 #define to_clk_composite(_hw) container_of(_hw, struct clk_composite, hw)
1039 struct clk *clk_register_composite(struct device *dev, const char *name,
1040 const char * const *parent_names, int num_parents,
1041 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
1042 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
1043 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
1044 unsigned long flags);
1045 struct clk *clk_register_composite_pdata(struct device *dev, const char *name,
1046 const struct clk_parent_data *parent_data, int num_parents,
1047 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
1048 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
1049 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
1050 unsigned long flags);
1051 void clk_unregister_composite(struct clk *clk);
1052 struct clk_hw *clk_hw_register_composite(struct device *dev, const char *name,
1053 const char * const *parent_names, int num_parents,
1054 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
1055 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
1056 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
1057 unsigned long flags);
1058 struct clk_hw *clk_hw_register_composite_pdata(struct device *dev,
1060 const struct clk_parent_data *parent_data, int num_parents,
1061 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
1062 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
1063 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
1064 unsigned long flags);
1065 void clk_hw_unregister_composite(struct clk_hw *hw);
1067 struct clk *clk_register(struct device *dev, struct clk_hw *hw);
1068 struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw);
1070 int __must_check clk_hw_register(struct device *dev, struct clk_hw *hw);
1071 int __must_check devm_clk_hw_register(struct device *dev, struct clk_hw *hw);
1072 int __must_check of_clk_hw_register(struct device_node *node, struct clk_hw *hw);
1074 void clk_unregister(struct clk *clk);
1075 void devm_clk_unregister(struct device *dev, struct clk *clk);
1077 void clk_hw_unregister(struct clk_hw *hw);
1078 void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw);
1080 /* helper functions */
1081 const char *__clk_get_name(const struct clk *clk);
1082 const char *clk_hw_get_name(const struct clk_hw *hw);
1083 #ifdef CONFIG_COMMON_CLK
1084 struct clk_hw *__clk_get_hw(struct clk *clk);
1086 static inline struct clk_hw *__clk_get_hw(struct clk *clk)
1088 return (struct clk_hw *)clk;
1091 unsigned int clk_hw_get_num_parents(const struct clk_hw *hw);
1092 struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw);
1093 struct clk_hw *clk_hw_get_parent_by_index(const struct clk_hw *hw,
1094 unsigned int index);
1095 int clk_hw_get_parent_index(struct clk_hw *hw);
1096 int clk_hw_set_parent(struct clk_hw *hw, struct clk_hw *new_parent);
1097 unsigned int __clk_get_enable_count(struct clk *clk);
1098 unsigned long clk_hw_get_rate(const struct clk_hw *hw);
1099 unsigned long clk_hw_get_flags(const struct clk_hw *hw);
1100 #define clk_hw_can_set_rate_parent(hw) \
1101 (clk_hw_get_flags((hw)) & CLK_SET_RATE_PARENT)
1103 bool clk_hw_is_prepared(const struct clk_hw *hw);
1104 bool clk_hw_rate_is_protected(const struct clk_hw *hw);
1105 bool clk_hw_is_enabled(const struct clk_hw *hw);
1106 bool __clk_is_enabled(struct clk *clk);
1107 struct clk *__clk_lookup(const char *name);
1108 int __clk_mux_determine_rate(struct clk_hw *hw,
1109 struct clk_rate_request *req);
1110 int __clk_determine_rate(struct clk_hw *core, struct clk_rate_request *req);
1111 int __clk_mux_determine_rate_closest(struct clk_hw *hw,
1112 struct clk_rate_request *req);
1113 int clk_mux_determine_rate_flags(struct clk_hw *hw,
1114 struct clk_rate_request *req,
1115 unsigned long flags);
1116 void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent);
1117 void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
1118 unsigned long max_rate);
1120 static inline void __clk_hw_set_clk(struct clk_hw *dst, struct clk_hw *src)
1122 dst->clk = src->clk;
1123 dst->core = src->core;
1126 static inline long divider_round_rate(struct clk_hw *hw, unsigned long rate,
1127 unsigned long *prate,
1128 const struct clk_div_table *table,
1129 u8 width, unsigned long flags)
1131 return divider_round_rate_parent(hw, clk_hw_get_parent(hw),
1132 rate, prate, table, width, flags);
1135 static inline long divider_ro_round_rate(struct clk_hw *hw, unsigned long rate,
1136 unsigned long *prate,
1137 const struct clk_div_table *table,
1138 u8 width, unsigned long flags,
1141 return divider_ro_round_rate_parent(hw, clk_hw_get_parent(hw),
1142 rate, prate, table, width, flags,
1147 * FIXME clock api without lock protection
1149 unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate);
1151 struct clk_onecell_data {
1153 unsigned int clk_num;
1156 struct clk_hw_onecell_data {
1158 struct clk_hw *hws[];
1161 #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn)
1164 * Use this macro when you have a driver that requires two initialization
1165 * routines, one at of_clk_init(), and one at platform device probe
1167 #define CLK_OF_DECLARE_DRIVER(name, compat, fn) \
1168 static void __init name##_of_clk_init_driver(struct device_node *np) \
1170 of_node_clear_flag(np, OF_POPULATED); \
1173 OF_DECLARE_1(clk, name, compat, name##_of_clk_init_driver)
1175 #define CLK_HW_INIT(_name, _parent, _ops, _flags) \
1176 (&(struct clk_init_data) { \
1179 .parent_names = (const char *[]) { _parent }, \
1184 #define CLK_HW_INIT_HW(_name, _parent, _ops, _flags) \
1185 (&(struct clk_init_data) { \
1188 .parent_hws = (const struct clk_hw*[]) { _parent }, \
1194 * This macro is intended for drivers to be able to share the otherwise
1195 * individual struct clk_hw[] compound literals created by the compiler
1196 * when using CLK_HW_INIT_HW. It does NOT support multiple parents.
1198 #define CLK_HW_INIT_HWS(_name, _parent, _ops, _flags) \
1199 (&(struct clk_init_data) { \
1202 .parent_hws = _parent, \
1207 #define CLK_HW_INIT_FW_NAME(_name, _parent, _ops, _flags) \
1208 (&(struct clk_init_data) { \
1211 .parent_data = (const struct clk_parent_data[]) { \
1212 { .fw_name = _parent }, \
1218 #define CLK_HW_INIT_PARENTS(_name, _parents, _ops, _flags) \
1219 (&(struct clk_init_data) { \
1222 .parent_names = _parents, \
1223 .num_parents = ARRAY_SIZE(_parents), \
1227 #define CLK_HW_INIT_PARENTS_HW(_name, _parents, _ops, _flags) \
1228 (&(struct clk_init_data) { \
1231 .parent_hws = _parents, \
1232 .num_parents = ARRAY_SIZE(_parents), \
1236 #define CLK_HW_INIT_PARENTS_DATA(_name, _parents, _ops, _flags) \
1237 (&(struct clk_init_data) { \
1240 .parent_data = _parents, \
1241 .num_parents = ARRAY_SIZE(_parents), \
1245 #define CLK_HW_INIT_NO_PARENT(_name, _ops, _flags) \
1246 (&(struct clk_init_data) { \
1249 .parent_names = NULL, \
1254 #define CLK_FIXED_FACTOR(_struct, _name, _parent, \
1255 _div, _mult, _flags) \
1256 struct clk_fixed_factor _struct = { \
1259 .hw.init = CLK_HW_INIT(_name, \
1261 &clk_fixed_factor_ops, \
1265 #define CLK_FIXED_FACTOR_HW(_struct, _name, _parent, \
1266 _div, _mult, _flags) \
1267 struct clk_fixed_factor _struct = { \
1270 .hw.init = CLK_HW_INIT_HW(_name, \
1272 &clk_fixed_factor_ops, \
1277 * This macro allows the driver to reuse the _parent array for multiple
1278 * fixed factor clk declarations.
1280 #define CLK_FIXED_FACTOR_HWS(_struct, _name, _parent, \
1281 _div, _mult, _flags) \
1282 struct clk_fixed_factor _struct = { \
1285 .hw.init = CLK_HW_INIT_HWS(_name, \
1287 &clk_fixed_factor_ops, \
1291 #define CLK_FIXED_FACTOR_FW_NAME(_struct, _name, _parent, \
1292 _div, _mult, _flags) \
1293 struct clk_fixed_factor _struct = { \
1296 .hw.init = CLK_HW_INIT_FW_NAME(_name, \
1298 &clk_fixed_factor_ops, \
1303 int of_clk_add_provider(struct device_node *np,
1304 struct clk *(*clk_src_get)(struct of_phandle_args *args,
1307 int of_clk_add_hw_provider(struct device_node *np,
1308 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
1311 int devm_of_clk_add_hw_provider(struct device *dev,
1312 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
1315 void of_clk_del_provider(struct device_node *np);
1316 void devm_of_clk_del_provider(struct device *dev);
1317 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
1319 struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec,
1321 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data);
1322 struct clk_hw *of_clk_hw_onecell_get(struct of_phandle_args *clkspec,
1324 int of_clk_parent_fill(struct device_node *np, const char **parents,
1326 int of_clk_detect_critical(struct device_node *np, int index,
1327 unsigned long *flags);
1329 #else /* !CONFIG_OF */
1331 static inline int of_clk_add_provider(struct device_node *np,
1332 struct clk *(*clk_src_get)(struct of_phandle_args *args,
1338 static inline int of_clk_add_hw_provider(struct device_node *np,
1339 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
1345 static inline int devm_of_clk_add_hw_provider(struct device *dev,
1346 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
1352 static inline void of_clk_del_provider(struct device_node *np) {}
1353 static inline void devm_of_clk_del_provider(struct device *dev) {}
1354 static inline struct clk *of_clk_src_simple_get(
1355 struct of_phandle_args *clkspec, void *data)
1357 return ERR_PTR(-ENOENT);
1359 static inline struct clk_hw *
1360 of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
1362 return ERR_PTR(-ENOENT);
1364 static inline struct clk *of_clk_src_onecell_get(
1365 struct of_phandle_args *clkspec, void *data)
1367 return ERR_PTR(-ENOENT);
1369 static inline struct clk_hw *
1370 of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
1372 return ERR_PTR(-ENOENT);
1374 static inline int of_clk_parent_fill(struct device_node *np,
1375 const char **parents, unsigned int size)
1379 static inline int of_clk_detect_critical(struct device_node *np, int index,
1380 unsigned long *flags)
1384 #endif /* CONFIG_OF */
1386 void clk_gate_restore_context(struct clk_hw *hw);
1388 #endif /* CLK_PROVIDER_H */