forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edn.hjson
651 lines (646 loc) · 26.2 KB
/
edn.hjson
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
// Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
{
name: "edn",
human_name: "Entropy Distribution Network",
one_line_desc: "Distributes random numbers produced by CSRNG to hardware blocks",
one_paragraph_desc: '''
Entropy Distribution Network (EDN) interfaces various hardware blocks consuming random numbers to CSRNG.
Besides adapting bus widths, it provides a set of registers for firmware to manage the corresponding CSRNG application interface.
This allows configuring EDN to automatically send reseed and generate commands to the connected CSRNG context in order to continuously supply consumers with entropy of defined quality.
Additionally, EDN supports a boot-time request mode, in which it supplies a limited amount of potentially lower-quality entropy with less firmware interaction immediately at boot-time or after reset.
'''
// Unique comportable IP identifier defined under KNOWN_CIP_IDS in the regtool.
cip_id: "6",
design_spec: "../doc",
dv_doc: "../doc/dv",
hw_checklist: "../doc/checklist",
sw_checklist: "/sw/device/lib/dif/dif_edn",
version: "2.0.0",
life_stage: "L1",
design_stage: "D2S",
verification_stage: "V1",
dif_stage: "S2",
clocking: [{clock: "clk_i", reset: "rst_ni"}],
bus_interfaces: [
{ protocol: "tlul", direction: "device" }
],
interrupt_list: [
{ name: "edn_cmd_req_done"
desc: "Asserted when a software CSRNG request has completed."}
{ name: "edn_fatal_err"
desc: "Asserted when a FIFO error occurs."}
],
alert_list: [
{ name: "recov_alert",
desc: "This alert is triggered when entropy bus data matches on consecutive clock cycles."
}
{ name: "fatal_alert",
desc: '''
This alert triggers (i) if an illegal state machine state is reached, or
(ii) if a fatal integrity failure is detected on the TL-UL bus.
''',
}
],
inter_signal_list: [
{ struct: "csrng", // csrng_req_t, csrng_rsp_t
type: "req_rsp",
name: "csrng_cmd",
act: "req",
width: "1",
package: "csrng_pkg",
desc: '''
EDN supports a signal CSRNG application interface.
''',
}
{ struct: "edn", // edn_req_t, edn_rsp_t
type: "req_rsp",
name: "edn",
act: "rsp",
width: "8",
default: "'0",
desc: '''
The collection of peripheral ports supported by edn. The width (4)
indicates the number of peripheral ports on a single instance.
Due to limitations in the parametrization of top-level interconnects
this value is not currently parameterizable. However, the number
of peripheral ports may change in a future revision.
''',
package: "edn_pkg",
}
],
// Keep the following parameters in line with the literal values defined in the corresponding registers below
param_list: [
{ name: "EdnBootInsCmdResval",
type: "logic [31:0]",
default: "32'h901",
desc: "Reset value for the boot_ins_cmd register.",
local: "true",
},
{ name: "EdnBootGenCmdResval",
type: "logic [31:0]",
default: "32'hfff003",
desc: "Reset value for the boot_gen_cmd register.",
local: "true",
},
{ name: "CtrlResval",
type: "logic [31:0]",
default: "32'h9999",
desc: "Reset value for the ctrl register.",
local: "true",
},
{ name: "MaxNumReqsBetweenReseedsResval",
type: "logic [31:0]",
default: "32'h0",
desc: "Reset value for the max_num_reqs_between_reseeds register.",
local: "true",
},
],
features: [
{
name: "EDN.MODE.BOOT"
desc: '''
In boot-time request mode, EDN plays a fully hardware-controlled and fixed command sequence consisting of a single `instantiate` and a single `generate` command but no `reseed` commands.
EDN delivers a fixed amount of entropy only in this mode (4K 128-bit blocks).
'''
},
{
name: "EDN.MODE.AUTO"
desc: '''
The purpose of the auto request mode is to continuously deliver entropy to consuming endpoints after the system has booted.
To this end, EDN keeps replaying a sequence of `generate` and `reseed` commands, which can optionally come with additional data, provided by firmware via the !!RESEED_CMD and !!GENERATE_CMD registers, respectively.
The first `instantiate` command must be provided by firmware through the !!SW_CMD_REQ register.
'''
},
{
name: "EDN.MODE.SW"
desc: '''
In software port mode, EDN is fully software controlled.
It will play any commands provided by firmware via the !!SW_CMD_REQ register.
Firmware should check the !!SW_CMD_STS register to see if the command interface is ready before issuing a new command, and whether the command completed successfully afterwards.
'''
},
{
name: "EDN.TRACK_SEED_COMPLIANCE"
desc: '''
The entropy complex modules, including EDN, track whether seeds or the entropy bits generated using those seeds have been derived from FIPS/CC compliant entropy.
EDN forwards this information to entropy consuming endpoints alongside the delivered entropy bits using the `edn_fips` bit.
'''
},
{
name: "EDN.BUS_CMP_ALERT"
desc: '''
Entropy bits subsequently received from CSRNG are compared to each other.
In case two values match, a recoverable alert is signaled and the !!RECOV_ALERT_STS.EDN_BUS_CMP_ALERT bit is set.
'''
},
],
countermeasures: [
{ name: "CONFIG.REGWEN"
desc: "Registers are protected from writes."
}
{ name: "CONFIG.MUBI"
desc: "Registers have multi-bit encoded fields."
}
{ name: "MAIN_SM.FSM.SPARSE"
desc: "The EDN main state machine uses a sparse state encoding."
}
{ name: "ACK_SM.FSM.SPARSE"
desc: "The EDN ACK state machine uses a sparse state encoding."
}
{ name: "CTR.REDUN"
desc: "Counter hardening on the generate command maximum requests counter."
}
{ name: "MAIN_SM.CTR.LOCAL_ESC"
desc: "A mismatch detected inside any EDN counter moves the main state machine into a terminal error state."
}
{ name: "CS_RDATA.BUS.CONSISTENCY"
desc: "Comparison on successive bus values for genbits returned from csrng that will distribute over the endpoint buses."
}
{ name: "TILE_LINK.BUS.INTEGRITY"
desc: "Tilelink end-to-end bus integrity scheme."
}
],
regwidth: "32",
registers: [
{ name: "REGWEN",
desc: "Register write enable for all control registers",
swaccess: "rw0c",
hwaccess: "none",
fields: [
{ bits: "0",
desc: '''
When true, the CTRL can be written by software.
When false, this field read-only. Defaults true, write zero to clear.
Note that this needs to be cleared after initial configuration at boot in order to
lock in the listed register settings.
'''
resval: 1
},
]
},
{ name: "CTRL",
desc: "EDN control register",
swaccess: "rw",
hwaccess: "hro",
regwen: "REGWEN",
tags: [// Keep HW from affecting other registers.
"excl:CsrAllTests:CsrExclWrite"]
fields: [
{ bits: "3:0",
name: "EDN_ENABLE",
mubi: true,
desc: '''
Setting this field to kMultiBitBool4True enables the EDN module. The modules of the
entropy complex may only be enabled and disabled in a specific order, see
Programmers Guide for details.
'''
// keep this in line with the resval parameters above
resval: false
},
{ bits: "7:4",
name: "BOOT_REQ_MODE",
mubi: true,
desc: '''
Setting this field to kMultiBitBool4True will enable the feature where the EDN block
will automatically send a boot-time request to the CSRNG application interface.
The purpose of this feature is to request entropy as fast as possible after reset,
and during chip boot-time.
'''
// keep this in line with the resval parameters above
resval: false
},
{ bits: "11:8",
name: "AUTO_REQ_MODE",
mubi: true,
desc: '''
Setting this field to kMultiBitBool4True will enable the EDN block to automatically
send another request to CSRNG application interface. It is assumed that a CSRNG
instantiate command will be issued using the !!SW_CMD_REQ register interface.
When this command has an command ack returned from CSRNG, a
new generate command will be send out again without software intervention. It is
expected that the generate command will be sent repeatedly so that a continuous
supply of entropy can be delivered to the endpoints. Reseed commands will be sent
on a programmable basic between generate commands.
The !!GENERATE_CMD, !!RESEED_CMD, and !!MAX_NUM_REQS_BETWEEN_RESEEDS registers must
set up before the !!SW_CMD_REQ register command is issued.
'''
// keep this in line with the resval parameters above
resval: false
},
{ bits: "15:12",
name: "CMD_FIFO_RST",
mubi: true,
desc: '''
Setting this field to kMultiBitBool4True clears the two command FIFOs: the
RESEED_CMD FIFO and the GENERATE_CMD FIFO. This field must be
set to the reset state by software before any further commands can be issued to
these FIFOs.
'''
// keep this in line with the resval parameters above
resval: false
},
]
},
{ name: "BOOT_INS_CMD",
desc: "EDN boot instantiate command register",
swaccess: "rw",
hwaccess: "hro",
tags: [// Keep HW from affecting other registers.
"excl:CsrAllTests:CsrExclWrite"]
fields: [
{ bits: "31:0",
name: "BOOT_INS_CMD",
desc: '''
This field is used as the value for Instantiate command at boot time.
'''
// keep this in line with the resval parameters above
resval: 0x0000_0901
}
]
},
{ name: "BOOT_GEN_CMD",
desc: "EDN boot generate command register",
swaccess: "rw",
hwaccess: "hro",
tags: [// Keep HW from affecting other registers.
"excl:CsrAllTests:CsrExclWrite"]
fields: [
{ bits: "31:0",
name: "BOOT_GEN_CMD",
desc: '''
This field is used as the value for generate command at boot time.
'''
// keep this in line with the resval parameters above
resval: 0x00ff_f003
}
]
},
{ name: "SW_CMD_REQ",
desc: "EDN csrng app command request register",
swaccess: "wo",
hwaccess: "hro",
hwext: "true",
hwqe: "true",
fields: [
{ bits: "31:0",
name: "SW_CMD_REQ",
desc: '''
Any CSRNG action can be initiated by writing a CSRNG command to this
register. The application interface must wait for the "ack" to
return before issuing new commands. This interface is intended
to be controlled solely by software.
If !!CTRL.AUTO_REQ_MODE is set, only the first instantiate command has any
effect. After that command has been processed, writes to this register
register will have no effect on operation.
Note that CSRNG command format details can be found
in the CSRNG documentation.
'''
}
]
},
{ name: "SW_CMD_STS",
desc: "EDN software command status register",
swaccess: "ro",
hwaccess: "hwo",
tags: [// Internal HW can modify status register
"excl:CsrNonInitTests:CsrExclCheck"]
fields: [
{ bits: "0",
name: "CMD_REG_RDY",
desc: '''
This bit indicates when !!SW_CMD_REQ is ready to accept the next word.
This bit has to be polled before each word of a command is written to !!SW_CMD_REQ.
0b0: The EDN is not ready to accept the next word yet.
0b1: The EDN is ready to accept the next word.
'''
resval: "0"
}
{ bits: "1",
name: "CMD_RDY",
desc: '''
This bit indicates when the EDN is ready to accept the next command.
Before starting to write a new command to !!SW_CMD_REQ, this field needs to be polled.
0b0: The EDN is not ready to accept commands or the last command hasn't been acked yet.
0b1: The EDN is ready to accept the next command.
'''
resval: "0"
}
{ bits: "2",
name: "CMD_ACK",
desc: '''
This one bit field indicates when a SW command has been acknowledged by the CSRNG.
It is set to low each time a new command is written to !!SW_CMD_REQ.
The field is set to high once a SW command request has been acknowledged by the CSRNG.
0b0: The last SW command has not been acknowledged yet.
0b1: The last SW command has been acknowledged.
'''
resval: "0"
}
{ bits: "4:3",
name: "CMD_STS",
desc: '''
This field represents the status code returned with the CSRNG application command ack.
It is updated each time a SW command is acknowledged by CSRNG.
To check whether a command was successful, wait for !!INTR_STATE.EDN_CMD_REQ_DONE or
!!SW_CMD_STS.CMD_ACK to be high and then check the value of this field.
A description of the command status types can be found [here](../../csrng/doc/registers.md#sw_cmd_sts--cmd_sts).
'''
resval: "0"
}
]
},
{ name: "HW_CMD_STS",
desc: "EDN hardware command status register",
swaccess: "ro",
hwaccess: "hwo",
tags: [// Internal HW can modify status register
"excl:CsrNonInitTests:CsrExclCheck"]
fields: [
{ bits: "0",
name: "BOOT_MODE",
desc: '''
This one bit field indicates whether the EDN is in the hardware controlled boot mode.
0b0: The EDN is not in boot mode.
0b1: The EDN is in boot mode.
'''
resval: "0"
}
{ bits: "1",
name: "AUTO_MODE",
desc: '''
This one bit field indicates whether the EDN is in the hardware controlled part of auto mode.
The instantiate command is issued via SW interface and is thus not part of the hardware controlled part of auto mode.
0b0: The EDN is not in the hardware controlled part of auto mode.
0b1: The EDN is in the hardware controlled part of auto mode.
'''
resval: "0"
}
{ bits: "5:2",
name: "CMD_TYPE",
desc: '''
This field contains the application command type of the hardware controlled command issued last.
The application command selects one of five operations to perform.
A description of the application command types can be found [here](../../csrng/doc/theory_of_operation.md#command-description).
'''
resval: "0"
}
{ bits: "6",
name: "CMD_ACK",
desc: '''
This one bit field indicates when a HW command has been acknowledged by the CSRNG.
It is set to low each time a new command is sent to the CSRNG.
The field is set to high once a HW command request has been acknowledged by the CSRNG.
0b0: The last HW command has not been acknowledged yet.
0b1: The last HW command has been acknowledged.
'''
resval: "0"
}
{ bits: "8:7",
name: "CMD_STS",
desc: '''
This field represents the status code returned with the CSRNG application command ack.
It is updated each time a HW command is acknowledged by CSRNG.
A description of the command status types can be found [here](../../csrng/doc/registers.md#sw_cmd_sts--cmd_sts).
'''
resval: "0"
}
]
},
{ name: "RESEED_CMD",
desc: "EDN csrng reseed command register",
swaccess: "wo",
hwaccess: "hro",
hwext: "true",
hwqe: "true",
fields: [
{ bits: "31:0",
name: "RESEED_CMD",
desc: '''
Writing this register will fill a FIFO with up to 13 command words (32b words).
This FIFO will be used to automatically send out a reseed command to the CSRNG
application interface when in !!CTRL.AUTO_REQ_MODE. This command will be sent only after
the MAX_NUM_REQS_BETWEEN_RESEEDS counter value has reached zero.
If more than 13 entires are written to the FIFO, the design will automatically generate
a fatal alert.
Note that CSRNG command format details can be found
in the CSRNG documentation.
'''
}
]
},
{ name: "GENERATE_CMD",
desc: "EDN csrng generate command register",
swaccess: "wo",
hwaccess: "hro",
hwext: "true",
hwqe: "true",
fields: [
{ bits: "31:0",
name: "GENERATE_CMD",
desc: '''
Writing this register will fill a FIFO with up to 13 command words (32b words).
This FIFO will be used to automatically send out a generate command to the CSRNG
appl interface when in !!CTRL.AUTO_REQ_MODE. This command will be sent only after
receiving a command ack from the previous command.
If more than 13 entires are written to the FIFO, the design will automatically generate
a fatal alert.
Note that CSRNG command format details can be found
in the CSRNG documentation.
'''
}
]
},
{ name: "MAX_NUM_REQS_BETWEEN_RESEEDS",
desc: "EDN maximum number of requests between reseeds register",
swaccess: "rw",
hwaccess: "hro",
hwqe: "true",
fields: [
{ bits: "31:0",
name: "MAX_NUM_REQS_BETWEEN_RESEEDS",
desc: '''
Setting this field will set the number of generate requests that can be made
to CSRNG before a reseed request is made. This value only has meaning when in
!!CTRL.AUTO_REQ_MODE. This register supports a maximum of 2^32 requests between reseeds.
This register will be used by a counter that counts down, triggering an
automatic reseed when it reaches zero.
'''
}
]
},
{
name: "RECOV_ALERT_STS",
desc: "Recoverable alert status register",
swaccess: "rw0c",
hwaccess: "hwo",
tags: [ // The internal HW can modify the error code registers
"excl:CsrAllTests:CsrExclCheck"]
fields: [
{ bits: "0",
name: "EDN_ENABLE_FIELD_ALERT",
desc: '''
This bit is set when the EDN_ENABLE field is set to an illegal value,
something other than kMultiBitBool4True or kMultiBitBool4False.
Writing a zero resets this status bit.
'''
}
{ bits: "1",
name: "BOOT_REQ_MODE_FIELD_ALERT",
desc: '''
This bit is set when the BOOT_REQ_MODE field is set to an illegal value,
something other than kMultiBitBool4True or kMultiBitBool4False.
Writing a zero resets this status bit.
'''
}
{ bits: "2",
name: "AUTO_REQ_MODE_FIELD_ALERT",
desc: '''
This bit is set when the !!CTRL.AUTO_REQ_MODE field is set to an illegal value,
something other than kMultiBitBool4True or kMultiBitBool4False.
Writing a zero resets this status bit.
'''
}
{ bits: "3",
name: "CMD_FIFO_RST_FIELD_ALERT",
desc: '''
This bit is set when the CMD_FIFO_RST field is set to an illegal value,
something other than kMultiBitBool4True or kMultiBitBool4False.
Writing a zero resets this status bit.
'''
}
{ bits: "12",
name: "EDN_BUS_CMP_ALERT",
desc: '''
This bit is set when the interal entropy bus value is equal to the prior
valid value on the bus, indicating a possible attack.
Writing a zero resets this status bit.
'''
}
{ bits: "13",
name: "CSRNG_ACK_ERR",
desc: '''
This bit is set when the CSRNG returns an acknowledgement where the status
signal is high.
Writing a zero resets this status bit.
'''
}
]
},
{
name: "ERR_CODE",
desc: "Hardware detection of fatal error conditions status register",
swaccess: "ro",
hwaccess: "hwo",
fields: [
{ bits: "0",
name: "SFIFO_RESCMD_ERR",
desc: '''
This bit will be set to one when an error has been detected for the
reseed command FIFO. The type of error is reflected in the type status
bits (bits 28 through 30 of this register).
When this bit is set, a fatal error condition will result.
'''
}
{ bits: "1",
name: "SFIFO_GENCMD_ERR",
desc: '''
This bit will be set to one when an error has been detected for the
generate command FIFO. The type of error is reflected in the type status
bits (bits 28 through 30 of this register).
When this bit is set, a fatal error condition will result.
This bit will stay set until the next reset.
'''
}
{ bits: "20",
name: "EDN_ACK_SM_ERR",
desc: '''
This bit will be set to one when an illegal state has been detected for the
EDN ack stage state machine. This error will signal a fatal alert.
This bit will stay set until the next reset.
'''
}
{ bits: "21",
name: "EDN_MAIN_SM_ERR",
desc: '''
This bit will be set to one when an illegal state has been detected for the
EDN main stage state machine. This error will signal a fatal alert.
This bit will stay set until the next reset.
'''
}
{ bits: "22",
name: "EDN_CNTR_ERR",
desc: '''
This bit will be set to one when a hardened counter has detected an error
condition. This error will signal a fatal alert.
This bit will stay set until the next reset.
'''
}
{ bits: "28",
name: "FIFO_WRITE_ERR",
desc: '''
This bit will be set to one when any of the source bits (bits 0 through 1 of this
this register) are asserted as a result of an error pulse generated from
any full FIFO that has been recieved a write pulse.
This bit will stay set until the next reset.
'''
}
{ bits: "29",
name: "FIFO_READ_ERR",
desc: '''
This bit will be set to one when any of the source bits (bits 0 through 1 of this
this register) are asserted as a result of an error pulse generated from
any empty FIFO that has recieved a read pulse.
This bit will stay set until the next reset.
'''
}
{ bits: "30",
name: "FIFO_STATE_ERR",
desc: '''
This bit will be set to one when any of the source bits (bits 0 through 1 of this
this register) are asserted as a result of an error pulse generated from
any FIFO where both the empty and full status bits are set.
This bit will stay set until the next reset.
'''
}
]
},
{ name: "ERR_CODE_TEST",
desc: "Test error conditions register",
swaccess: "rw",
hwaccess: "hro",
hwqe: "true",
tags: [// Keep HW from affecting other registers.
"excl:CsrAllTests:CsrExclWrite"]
fields: [
{
bits: "4:0",
name: "ERR_CODE_TEST",
desc: '''
Setting this field will set the bit number for which an error
will be forced in the hardware. This bit number is that same one
found in the !!ERR_CODE register. The action of writing this
register will force an error pulse. The sole purpose of this
register is to test that any error properly propagates to either
an interrupt or an alert.
'''
},
]
},
{ name: "MAIN_SM_STATE",
desc: "Main state machine state observation register",
swaccess: "ro",
hwaccess: "hwo",
fields: [
{ bits: "8:0",
name: "MAIN_SM_STATE",
desc: '''This is the state of the EDN main state machine.
See the RTL file `edn_main_sm` for the meaning of the values.
'''
resval: 0x0C1
}
]
},
]
}