-
Notifications
You must be signed in to change notification settings - Fork 791
/
dif_sensor_ctrl.h
177 lines (156 loc) · 5.35 KB
/
dif_sensor_ctrl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
#ifndef OPENTITAN_SW_DEVICE_LIB_DIF_DIF_SENSOR_CTRL_H_
#define OPENTITAN_SW_DEVICE_LIB_DIF_DIF_SENSOR_CTRL_H_
/**
* @file
* @brief <a href="/hw/top_earlgrey/ip/sensor_ctrl/doc/">Sensor Controller</a>
* Device Interface Functions
*/
#include <stdint.h>
#include "sw/device/lib/base/macros.h"
#include "sw/device/lib/base/mmio.h"
#include "sw/device/lib/dif/dif_base.h"
#include "sw/device/lib/dif/autogen/dif_sensor_ctrl_autogen.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
/**
* An event, identified by a numeric id.
*
*/
typedef uint32_t dif_sensor_ctrl_event_idx_t;
/**
* A vector of AST events, where each bit represents one event.
*
*/
typedef uint32_t dif_sensor_ctrl_events_t;
/**
* IO power status
* Each bit represents the current status of a particular IO rail.
*
*/
typedef uint32_t dif_sensor_ctrl_io_power_status_t;
/**
* Locks sensor control configuration from further updates.
*
*
* @param sensor_ctrl A sensor_ctrl handle.
* @return 'kDifBadArg' if `handle` is null.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_lock_cfg(const dif_sensor_ctrl_t *sensor_ctrl);
/**
* Gets the value of a particular AST event trigger.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param event_idx The event to read.
* @param[out] enable The current trigger enable status.
* @return 'kDifBadArg' if `sensor_ctrl` or `enable` are null, or if `event_idx`
* is larger than the number of events supported.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_get_ast_event_trigger(
const dif_sensor_ctrl_t *sensor_ctrl, dif_sensor_ctrl_event_idx_t event_idx,
dif_toggle_t *enable);
/**
* Sets the value for a particular AST event trigger.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param event_idx The event to configure.
* @param enable The toggle status to set.
* @return 'kDifBadArg' if `handle` is null or if `event_idx` is larger than the
* number of events supported.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_set_ast_event_trigger(
const dif_sensor_ctrl_t *sensor_ctrl, dif_sensor_ctrl_event_idx_t event_idx,
dif_toggle_t enable);
/**
* Enable a particular alert event..
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param event_idx The event to configure.
* @param en Whether an event is enabled or not. If
* `kDifToggleEnabled`, the event is enabled. Otherwise, it is disabled.
* @return 'kDifBadArg' if `handle` is null or `event_idx` is larger than the
* number of events supported.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_set_alert_en(const dif_sensor_ctrl_t *sensor_ctrl,
dif_sensor_ctrl_event_idx_t event_idx,
dif_toggle_t en);
/**
* Sets the fatality configuration of a particular event.
*
* An event can be configured to be either fatal or recoverable.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param event_idx The event to configure.
* @param en_fatal The fatality enablement state of an event. If
* `kDifToggleEnabled`, the event is fatal. Otherwise, it is recoverable.
* @return 'kDifBadArg' if `handle` is null or `event_idx` is larger than the
* number of events supported.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_set_alert_fatal(
const dif_sensor_ctrl_t *sensor_ctrl, dif_sensor_ctrl_event_idx_t event_idx,
dif_toggle_t en_fatal);
/**
* Gets the current vector of recoverable events.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param[out] events The set of current recoverable events
* @return 'kDifBadArg' if `handle` is null.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_get_recov_events(
const dif_sensor_ctrl_t *sensor_ctrl, dif_sensor_ctrl_events_t *events);
/**
* Clears the specified recoverable events.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param event_idx The event to clear.
* @return 'kDifBadArg' if `handle` is null or 'event_idx' is larger than the
* number of events supported..
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_clear_recov_event(
const dif_sensor_ctrl_t *sensor_ctrl,
dif_sensor_ctrl_event_idx_t event_idx);
/**
* Gets the current vector of fatal events.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param[out] events The set of current fatal events.
* @return 'kDifBadArg' if `handle` is null.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_get_fatal_events(
const dif_sensor_ctrl_t *sensor_ctrl, dif_sensor_ctrl_events_t *events);
/**
* Gets the current ast init done status.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param[out] done Current init_done status.
* @return 'kDifBadArg' if `handle` is null.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_get_ast_init_done_status(
const dif_sensor_ctrl_t *sensor_ctrl, dif_toggle_t *done);
/**
* Gets the current io power status.
*
* @param sensor_ctrl A sensor_ctrl handle.
* @param[out] done Current io power status.
* @return 'kDifBadArg' if `handle` is null.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_sensor_ctrl_get_io_power_status(
const dif_sensor_ctrl_t *sensor_ctrl,
dif_sensor_ctrl_io_power_status_t *io_status);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // OPENTITAN_SW_DEVICE_LIB_DIF_DIF_SENSOR_CTRL_H_