forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dif_rstmgr.h
384 lines (349 loc) · 11.5 KB
/
dif_rstmgr.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
// 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_RSTMGR_H_
#define OPENTITAN_SW_DEVICE_LIB_DIF_DIF_RSTMGR_H_
/**
* @file
* @brief <a href="/book/hw/top_earlgrey/ip_autogen/rstmgr/">Reset Manager</a>
* Device Interface Functions
*/
#include <stdbool.h>
#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_rstmgr_autogen.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
/**
* The maximal size of the alert crash info dump.
*
* Note: must match the autogenerated register definition.
*/
#define DIF_RSTMGR_ALERT_INFO_MAX_SIZE 0xf
/**
* The maximal size of the CPU crash info dump.
*
* Note: must match the autogenerated register definition.
*/
#define DIF_RSTMGR_CPU_INFO_MAX_SIZE 0xf
/**
* Reset Manager peripheral software reset control.
*/
typedef enum dif_rstmgr_software_reset {
/**
* Simple reset (release straight away).
*/
kDifRstmgrSoftwareReset = 0,
kDifRstmgrSoftwareResetHold, /**< Hold peripheral in reset. */
kDifRstmgrSoftwareResetRelease, /**< Release peripheral from reset. */
} dif_rstmgr_software_reset_t;
/**
* Reset Manager reset information bitfield.
*/
typedef uint32_t dif_rstmgr_reset_info_bitfield_t;
/**
* Reset Manager possible reset information enumeration.
*
* Invariants are used to extract information encoded in
* `dif_rstmgr_reset_info_bitfield_t`, which means that the values must
* correspond
* to the individual bits (0x1, 0x2, 0x4, ..., 0x80000000).
*
* Note: these must match the autogenerated register definitions.
*/
typedef enum dif_rstmgr_reset_info {
/**
* Device has reset due to power up.
*/
kDifRstmgrResetInfoPor = 0x1,
/**
* Device has reset due to low power exit.
*/
kDifRstmgrResetInfoLowPowerExit = (0x1 << 1),
/**
* Device has reset due to software request.
*/
kDifRstmgrResetInfoSw = (0x1 << 2),
/**
* Device has reset due to a peripheral request. This can be an alert
* escalation, watchdog or anything else.
*/
kDifRstmgrResetInfoHwReq = (0x1f << 3),
/**
* Device has reset due to the peripheral system reset control request.
*/
kDifRstmgrResetInfoSysRstCtrl = (1 << 3),
/**
* Device has reset due to watchdog bite.
*/
kDifRstmgrResetInfoWatchdog = (1 << 4),
/**
* Device has reset due to power unstable.
*/
kDifRstmgrResetInfoPowerUnstable = (1 << 5),
/**
* Device has reset due to alert escalation.
*/
kDifRstmgrResetInfoEscalation = (1 << 6),
/**
* Device has reset due to non-debug-module request.
*/
kDifRstmgrResetInfoNdm = (1 << 7),
} dif_rstmgr_reset_info_t;
/**
* Reset Manager software reset available peripherals.
*/
typedef uint32_t dif_rstmgr_peripheral_t;
typedef enum dif_rstmgr_fatal_err_type {
/**
* A fatal error for regfile integrity.
*/
kDifRstmgrFatalErrTypeRegfileIntegrity = 1u << 0,
/**
* A fatal error for reset consistency.
*/
kDifRstmgrFatalErrTypeResetConsistency = 1u << 1,
} dif_rstmgr_fatal_err_type_t;
/**
* A set of fatal errors.
*
* This type is used to read the fatal error codes.
*/
typedef uint32_t dif_rstmgr_fatal_err_codes_t;
/**
* Resets the Reset Manager registers to sane defaults.
*
* Note that software reset enable registers cannot be cleared once have been
* locked.
*
* @param handle A Reset Manager handle.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_reset(const dif_rstmgr_t *handle);
/**
* Locks out requested peripheral reset functionality.
*
* Calling this function when software reset is locked will have no effect
* and return `kDifOk`.
*
* @param handle A Reset Manager handle.
* @param peripheral Peripheral to lock the reset functionality for.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_reset_lock(const dif_rstmgr_t *handle,
dif_rstmgr_peripheral_t peripheral);
/**
* Checks whether requested peripheral reset functionality is locked.
*
* @param handle A Reset Manager handle.
* @param peripheral Peripheral to check the reset lock for.
* @param is_locked Out-param for the locked state.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_reset_is_locked(const dif_rstmgr_t *handle,
dif_rstmgr_peripheral_t peripheral,
bool *is_locked);
/**
* Obtains the complete Reset Manager reset information.
*
* The reset info are parsed and presented to the caller as an
* array of flags in 'info'.
*
* @param handle A Reset Manager handle.
* @param info Reset information.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_reset_info_get(const dif_rstmgr_t *handle,
dif_rstmgr_reset_info_bitfield_t *info);
/**
* Clears the reset information in Reset Manager.
*
* @param handle A Reset Manager handle.
* @return `dif_result_t`.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_reset_info_clear(const dif_rstmgr_t *handle);
/**
* Enables or disables the alert crash dump capture.
*
* When enabled, will capture the alert crash dump prior to a triggered reset.
*
* The alert info crash dump capture is automatically disabled upon system reset
* (even if the Reset Manager is not reset).
*
* @param handle A Reset Manager handle.
* @param state The new toggle state for the crash dump capture.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_alert_info_set_enabled(const dif_rstmgr_t *handle,
dif_toggle_t state);
/**
* Retrieves the alert info crash dump capture state.
*
* The alert info crash dump capture is automatically disabled upon system reset
* (even if the Reset Manager is not reset).
*
* @param handle A Reset Manager handle.
* @param[out] state The state of the crash dump capture.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_alert_info_get_enabled(const dif_rstmgr_t *handle,
dif_toggle_t *state);
/**
* Get alert info dump size.
*
*
* @param handle A Reset Manager handle.
* @param[out] size The size of the alert info dump in 32 bit words.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_alert_info_get_size(const dif_rstmgr_t *handle,
size_t *size);
/**
* Alert info crash dump segment.
*
* The alert info crash dump consists of 32-bit data segments
*/
typedef uint32_t dif_rstmgr_alert_info_dump_segment_t;
/**
* Reads the entire alert info crash dump.
*
* The crash dump is always retained after any kind of reset, except on
* Power-On-Reset (POR).
*
* @param handle A Reset Manager handle.
* @param dump Address of buffer where the alert dump will be written.
* @param dump_size Size of the alert dump buffer. The entire crash dump will be
* read, and the actual size can be determined through the
* `segments_read` parameter. It is an error if dump_size is
* not large enough.
* @param[out] segments_read Number of segments read.
*
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_alert_info_dump_read(
const dif_rstmgr_t *handle, dif_rstmgr_alert_info_dump_segment_t *dump,
size_t dump_size, size_t *segments_read);
/**
* Enables or disables the CPU crash dump capture.
*
* When enabled, will capture the CPU crash dump prior to a triggered reset.
*
* The CPU info crash dump capture is automatically disabled upon system reset
* (even if the Reset Manager is not reset).
*
* @param handle A Reset Manager handle.
* @param state The new toggle state for the CPU crash dump capture.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_cpu_info_set_enabled(const dif_rstmgr_t *handle,
dif_toggle_t state);
/**
* Retrieves the CPU info crash dump capture state.
*
* The CPU info crash dump capture is automatically disabled upon system reset
* (even if the Reset Manager is not reset).
*
* @param handle A Reset Manager handle.
* @param[out] state The state of the crash dump capture.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_cpu_info_get_enabled(const dif_rstmgr_t *handle,
dif_toggle_t *state);
/**
* Get cpu info dump size.
*
*
* @param handle A Reset Manager handle.
* @param[out] size The size of the cpu info dump in 32 bit words.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_cpu_info_get_size(const dif_rstmgr_t *handle,
size_t *size);
/**
* CPU info crash dump segment.
*
* The CPU info crash dump consists of 32-bit data segments
*/
typedef uint32_t dif_rstmgr_cpu_info_dump_segment_t;
/**
* Reads the entire CPU info crash dump.
*
* The crash dump is always retained after any kind of reset, except on
* Power-On-Reset (POR).
*
* @param handle A Reset Manager handle.
* @param dump Address of buffer where the crash dump will be written.
* @param dump_size Size of the crash dump buffer. The entire crash dump will
* be read, and the actual size can be determined through the
* `segments_read` parameter. It is an error if dump_size is
* not large enough.
* @param[out] segments_read Number of segments read.
*
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_cpu_info_dump_read(
const dif_rstmgr_t *handle, dif_rstmgr_cpu_info_dump_segment_t *dump,
size_t dump_size, size_t *segments_read);
/**
* Asserts or de-asserts software reset for the requested peripheral.
*
* @param handle A Reset Manager handle.
* @param peripheral Peripheral to assert/de-assert reset for.
* @param reset Reset control.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_software_reset(const dif_rstmgr_t *handle,
dif_rstmgr_peripheral_t peripheral,
dif_rstmgr_software_reset_t reset);
/**
* Queries whether the requested peripheral is held in reset.
*
* @param handle A Reset Manager handle.
* @param peripheral Peripheral to query.
* @param asserted 'true' when held in reset, `false` otherwise.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_software_reset_is_held(
const dif_rstmgr_t *handle, dif_rstmgr_peripheral_t peripheral,
bool *asserted);
/**
* Software request for system reset
*
* @param handle A Reset Manager handle.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_software_device_reset(const dif_rstmgr_t *handle);
/**
* Read the fatal error codes.
*
* @param rstmgr Reset Manager Handle.
* @param[out] codes The fatal error codes.
* @returns The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_rstmgr_fatal_err_code_get_codes(
const dif_rstmgr_t *rstmgr, dif_rstmgr_fatal_err_codes_t *codes);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // OPENTITAN_SW_DEVICE_LIB_DIF_DIF_RSTMGR_H_