Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

FSM - single process vs dual process performance comparation

Status
Not open for further replies.

shaiko

Advanced Member level 5
Joined
Aug 20, 2011
Messages
2,644
Helped
303
Reputation
608
Reaction score
297
Trophy points
1,363
Activity points
18,302
Hello,

FSM A is designed using a single VHDL process - hence it's completely synchronous.
FSM B is designed using a 2 VHDL processes - hence it's outputs are combinatorial.

In theory, FSM A should allow higher Fmax... but (as an experiment) what if we register the outputs of FSM B ?
Is it safe to assume that both FSMs will have the same Fmax ?
 

No - the logic may be completly different.

- - - Updated - - -

Why not compile the two - and find out?
 
  • Like
Reactions: shaiko

    shaiko

    Points: 2
    Helpful Answer Positive Rating
The normal FPGA architecture today is combinatorial logic followed by a register. That is perfect for a single process FSM.
It is also a good design policy to only have registered outputs from a block.

I see absolutely no reason to use a two-process FSM today. It has no advantage and it makes the code much harder to read.
I don't think it is possible to say in general that a 2-process FSM with added output registers will be faster or slower, but I think it will use more registers.
 
  • Like
Reactions: shaiko

    shaiko

    Points: 2
    Helpful Answer Positive Rating
I see absolutely no reason to use a two-process FSM today.
Latency ?

but I think it will use more registers.
If a DFF implementation is defined as a signal under a clocked process - I can't think of a reason for that to happen. The amount of registers isn't ambiguous...
 

Simple example in planahead with FSM_B output buffered gives the same logic implementation as one process FSM. (new_parseer on with spartan-3AN choosen).

The drawbacks of using two state FSM is IMHO:
- you get more hard to read code
- 1 clk latency less for much higher output delay time = in the end lower system performence ( in my simple example output delay difference is higher then clock cycle [but its i/o planning dependend]).
- cant really divide system for a team, because as the outputs are not registered, its hard to divide code for partitions hence write proper constants.
- if latch output registers are in higher/lower in hierarchy entity blocks, not forcing flatting the hierarchy might implement different not optimal FSM compared with one state FSM

allin all two state FSM is quite useless
 
  • Like
Reactions: shaiko

    shaiko

    Points: 2
    Helpful Answer Positive Rating
If FSM B has registered output logic then as long as the FSMs are identical (i.e. the outputs have identical timing and responses to inputs) the two FSMs should have synthesis results that should be identical. If they aren't the same then you are likely looking at some sort of boolean reduction algorithm issue with the synthesis tool. If they aren't registered and you have identical output timing then you will have two entirely different implementations with the FSM B having much worse Fmax due to the combinational paths.

Might be interesting to make a suite of FSM descriptions (small, medium, and large) to test this out and see if there are any differences between the various synthesis tools (e.g. Synplify, Leonardo, XST, Quartus-II, Vivado) might be very useful to know what is the optimal method of describing an FSM for each tool depending on the complexity of the FSM.

- - - Updated - - -

Come to think of it, this might be an excellent school project. Determine the results of the following matrix: HDL language, FSM complexity, Synthesis tool. That's like 30 combinations
 
  • Like
Reactions: shaiko

    shaiko

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top