SHA-2 Workbench
1.0
|
Finite State Machine to control the hash core. More...
Processes | |
delay_process | ( clk , not_rst ) |
Process implementing the feedback delay element. | |
tau_process | ( current , start , count_top , count_stages_top ) |
Process implementing the \(\tau\) function. | |
omega_process | ( current ) |
Process for the \(\omega\) function. |
Types | |
STATE_TYPE | ( reset , idle , first_load , compute , last_stages ) |
Type used to represent the various states of the FSM. |
Signals | |
current | STATE_TYPE := reset |
Current state of the FSM. | |
prox | STATE_TYPE := reset |
Next state of the FSM. |
Finite State Machine to control the hash core.
For this FSM, the signal expander_init is the same signal as first_major_cycle
During the compute
stage, the signal count enables the step counter so as to keep track of the computing progresses. This counter produces also the signal count_top, which is the pipeline clock signal end_major_cycle
During the last_stages
stage, the stage counter is enabled by means of the the signal count_stages. The stage is exited when the pipeline has been fully flushed. However, it is not necessary to entirely flush the pipeline in order to start a new computation, since it is possible to reach the compute
stage from these stages. Both the step counter and the stage counter are reset during the idle
stage in order to start from a known value
The first_load
stage is an unstable stage needed to load the pipeline, by keeping asserted the signal first_major_cycle. It is necessary because the first counting of the counter actually requires an additional clock cycle to assert the signal count_top, since this signal starts low, and is asserted when the counting value equals 0 during all but the very first computation. It is therefore necessary to estabilish the same number of cycles for every computation stage, even though this increases the circuit latency by one clock cycle. In fact, without this state the first stage would perform one step more than designed, leading to an incorrect result.
Process implementing the feedback delay element.
This process allows for state updating
|
Process |
Process for the \(\omega\) function.
This process allows for outputs updating
Being this FSM a Moore machine, outputs depend only upon the current state
|
Process |
Process implementing the \(\tau\) function.
This process implements the logic for state changing
|
Signal |
Current state of the FSM.
|
Signal |
Next state of the FSM.
|
Type |
Type used to represent the various states of the FSM.