23
VLSI System Design Lecture 1.3 Hardware Description Languages (HDLs) Engr. Anees ul Husnain ( [email protected] ) Department of Computer Systems Engineering, College of Engineering & Technology, IUB

VLSI System Design

  • Upload
    ervin

  • View
    39

  • Download
    0

Embed Size (px)

DESCRIPTION

VLSI System Design. Lecture 1.3 Hardware Description Languages (HDLs). Engr. Anees ul Husnain ( [email protected] ) Department of Computer Systems Engineering, College of Engineering & Technology, IUB. In this Lecture. Design steps Designing through HDLs Introduction HDLs - PowerPoint PPT Presentation

Citation preview

Page 1: VLSI System Design

VLSI System Design

Lecture 1.3 Hardware Description Languages (HDLs)

Engr. Anees ul Husnain ( [email protected] )

Department of Computer Systems Engineering,College of Engineering & Technology, IUB

Page 2: VLSI System Design

In this Lecture Design steps Designing through HDLs Introduction HDLs What and why HDL Verilog HDL Modelling a simple circuit.

Delays Stimulus

Page 3: VLSI System Design

Design Steps in an IC

DESIGNING CHIPS THROUGH HDLs

•Advance Digital Design/ Digital Electronics

+•VLSI System Design

Page 4: VLSI System Design

Design Description Optimization Simulation Synthesis

+ Physical design Critical sub-systems Enhancing speeds through design Floor planning n so on…

Design Steps in an IC

Page 5: VLSI System Design

Design Steps in an IC

An industrial level overview

Page 6: VLSI System Design

Hardware Description Language (HDL)

Basic idea is a programming language to describe hardware

Initial purpose was to allow abstract design and simulation Design could be verified then implemented in

hardware

Now Synthesis tools allow direct implementation from HDL code. Large improvement in designer productivity

Page 7: VLSI System Design

HDL

HDL allows write-run-debug cycle for hardware development. Similar to programming software Much, much faster than design-implement-debug

Combined with modern Field Programmable Gate Array chips large complex circuits (100000s of gates) can be implemented.

Page 8: VLSI System Design

HDLs

There are many different HDLs Verilog HDL ABEL – Advance Boolean Expressions Language VHDL

VHDL is the most common Large standard developed by US DoD VHDL = VHSIC HDL VHSIC = Very High Speed Integrated Circuit

Page 9: VLSI System Design

Verilog HDL

Verilog HDL is second most common Easier to use in many ways = better for teaching C - like syntax

History Developed as proprietry language in 1985 Opened as public domain spec in 1990

Due to losing market share to VHDL Became IEEE standard in 1995

Page 10: VLSI System Design

Verilog HDL

Verilog constructs are use defined keywords Examples: and, or, wire, input output

One important construct is the module Modules have inputs and outputs Modules can be built up of Verilog primatives or of

user defined submodules.

Page 11: VLSI System Design

Example: Simple Circuit Diagram

Page 12: VLSI System Design

Example: Simple Circuit HDLmodule smpl_circuit(A,B,C,x,y);

input A,B,C;

output x,y;

wire e;

and g1(e,A,B);

not g2(y, C);

or g3(x,e,y);

endmodule

Page 13: VLSI System Design

Simple Circuit Notes

The module starts with module keyword and finishes with endmodule.

Internal signals are named with wire.

Comments follow //

input and output are ports. These are placed at the start of the module definition.

Each statement ends with a semicolon, except endmodule.

Page 14: VLSI System Design

Circuit to code

module smpl_circuit(A,B,C,x,y); input A,B,C; output x,y; wire e; and g1(e,A,B); not g2(y, C); or g3(x,e,y);endmodule

Page 15: VLSI System Design

Adding Delays

To simulate a circuits real world behaviour it is important that propagation delays are included.

The units of time for the simulation can be specified with timescale. Default is 1ns with precision of 100ps

Component delays are specified as #(delay)

Page 16: VLSI System Design

Simple Circuit with Delay

module circuit_with_delay (A,B,C,x,y);

input A,B,C;

output x,y;

wire e;

and #(30) g1(e,A,B);

or #(20) g3(x,e,y);

not #(10) g2(y,C);

endmodule

Page 17: VLSI System Design

Effect of delay

Time

(ns)

Input

A B C

Output

y e x

<0 0 0 0 1 0 1

0 1 1 1 1 0 1

10 1 1 1 0 0 1

20 1 1 1 0 0 1

30 1 1 1 0 1 0

40 1 1 1 0 1 0

50 1 1 1 0 1 1

Page 18: VLSI System Design

Input signals

In order to simulate a circuit the input signals need to be known so as to generate an output signal.

The input signals are often called the circuit stimulus.

An HDL module is written to provide the circuit stimulus. This is known as a testbench.

Page 19: VLSI System Design

Testbench

The testbench module includes the module to be tested.

There are no input or output ports for the testbench.

The inputs to the test circuit are defined with reg and the outputs with wire.

The input values are specified with the keyword initial

A sequence of values can be specified between begin and end.

Page 20: VLSI System Design

Signal Notation

In Verilog signals are generalised to support multi-bit values (e.g. for buses)

The notation

A = 1’b0;

means signal A is one bit with value zero.

The end of the simulation is specified with $finish.

Page 21: VLSI System Design

Stimulus module for simple circuitmodule stimcrct;

reg A,B,C;

wire x,y;

circuit_with_delay cwd(A,B,C,x,y);

initial

begin

A = 1'b0; B = 1'b0; C = 1'b0;

#100

A = 1'b1; B = 1'b1; C = 1'b1;

#100 $finish;

end

endmodule

Page 22: VLSI System Design

Tools you’re equipped with…

Xilinx ISE ISE Simulator

Page 23: VLSI System Design

Language what you need

Verilog… Syntax & Structure (at Lab hours)