Software APIs
dt_keymgr_dpe.h
Go to the documentation of this file.
1
// Copyright lowRISC contributors (OpenTitan project).
2
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3
// SPDX-License-Identifier: Apache-2.0
4
//
5
// Device table API auto-generated by `dtgen`
6
7
#ifndef OPENTITAN_DT_KEYMGR_DPE_H_
8
#define OPENTITAN_DT_KEYMGR_DPE_H_
9
10
#ifdef __cplusplus
11
extern
"C"
{
12
#endif
// __cplusplus
13
14
/**
15
* @file
16
* @brief Device Tables (DT) for IP keymgr_dpe and top darjeeling.
17
*
18
* This file contains the type definitions and global functions of the keymgr_dpe.
19
*/
20
21
#include "hw/top/dt/dt_api.h"
22
#include <stdint.h>
23
24
25
26
/**
27
* List of instances.
28
*/
29
typedef
enum
dt_keymgr_dpe
{
30
kDtKeymgrDpe
= 0,
/**< keymgr_dpe */
31
kDtKeymgrDpeFirst = 0,
/**< \internal First instance */
32
kDtKeymgrDpeCount = 1,
/**< \internal Number of instances */
33
}
dt_keymgr_dpe_t
;
34
35
/**
36
* List of register blocks.
37
*
38
* Register blocks are guaranteed to start at 0 and to be consecutively numbered.
39
*/
40
typedef
enum
dt_keymgr_dpe_reg_block
{
41
kDtKeymgrDpeRegBlockCore = 0,
/**< */
42
kDtKeymgrDpeRegBlockCount = 1,
/**< \internal Number of register blocks */
43
}
dt_keymgr_dpe_reg_block_t
;
44
45
/** Primary register block (associated with the "primary" set of registers that control the IP). */
46
static
const
dt_keymgr_dpe_reg_block_t
kDtKeymgrDpeRegBlockPrimary = kDtKeymgrDpeRegBlockCore;
47
48
/**
49
* List of memories.
50
*
51
* Memories are guaranteed to start at 0 and to be consecutively numbered.
52
*/
53
typedef
enum
dt_keymgr_dpe_memory
{
54
kDtKeymgrDpeMemoryCount = 0,
/**< \internal Number of memories */
55
}
dt_keymgr_dpe_memory_t
;
56
57
/**
58
* List of IRQs.
59
*
60
* IRQs are guaranteed to be numbered consecutively from 0.
61
*/
62
typedef
enum
dt_keymgr_dpe_irq
{
63
kDtKeymgrDpeIrqOpDone
= 0,
/**< Operation complete */
64
kDtKeymgrDpeIrqCount = 1,
/**< \internal Number of IRQs */
65
}
dt_keymgr_dpe_irq_t
;
66
67
/**
68
* List of Alerts.
69
*
70
* Alerts are guaranteed to be numbered consecutively from 0.
71
*/
72
typedef
enum
dt_keymgr_dpe_alert
{
73
kDtKeymgrDpeAlertRecovOperationErr
= 0,
/**< Alert for key manager operation errors. These errors could have been caused by
74
software */
75
kDtKeymgrDpeAlertFatalFaultErr
= 1,
/**< Alert for key manager faults. These errors cannot be caused by software */
76
kDtKeymgrDpeAlertCount = 2,
/**< \internal Number of Alerts */
77
}
dt_keymgr_dpe_alert_t
;
78
79
/**
80
* List of clock ports.
81
*
82
* Clock ports are guaranteed to be numbered consecutively from 0.
83
*/
84
typedef
enum
dt_keymgr_dpe_clock
{
85
kDtKeymgrDpeClockClk
= 0,
/**< Clock port clk_i */
86
kDtKeymgrDpeClockEdn
= 1,
/**< Clock port clk_edn_i */
87
kDtKeymgrDpeClockCount = 2,
/**< \internal Number of clock ports */
88
}
dt_keymgr_dpe_clock_t
;
89
90
/**
91
* List of reset ports.
92
*
93
* Reset ports are guaranteed to be numbered consecutively from 0.
94
*/
95
typedef
enum
dt_keymgr_dpe_reset
{
96
kDtKeymgrDpeResetRst
= 0,
/**< Reset port rst_ni */
97
kDtKeymgrDpeResetEdn
= 1,
/**< Reset port rst_edn_ni */
98
kDtKeymgrDpeResetCount = 2,
/**< \internal Number of reset ports */
99
}
dt_keymgr_dpe_reset_t
;
100
101
102
/**
103
* Get the keymgr_dpe instance from an instance ID
104
*
105
* For example, `dt_uart_from_instance_id(kDtInstanceIdUart3) == kDtUart3`.
106
*
107
* @param inst_id Instance ID.
108
* @return A keymgr_dpe instance.
109
*
110
* **Note:** This function only makes sense if the instance ID has device type keymgr_dpe,
111
* otherwise the returned value is unspecified.
112
*/
113
dt_keymgr_dpe_t
dt_keymgr_dpe_from_instance_id
(
dt_instance_id_t
inst_id);
114
115
/**
116
* Get the instance ID of an instance.
117
*
118
* @param dt Instance of keymgr_dpe.
119
* @return The instance ID of that instance.
120
*/
121
dt_instance_id_t
dt_keymgr_dpe_instance_id
(
dt_keymgr_dpe_t
dt);
122
123
/**
124
* Get the register base address of an instance.
125
*
126
* @param dt Instance of keymgr_dpe.
127
* @param reg_block The register block requested.
128
* @return The register base address of the requested block.
129
*/
130
uint32_t
dt_keymgr_dpe_reg_block
(
131
dt_keymgr_dpe_t
dt,
132
dt_keymgr_dpe_reg_block_t
reg_block);
133
134
/**
135
* Get the primary register base address of an instance.
136
*
137
* This is just a convenience function, equivalent to
138
* `dt_keymgr_dpe_reg_block(dt, kDtKeymgrDpeRegBlockCore)`
139
*
140
* @param dt Instance of keymgr_dpe.
141
* @return The register base address of the primary register block.
142
*/
143
static
inline
uint32_t dt_keymgr_dpe_primary_reg_block(
144
dt_keymgr_dpe_t
dt) {
145
return
dt_keymgr_dpe_reg_block
(dt, kDtKeymgrDpeRegBlockCore);
146
}
147
148
/**
149
* Get the base address of a memory.
150
*
151
* @param dt Instance of keymgr_dpe.
152
* @param mem The memory requested.
153
* @return The base address of the requested memory.
154
*/
155
uint32_t
dt_keymgr_dpe_memory_base
(
156
dt_keymgr_dpe_t
dt,
157
dt_keymgr_dpe_memory_t
mem);
158
159
/**
160
* Get the size of a memory.
161
*
162
* @param dt Instance of keymgr_dpe.
163
* @param mem The memory requested.
164
* @return The size of the requested memory.
165
*/
166
uint32_t
dt_keymgr_dpe_memory_size
(
167
dt_keymgr_dpe_t
dt,
168
dt_keymgr_dpe_memory_t
mem);
169
170
/**
171
* Get the PLIC ID of a keymgr_dpe IRQ for a given instance.
172
*
173
* If the instance is not connected to the PLIC, this function
174
* will return `kDtPlicIrqIdNone`.
175
*
176
* @param dt Instance of keymgr_dpe.
177
* @param irq A keymgr_dpe IRQ.
178
* @return The PLIC ID of the IRQ of this instance.
179
*/
180
dt_plic_irq_id_t
dt_keymgr_dpe_irq_to_plic_id
(
181
dt_keymgr_dpe_t
dt,
182
dt_keymgr_dpe_irq_t
irq);
183
184
/**
185
* Convert a global IRQ ID to a local keymgr_dpe IRQ type.
186
*
187
* @param dt Instance of keymgr_dpe.
188
* @param irq A PLIC ID that belongs to this instance.
189
* @return The keymgr_dpe IRQ, or `kDtKeymgrDpeIrqCount`.
190
*
191
* **Note:** This function assumes that the PLIC ID belongs to the instance
192
* of keymgr_dpe passed in parameter. In other words, it must be the case that
193
* `dt_keymgr_dpe_instance_id(dt) == dt_plic_id_to_instance_id(irq)`. Otherwise, this function
194
* will return `kDtKeymgrDpeIrqCount`.
195
*/
196
dt_keymgr_dpe_irq_t
dt_keymgr_dpe_irq_from_plic_id
(
197
dt_keymgr_dpe_t
dt,
198
dt_plic_irq_id_t
irq);
199
200
201
/**
202
* Get the alert ID of a keymgr_dpe alert for a given instance.
203
*
204
* **Note:** This function only makes sense if the instance is connected to the Alert Handler. For any
205
* instances where the instance is not connected, the return value is unspecified.
206
*
207
* @param dt Instance of keymgr_dpe.
208
* @param alert A keymgr_dpe alert.
209
* @return The Alert Handler alert ID of the alert of this instance.
210
*/
211
dt_alert_id_t
dt_keymgr_dpe_alert_to_alert_id
(
212
dt_keymgr_dpe_t
dt,
213
dt_keymgr_dpe_alert_t
alert);
214
215
/**
216
* Convert a global alert ID to a local keymgr_dpe alert type.
217
*
218
* @param dt Instance of keymgr_dpe.
219
* @param alert A global alert ID that belongs to this instance.
220
* @return The keymgr_dpe alert, or `kDtKeymgrDpeAlertCount`.
221
*
222
* **Note:** This function assumes that the global alert ID belongs to the
223
* instance of keymgr_dpe passed in parameter. In other words, it must be the case
224
* that `dt_keymgr_dpe_instance_id(dt) == dt_alert_id_to_instance_id(alert)`. Otherwise,
225
* this function will return `kDtKeymgrDpeAlertCount`.
226
*/
227
dt_keymgr_dpe_alert_t
dt_keymgr_dpe_alert_from_alert_id
(
228
dt_keymgr_dpe_t
dt,
229
dt_alert_id_t
alert);
230
231
232
233
/**
234
* Get the clock signal connected to a clock port of an instance.
235
*
236
* @param dt Instance of keymgr_dpe.
237
* @param clk Clock port.
238
* @return Clock signal.
239
*/
240
dt_clock_t
dt_keymgr_dpe_clock
(
241
dt_keymgr_dpe_t
dt,
242
dt_keymgr_dpe_clock_t
clk);
243
244
/**
245
* Get the reset signal connected to a reset port of an instance.
246
*
247
* @param dt Instance of keymgr_dpe.
248
* @param rst Reset port.
249
* @return Reset signal.
250
*/
251
dt_reset_t
dt_keymgr_dpe_reset
(
252
dt_keymgr_dpe_t
dt,
253
dt_keymgr_dpe_reset_t
rst);
254
255
256
257
#ifdef __cplusplus
258
}
// extern "C"
259
#endif
// __cplusplus
260
261
#endif
// OPENTITAN_DT_KEYMGR_DPE_H_
(darjeeling)
hw
top
dt
dt_keymgr_dpe.h
Return to
OpenTitan Documentation