blob: f8f56d9cf01db92094fa91960120e31f35a48d21 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassf26c8a82015-06-23 15:39:15 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warren135aa952016-06-17 09:44:00 -06005 * Copyright (c) 2016, NVIDIA CORPORATION.
Simon Glassf26c8a82015-06-23 15:39:15 -06006 */
7
Michal Simek08d0d6f2013-11-21 13:39:02 -08008#ifndef _CLK_H_
9#define _CLK_H_
10
Jagan Teki75f98312019-02-28 00:26:52 +053011#include <dm/ofnode.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090012#include <linux/errno.h>
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090013#include <linux/types.h>
14
Stephen Warren135aa952016-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 Majewskia9092712019-06-24 15:50:36 +020023 * A driver that implements UCLASS_CLK is a clock provider. A provider will
Stephen Warren135aa952016-06-17 09:44:00 -060024 * often implement multiple separate clocks, since the hardware it manages
Liviu Dudau9bf86502018-09-17 17:43:08 +010025 * often has this capability. clk-uclass.h describes the interface which
Stephen Warren135aa952016-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 */
31
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090032struct udevice;
33
Stephen Warren135aa952016-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 Majewski105db952019-06-24 15:50:38 +020043 * @rate: The clock rate (in HZ).
Lukasz Majewskia8592cd2019-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 Warren135aa952016-06-17 09:44:00 -060047 * @id: The clock signal ID within the provider.
Andreas Dannenberg3b3969b2018-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 Warren135aa952016-06-17 09:44:00 -060051 *
Andreas Dannenberg3b3969b2018-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 Warren135aa952016-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 Majewski105db952019-06-24 15:50:38 +020062 long long rate; /* in HZ */
Lukasz Majewskia8592cd2019-06-24 15:50:39 +020063 u32 flags;
Stephen Warren135aa952016-06-17 09:44:00 -060064 /*
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053065 * Written by of_xlate. In the future, we might add more fields here.
Simon Glassf26c8a82015-06-23 15:39:15 -060066 */
Stephen Warren135aa952016-06-17 09:44:00 -060067 unsigned long id;
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053068 unsigned long data;
Simon Glassf26c8a82015-06-23 15:39:15 -060069};
70
Neil Armstronga855be82018-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 Burton3f96f872016-09-08 07:47:28 +010088#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
Simon Glass0d154632017-08-29 14:15:56 -060089struct phandle_1_arg;
Simon Glass7423daa2016-07-04 11:58:03 -060090int clk_get_by_index_platdata(struct udevice *dev, int index,
Simon Glass0d154632017-08-29 14:15:56 -060091 struct phandle_1_arg *cells, struct clk *clk);
Simon Glass7423daa2016-07-04 11:58:03 -060092
Simon Glasse70cc432016-01-20 19:43:02 -070093/**
Stephen Warren135aa952016-06-17 09:44:00 -060094 * clock_get_by_index - Get/request a clock by integer index.
Simon Glasse70cc432016-01-20 19:43:02 -070095 *
Stephen Warren135aa952016-06-17 09:44:00 -060096 * 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.
Simon Glasse70cc432016-01-20 19:43:02 -0700101 *
Stephen Warren135aa952016-06-17 09:44:00 -0600102 * @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.
Simon Glasse70cc432016-01-20 19:43:02 -0700107 */
Stephen Warren135aa952016-06-17 09:44:00 -0600108int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
109
110/**
Jagan Teki75f98312019-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 Armstronga855be82018-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 Warren135aa952016-06-17 09:44:00 -0600140 * clock_get_by_name - Get/request a clock by name.
141 *
142 * 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.
153 */
154int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
Patrice Chotardb108d8a2017-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 Yamada021abf62016-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 Armstronga855be82018-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 Yamada021abf62016-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 Chotardb108d8a2017-07-25 13:24:45 +0200187
188static inline int clk_release_all(struct clk *clk, int count)
189{
190 return -ENOSYS;
191}
Masahiro Yamada021abf62016-09-26 20:45:27 +0900192#endif
Simon Glasse70cc432016-01-20 19:43:02 -0700193
Philipp Tomsichf4fcba52018-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
Stephen Warren135aa952016-06-17 09:44:00 -0600211/**
Neil Armstronga855be82018-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 Warren135aa952016-06-17 09:44:00 -0600228 * clk_request - Request a clock by provider-specific ID.
229 *
230 * 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.
240 */
241int clk_request(struct udevice *dev, struct clk *clk);
242
243/**
244 * clock_free - Free a previously requested clock.
245 *
246 * @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.
249 */
250int clk_free(struct clk *clk);
251
252/**
253 * clk_get_rate() - Get current clock rate.
254 *
255 * @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.
258 */
259ulong clk_get_rate(struct clk *clk);
260
261/**
Lukasz Majewski0c660c22019-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 Majewski4aa78302019-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 Warren135aa952016-06-17 09:44:00 -0600280 * clk_set_rate() - Set current clock rate.
281 *
282 * @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.
286 */
287ulong clk_set_rate(struct clk *clk, ulong rate);
288
289/**
Philipp Tomsichf7d10462018-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 Warren135aa952016-06-17 09:44:00 -0600301 * clk_enable() - Enable (turn on) a clock.
302 *
303 * @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 Armstronga855be82018-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 Warren135aa952016-06-17 09:44:00 -0600319 * clk_disable() - Disable (turn off) a clock.
320 *
321 * @clk: A clock struct that was previously successfully requested by
322 * clk_request/get_by_*().
323 * @return zero on success, or -ve error code.
324 */
325int clk_disable(struct clk *clk);
326
Neil Armstronga855be82018-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 Warren135aa952016-06-17 09:44:00 -0600336int soc_clk_dump(void);
337
Fabrice Gasnier1fe243a2018-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 Majewski2796af72019-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);
Stephen Warren135aa952016-06-17 09:44:00 -0600359#endif