Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
reset.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Andrei-Edward Popa <andrei.popa105@yahoo.com>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_DRIVERS_RESET_H_
13#define ZEPHYR_INCLUDE_DRIVERS_RESET_H_
14
22#include <errno.h>
23
24#include <zephyr/types.h>
25#include <zephyr/device.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
34 const struct device *dev;
37};
38
69#define RESET_DT_SPEC_GET_BY_IDX(node_id, idx) \
70 { \
71 .dev = DEVICE_DT_GET(DT_RESET_CTLR_BY_IDX(node_id, idx)), \
72 .id = DT_RESET_ID_BY_IDX(node_id, idx) \
73 }
74
82#define RESET_DT_SPEC_GET(node_id) \
83 RESET_DT_SPEC_GET_BY_IDX(node_id, 0)
84
94#define RESET_DT_SPEC_INST_GET_BY_IDX(inst, idx) \
95 RESET_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), idx)
96
104#define RESET_DT_SPEC_INST_GET(inst) \
105 RESET_DT_SPEC_INST_GET_BY_IDX(inst, 0)
106
114typedef int (*reset_api_status)(const struct device *dev, uint32_t id, uint8_t *status);
115
121typedef int (*reset_api_line_assert)(const struct device *dev, uint32_t id);
122
128typedef int (*reset_api_line_deassert)(const struct device *dev, uint32_t id);
129
135typedef int (*reset_api_line_toggle)(const struct device *dev, uint32_t id);
136
140__subsystem struct reset_driver_api {
141 reset_api_status status;
142 reset_api_line_assert line_assert;
143 reset_api_line_deassert line_deassert;
144 reset_api_line_toggle line_toggle;
145};
146
162__syscall int reset_status(const struct device *dev, uint32_t id, uint8_t *status);
163
164static inline int z_impl_reset_status(const struct device *dev, uint32_t id, uint8_t *status)
165{
166 const struct reset_driver_api *api = (const struct reset_driver_api *)dev->api;
167
168 if (api->status == NULL) {
169 return -ENOSYS;
170 }
171
172 return api->status(dev, id, status);
173}
174
187static inline int reset_status_dt(const struct reset_dt_spec *spec, uint8_t *status)
188{
189 return reset_status(spec->dev, spec->id, status);
190}
191
205__syscall int reset_line_assert(const struct device *dev, uint32_t id);
206
207static inline int z_impl_reset_line_assert(const struct device *dev, uint32_t id)
208{
209 const struct reset_driver_api *api = (const struct reset_driver_api *)dev->api;
210
211 if (api->line_assert == NULL) {
212 return -ENOSYS;
213 }
214
215 return api->line_assert(dev, id);
216}
217
229static inline int reset_line_assert_dt(const struct reset_dt_spec *spec)
230{
231 return reset_line_assert(spec->dev, spec->id);
232}
233
247__syscall int reset_line_deassert(const struct device *dev, uint32_t id);
248
249static inline int z_impl_reset_line_deassert(const struct device *dev, uint32_t id)
250{
251 const struct reset_driver_api *api = (const struct reset_driver_api *)dev->api;
252
253 if (api->line_deassert == NULL) {
254 return -ENOSYS;
255 }
256
257 return api->line_deassert(dev, id);
258}
259
271static inline int reset_line_deassert_dt(const struct reset_dt_spec *spec)
272{
273 return reset_line_deassert(spec->dev, spec->id);
274}
275
288__syscall int reset_line_toggle(const struct device *dev, uint32_t id);
289
290static inline int z_impl_reset_line_toggle(const struct device *dev, uint32_t id)
291{
292 const struct reset_driver_api *api = (const struct reset_driver_api *)dev->api;
293
294 if (api->line_toggle == NULL) {
295 return -ENOSYS;
296 }
297
298 return api->line_toggle(dev, id);
299}
300
312static inline int reset_line_toggle_dt(const struct reset_dt_spec *spec)
313{
314 return reset_line_toggle(spec->dev, spec->id);
315}
316
321#ifdef __cplusplus
322}
323#endif
324
325#include <syscalls/reset.h>
326
327#endif /* ZEPHYR_INCLUDE_DRIVERS_RESET_H_ */
System error numbers.
int reset_line_toggle(const struct device *dev, uint32_t id)
Reset the device.
static int reset_line_deassert_dt(const struct reset_dt_spec *spec)
Deassert the reset state from a reset_dt_spec.
Definition: reset.h:271
static int reset_status_dt(const struct reset_dt_spec *spec, uint8_t *status)
Get the reset status from a reset_dt_spec.
Definition: reset.h:187
int reset_line_deassert(const struct device *dev, uint32_t id)
Take out the device from reset state.
int reset_line_assert(const struct device *dev, uint32_t id)
Put the device in reset state.
static int reset_line_assert_dt(const struct reset_dt_spec *spec)
Assert the reset state from a reset_dt_spec.
Definition: reset.h:229
int reset_status(const struct device *dev, uint32_t id, uint8_t *status)
Get the reset status.
static int reset_line_toggle_dt(const struct reset_dt_spec *spec)
Reset the device from a reset_dt_spec.
Definition: reset.h:312
#define ENOSYS
Function not implemented.
Definition: errno.h:83
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:387
Reset controller device configuration.
Definition: reset.h:32
const struct device * dev
Reset controller device.
Definition: reset.h:34
uint32_t id
Reset line.
Definition: reset.h:36