]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
f26c8a8e SG |
2 | /* |
3 | * Copyright (c) 2015 Google, Inc | |
4 | * Written by Simon Glass <[email protected]> | |
135aa950 | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. |
f26c8a8e SG |
6 | */ |
7 | ||
08d0d6f3 MS |
8 | #ifndef _CLK_H_ |
9 | #define _CLK_H_ | |
10 | ||
75f98314 | 11 | #include <dm/ofnode.h> |
6f791747 | 12 | #include <linux/err.h> |
1221ce45 | 13 | #include <linux/errno.h> |
ad1cf785 MY |
14 | #include <linux/types.h> |
15 | ||
135aa950 SW |
16 | /** |
17 | * A clock is a hardware signal that oscillates autonomously at a specific | |
18 | * frequency and duty cycle. Most hardware modules require one or more clock | |
19 | * signal to drive their operation. Clock signals are typically generated | |
20 | * externally to the HW module consuming them, by an entity this API calls a | |
21 | * clock provider. This API provides a standard means for drivers to enable and | |
22 | * disable clocks, and to set the rate at which they oscillate. | |
23 | * | |
a9092710 | 24 | * A driver that implements UCLASS_CLK is a clock provider. A provider will |
135aa950 | 25 | * often implement multiple separate clocks, since the hardware it manages |
9bf86506 | 26 | * often has this capability. clk-uclass.h describes the interface which |
135aa950 SW |
27 | * clock providers must implement. |
28 | * | |
29 | * Clock consumers/clients are the HW modules driven by the clock signals. This | |
30 | * header file describes the API used by drivers for those HW modules. | |
31 | */ | |
ad1cf785 | 32 | |
135aa950 | 33 | struct udevice; |
08d0d6f3 | 34 | |
135aa950 SW |
35 | /** |
36 | * struct clk - A handle to (allowing control of) a single clock. | |
37 | * | |
38 | * Clients provide storage for clock handles. The content of the structure is | |
39 | * managed solely by the clock API and clock drivers. A clock struct is | |
40 | * initialized by "get"ing the clock struct. The clock struct is passed to all | |
41 | * other clock APIs to identify which clock signal to operate upon. | |
42 | * | |
43 | * @dev: The device which implements the clock signal. | |
105db959 | 44 | * @rate: The clock rate (in HZ). |
a8592cdd LM |
45 | * @flags: Flags used across common clock structure (e.g. CLK_) |
46 | * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined | |
47 | * in struct's for those devices (e.g. struct clk_mux). | |
135aa950 | 48 | * @id: The clock signal ID within the provider. |
3b3969bd AD |
49 | * @data: An optional data field for scenarios where a single integer ID is not |
50 | * sufficient. If used, it can be populated through an .of_xlate op and | |
51 | * processed during the various clock ops. | |
135aa950 | 52 | * |
3b3969bd AD |
53 | * Should additional information to identify and configure any clock signal |
54 | * for any provider be required in the future, the struct could be expanded to | |
135aa950 SW |
55 | * either (a) add more fields to allow clock providers to store additional |
56 | * information, or (b) replace the id field with an opaque pointer, which the | |
57 | * provider would dynamically allocated during its .of_xlate op, and process | |
58 | * during is .request op. This may require the addition of an extra op to clean | |
59 | * up the allocation. | |
60 | */ | |
61 | struct clk { | |
62 | struct udevice *dev; | |
105db959 | 63 | long long rate; /* in HZ */ |
a8592cdd | 64 | u32 flags; |
e6849e2f | 65 | int enable_count; |
135aa950 | 66 | /* |
3b3969bd | 67 | * Written by of_xlate. In the future, we might add more fields here. |
f26c8a8e | 68 | */ |
135aa950 | 69 | unsigned long id; |
3b3969bd | 70 | unsigned long data; |
f26c8a8e SG |
71 | }; |
72 | ||
a855be87 NA |
73 | /** |
74 | * struct clk_bulk - A handle to (allowing control of) a bulk of clocks. | |
75 | * | |
76 | * Clients provide storage for the clock bulk. The content of the structure is | |
77 | * managed solely by the clock API. A clock bulk struct is | |
78 | * initialized by "get"ing the clock bulk struct. | |
79 | * The clock bulk struct is passed to all other bulk clock APIs to apply | |
80 | * the API to all the clock in the bulk struct. | |
81 | * | |
82 | * @clks: An array of clock handles. | |
83 | * @count: The number of clock handles in the clks array. | |
84 | */ | |
85 | struct clk_bulk { | |
86 | struct clk *clks; | |
87 | unsigned int count; | |
88 | }; | |
89 | ||
3f96f875 | 90 | #if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK) |
0d15463c | 91 | struct phandle_1_arg; |
51f1263d WL |
92 | int clk_get_by_driver_info(struct udevice *dev, |
93 | struct phandle_1_arg *cells, struct clk *clk); | |
7423daa6 | 94 | |
135aa950 | 95 | /** |
d7c56616 | 96 | * clk_get_by_index - Get/request a clock by integer index. |
135aa950 SW |
97 | * |
98 | * This looks up and requests a clock. The index is relative to the client | |
99 | * device; each device is assumed to have n clocks associated with it somehow, | |
100 | * and this function finds and requests one of them. The mapping of client | |
101 | * device clock indices to provider clocks may be via device-tree properties, | |
102 | * board-provided mapping tables, or some other mechanism. | |
103 | * | |
104 | * @dev: The client device. | |
105 | * @index: The index of the clock to request, within the client's list of | |
106 | * clocks. | |
107 | * @clock A pointer to a clock struct to initialize. | |
108 | * @return 0 if OK, or a negative error code. | |
109 | */ | |
110 | int clk_get_by_index(struct udevice *dev, int index, struct clk *clk); | |
f26c8a8e | 111 | |
75f98314 | 112 | /** |
d7c56616 | 113 | * clk_get_by_index_nodev - Get/request a clock by integer index |
75f98314 JT |
114 | * without a device. |
115 | * | |
116 | * This is a version of clk_get_by_index() that does not use a device. | |
117 | * | |
118 | * @node: The client ofnode. | |
119 | * @index: The index of the clock to request, within the client's list of | |
120 | * clocks. | |
121 | * @clock A pointer to a clock struct to initialize. | |
122 | * @return 0 if OK, or a negative error code. | |
123 | */ | |
124 | int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk); | |
125 | ||
a855be87 | 126 | /** |
d7c56616 | 127 | * clk_get_bulk - Get/request all clocks of a device. |
a855be87 NA |
128 | * |
129 | * This looks up and requests all clocks of the client device; each device is | |
130 | * assumed to have n clocks associated with it somehow, and this function finds | |
131 | * and requests all of them in a separate structure. The mapping of client | |
132 | * device clock indices to provider clocks may be via device-tree properties, | |
133 | * board-provided mapping tables, or some other mechanism. | |
134 | * | |
135 | * @dev: The client device. | |
136 | * @bulk A pointer to a clock bulk struct to initialize. | |
137 | * @return 0 if OK, or a negative error code. | |
138 | */ | |
139 | int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk); | |
140 | ||
f26c8a8e | 141 | /** |
d7c56616 | 142 | * clk_get_by_name - Get/request a clock by name. |
f26c8a8e | 143 | * |
135aa950 SW |
144 | * This looks up and requests a clock. The name is relative to the client |
145 | * device; each device is assumed to have n clocks associated with it somehow, | |
146 | * and this function finds and requests one of them. The mapping of client | |
147 | * device clock names to provider clocks may be via device-tree properties, | |
148 | * board-provided mapping tables, or some other mechanism. | |
149 | * | |
150 | * @dev: The client device. | |
151 | * @name: The name of the clock to request, within the client's list of | |
152 | * clocks. | |
153 | * @clock: A pointer to a clock struct to initialize. | |
154 | * @return 0 if OK, or a negative error code. | |
f26c8a8e | 155 | */ |
135aa950 | 156 | int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk); |
b108d8a0 | 157 | |
d646420e CY |
158 | /** |
159 | * clk_get_by_name_nodev - Get/request a clock by name without a device. | |
160 | * | |
161 | * This is a version of clk_get_by_name() that does not use a device. | |
162 | * | |
163 | * @node: The client ofnode. | |
164 | * @name: The name of the clock to request, within the client's list of | |
165 | * clocks. | |
166 | * @clock: A pointer to a clock struct to initialize. | |
167 | * @return 0 if OK, or a negative error code. | |
168 | */ | |
169 | int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk); | |
170 | ||
171 | /** | |
d7c56616 | 172 | * clk_get_optional_nodev - Get/request an optinonal clock by name |
d646420e CY |
173 | * without a device. |
174 | * @node: The client ofnode. | |
175 | * @name: The name of the clock to request. | |
176 | * @name: The name of the clock to request, within the client's list of | |
177 | * clocks. | |
178 | * @clock: A pointer to a clock struct to initialize. | |
179 | * | |
180 | * Behaves the same as clk_get_by_name_nodev() except where there is | |
181 | * no clock producer, in this case, skip the error number -ENODATA, and | |
182 | * the function returns 0. | |
183 | */ | |
184 | int clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk); | |
185 | ||
52720c53 JJH |
186 | /** |
187 | * devm_clk_get - lookup and obtain a managed reference to a clock producer. | |
188 | * @dev: device for clock "consumer" | |
189 | * @id: clock consumer ID | |
190 | * | |
191 | * Returns a struct clk corresponding to the clock producer, or | |
192 | * valid IS_ERR() condition containing errno. The implementation | |
193 | * uses @dev and @id to determine the clock consumer, and thereby | |
194 | * the clock producer. (IOW, @id may be identical strings, but | |
195 | * clk_get may return different clock producers depending on @dev.) | |
196 | * | |
197 | * Drivers must assume that the clock source is not enabled. | |
198 | * | |
199 | * devm_clk_get should not be called from within interrupt context. | |
200 | * | |
201 | * The clock will automatically be freed when the device is unbound | |
202 | * from the bus. | |
203 | */ | |
204 | struct clk *devm_clk_get(struct udevice *dev, const char *id); | |
205 | ||
206 | /** | |
207 | * devm_clk_get_optional - lookup and obtain a managed reference to an optional | |
208 | * clock producer. | |
209 | * @dev: device for clock "consumer" | |
210 | * @id: clock consumer ID | |
211 | * | |
212 | * Behaves the same as devm_clk_get() except where there is no clock producer. | |
213 | * In this case, instead of returning -ENOENT, the function returns NULL. | |
214 | */ | |
215 | struct clk *devm_clk_get_optional(struct udevice *dev, const char *id); | |
216 | ||
b108d8a0 PC |
217 | /** |
218 | * clk_release_all() - Disable (turn off)/Free an array of previously | |
219 | * requested clocks. | |
220 | * | |
221 | * For each clock contained in the clock array, this function will check if | |
222 | * clock has been previously requested and then will disable and free it. | |
223 | * | |
224 | * @clk: A clock struct array that was previously successfully | |
225 | * requested by clk_request/get_by_*(). | |
226 | * @count Number of clock contained in the array | |
227 | * @return zero on success, or -ve error code. | |
228 | */ | |
229 | int clk_release_all(struct clk *clk, int count); | |
230 | ||
52720c53 JJH |
231 | /** |
232 | * devm_clk_put - "free" a managed clock source | |
233 | * @dev: device used to acquire the clock | |
234 | * @clk: clock source acquired with devm_clk_get() | |
235 | * | |
236 | * Note: drivers must ensure that all clk_enable calls made on this | |
237 | * clock source are balanced by clk_disable calls prior to calling | |
238 | * this function. | |
239 | * | |
240 | * clk_put should not be called from within interrupt context. | |
241 | */ | |
242 | void devm_clk_put(struct udevice *dev, struct clk *clk); | |
243 | ||
021abf69 MY |
244 | #else |
245 | static inline int clk_get_by_index(struct udevice *dev, int index, | |
246 | struct clk *clk) | |
247 | { | |
248 | return -ENOSYS; | |
249 | } | |
250 | ||
a855be87 NA |
251 | static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) |
252 | { | |
253 | return -ENOSYS; | |
254 | } | |
255 | ||
021abf69 MY |
256 | static inline int clk_get_by_name(struct udevice *dev, const char *name, |
257 | struct clk *clk) | |
258 | { | |
259 | return -ENOSYS; | |
260 | } | |
b108d8a0 | 261 | |
d646420e CY |
262 | static inline int |
263 | clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk) | |
264 | { | |
265 | return -ENOSYS; | |
266 | } | |
267 | ||
268 | static inline int | |
269 | clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk) | |
270 | { | |
271 | return -ENOSYS; | |
272 | } | |
273 | ||
b108d8a0 PC |
274 | static inline int clk_release_all(struct clk *clk, int count) |
275 | { | |
276 | return -ENOSYS; | |
277 | } | |
021abf69 | 278 | #endif |
f26c8a8e | 279 | |
f4fcba5c PT |
280 | #if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) && \ |
281 | CONFIG_IS_ENABLED(CLK) | |
282 | /** | |
283 | * clk_set_defaults - Process 'assigned-{clocks/clock-parents/clock-rates}' | |
284 | * properties to configure clocks | |
285 | * | |
286 | * @dev: A device to process (the ofnode associated with this device | |
287 | * will be processed). | |
fd1ba296 JJH |
288 | * @stage: A integer. 0 indicates that this is called before the device |
289 | * is probed. 1 indicates that this is called just after the | |
290 | * device has been probed | |
f4fcba5c | 291 | */ |
fd1ba296 | 292 | int clk_set_defaults(struct udevice *dev, int stage); |
f4fcba5c | 293 | #else |
fd1ba296 | 294 | static inline int clk_set_defaults(struct udevice *dev, int stage) |
f4fcba5c PT |
295 | { |
296 | return 0; | |
297 | } | |
298 | #endif | |
299 | ||
a855be87 NA |
300 | /** |
301 | * clk_release_bulk() - Disable (turn off)/Free an array of previously | |
302 | * requested clocks in a clock bulk struct. | |
303 | * | |
304 | * For each clock contained in the clock bulk struct, this function will check | |
305 | * if clock has been previously requested and then will disable and free it. | |
306 | * | |
307 | * @clk: A clock bulk struct that was previously successfully | |
308 | * requested by clk_get_bulk(). | |
309 | * @return zero on success, or -ve error code. | |
310 | */ | |
311 | static inline int clk_release_bulk(struct clk_bulk *bulk) | |
312 | { | |
313 | return clk_release_all(bulk->clks, bulk->count); | |
314 | } | |
315 | ||
6f791747 | 316 | #if CONFIG_IS_ENABLED(CLK) |
f26c8a8e | 317 | /** |
135aa950 | 318 | * clk_request - Request a clock by provider-specific ID. |
f26c8a8e | 319 | * |
135aa950 SW |
320 | * This requests a clock using a provider-specific ID. Generally, this function |
321 | * should not be used, since clk_get_by_index/name() provide an interface that | |
322 | * better separates clients from intimate knowledge of clock providers. | |
323 | * However, this function may be useful in core SoC-specific code. | |
324 | * | |
325 | * @dev: The clock provider device. | |
326 | * @clock: A pointer to a clock struct to initialize. The caller must | |
327 | * have already initialized any field in this struct which the | |
328 | * clock provider uses to identify the clock. | |
329 | * @return 0 if OK, or a negative error code. | |
f26c8a8e | 330 | */ |
135aa950 | 331 | int clk_request(struct udevice *dev, struct clk *clk); |
f26c8a8e | 332 | |
f0e07516 | 333 | /** |
d7c56616 | 334 | * clk_free - Free a previously requested clock. |
f0e07516 | 335 | * |
135aa950 SW |
336 | * @clock: A clock struct that was previously successfully requested by |
337 | * clk_request/get_by_*(). | |
338 | * @return 0 if OK, or a negative error code. | |
f0e07516 | 339 | */ |
135aa950 | 340 | int clk_free(struct clk *clk); |
f0e07516 | 341 | |
f26c8a8e | 342 | /** |
135aa950 | 343 | * clk_get_rate() - Get current clock rate. |
f26c8a8e | 344 | * |
135aa950 SW |
345 | * @clk: A clock struct that was previously successfully requested by |
346 | * clk_request/get_by_*(). | |
347 | * @return clock rate in Hz, or -ve error code. | |
f26c8a8e | 348 | */ |
135aa950 | 349 | ulong clk_get_rate(struct clk *clk); |
f26c8a8e | 350 | |
0c660c2b LM |
351 | /** |
352 | * clk_get_parent() - Get current clock's parent. | |
353 | * | |
354 | * @clk: A clock struct that was previously successfully requested by | |
355 | * clk_request/get_by_*(). | |
356 | * @return pointer to parent's struct clk, or error code passed as pointer | |
357 | */ | |
358 | struct clk *clk_get_parent(struct clk *clk); | |
359 | ||
4aa78300 LM |
360 | /** |
361 | * clk_get_parent_rate() - Get parent of current clock rate. | |
362 | * | |
363 | * @clk: A clock struct that was previously successfully requested by | |
364 | * clk_request/get_by_*(). | |
365 | * @return clock rate in Hz, or -ve error code. | |
366 | */ | |
367 | long long clk_get_parent_rate(struct clk *clk); | |
368 | ||
2983ad55 DB |
369 | /** |
370 | * clk_round_rate() - Adjust a rate to the exact rate a clock can provide | |
371 | * | |
372 | * This answers the question "if I were to pass @rate to clk_set_rate(), | |
373 | * what clock rate would I end up with?" without changing the hardware | |
374 | * in any way. In other words: | |
375 | * | |
376 | * rate = clk_round_rate(clk, r); | |
377 | * | |
378 | * and: | |
379 | * | |
380 | * rate = clk_set_rate(clk, r); | |
381 | * | |
382 | * are equivalent except the former does not modify the clock hardware | |
383 | * in any way. | |
384 | * | |
385 | * @clk: A clock struct that was previously successfully requested by | |
386 | * clk_request/get_by_*(). | |
387 | * @rate: desired clock rate in Hz. | |
388 | * @return rounded rate in Hz, or -ve error code. | |
389 | */ | |
390 | ulong clk_round_rate(struct clk *clk, ulong rate); | |
391 | ||
f26c8a8e | 392 | /** |
135aa950 | 393 | * clk_set_rate() - Set current clock rate. |
f26c8a8e | 394 | * |
135aa950 SW |
395 | * @clk: A clock struct that was previously successfully requested by |
396 | * clk_request/get_by_*(). | |
397 | * @rate: New clock rate in Hz. | |
398 | * @return new rate, or -ve error code. | |
f26c8a8e | 399 | */ |
135aa950 | 400 | ulong clk_set_rate(struct clk *clk, ulong rate); |
f26c8a8e | 401 | |
f7d1046d PT |
402 | /** |
403 | * clk_set_parent() - Set current clock parent. | |
404 | * | |
405 | * @clk: A clock struct that was previously successfully requested by | |
406 | * clk_request/get_by_*(). | |
407 | * @parent: A clock struct that was previously successfully requested by | |
408 | * clk_request/get_by_*(). | |
409 | * @return new rate, or -ve error code. | |
410 | */ | |
411 | int clk_set_parent(struct clk *clk, struct clk *parent); | |
412 | ||
e70cc438 | 413 | /** |
135aa950 | 414 | * clk_enable() - Enable (turn on) a clock. |
e70cc438 | 415 | * |
135aa950 SW |
416 | * @clk: A clock struct that was previously successfully requested by |
417 | * clk_request/get_by_*(). | |
418 | * @return zero on success, or -ve error code. | |
419 | */ | |
420 | int clk_enable(struct clk *clk); | |
421 | ||
a855be87 NA |
422 | /** |
423 | * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct. | |
424 | * | |
425 | * @bulk: A clock bulk struct that was previously successfully requested | |
426 | * by clk_get_bulk(). | |
427 | * @return zero on success, or -ve error code. | |
428 | */ | |
429 | int clk_enable_bulk(struct clk_bulk *bulk); | |
430 | ||
135aa950 SW |
431 | /** |
432 | * clk_disable() - Disable (turn off) a clock. | |
e70cc438 | 433 | * |
135aa950 SW |
434 | * @clk: A clock struct that was previously successfully requested by |
435 | * clk_request/get_by_*(). | |
436 | * @return zero on success, or -ve error code. | |
e70cc438 | 437 | */ |
135aa950 | 438 | int clk_disable(struct clk *clk); |
e70cc438 | 439 | |
a855be87 NA |
440 | /** |
441 | * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct. | |
442 | * | |
443 | * @bulk: A clock bulk struct that was previously successfully requested | |
444 | * by clk_get_bulk(). | |
445 | * @return zero on success, or -ve error code. | |
446 | */ | |
447 | int clk_disable_bulk(struct clk_bulk *bulk); | |
448 | ||
acbb7cd4 SN |
449 | /** |
450 | * clk_is_match - check if two clk's point to the same hardware clock | |
451 | * @p: clk compared against q | |
452 | * @q: clk compared against p | |
453 | * | |
454 | * Returns true if the two struct clk pointers both point to the same hardware | |
455 | * clock node. | |
456 | * | |
457 | * Returns false otherwise. Note that two NULL clks are treated as matching. | |
458 | */ | |
459 | bool clk_is_match(const struct clk *p, const struct clk *q); | |
460 | ||
2796af73 LM |
461 | /** |
462 | * clk_get_by_id() - Get the clock by its ID | |
463 | * | |
464 | * @id: The clock ID to search for | |
465 | * | |
466 | * @clkp: A pointer to clock struct that has been found among added clocks | |
467 | * to UCLASS_CLK | |
468 | * @return zero on success, or -ENOENT on error | |
469 | */ | |
470 | int clk_get_by_id(ulong id, struct clk **clkp); | |
2457612d PF |
471 | |
472 | /** | |
473 | * clk_dev_binded() - Check whether the clk has a device binded | |
474 | * | |
475 | * @clk A pointer to the clk | |
476 | * | |
477 | * @return true on binded, or false on no | |
478 | */ | |
479 | bool clk_dev_binded(struct clk *clk); | |
6f791747 PD |
480 | |
481 | #else /* CONFIG_IS_ENABLED(CLK) */ | |
482 | ||
483 | static inline int clk_request(struct udevice *dev, struct clk *clk) | |
484 | { | |
485 | return -ENOSYS; | |
486 | } | |
487 | ||
488 | static inline int clk_free(struct clk *clk) | |
489 | { | |
490 | return 0; | |
491 | } | |
492 | ||
493 | static inline ulong clk_get_rate(struct clk *clk) | |
494 | { | |
495 | return -ENOSYS; | |
496 | } | |
497 | ||
498 | static inline struct clk *clk_get_parent(struct clk *clk) | |
499 | { | |
500 | return ERR_PTR(-ENOSYS); | |
501 | } | |
502 | ||
503 | static inline long long clk_get_parent_rate(struct clk *clk) | |
504 | { | |
505 | return -ENOSYS; | |
506 | } | |
507 | ||
2983ad55 DB |
508 | static inline ulong clk_round_rate(struct clk *clk, ulong rate) |
509 | { | |
510 | return -ENOSYS; | |
511 | } | |
512 | ||
6f791747 PD |
513 | static inline ulong clk_set_rate(struct clk *clk, ulong rate) |
514 | { | |
515 | return -ENOSYS; | |
516 | } | |
517 | ||
518 | static inline int clk_set_parent(struct clk *clk, struct clk *parent) | |
519 | { | |
520 | return -ENOSYS; | |
521 | } | |
522 | ||
523 | static inline int clk_enable(struct clk *clk) | |
524 | { | |
525 | return 0; | |
526 | } | |
527 | ||
528 | static inline int clk_enable_bulk(struct clk_bulk *bulk) | |
529 | { | |
530 | return 0; | |
531 | } | |
532 | ||
533 | static inline int clk_disable(struct clk *clk) | |
534 | { | |
535 | return 0; | |
536 | } | |
537 | ||
538 | static inline int clk_disable_bulk(struct clk_bulk *bulk) | |
539 | { | |
540 | return 0; | |
541 | } | |
542 | ||
543 | static inline bool clk_is_match(const struct clk *p, const struct clk *q) | |
544 | { | |
545 | return false; | |
546 | } | |
547 | ||
548 | static inline int clk_get_by_id(ulong id, struct clk **clkp) | |
549 | { | |
550 | return -ENOSYS; | |
551 | } | |
552 | ||
553 | static inline bool clk_dev_binded(struct clk *clk) | |
554 | { | |
555 | return false; | |
556 | } | |
557 | #endif /* CONFIG_IS_ENABLED(CLK) */ | |
558 | ||
559 | /** | |
560 | * clk_valid() - check if clk is valid | |
561 | * | |
562 | * @clk: the clock to check | |
563 | * @return true if valid, or false | |
564 | */ | |
565 | static inline bool clk_valid(struct clk *clk) | |
566 | { | |
567 | return clk && !!clk->dev; | |
568 | } | |
569 | ||
570 | int soc_clk_dump(void); | |
571 | ||
135aa950 | 572 | #endif |
52720c53 JJH |
573 | |
574 | #define clk_prepare_enable(clk) clk_enable(clk) | |
575 | #define clk_disable_unprepare(clk) clk_disable(clk) |