Top Banner
George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9
28

George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

Dec 21, 2015

Download

Documents

Domenic Dorsey
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

George Mason UniversityECE 448 – FPGA and ASIC Design with VHDL

Algorithmic State Machine (ASM) Charts

ECE 448Lecture 9

Page 2: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

2ECE 448 – FPGA and ASIC Design with VHDL

Required reading

• S. Brown and Z. Vranesic, Fundamentals of Digital Logic with VHDL Design

Chapter 8.10, Algorithmic State Machine

(ASM) Charts

• P. Chu, FPGA Prototyping by VHDL Examples

Chapter 5, FSM

Page 3: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

3ECE 448 – FPGA and ASIC Design with VHDL

Algorithmic State Machine (ASM)

Charts

Page 4: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

4ECE 448 – FPGA and ASIC Design with VHDL

Algorithmic State Machine

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.

Page 5: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

5ECE 448 – FPGA and ASIC Design with VHDL

Elements used in ASM charts (1)

Output signalsor actions

(Moore type)

State name

Condition expression

0 (False) 1 (True)

Conditional outputs or actions (Mealy type)

(a) State box (b) Decision box

(c) Conditional output box

Page 6: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

6ECE 448 – FPGA and ASIC Design with VHDL

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).

Output signalsor actions

(Moore type)

State name

Page 7: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

7ECE 448 – FPGA and ASIC Design with VHDL

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.

Condition expression

0 (False) 1 (True)

Page 8: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

8ECE 448 – FPGA and ASIC Design with VHDL

Conditional Output Box

• 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)

Page 9: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

9ECE 448 – FPGA and ASIC Design with VHDL

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

Page 10: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

10ECE 448 – FPGA and ASIC Design with VHDL

Moore FSM – Example 2: State diagram

C z 1 =

Reset

B z 0 = A z 0 = w 0 =

w 1 =

w 1 =

w 0 =

w 0 = w 1 =

Page 11: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

11ECE 448 – FPGA and ASIC Design with VHDL

Present Next state Outputstate w = 0 w = 1 z

A A B 0 B A C 0 C A C 1

Moore FSM – Example 2: State table

Page 12: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

12ECE 448 – FPGA and ASIC Design with VHDL

w

w

w 0 1

0

1

0

1

A

B

C

z

Reset

w

w

w 0 1

0

1

0

1

A

B

C

z

Reset

ASM Chart for Moore FSM – Example 2

Page 13: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

13ECE 448 – FPGA and ASIC Design with VHDL

USE ieee.std_logic_1164.all ;

ENTITY simple ISPORT ( clock : IN STD_LOGIC ;

resetn : IN STD_LOGIC ; w : IN STD_LOGIC ;

z : OUT STD_LOGIC ) ;END simple ;

ARCHITECTURE Behavior OF simple ISTYPE State_type IS (A, B, C) ;SIGNAL y : State_type ;

BEGINPROCESS ( resetn, clock )BEGIN

IF resetn = '0' THENy <= A ;

ELSIF (Clock'EVENT AND Clock = '1') THEN

Example 2: VHDL code (1)

Page 14: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

14ECE 448 – FPGA and ASIC Design with VHDL

CASE y ISWHEN A =>

IF w = '0' THEN y <= A ;

ELSE y <= B ;

END IF ;WHEN B =>

IF w = '0' THENy <= A ;

ELSEy <= C ;

END IF ;WHEN C =>

IF w = '0' THENy <= A ;

ELSEy <= C ;

END IF ;END CASE ;

Example 2: VHDL code (2)

Page 15: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

15ECE 448 – FPGA and ASIC Design with VHDL

Example 2: VHDL code (3)

END IF ;

END PROCESS ;

z <= '1' WHEN y = C ELSE '0' ;

END Behavior ;

Page 16: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

16ECE 448 – FPGA and ASIC Design with VHDL

A

w 0 = z 0 =

w 1 = z 1 = B w 0 = z 0 =

Reset

w 1 = z 0 =

Mealy FSM – Example 3: State diagram

Page 17: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

17ECE 448 – FPGA and ASIC Design with VHDL

ASM Chart for Mealy FSM – Example 3

w

w 0 1

0

1

A

B

Reset

z

Page 18: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

18ECE 448 – FPGA and ASIC Design with VHDL

LIBRARY ieee ;USE ieee.std_logic_1164.all ;

ENTITY Mealy ISPORT ( clock : IN STD_LOGIC ;

resetn : IN STD_LOGIC ; w : IN STD_LOGIC ;

z : OUT STD_LOGIC ) ;END Mealy ;

ARCHITECTURE Behavior OF Mealy ISTYPE State_type IS (A, B) ;SIGNAL y : State_type ;

BEGINPROCESS ( resetn, clock )BEGIN

IF resetn = '0' THENy <= A ;

ELSIF (clock'EVENT AND clock = '1') THEN

Example 3: VHDL code (1)

Page 19: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

19ECE 448 – FPGA and ASIC Design with VHDL

Example 3: VHDL code (2)

CASE y IS WHEN A => IF w = '0' THEN

y <= A ;ELSE

y <= B ;END IF ;

WHEN B =>IF w = '0' THEN

y <= A ;ELSE

y <= B ; END IF ;END CASE ;

Page 20: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

20ECE 448 – FPGA and ASIC Design with VHDL

Example 3: VHDL code (3)

END IF ;

END PROCESS ;

z <= '1' WHEN (y = B) AND (w=‘1’) ELSE '0' ;

END Behavior ;

Page 21: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

21ECE 448 – FPGA and ASIC Design with VHDL

Control Unit Example: Arbiter (1)

Arbiter

reset

r1

r2

r3

g1

g2

g3

clock

Page 22: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

22ECE 448 – FPGA and ASIC Design with VHDL

Idle

000

1xx

Reset

gnt1 g 1 1 =

x1x

gnt2 g 2 1 =

xx1

gnt3 g 3 1 =

0xx 1xx

01x x0x

001 xx0

Control Unit Example: Arbiter (2)

Page 23: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

23ECE 448 – FPGA and ASIC Design with VHDL

Control Unit Example: Arbiter (3)

r 1 r 2

r 1 r 2 r 3

Idle

Reset

gnt1 g 1 1 =

gnt2 g 2 1 =

gnt3 g 3 1 =

r 1 r 1

r 1

r 2

r 3

r 2

r 3

r 1 r 2 r 3

r 1 r 2

r 1 r 2 r 3

Idle

Reset

gnt1 g 1 1 =

gnt2 g 2 1 =

gnt3 g 3 1 =

r 1 r 1

r 1

r 2

r 3

r 2

r 3

r 1 r 2 r 3

Page 24: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

24ECE 448 – FPGA and ASIC Design with VHDL

ASM Chart for Control Unit - Example 4

r 1

r 3 0 1

1

Idle

Reset

r 2

r 1

r 3

r 2

gnt1

gnt2

gnt3

1

1

1

0

0

0

g 1

g 2

g 3

0

0

1

r 1

r 3 0 1

1

Idle

Reset

r 2

r 1

r 3

r 2

gnt1

gnt2

gnt3

1

1

1

0

0

0

g 1

g 2

g 3

0

0

1

Page 25: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

25ECE 448 – FPGA and ASIC Design with VHDL

Example 4: VHDL code (1)

LIBRARY ieee;

USE ieee.std_logic_1164.all;

ENTITY arbiter IS

PORT ( Clock, Resetn : IN STD_LOGIC ;

r : IN STD_LOGIC_VECTOR(1 TO 3) ;

g : OUT STD_LOGIC_VECTOR(1 TO 3) ) ;

END arbiter ;

ARCHITECTURE Behavior OF arbiter IS

TYPE State_type IS (Idle, gnt1, gnt2, gnt3) ;

SIGNAL y : State_type ;

Page 26: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

26ECE 448 – FPGA and ASIC Design with VHDL

Example 4: VHDL code (2)BEGIN

PROCESS ( Resetn, Clock )

BEGIN

IF Resetn = '0' THEN y <= Idle ;

ELSIF (Clock'EVENT AND Clock = '1') THEN

CASE y IS

WHEN Idle =>

IF r(1) = '1' THEN y <= gnt1 ;

ELSIF r(2) = '1' THEN y <= gnt2 ;

ELSIF r(3) = '1' THEN y <= gnt3 ;

ELSE y <= Idle ;

END IF ;

WHEN gnt1 =>

IF r(1) = '1' THEN y <= gnt1 ;

ELSE y <= Idle ;

END IF ;

WHEN gnt2 =>

IF r(2) = '1' THEN y <= gnt2 ;

ELSE y <= Idle ;

END IF ;

Page 27: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

27ECE 448 – FPGA and ASIC Design with VHDL

Example 4: VHDL code (3)

WHEN gnt3 =>

IF r(3) = '1' THEN y <= gnt3 ;

ELSE y <= Idle ;

END IF ;

END CASE ;

END IF ;

END PROCESS ;

g(1) <= '1' WHEN y = gnt1 ELSE '0' ;

g(2) <= '1' WHEN y = gnt2 ELSE '0' ;

g(3) <= '1' WHEN y = gnt3 ELSE '0' ;

END Behavior ;

Page 28: George Mason University ECE 448 – FPGA and ASIC Design with VHDL Algorithmic State Machine (ASM) Charts ECE 448 Lecture 9.

RTL Hardware Design by P. Chu

Chapter 10 28

• Incorrect ASM charts: