university of jordan computer engineering department cpe 439: computer design lab

32
University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Post on 22-Dec-2015

218 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

University of Jordan

Computer Engineering Department

CPE 439: Computer Design Lab

Page 2: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Lab Information

• Home Page: http://www.abandah.com/gheith

• References:1- Patterson and Hennessy. Computer Organization & Design: The Hardware/Software Interface, 2nd ed., Morgan Kaufmann, 1997.

2- Hennessy and Patterson. Computer Architecture: A Quantitative Approach, 3rd ed., Morgan Kaufmann, 2002.

3- S. Palnitkar, Verilog HDL, 2nd Ed., Prentice Hall, 2003.

Page 3: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

• Grading:

- Pre-Lab Reports and In-Lab Performance 20%

- Post-Lab Reports 20%

- Mid-Term Exam 20%

- Final Exam 40%

• Simulator: Verilogger Pro , from Synapticad INC.

Page 4: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Lab Outline

• Exp. 0: Overview of Verilog• Exp. 1: Introduction to Verilogger Pro• Exp. 2: 32-Bit ALU • Exp. 3: Register File • Exp. 4: Five-Stage Pipeline Datapath ( Arithmetic and Memory Instructions )• Exp. 5: Five-Stage Pipeline Datapath ( Adding Flow Control Instructions )• Exp. 6: Five-Stage Pipeline Datapath ( Solving Data Hazards )• Exp. 7: Direct-Mapped Instruction Cache

Page 5: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Verilog Overview

Page 6: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

What is Verilog?

• It is a Hardware Description Language ( HDL ).• Describe a digital system at several levels:

- Switch level.

- Gate level.

- Register Transfer Level ( RTL ).

- Behavioral level.• Two major HDL languages:

- Verilog.

- VHDL.

Page 7: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Cont.

• Verilog is easier to learn and use ( C-like ).

• Introduced in 1985 by ( Gateway Design Systems )

Now, part of ( Cadence Design Systems ).

• 1990: OVI ( Open Verilog International ).

• 1995: IEEE Standard.

Page 8: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Why Use Verilog?

• Digital systems are highly complex. schematic is useless ( just connectivity, not functionality )

• Describe the system at wide ranges of levels of abstraction.• Behavioral Constructs:

- Hide implementation details.- Arch. Alternatives through simulations.- Detect design bottlenecks.( BEFORE DETAILED DESIGN BEGINS )

• Automated Tools compile behavioral models to actual circuits.

Page 9: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Lexical Conventions

• Close to C / C++.• Comments:

// Single line comment

/* multiple

lines

comments */• Case Sensitive• Keywords:

- Reserved.

- lower case.

Page 10: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

• Numbers:

<size>’<base format><number>- Size: No. of bits ( optional ).- Base format: b: binary

d : decimal

o : octal

h : hexadecimal

( DEFAULT IS DECIMAL )

Examples:

Page 11: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

• Identifiers:

- start with letter or ( _ ).

- a combination of letters, digits, ( $ ), and( _ ).

- up to 1024 characters.

Page 12: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Program Structure• Verilog describes a system as a set of modules.• Each module has an interface to other modules.• Usually:

- Each module is put in a separate file.

- One top level module that contains:

Instances of Hardware modules.

Test data.• Modules can be specified:

- Behaviorally.

- Structurally.• Modules are different from subroutines in other

languages ( never called ).

Page 13: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Physical Data Types

• Registers ( reg ):

- store values

reg [ 7 : 0 ] A ; // 8-bit register

reg X; // 1-bit register ( flip flop )• Wires ( wire ):

- does not store a value

- represent physical connections between entities.

wire [ 7 : 0 ] A ;

wire X ;

Page 14: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

• reg and wire data objects may have a value of :- 0 : logical zero- 1 : logical one- x : unknown- z : high impedance

• Registers are initialized to x at the start of simulation.

• Any wire not connected to something has the value x.

• How to declare a memory in verilog ?

Page 15: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Operators

Binary Arithmetic Operators:

Page 16: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Relational Operators:

Page 17: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Logical Operators:

Page 18: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

• Bitwise Operators:

Unary Reduction Operators ??

Page 19: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Other operators:

Concatenation :

{ A [0] , B [1:7] }

Shift Left :

A = A << 2 ; // right >>

Conditional :

A = C > D ? B + 3 : B – 2 ;

Page 20: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

IF Statement

• Similar to C/C++.• Instead of { } , use begin and end.

if ( A == 4 )

begin

B = 2;

end

else

begin

B = 4;

end

Page 21: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Case Statement

• Similar to C/ C++• No break statements are needed.

case ( A )

1’bz : $display ) “ A is high impedance “);

1’bx : $display ) “ A is unknown“);

default : $display ( “A = %b”, A);

endcase

Page 22: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Example: NAND Gate

module NAND ( in1 , in2 , out ) ;

input in1 , in2 ;

output out ;

assign out = ~ ( in1 & in2 ); // continuous

// assignment

endmodule

Page 23: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

AND Gate

module AND ( in1 , in2 , out ) ;

input in1 , in2 ;

output out ;

wire w1;

NAND NAND1(in1 , in2 , w1 );

NAND NAND2 (w1 , w1 , out ) ;

endmodule

Page 24: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Test

Page 25: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

output

Page 26: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

4-to-1 Multiplexor

Page 27: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Structural Gate-level modelmodule multiplexor4_1(out, in1, in2, in3, in4, cntrl1, cntrl2);

output out; input in1, in2, in3, in4, cntrl1, cntrl2;

wire notcntlr1, notcntrl2, w, x, y, z;

not (notcntrl1, cntrl1); not (notcntrl2, cntrl2);

and (w, in1, notcntrl1, notcntrl2); and (x, in2, notcntrl1, cntrl2); and (y, in3, cntrl1, notcntrl2); and (z, in4, cntrl1, cntrl2);

or (out, w, x, y, z);endmodule

Page 28: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

RTL (dataflow) model

module multiplexor4_1(out, in1, in2, in3 ,in4, cntrl1, cntrl2);output out;

input in1, in2, in3, in4, cntrl1, cntrl2;

assign out = (in1 & ~cntrl1 & ~cntrl2) | (in2 & ~cntrl1 & cntrl2) | (in3 & cntrl1 & ~cntrl2) | (in4 & cntrl1 & cntrl2);endmodule

Page 29: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Another RTL model

module multiplexor4_1(out, in1, in2, in3, in4, cntrl1, cntrl2);

output out;

input in1, in2, in3, in4, cntrl1, cntrl2;

assign out = cntrl1 ? (cntrl2 ? in4 : in3) : (cntrl2 ? in2 : in1);

endmodule

Page 30: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

Behavioral Model

module multiplexor4_1(out, in1, in2, in3, in4, cntrl1, cntrl2); output out;

input in1, in2, in3, in4, cntrl1, cntrl2; reg out;

always @(in1 or in2 or in3 or in4 or cntrl1 or cntrl2) case ({cntrl1, cntrl2})

2'b00 : out = in1; 2'b01 : out = in2; 2'b10 : out = in3; 2'b11 : out = in4; endcaseendmodule

Behavioral code: output out must now be of reg type as it is assigned values in a procedural block.

Page 31: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

D - Flip Flopmodule dflipflop (d, clk, reset,q);

input d, clk, reset;output q;reg q;always @ (posedge clk or posedge reset) beginif (reset) beginq <= 0;endelse beginq <= d;endendendmodule

Page 32: University of Jordan Computer Engineering Department CPE 439: Computer Design Lab

N-bit shift register