blob: 2ebc905e04b5545c67df9e1a8f95267adde07f3d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass36ad2342015-06-23 15:39:15 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warrena9622432016-06-17 09:44:00 -06005 * Copyright (c) 2016, NVIDIA CORPORATION.
Simon Glass36ad2342015-06-23 15:39:15 -06006 */
7
Michal Simeka0d28022013-11-21 13:39:02 -08008#ifndef _CLK_H_
9#define _CLK_H_
10
Jagan Tekifc7c7ce2019-02-28 00:26:52 +053011#include <dm/ofnode.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090012#include <linux/errno.h>
Masahiro Yamada53b2aec2016-01-13 13:16:09 +090013#include <linux/types.h>
14
Stephen Warrena9622432016-06-17 09:44:00 -060015/**
16 * A clock is a hardware signal that oscillates autonomously at a specific
17 * frequency and duty cycle. Most hardware modules require one or more clock
18 * signal to drive their operation. Clock signals are typically generated
19 * externally to the HW module consuming them, by an entity this API calls a
20 * clock provider. This API provides a standard means for drivers to enable and
21 * disable clocks, and to set the rate at which they oscillate.
22 *
Lukasz Majewski2c30fa42019-06-24 15:50:36 +020023 * A driver that implements UCLASS_CLK is a clock provider. A provider will
Stephen Warrena9622432016-06-17 09:44:00 -060024 * often implement multiple separate clocks, since the hardware it manages
Liviu Dudau0a083b82018-09-17 17:43:08 +010025 * often has this capability. clk-uclass.h describes the interface which
Stephen Warrena9622432016-06-17 09:44:00 -060026 * clock providers must implement.
27 *
28 * Clock consumers/clients are the HW modules driven by the clock signals. This
29 * header file describes the API used by drivers for those HW modules.
30 */
Masahiro Yamada67c22952016-01-13 13:16:12 +090031
Stephen Warrena9622432016-06-17 09:44:00 -060032struct udevice;
Simon Glass36ad2342015-06-23 15:39:15 -060033
Stephen Warrena9622432016-06-17 09:44:00 -060034/**
35 * struct clk - A handle to (allowing control of) a single clock.
36 *
37 * Clients provide storage for clock handles. The content of the structure is
38 * managed solely by the clock API and clock drivers. A clock struct is
39 * initialized by "get"ing the clock struct. The clock struct is passed to all
40 * other clock APIs to identify which clock signal to operate upon.
41 *
42 * @dev: The device which implements the clock signal.
Lukasz Majewskied2685f2019-06-24 15:50:38 +020043 * @rate: The clock rate (in HZ).
Lukasz Majewski8ea04342019-06-24 15:50:39 +020044 * @flags: Flags used across common clock structure (e.g. CLK_)
45 * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined
46 * in struct's for those devices (e.g. struct clk_mux).
Stephen Warrena9622432016-06-17 09:44:00 -060047 * @id: The clock signal ID within the provider.
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053048 * @data: An optional data field for scenarios where a single integer ID is not
49 * sufficient. If used, it can be populated through an .of_xlate op and
50 * processed during the various clock ops.
Stephen Warrena9622432016-06-17 09:44:00 -060051 *
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053052 * Should additional information to identify and configure any clock signal
53 * for any provider be required in the future, the struct could be expanded to
Stephen Warrena9622432016-06-17 09:44:00 -060054 * either (a) add more fields to allow clock providers to store additional
55 * information, or (b) replace the id field with an opaque pointer, which the
56 * provider would dynamically allocated during its .of_xlate op, and process
57 * during is .request op. This may require the addition of an extra op to clean
58 * up the allocation.
59 */
60struct clk {
61 struct udevice *dev;
Lukasz Majewskied2685f2019-06-24 15:50:38 +020062 long long rate; /* in HZ */
Lukasz Majewski8ea04342019-06-24 15:50:39 +020063 u32 flags;
Stephen Warrena9622432016-06-17 09:44:00 -060064 /*
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053065 * Written by of_xlate. In the future, we might add more fields here.
Simon Glass36ad2342015-06-23 15:39:15 -060066 */
Stephen Warrena9622432016-06-17 09:44:00 -060067 unsigned long id;
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053068 unsigned long data;
Simon Glass36ad2342015-06-23 15:39:15 -060069};
70
Neil Armstrong8a275a02018-04-03 11:44:18 +020071/**
72 * struct clk_bulk - A handle to (allowing control of) a bulk of clocks.
73 *
74 * Clients provide storage for the clock bulk. The content of the structure is
75 * managed solely by the clock API. A clock bulk struct is
76 * initialized by "get"ing the clock bulk struct.
77 * The clock bulk struct is passed to all other bulk clock APIs to apply
78 * the API to all the clock in the bulk struct.
79 *
80 * @clks: An array of clock handles.
81 * @count: The number of clock handles in the clks array.
82 */
83struct clk_bulk {
84 struct clk *clks;
85 unsigned int count;
86};
87
Paul Burton103387a2016-09-08 07:47:28 +010088#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
Simon Glasse94414b2017-08-29 14:15:56 -060089struct phandle_1_arg;
Simon Glass589d9152016-07-04 11:58:03 -060090int clk_get_by_index_platdata(struct udevice *dev, int index,
Simon Glasse94414b2017-08-29 14:15:56 -060091 struct phandle_1_arg *cells, struct clk *clk);
Simon Glass589d9152016-07-04 11:58:03 -060092
Stephen Warrena9622432016-06-17 09:44:00 -060093/**
94 * clock_get_by_index - Get/request a clock by integer index.
95 *
96 * This looks up and requests a clock. The index is relative to the client
97 * device; each device is assumed to have n clocks associated with it somehow,
98 * and this function finds and requests one of them. The mapping of client
99 * device clock indices to provider clocks may be via device-tree properties,
100 * board-provided mapping tables, or some other mechanism.
101 *
102 * @dev: The client device.
103 * @index: The index of the clock to request, within the client's list of
104 * clocks.
105 * @clock A pointer to a clock struct to initialize.
106 * @return 0 if OK, or a negative error code.
107 */
108int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600109
110/**
Jagan Tekifc7c7ce2019-02-28 00:26:52 +0530111 * clock_get_by_index_nodev - Get/request a clock by integer index
112 * without a device.
113 *
114 * This is a version of clk_get_by_index() that does not use a device.
115 *
116 * @node: The client ofnode.
117 * @index: The index of the clock to request, within the client's list of
118 * clocks.
119 * @clock A pointer to a clock struct to initialize.
120 * @return 0 if OK, or a negative error code.
121 */
122int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk);
123
124/**
Neil Armstrong8a275a02018-04-03 11:44:18 +0200125 * clock_get_bulk - Get/request all clocks of a device.
126 *
127 * This looks up and requests all clocks of the client device; each device is
128 * assumed to have n clocks associated with it somehow, and this function finds
129 * and requests all of them in a separate structure. The mapping of client
130 * device clock indices to provider clocks may be via device-tree properties,
131 * board-provided mapping tables, or some other mechanism.
132 *
133 * @dev: The client device.
134 * @bulk A pointer to a clock bulk struct to initialize.
135 * @return 0 if OK, or a negative error code.
136 */
137int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk);
138
139/**
Stephen Warrena9622432016-06-17 09:44:00 -0600140 * clock_get_by_name - Get/request a clock by name.
Simon Glass36ad2342015-06-23 15:39:15 -0600141 *
Stephen Warrena9622432016-06-17 09:44:00 -0600142 * This looks up and requests a clock. The name is relative to the client
143 * device; each device is assumed to have n clocks associated with it somehow,
144 * and this function finds and requests one of them. The mapping of client
145 * device clock names to provider clocks may be via device-tree properties,
146 * board-provided mapping tables, or some other mechanism.
147 *
148 * @dev: The client device.
149 * @name: The name of the clock to request, within the client's list of
150 * clocks.
151 * @clock: A pointer to a clock struct to initialize.
152 * @return 0 if OK, or a negative error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600153 */
Stephen Warrena9622432016-06-17 09:44:00 -0600154int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
Patrice Chotardcafc3412017-07-25 13:24:45 +0200155
156/**
157 * clk_release_all() - Disable (turn off)/Free an array of previously
158 * requested clocks.
159 *
160 * For each clock contained in the clock array, this function will check if
161 * clock has been previously requested and then will disable and free it.
162 *
163 * @clk: A clock struct array that was previously successfully
164 * requested by clk_request/get_by_*().
165 * @count Number of clock contained in the array
166 * @return zero on success, or -ve error code.
167 */
168int clk_release_all(struct clk *clk, int count);
169
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900170#else
171static inline int clk_get_by_index(struct udevice *dev, int index,
172 struct clk *clk)
173{
174 return -ENOSYS;
175}
176
Neil Armstrong8a275a02018-04-03 11:44:18 +0200177static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
178{
179 return -ENOSYS;
180}
181
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900182static inline int clk_get_by_name(struct udevice *dev, const char *name,
183 struct clk *clk)
184{
185 return -ENOSYS;
186}
Patrice Chotardcafc3412017-07-25 13:24:45 +0200187
188static inline int clk_release_all(struct clk *clk, int count)
189{
190 return -ENOSYS;
191}
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900192#endif
Simon Glass36ad2342015-06-23 15:39:15 -0600193
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100194#if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) && \
195 CONFIG_IS_ENABLED(CLK)
196/**
197 * clk_set_defaults - Process 'assigned-{clocks/clock-parents/clock-rates}'
198 * properties to configure clocks
199 *
200 * @dev: A device to process (the ofnode associated with this device
201 * will be processed).
202 */
203int clk_set_defaults(struct udevice *dev);
204#else
205static inline int clk_set_defaults(struct udevice *dev)
206{
207 return 0;
208}
209#endif
210
Simon Glass36ad2342015-06-23 15:39:15 -0600211/**
Neil Armstrong8a275a02018-04-03 11:44:18 +0200212 * clk_release_bulk() - Disable (turn off)/Free an array of previously
213 * requested clocks in a clock bulk struct.
214 *
215 * For each clock contained in the clock bulk struct, this function will check
216 * if clock has been previously requested and then will disable and free it.
217 *
218 * @clk: A clock bulk struct that was previously successfully
219 * requested by clk_get_bulk().
220 * @return zero on success, or -ve error code.
221 */
222static inline int clk_release_bulk(struct clk_bulk *bulk)
223{
224 return clk_release_all(bulk->clks, bulk->count);
225}
226
227/**
Stephen Warrena9622432016-06-17 09:44:00 -0600228 * clk_request - Request a clock by provider-specific ID.
Simon Glass36ad2342015-06-23 15:39:15 -0600229 *
Stephen Warrena9622432016-06-17 09:44:00 -0600230 * This requests a clock using a provider-specific ID. Generally, this function
231 * should not be used, since clk_get_by_index/name() provide an interface that
232 * better separates clients from intimate knowledge of clock providers.
233 * However, this function may be useful in core SoC-specific code.
234 *
235 * @dev: The clock provider device.
236 * @clock: A pointer to a clock struct to initialize. The caller must
237 * have already initialized any field in this struct which the
238 * clock provider uses to identify the clock.
239 * @return 0 if OK, or a negative error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600240 */
Stephen Warrena9622432016-06-17 09:44:00 -0600241int clk_request(struct udevice *dev, struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600242
243/**
Stephen Warrena9622432016-06-17 09:44:00 -0600244 * clock_free - Free a previously requested clock.
Masahiro Yamada67c22952016-01-13 13:16:12 +0900245 *
Stephen Warrena9622432016-06-17 09:44:00 -0600246 * @clock: A clock struct that was previously successfully requested by
247 * clk_request/get_by_*().
248 * @return 0 if OK, or a negative error code.
Masahiro Yamada67c22952016-01-13 13:16:12 +0900249 */
Stephen Warrena9622432016-06-17 09:44:00 -0600250int clk_free(struct clk *clk);
Masahiro Yamada67c22952016-01-13 13:16:12 +0900251
252/**
Stephen Warrena9622432016-06-17 09:44:00 -0600253 * clk_get_rate() - Get current clock rate.
Simon Glass36ad2342015-06-23 15:39:15 -0600254 *
Stephen Warrena9622432016-06-17 09:44:00 -0600255 * @clk: A clock struct that was previously successfully requested by
256 * clk_request/get_by_*().
257 * @return clock rate in Hz, or -ve error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600258 */
Stephen Warrena9622432016-06-17 09:44:00 -0600259ulong clk_get_rate(struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600260
261/**
Lukasz Majewski9e38dc32019-06-24 15:50:42 +0200262 * clk_get_parent() - Get current clock's parent.
263 *
264 * @clk: A clock struct that was previously successfully requested by
265 * clk_request/get_by_*().
266 * @return pointer to parent's struct clk, or error code passed as pointer
267 */
268struct clk *clk_get_parent(struct clk *clk);
269
270/**
Lukasz Majewski53155da2019-06-24 15:50:43 +0200271 * clk_get_parent_rate() - Get parent of current clock rate.
272 *
273 * @clk: A clock struct that was previously successfully requested by
274 * clk_request/get_by_*().
275 * @return clock rate in Hz, or -ve error code.
276 */
277long long clk_get_parent_rate(struct clk *clk);
278
279/**
Stephen Warrena9622432016-06-17 09:44:00 -0600280 * clk_set_rate() - Set current clock rate.
Simon Glass36ad2342015-06-23 15:39:15 -0600281 *
Stephen Warrena9622432016-06-17 09:44:00 -0600282 * @clk: A clock struct that was previously successfully requested by
283 * clk_request/get_by_*().
284 * @rate: New clock rate in Hz.
285 * @return new rate, or -ve error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600286 */
Stephen Warrena9622432016-06-17 09:44:00 -0600287ulong clk_set_rate(struct clk *clk, ulong rate);
Simon Glass36ad2342015-06-23 15:39:15 -0600288
Simon Glass0342bd22016-01-20 19:43:02 -0700289/**
Philipp Tomsichf8e02b22018-01-08 11:15:08 +0100290 * clk_set_parent() - Set current clock parent.
291 *
292 * @clk: A clock struct that was previously successfully requested by
293 * clk_request/get_by_*().
294 * @parent: A clock struct that was previously successfully requested by
295 * clk_request/get_by_*().
296 * @return new rate, or -ve error code.
297 */
298int clk_set_parent(struct clk *clk, struct clk *parent);
299
300/**
Stephen Warrena9622432016-06-17 09:44:00 -0600301 * clk_enable() - Enable (turn on) a clock.
Simon Glass0342bd22016-01-20 19:43:02 -0700302 *
Stephen Warrena9622432016-06-17 09:44:00 -0600303 * @clk: A clock struct that was previously successfully requested by
304 * clk_request/get_by_*().
305 * @return zero on success, or -ve error code.
306 */
307int clk_enable(struct clk *clk);
308
309/**
Neil Armstrong8a275a02018-04-03 11:44:18 +0200310 * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct.
311 *
312 * @bulk: A clock bulk struct that was previously successfully requested
313 * by clk_get_bulk().
314 * @return zero on success, or -ve error code.
315 */
316int clk_enable_bulk(struct clk_bulk *bulk);
317
318/**
Stephen Warrena9622432016-06-17 09:44:00 -0600319 * clk_disable() - Disable (turn off) a clock.
Simon Glass0342bd22016-01-20 19:43:02 -0700320 *
Stephen Warrena9622432016-06-17 09:44:00 -0600321 * @clk: A clock struct that was previously successfully requested by
322 * clk_request/get_by_*().
323 * @return zero on success, or -ve error code.
Simon Glass0342bd22016-01-20 19:43:02 -0700324 */
Stephen Warrena9622432016-06-17 09:44:00 -0600325int clk_disable(struct clk *clk);
Simon Glass0342bd22016-01-20 19:43:02 -0700326
Neil Armstrong8a275a02018-04-03 11:44:18 +0200327/**
328 * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct.
329 *
330 * @bulk: A clock bulk struct that was previously successfully requested
331 * by clk_get_bulk().
332 * @return zero on success, or -ve error code.
333 */
334int clk_disable_bulk(struct clk_bulk *bulk);
335
Stephen Warrena9622432016-06-17 09:44:00 -0600336int soc_clk_dump(void);
337
Fabrice Gasnier11192712018-07-24 16:31:28 +0200338/**
339 * clk_valid() - check if clk is valid
340 *
341 * @clk: the clock to check
342 * @return true if valid, or false
343 */
344static inline bool clk_valid(struct clk *clk)
345{
346 return !!clk->dev;
347}
Lukasz Majewski12014be2019-06-24 15:50:44 +0200348
349/**
350 * clk_get_by_id() - Get the clock by its ID
351 *
352 * @id: The clock ID to search for
353 *
354 * @clkp: A pointer to clock struct that has been found among added clocks
355 * to UCLASS_CLK
356 * @return zero on success, or -ENOENT on error
357 */
358int clk_get_by_id(ulong id, struct clk **clkp);
Peng Fan1d0a50a2019-07-31 07:01:23 +0000359
360/**
361 * clk_dev_binded() - Check whether the clk has a device binded
362 *
363 * @clk A pointer to the clk
364 *
365 * @return true on binded, or false on no
366 */
367bool clk_dev_binded(struct clk *clk);
Stephen Warrena9622432016-06-17 09:44:00 -0600368#endif