Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
clock_control.h
Go to the documentation of this file.
1/* clock_control.h - public clock controller driver API */
2
3/*
4 * Copyright (c) 2015 Intel Corporation
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
14
15#ifndef ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_
16#define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_
17
26
27#include <errno.h>
28#include <stddef.h>
29
30#include <zephyr/types.h>
31#include <zephyr/device.h>
32#include <zephyr/sys/__assert.h>
33#include <zephyr/sys/slist.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/* Clock control API */
40
41/* Used to select all subsystem of a clock controller */
42#define CLOCK_CONTROL_SUBSYS_ALL NULL
43
53
60
68
75typedef void (*clock_control_cb_t)(const struct device *dev,
77 void *user_data);
78
84
90typedef int (*clock_control)(const struct device *dev, clock_control_subsys_t sys);
91
97typedef int (*clock_control_get)(const struct device *dev,
99 uint32_t *rate);
100
106typedef int (*clock_control_async_on_fn)(const struct device *dev,
109 void *user_data);
110
117 const struct device *dev,
119
125typedef int (*clock_control_set)(const struct device *dev,
128
134typedef int (*clock_control_configure_fn)(const struct device *dev,
136 void *data);
137
157
159
173static inline int clock_control_on(const struct device *dev,
175{
176 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
177
178 if (api->on == NULL) {
179 return -ENOSYS;
180 }
181
182 return api->on(dev, sys);
183}
184
195static inline int clock_control_off(const struct device *dev,
197{
198 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
199
200 if (api->off == NULL) {
201 return -ENOSYS;
202 }
203
204 return api->off(dev, sys);
205}
206
224static inline int clock_control_async_on(const struct device *dev,
227 void *user_data)
228{
229 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
230
231 if (api->async_on == NULL) {
232 return -ENOSYS;
233 }
234
235 return api->async_on(dev, sys, cb, user_data);
236}
237
246static inline enum clock_control_status clock_control_get_status(const struct device *dev,
248{
249 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
250
251 if (!api->get_status) {
253 }
254
255 return api->get_status(dev, sys);
256}
257
270static inline int clock_control_get_rate(const struct device *dev,
272 uint32_t *rate)
273{
274 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
275
276 if (api->get_rate == NULL) {
277 return -ENOSYS;
278 }
279
280 return api->get_rate(dev, sys, rate);
281}
282
299static inline int clock_control_set_rate(const struct device *dev,
302{
303 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
304
305 if (api->set_rate == NULL) {
306 return -ENOSYS;
307 }
308
309 return api->set_rate(dev, sys, rate);
310}
311
334static inline int clock_control_configure(const struct device *dev,
336 void *data)
337{
338 const struct clock_control_driver_api *api = DEVICE_API_GET(clock_control, dev);
339
340 if (api->configure == NULL) {
341 return -ENOSYS;
342 }
343
344 return api->configure(dev, sys, data);
345}
346
347#ifdef __cplusplus
348}
349#endif
350
354
355#endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_ */
#define DEVICE_API_GET(_class, _dev)
Expands to the pointer of a device's API for a given class.
Definition device.h:1375
System error numbers.
enum clock_control_status(* clock_control_get_status_fn)(const struct device *dev, clock_control_subsys_t sys)
Callback API to get a clock status.
Definition clock_control.h:116
int(* clock_control_async_on_fn)(const struct device *dev, clock_control_subsys_t sys, clock_control_cb_t cb, void *user_data)
Callback API to start a clock asynchronously.
Definition clock_control.h:106
int(* clock_control_configure_fn)(const struct device *dev, clock_control_subsys_t sys, void *data)
Callback API to configure a clock.
Definition clock_control.h:134
int(* clock_control_get)(const struct device *dev, clock_control_subsys_t sys, uint32_t *rate)
Callback API to get a clock rate.
Definition clock_control.h:97
int(* clock_control)(const struct device *dev, clock_control_subsys_t sys)
Callback API to enable or disable a clock.
Definition clock_control.h:90
int(* clock_control_set)(const struct device *dev, clock_control_subsys_t sys, clock_control_subsys_rate_t rate)
Callback API to set a clock rate.
Definition clock_control.h:125
static int clock_control_get_rate(const struct device *dev, clock_control_subsys_t sys, uint32_t *rate)
Obtain the clock rate of given sub-system.
Definition clock_control.h:270
static int clock_control_async_on(const struct device *dev, clock_control_subsys_t sys, clock_control_cb_t cb, void *user_data)
Request clock to start with notification when clock has been started.
Definition clock_control.h:224
void * clock_control_subsys_rate_t
clock_control_subsys_rate_t is a type to identify a clock controller sub-system rate.
Definition clock_control.h:67
void(* clock_control_cb_t)(const struct device *dev, clock_control_subsys_t subsys, void *user_data)
Callback called on clock started.
Definition clock_control.h:75
static enum clock_control_status clock_control_get_status(const struct device *dev, clock_control_subsys_t sys)
Get clock status.
Definition clock_control.h:246
static int clock_control_set_rate(const struct device *dev, clock_control_subsys_t sys, clock_control_subsys_rate_t rate)
Set the rate of the clock controlled by the device.
Definition clock_control.h:299
void * clock_control_subsys_t
clock_control_subsys_t is a type to identify a clock controller sub-system.
Definition clock_control.h:59
clock_control_status
Current clock status.
Definition clock_control.h:47
static int clock_control_off(const struct device *dev, clock_control_subsys_t sys)
Disable a clock controlled by the device.
Definition clock_control.h:195
static int clock_control_on(const struct device *dev, clock_control_subsys_t sys)
Enable a clock controlled by the device.
Definition clock_control.h:173
static int clock_control_configure(const struct device *dev, clock_control_subsys_t sys, void *data)
Configure a source clock.
Definition clock_control.h:334
@ CLOCK_CONTROL_STATUS_ON
Clock is on.
Definition clock_control.h:50
@ CLOCK_CONTROL_STATUS_OFF
Clock is off.
Definition clock_control.h:49
@ CLOCK_CONTROL_STATUS_UNKNOWN
Clock status is unknown.
Definition clock_control.h:51
@ CLOCK_CONTROL_STATUS_STARTING
Clock is starting.
Definition clock_control.h:48
#define ENOSYS
Function not implemented.
Definition errno.h:82
#define NULL
Definition iar_missing_defs.h:20
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
<span class="mlabel">Driver Operations</span> Clock Control driver operations
Definition clock_control.h:141
clock_control_set set_rate
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:153
clock_control on
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:143
clock_control_get_status_fn get_status
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:151
clock_control off
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:145
clock_control_async_on_fn async_on
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:147
clock_control_get get_rate
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:149
clock_control_configure_fn configure
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition clock_control.h:155
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
void * data
Address of the device instance private data.
Definition device.h:523