Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
edac.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_DRIVERS_EDAC_H_
13#define ZEPHYR_INCLUDE_DRIVERS_EDAC_H_
14
15#include <errno.h>
16
17#include <sys/types.h>
18
33};
34
41typedef void (*edac_notify_callback_f)(const struct device *dev, void *data);
42
48__subsystem struct edac_driver_api {
49 /* Error Injection API is disabled by default */
50 int (*inject_set_param1)(const struct device *dev, uint64_t value);
51 int (*inject_get_param1)(const struct device *dev, uint64_t *value);
52 int (*inject_set_param2)(const struct device *dev, uint64_t value);
53 int (*inject_get_param2)(const struct device *dev, uint64_t *value);
54 int (*inject_set_error_type)(const struct device *dev, uint32_t value);
55 int (*inject_get_error_type)(const struct device *dev, uint32_t *value);
56 int (*inject_error_trigger)(const struct device *dev);
57
58 /* Error Logging API */
59 int (*ecc_error_log_get)(const struct device *dev, uint64_t *value);
60 int (*ecc_error_log_clear)(const struct device *dev);
61 int (*parity_error_log_get)(const struct device *dev, uint64_t *value);
62 int (*parity_error_log_clear)(const struct device *dev);
63
64 /* Error stats API */
65 int (*errors_cor_get)(const struct device *dev);
66 int (*errors_uc_get)(const struct device *dev);
67
68 /* Notification callback API */
69 int (*notify_cb_set)(const struct device *dev,
70 edac_notify_callback_f cb);
71};
72
95static inline int edac_inject_set_param1(const struct device *dev,
96 uint64_t value)
97{
98 const struct edac_driver_api *api =
99 (const struct edac_driver_api *)dev->api;
100
101 if (api->inject_set_param1 == NULL) {
102 return -ENOSYS;
103 }
104
105 return api->inject_set_param1(dev, value);
106}
107
119static inline int edac_inject_get_param1(const struct device *dev,
120 uint64_t *value)
121{
122 const struct edac_driver_api *api =
123 (const struct edac_driver_api *)dev->api;
124
125 if (api->inject_get_param1 == NULL) {
126 return -ENOSYS;
127 }
128
129 return api->inject_get_param1(dev, value);
130
131}
132
144static inline int edac_inject_set_param2(const struct device *dev,
145 uint64_t value)
146{
147 const struct edac_driver_api *api =
148 (const struct edac_driver_api *)dev->api;
149
150 if (api->inject_set_param2 == NULL) {
151 return -ENOSYS;
152 }
153
154 return api->inject_set_param2(dev, value);
155}
156
166static inline int edac_inject_get_param2(const struct device *dev,
167 uint64_t *value)
168{
169 const struct edac_driver_api *api =
170 (const struct edac_driver_api *)dev->api;
171
172 if (api->inject_get_param2 == NULL) {
173 return -ENOSYS;
174 }
175
176 return api->inject_get_param2(dev, value);
177}
178
190static inline int edac_inject_set_error_type(const struct device *dev,
191 uint32_t error_type)
192{
193 const struct edac_driver_api *api =
194 (const struct edac_driver_api *)dev->api;
195
196 if (api->inject_set_error_type == NULL) {
197 return -ENOSYS;
198 }
199
200 return api->inject_set_error_type(dev, error_type);
201}
202
214static inline int edac_inject_get_error_type(const struct device *dev,
215 uint32_t *error_type)
216{
217 const struct edac_driver_api *api =
218 (const struct edac_driver_api *)dev->api;
219
220 if (api->inject_get_error_type == NULL) {
221 return -ENOSYS;
222 }
223
224 return api->inject_get_error_type(dev, error_type);
225}
226
237static inline int edac_inject_error_trigger(const struct device *dev)
238{
239 const struct edac_driver_api *api =
240 (const struct edac_driver_api *)dev->api;
241
242 if (api->inject_error_trigger == NULL) {
243 return -ENOSYS;
244 }
245
246 return api->inject_error_trigger(dev);
247}
248 /* End of EDAC Optional Interfaces */
250
269static inline int edac_ecc_error_log_get(const struct device *dev,
270 uint64_t *value)
271{
272 const struct edac_driver_api *api =
273 (const struct edac_driver_api *)dev->api;
274
275 if (api->ecc_error_log_get == NULL) {
276 return -ENOSYS;
277 }
278
279 return api->ecc_error_log_get(dev, value);
280}
281
292static inline int edac_ecc_error_log_clear(const struct device *dev)
293{
294 const struct edac_driver_api *api =
295 (const struct edac_driver_api *)dev->api;
296
297 if (api->ecc_error_log_clear == NULL) {
298 return -ENOSYS;
299 }
300
301 return api->ecc_error_log_clear(dev);
302}
303
315static inline int edac_parity_error_log_get(const struct device *dev,
316 uint64_t *value)
317{
318 const struct edac_driver_api *api =
319 (const struct edac_driver_api *)dev->api;
320
321 if (api->parity_error_log_get == NULL) {
322 return -ENOSYS;
323 }
324
325 return api->parity_error_log_get(dev, value);
326}
327
338static inline int edac_parity_error_log_clear(const struct device *dev)
339{
340 const struct edac_driver_api *api =
341 (const struct edac_driver_api *)dev->api;
342
343 if (api->parity_error_log_clear == NULL) {
344 return -ENOSYS;
345 }
346
347 return api->parity_error_log_clear(dev);
348}
349
358static inline int edac_errors_cor_get(const struct device *dev)
359{
360 const struct edac_driver_api *api =
361 (const struct edac_driver_api *)dev->api;
362
363 if (api->errors_cor_get == NULL) {
364 return -ENOSYS;
365 }
366
367 return api->errors_cor_get(dev);
368}
369
378static inline int edac_errors_uc_get(const struct device *dev)
379{
380 const struct edac_driver_api *api =
381 (const struct edac_driver_api *)dev->api;
382
383 if (api->errors_uc_get == NULL) {
384 return -ENOSYS;
385 }
386
387 return api->errors_uc_get(dev);
388}
389
401static inline int edac_notify_callback_set(const struct device *dev,
402 edac_notify_callback_f cb)
403{
404 const struct edac_driver_api *api = (const struct edac_driver_api *)dev->api;
405
406 if (api->notify_cb_set == NULL) {
407 return -ENOSYS;
408 }
409
410 return api->notify_cb_set(dev, cb);
411}
412
413 /* End of EDAC Mandatory Interfaces */
415 /* End of EDAC API */
417
418#endif /* ZEPHYR_INCLUDE_DRIVERS_EDAC_H_ */
System error numbers.
static int edac_inject_set_error_type(const struct device *dev, uint32_t error_type)
Set error type value.
Definition: edac.h:190
static int edac_notify_callback_set(const struct device *dev, edac_notify_callback_f cb)
Register callback function for memory error exception.
Definition: edac.h:401
static int edac_inject_get_param2(const struct device *dev, uint64_t *value)
Get injection parameter param2.
Definition: edac.h:166
edac_error_type
EDAC error type.
Definition: edac.h:28
static int edac_ecc_error_log_get(const struct device *dev, uint64_t *value)
Get ECC Error Log.
Definition: edac.h:269
static int edac_inject_get_param1(const struct device *dev, uint64_t *value)
Get injection parameter param1.
Definition: edac.h:119
static int edac_inject_set_param2(const struct device *dev, uint64_t value)
Set injection parameter param2.
Definition: edac.h:144
static int edac_parity_error_log_get(const struct device *dev, uint64_t *value)
Get Parity Error Log.
Definition: edac.h:315
static int edac_ecc_error_log_clear(const struct device *dev)
Clear ECC Error Log.
Definition: edac.h:292
static int edac_parity_error_log_clear(const struct device *dev)
Clear Parity Error Log.
Definition: edac.h:338
static int edac_inject_set_param1(const struct device *dev, uint64_t value)
Set injection parameter param1.
Definition: edac.h:95
static int edac_errors_cor_get(const struct device *dev)
Get number of correctable errors.
Definition: edac.h:358
static int edac_errors_uc_get(const struct device *dev)
Get number of uncorrectable errors.
Definition: edac.h:378
static int edac_inject_error_trigger(const struct device *dev)
Set injection control.
Definition: edac.h:237
static int edac_inject_get_error_type(const struct device *dev, uint32_t *error_type)
Get error type value.
Definition: edac.h:214
@ EDAC_ERROR_TYPE_DRAM_UC
Uncorrectable error type.
Definition: edac.h:32
@ EDAC_ERROR_TYPE_DRAM_COR
Correctable error type.
Definition: edac.h:30
#define BIT(n)
Unsigned integer with bit position n set (signed in assembly language).
Definition: util_macro.h:44
#define ENOSYS
Function not implemented.
Definition: errno.h:83
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT64_TYPE__ uint64_t
Definition: stdint.h:91
Runtime device structure (in ROM) per driver instance.
Definition: device.h:387
void * data
Address of the device instance private data.
Definition: device.h:397
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:393