-
Notifications
You must be signed in to change notification settings - Fork 40
/
soc_ifc_status_interface.yaml
executable file
·236 lines (211 loc) · 5.46 KB
/
soc_ifc_status_interface.yaml
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
uvmf:
interfaces:
############## SOC-facing Status Interface ##############
soc_ifc_status:
clock: clk
reset: dummy
reset_assertion_level: 'False'
config_constraints: []
config_vars: []
hdl_typedefs: []
hvl_typedefs: []
parameters: []
# NOTE: Ports are 'output' instead of 'input' because this agent
# will be in RESPONDER mode, which inverts all port's polarities
ports:
# Ready indicators
- name: ready_for_fuses
dir: output
width: '1'
- name: ready_for_fw_push
dir: output
width: '1'
- name: ready_for_runtime
dir: output
width: '1'
# Command indicators
- name: mailbox_data_avail
dir: output
width: '1'
- name: mailbox_flow_done
dir: output
width: '1'
#SoC Interrupts
- name: cptra_error_fatal
dir: output
width: '1'
- name: cptra_error_non_fatal
dir: output
width: '1'
- name: trng_req
dir: output
width: '1'
# Generic signals
- name: generic_output_wires
dir: output
width: '64'
transaction_constraints: []
transaction_vars:
# Ready indicators
- name: ready_for_fuses
type: bit
iscompare: 'True'
isrand: 'False'
- name: ready_for_fw_push
type: bit
iscompare: 'True'
isrand: 'False'
- name: ready_for_runtime
type: bit
iscompare: 'True'
isrand: 'False'
# Command indicators
- name: mailbox_data_avail
type: bit
iscompare: 'True'
isrand: 'False'
- name: mailbox_flow_done
type: bit
iscompare: 'True'
isrand: 'False'
# Caliptra Internal Interrupts
- name: cptra_error_fatal_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: cptra_error_non_fatal_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: trng_req_pending
type: bit
iscompare: 'True'
isrand: 'False'
# Generic signals
- name: generic_output_val
type: bit [63:0]
iscompare: 'True'
isrand: 'False'
############## Caliptra Internal Status Interface ##############
cptra_status:
clock: clk
reset: dummy
reset_assertion_level: 'False'
config_constraints: []
config_vars: []
hdl_typedefs: []
hvl_typedefs: []
parameters: []
# NOTE: Ports are 'output' instead of 'input' because this agent
# will be in RESPONDER mode, which inverts all port's polarities
ports:
#uC reset
- name: cptra_noncore_rst_b
dir: output
width: '1'
- name: cptra_uc_rst_b
dir: output
width: '1'
- name: fw_update_rst_window
dir: output
width: '1'
#Obfuscated UDS and FE
- name: cptra_obf_key_reg
dir: output
width: ["`CLP_OBF_KEY_DWORDS","32"]
- name: obf_field_entropy
dir: output
width: ["`CLP_OBF_FE_DWORDS","32"]
- name: obf_uds_seed
dir: output
width: ["`CLP_OBF_UDS_DWORDS","32"]
#uC Interrupts
- name: soc_ifc_error_intr
dir: output
width: '1'
- name: soc_ifc_notif_intr
dir: output
width: '1'
- name: sha_error_intr
dir: output
width: '1'
- name: sha_notif_intr
dir: output
width: '1'
- name: timer_intr
dir: output
width: '1'
# NMI Vector
- name: nmi_vector
dir: output
width: '32'
- name: nmi_intr
dir: output
width: '1'
# ICCM Lock
- name: iccm_lock
dir: output
width: '1'
transaction_constraints: []
transaction_vars:
# Caliptra Internal Interrupts
- name: soc_ifc_err_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: soc_ifc_notif_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: sha_err_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: sha_notif_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
- name: timer_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
# Subsystem reset
- name: noncore_rst_asserted
type: bit
iscompare: 'True'
isrand: 'False'
- name: uc_rst_asserted
type: bit
iscompare: 'True'
isrand: 'False'
- name: fw_update_rst_window
type: bit
iscompare: 'True'
isrand: 'False'
#Obfuscated UDS and FE
- name: cptra_obf_key_reg
type: bit [`CLP_OBF_KEY_DWORDS-1:0] [31:0]
iscompare: 'True'
isrand: 'False'
- name: obf_field_entropy
type: bit [`CLP_OBF_FE_DWORDS-1:0] [31:0]
iscompare: 'True'
isrand: 'False'
- name: obf_uds_seed
type: bit [`CLP_OBF_UDS_DWORDS-1:0] [31:0]
iscompare: 'True'
isrand: 'False'
# NMI Vector
- name: nmi_vector
type: bit [31:0]
iscompare: 'True'
isrand: 'False'
- name: nmi_intr_pending
type: bit
iscompare: 'True'
isrand: 'False'
# ICCM Lock
- name: iccm_locked
type: bit
iscompare: 'True'
isrand: 'False'