ECE 448 Lecture 6 Finite State Machines State Diagrams vs. Algorithmic State Machine (ASM) Charts.

Slides:



Advertisements
Similar presentations
Give qualifications of instructors: DAP
Advertisements

EKT 221 : Digital 2 ASM.
Finite State Machine Chapter 10 RTL Hardware Design by P. Chu.
CS 151 Digital Systems Design Lecture 37 Register Transfer Level
3/20/20091 More State Machines. Multiple processes.
10/20/20081 Lab 6 – More State Machines. Multiple processes.
Dr. Turki F. Al-Somani VHDL synthesis and simulation – Part 3 Microcomputer Systems Design (Embedded Systems)
10/13/ Lab 6 - Algorithmic State Machines ECE238L 10/13/2009.
Algorithmic State Machine (ASM) Charts
George Mason University ECE 448 – FPGA and ASIC Design with VHDL Finite State Machines State Diagrams, State Tables, Algorithmic State Machine (ASM) Charts,
1 KU College of Engineering Elec 204: Digital Systems Design Lecture 20 Datapath and Control Datapath - performs data transfer and processing operations.
IC-UNICAMP MC 603/ Finite State Machines Mixed Style RTL Modeling Extraído da George Mason Univ. ECE 545 Lecture 5.
Finite State Machines VHDL ET062G & ET063G Lecture 6 Najeem Lawal 2012.
George Mason University ECE 545 – Introduction to VHDL ECE 545 Lecture 5 Finite State Machines.
CprE / ComS 583 Reconfigurable Computing
George Mason University Design of Controllers Finite State Machines and Algorithmic State Machine (ASM) Charts ECE 545 Lecture 14.
1 ECE 545—Digital System Design with VHDL Lecture 6 Behavioral VHDL Coding (for Synthesis): Finite State Machines and ASMs 9/30/08.
George Mason University Finite State Machines State Diagrams, State Tables, Algorithmic State Machine (ASM) Charts, and VHDL Code ECE 448 Lecture 6.
Lecture 9 RTL Design Methodology. Structure of a Typical Digital System Datapath (Execution Unit) Controller (Control Unit) Data Inputs Data Outputs Control.
VHDL Discussion Finite State Machines
Algorithmic state machines
Datapath - performs data transfer and processing operations The control unit sends: – Control signals – Control outputs The control unit receives: – External.
VHDL Discussion Finite State Machines IAY 0600 Digital Systems Design Alexander Sudnitson Tallinn University of Technology 1.
Modern VLSI Design 3e: Chapter 8 Copyright  1998, 2002 Prentice Hall PTR Topics n Basics of register-transfer design: –data paths and controllers; –ASM.
Algorithmic State Machines Sorting Signed & Unsigned Data Types
Hao Zheng Comp Sci & Eng USF CDA 4253 FPGA System Design Chapter 5 Finite State Machines.
ENG241 Digital Design Week #7 Sequential Circuits (Part B)
1 ECE 545 – Introduction to VHDL Algorithmic State Machines Sorting Example ECE 656 Lecture 8.
Chapter 11: System Design Methodology Digital System Designs and Practices Using Verilog HDL and 2008, John Wiley11-1 Chapter 11: System Design.
ECE 448 Lecture 6 Finite State Machines State Diagrams vs. Algorithmic State Machine (ASM) Charts.
ECE DIGITAL LOGIC LECTURE 21: FINITE STATE MACHINE Assistant Prof. Fareena Saqib Florida Institute of Technology Fall 2015, 11/24/2015.
George Mason University Design of Controllers using Algorithmic State Machine (ASM) Charts ECE 545 Lecture 12.
Algorithmic State Machine (ASM) Charts: VHDL Code & Timing Diagrams
George Mason University Finite State Machines Refresher ECE 545 Lecture 11.
Finite State Machines (part 1)
Week #7 Sequential Circuits (Part B)
Figure 8.1. The general form of a sequential circuit.
RTL Design Methodology Transition from Pseudocode & Interface
ECE 448 Lecture 6 Finite State Machines State Diagrams, State Tables, Algorithmic State Machine (ASM) Charts, and VHDL Code.
Introduction Introduction to VHDL Entities Signals Data & Scalar Types
Hao Zheng Comp Sci & Eng USF
ECE 448 Lecture 6 Finite State Machines State Diagrams vs. Algorithmic State Machine (ASM) Charts.
RTL Design Methodology
ECE 448 Lecture 3 Combinational-Circuit Building Blocks Data Flow Modeling of Combinational Logic ECE 448 – FPGA and ASIC Design with VHDL.
Algorithmic State Machine (ASM) Charts: VHDL Code & Timing Diagrams
RTL Design Methodology
Data Flow Modeling of Combinational Logic
ECE 545 Lecture 12 Design of Controllers Finite State Machines and Algorithmic State Machine (ASM) Charts.
ECE 545 Lecture 10 Design of Controllers Finite State Machines and Algorithmic State Machine (ASM) Charts.
ECE 545 Lecture 9 Design of Controllers Finite State Machines and Algorithmic State Machine (ASM) Charts.
State Machine Design with an HDL
ECE 545 Lecture 11 Design of Controllers Finite State Machines and Algorithmic State Machine (ASM) Charts.
ECE 448 Lecture 3 Combinational-Circuit Building Blocks Data Flow Modeling of Combinational Logic ECE 448 – FPGA and ASIC Design with VHDL.
Figure 8.1. The general form of a sequential circuit.
Finite State Machines (part 1)
KU College of Engineering Elec 204: Digital Systems Design
RTL Design Methodology
RTL Design Methodology Transition from Pseudocode & Interface
ECE 448 Lecture 6 Finite State Machines State Diagrams, State Tables, Algorithmic State Machine (ASM) Charts, and VHDL Code.
RTL Design Methodology
RTL Design Methodology Transition from Pseudocode & Interface
RTL Design Methodology
RTL Design Methodology
RTL Design Methodology Transition from Pseudocode & Interface
RTL Design Methodology
ECE 448 Lecture 6 Finite State Machines State Diagrams, State Tables, Algorithmic State Machine (ASM) Charts, and VHDL code ECE 448 – FPGA and ASIC Design.
RTL Design Methodology
RTL Design Methodology
Sequntial-Circuit Building Blocks
Presentation transcript:

ECE 448 Lecture 6 Finite State Machines State Diagrams vs. Algorithmic State Machine (ASM) Charts

Required reading P. Chu, FPGA Prototyping by VHDL Examples Chapter 5, FSM

Recommended reading S. Brown and Z. Vranesic, Fundamentals of Digital Logic with VHDL Design Chapter 8, Synchronous Sequential Circuits Sections 8.1-8.5 Section 8.10, Algorithmic State Machine (ASM) Charts

Datapath vs. Controller

Structure of a Typical Digital System Data Inputs Control & Status Inputs Control Signals Datapath (Execution Unit) Controller (Control Unit) Status Signals Data Outputs Control & Status Outputs

Datapath (Execution Unit) Manipulates and processes data Performs arithmetic and logic operations, shifting/rotating, and other data-processing tasks Is composed of registers, multiplexers, adders, decoders, comparators, ALUs, gates, etc. Provides all necessary resources and interconnects among them to perform specified task Interprets control signals from the Controller and generates status signals for the Controller

Controller (Control Unit) Controls data movement in the Datapath by switching multiplexers and enabling or disabling resources Example: enable signals for registers Example: select signals for muxes Provides signals to activate various processing tasks in the Datapath Determines the sequence of operations performed by the Datapath Follows Some ‘Program’ or Schedule

Finite State Machines Controllers can be described as Finite State Machines (FSMs) Finite State Machines can be represented using State Diagrams and State Tables - suitable for simple controllers with a relatively few inputs and outputs Algorithmic State Machine (ASM) Charts - suitable for complex controllers with a large number of inputs and outputs All of these descriptions can be easily translated to the corresponding synthesizable VHDL code

Hardware Design with RTL VHDL Pseudocode Interface Datapath Controller ASM chart Block diagram VHDL code VHDL code

Steps of the Design Process Text description Interface Pseudocode Block diagram of the Datapath Interface divided into the Datapath and Controller State diagram or ASM chart of the Controller RTL VHDL code of the Datapath, Controller, and Top-Level Unit Testbench for the Datapath, Controller, and Top-Level Unit Functional simulation and debugging Synthesis and post-synthesis simulation Implementation and timing simulation Experimental testing using FPGA board

Steps of the Design Process Introduced in Class Today Text description Interface Pseudocode Block diagram of the Datapath Interface divided into the Datapath and Controller State diagram or ASM chart of the Controller RTL VHDL code of the Datapath, Controller, and Top-level Unit Testbench for the Datapath, Controller, and Top-Level Unit Functional simulation and debugging Synthesis and post-synthesis simulation Implementation and timing simulation Experimental testing using FPGA board

Finite State Machines Refresher

Finite State Machines (FSMs) An FSM is used to model a system that transits among a finite number of internal states. The transitions depend on the current state and external input. The main application of an FSM is to act as the controller of a medium to large digital system Design of FSMs involves Defining states Defining next state and output functions Optimization / minimization Manual optimization/minimization is practical for small FSMs only

Moore FSM output is a function of the state only next-state input logic input state_next state register clk reset state_reg output logic output

Mealy FSM output is a function of the state and input signals next-state logic input state_next state register clk reset state_reg output logic output

State Diagrams

Moore Machine transition condition 1 state 2 / state 1 / output 2

transition condition 1 / transition condition 2 / Mealy Machine transition condition 1 / output 1 state 2 state 1 transition condition 2 / output 2

Moore FSM - Example 1 Moore FSM that Recognizes Sequence “10” S0 / 0 1 reset S0: No elements of the sequence observed S1: “1” observed S2: “10” observed Meaning of states:

Mealy FSM - Example 1 Mealy FSM that Recognizes Sequence “10” 0 / 0 1 / 0 1 / 0 S0 S1 reset 0 / 1 S0: No elements of the sequence observed S1: “1” observed Meaning of states:

Algorithmic State Machine (ASM) Charts

Algorithmic State Machine representation of a Finite State Machine suitable for FSMs with a larger number of inputs and outputs compared to FSMs expressed using state diagrams and state tables.

ASM Chart Flowchart-like diagram Provides the same info as a state diagram More descriptive, better for complex description

ASM describing generalized FSM Algorithmic state machines can model both Mealy and Moore Finite State Machines They can also model generalized machines that are of the mixed type

Elements used in ASM charts (1) State name Output signals 0 (False) 1 (True) Condition or actions expression (Moore type) (a) State box (b) Decision box Conditional outputs or actions (Mealy type) (c) Conditional output box

State Box State box – represents a state. Equivalent to a node in a state diagram or a row in a state table. Contains register transfer actions or output signals Moore-type outputs are listed inside of the box. It is customary to write only the name of the signal that has to be asserted in the given state, e.g., z instead of z<=1. Also, it might be useful to write an action to be taken, e.g., count <= count + 1, and only later translate it to asserting a control signal that causes a given action to take place (e.g., enable signal of a counter). State name Output signals or actions (Moore type)

Decision Box Decision box – indicates that a given condition is to be tested and the exit path is to be chosen accordingly. The condition expression may include one or more inputs to the FSM. 0 (False) 1 (True) Condition expression

Conditional Output Box Denotes output signals that are of the Mealy type. The condition that determines whether such outputs are generated is specified in the decision box. Conditional outputs or actions (Mealy type)

Simple Example: Datapath m eni en ld ldi clk m i == k-1 zi

Simple Example: Interface

Simple Example: ASM Chart

ASM Block One state box One or more (optional) decision boxes: with T (1) or F (0) exit paths conditional output boxes: for Mealy outputs

ASM Chart Rules Difference between a regular flowchart and an ASM chart: Transition governed by clock Transition occurs between ASM blocks Basic rules: For a given input combination, there is one unique exit path from the current ASM block Any closed loop in an ASM chart must include a state box Based on RTL Hardware Design by P. Chu

Incorrect ASM Charts Based on RTL Hardware Design by P. Chu

Correct ASM Chart

State Diagram of Moore FSM Moore FSM that Recognizes Sequence “10” S0 / 0 S1 / 0 S2 / 1 1 reset S0: No elements of the sequence observed S1: “1” observed S2: “10” observed Meaning of states:

ASM Chart of Moore FSM reset S0 input 1 S1 1 input S2 output 1 input

State Diagram of Mealy FSM Mealy FSM that Recognizes Sequence “10” 0 / 0 1 / 0 1 / 0 S0 S1 reset 0 / 1 S0: No elements of the sequence observed S1: “1” observed Meaning of states:

ASM Chart of Mealy Machine reset S0 input 1 output S1 1 input

Moore & Mealy FSMs without delays clock 0 1 0 0 0 input state S0 S0 S1 S2 S0 S0 Moore output state S0 S0 S1 S0 S0 S0 Mealy output

Moore & Mealy FSMs with delays clock 0 1 0 0 0 input state S0 S0 S1 S2 S0 S0 Moore output state S0 S0 S1 S0 S0 S0 Mealy output

Moore vs. Mealy FSM (1) Moore and Mealy FSMs Can Be Functionally Equivalent Equivalent Mealy FSM can be derived from Moore FSM and vice versa Mealy FSM Has Richer Description and Usually Requires Smaller Number of States Smaller circuit area

Moore vs. Mealy FSM (2) Mealy FSM Computes Outputs as soon as Inputs Change Mealy FSM responds one clock cycle sooner than equivalent Moore FSM Moore FSM Has No Combinational Path Between Inputs and Outputs Moore FSM is less likely to affect the critical path of the entire circuit

Moore FSM output is a function of the state only next-state input logic input state_next state register clk reset state_reg output logic output

Mealy FSM output is a function of the state and input signals next-state logic input state_next state register clk reset state_reg output logic output

Which Way to Go? Mealy FSM Moore FSM Safer. Less likely to affect the critical path. Fewer states Lower Area Responds one clock cycle earlier

ASMs representing simple FSMs Algorithmic state machines can model both Mealy and Moore Finite State Machines They can also model machines that are of the mixed type

Generalized FSM Present State Next State Based on RTL Hardware Design by P. Chu

Finite State Machines in VHDL

Recommended FSM Coding Style Process(Present State, Input) Present State Next State Process(clk, reset) Based on RTL Hardware Design by P. Chu

ASM Chart of Moore Machine reset S0 input 1 S1 1 input S2 output 1 input

Moore FSM in VHDL (1) LIBRARY ieee; USE ieee.std_logic_1164.all; ENTITY FSM_Moore IS PORT ( clk : IN STD_LOGIC ; reset : IN STD_LOGIC ; input : IN STD_LOGIC ; output : OUT STD_LOGIC) ; END FSM_Moore ;

Moore FSM in VHDL (1) ARCHITECTURE behavioral of FSM_Moore IS TYPE state IS (S0, S1, S2); SIGNAL Present_State, Next_State: state; BEGIN U_Moore: PROCESS (clk, reset) IF(reset = '1') THEN Present_State <= S0; ELSIF rising_edge(clk) THEN Present_State <= Next_State; END IF; END PROCESS;

Moore FSM in VHDL (2) Next_State_Output: PROCESS (Present_State, input) BEGIN Next_State <= Present_State; output <= '0'; CASE Present_State IS WHEN S0 => IF input = '1' THEN Next_State <= S1; ELSE Next_State <= S0; END IF;

Moore FSM in VHDL (3) WHEN S1 => IF input = '0' THEN Next_State <= S2; ELSE Next_State <= S1; END IF; WHEN S2 => output <= '1' ; IF input = '1' THEN Next_State <= S0; END CASE; END PROCESS; END behavioral;

ASM Chart of Mealy Machine reset S0 input 1 output S1 1 input

Mealy FSM in VHDL (1) LIBRARY ieee; USE ieee.std_logic_1164.all; ENTITY FSM_Mealy IS PORT ( clk : IN STD_LOGIC ; reset : IN STD_LOGIC ; input : IN STD_LOGIC ; output : OUT STD_LOGIC) ; END FSM_Mealy ;

Mealy FSM in VHDL (1) ARCHITECTURE behavioral of FSM_Mealy IS TYPE state IS (S0, S1); SIGNAL Present_State, Next_State: state; BEGIN U_Mealy: PROCESS(clk, reset) IF(reset = '1') THEN Present_State <= S0; ELSIF rising_edge(clk) THEN Present_State <= Next_State; END IF; END PROCESS;

Mealy FSM in VHDL (2) Next_State_Output: PROCESS (Present_State, input) BEGIN Next_State <= Present_State; output <= '0'; CASE Present_State IS WHEN S0 => IF input = '1' THEN Next_State <= S1; ELSE Next_State <= S0; END IF;

Mealy FSM in VHDL (3) WHEN S1 => IF input = '0' THEN Next_State <= S0; Output <= '1' ; ELSE Next_State <= S1; END IF; END CASE; END PROCESS; END behavioral;