0% found this document useful (0 votes)
69 views

Introduction To Digital System Design: RTL Hardware Design by P. Chu 1

The document introduces digital system design and covers several key topics: 1. It discusses why digital systems are advantageous over analog systems due to reproducibility, flexibility, and following Moore's Law. 2. It outlines different device technologies for implementing digital circuits including ASICs, FPGAs, and off-the-shelf components. 3. It describes different representations or views of a digital system including behavioral, structural, and physical views.

Uploaded by

Jasdeep Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views

Introduction To Digital System Design: RTL Hardware Design by P. Chu 1

The document introduces digital system design and covers several key topics: 1. It discusses why digital systems are advantageous over analog systems due to reproducibility, flexibility, and following Moore's Law. 2. It outlines different device technologies for implementing digital circuits including ASICs, FPGAs, and off-the-shelf components. 3. It describes different representations or views of a digital system including behavioral, structural, and physical views.

Uploaded by

Jasdeep Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 44

Introduction to

Digital System Design

RTL Hardware Design Chapter 1 1


by P. Chu
Outline
1. Why Digital?
2. Device Technologies
3. System Representation
4. Abstraction
5. Development Tasks
6. Development Flow

RTL Hardware Design Chapter 1 2


by P. Chu
1. Why Digital

RTL Hardware Design Chapter 1 3


by P. Chu
Advantages
• Advantage of digital devices
– Reproducibility of information
– Flexibility and functionality: easier to store, transmit
and manipulate information
– Economy: cheaper device and easier to design
• Moore’s law
– Transistor geometry
– Chips double its density (number of transistor) in
every 18 months
– Devices become smaller, faster and cheaper
– Now a chip consists of hundreds of million gates
– And we can have a “wireless-PDA-MP3-player-
camera-GPS-cell-phone” gadget very soon
RTL Hardware Design Chapter 1 4
by P. Chu
Applications of digital systems
• “Digitization” has spread to a wide range of
applications, including information (computers),
telecommunications, control systems etc.
• Digital circuitry replaces many analog systems:
– Audio recording: from tape to music CD to MP3
(MPEG Layer 3) player
– Image processing: from silver-halide film to digital
camera
– Telephone switching networks
– Control of mechanical system: e.g., “flight-by-wire”
RTL Hardware Design Chapter 1 5
by P. Chu
e.g, digital circuit in a wireless
communication
transmitter
system

A Error
Data Data
info / correction Modulation
compression encryption
D coding

digital implementation

D Error
Data de- Data De-
info / correction
compression decryption modulation
A de-coding

digital implementation

receiver
RTL Hardware Design Chapter 1 6
by P. Chu
e.g, digital circuit in a control
system

Sen
A D sor
actu
/ Controller / Plant
ator output
D A

set point digital


implementation

RTL Hardware Design Chapter 1 7


by P. Chu
How to implement a digital system
• No two applications are identical and every one
needs certain amount of customization
• Basic methods for customization
– “General-purpose hardware” with custom software
• General purpose processor: e.g., performance-oriented
processor (e.g., Pentium), cost-oriented processor
(e.g., PIC micro-controller)
• Special purpose processor: with architecture to perform
a specific set of functions: e.g., DSP processor (to do
multiplication-addition), network processor (to do
buffering and routing), “graphic engine” (to do 3D
rendering)
RTL Hardware Design Chapter 1 8
by P. Chu
– Custom hardware
– Custom software on a custom processor (known as
hardware-software co-design)
• Trade-off between Programmability, Coverage,
Cost, Performance, and Power consumption
• A complex application contains many different
tasks and use more than one customization
methods

RTL Hardware Design Chapter 1 9


by P. Chu
2. Device Technologies

RTL Hardware Design Chapter 1 10


by P. Chu
Fabrication of an IC
• Transistors and connection are made from many layers
(typical 10 to 15 in CMOS) built on top of one another
• Each layer has a special pattern defined by a mask
• One important aspect of an IC is the length of a smallest
transistor that can be fabricated
– It is measured in micron (μm, 10-6 meter)
– E.g., we may say an IC is built with 0.50 μm process
– The process continues to improve, as witnessed by
Moore’s law
– The state-of-art process approaches less than
a fraction of 0.1 μm (known as deep sub-micron)

RTL Hardware Design Chapter 1 11


by P. Chu
Classification of device
technologies
• Where customization is done:
– In a fab (fabrication facility): ASIC (Application
Specific IC)
– In the “field”: non-ASIC
• Classification:
– Full-custom ASIC
– Standard cell ASIC
– Gate array ASIC
– Complex field programmable logic device
– Simple field programmable logic device
– Off-the-shelf SSI (Small Scaled IC)/MSI (Medium
Scaled IC) components
RTL Hardware Design Chapter 1 12
by P. Chu
Full-custom ASIC
• All aspects (e.g., size of a transistor) of a
circuit are tailored for a particular application.
• Circuit fully optimized
• Design extremely complex and involved
• Only feasible for small components
• Masks needed for all layers

RTL Hardware Design Chapter 1 13


by P. Chu
Standard-Cell ASIC
• Circuit made of a set of pre-defined logic,
known as standard cells
• E.g., basic logic gates, 1-bit adder, D FF etc
• Layout of a cell is pre-determined, but layout
of the complete circuit is customized
• Masks needed for all layers

RTL Hardware Design Chapter 1 14


by P. Chu
Gate array ASIC
• Circuit is built from an array of a single type of
cell (known as base cell)
• Base cells are pre-arranged and placed in
fixed positions, aligned as one- or two-
dimensional array
• More sophisticated components (macro cells)
can be constructed from base cells
• Masks needed only for metal layers
(connection wires)
RTL Hardware Design Chapter 1 15
by P. Chu
Complex Field Programmable Device
• Device consists of an array of generic logic cells
and general interconnect structure
• Logic cells and interconnect can be “programmed”
by utilizing “semiconductor fuses or “switches”
• Customization is done “in the filed”
• Two categories:
– CPLD (Complex Programmable Logic Device)
– FPGA (Field Programmable Gate Array)
• No custom mask needed
RTL Hardware Design Chapter 1 16
by P. Chu
Simple Field Programmable Device

• Programmable device with simple internal


structure
• E.g.,
– PROM (Programmable Read Only Memory)
– PAL (Programmable Array Logic)
• No custom mask needed
• Replaced by CPLD/FPGA

RTL Hardware Design Chapter 1 17


by P. Chu
SSI/MSI components
• Small parts with fixed, limited functionality
• E.g., 7400 TTL series (more than 100 parts)
• Resource (e.g., power, board area,
manufacturing cost etc.) is consumed by
“package” but not “silicon”
• No longer a viable option

RTL Hardware Design Chapter 1 18


by P. Chu
Three viable technologies
• Standard Cell ASIC
• Gate Array ASIC
• FPGA/CPLD

RTL Hardware Design Chapter 1 19


by P. Chu
Comparison of technology
• Area (Size): silicon “real-estate”
– Standard cell is the smallest since the cells and
interconnect are customized
– FPGA is the largest
• Overhead for “programmability”
• Capacity cannot be completely utilized
• Speed (Performance)
– Time required to perform a task
• Power
• Cost

RTL Hardware Design Chapter 1 20


by P. Chu
Cost
• Types of cost:
– NRE (Non-Recurrent Engineering) cost:
one-time, per-design cost
– Part cost: per-unit cost
– Time-to-market “cost” loss of revenue
• Standard cell: high NRE, small part cost
and large lead time
• FPGA: low NRE, large part cost and
small lead time
RTL Hardware Design Chapter 1 21
by P. Chu
Graph of per-unit cost

RTL Hardware Design Chapter 1 22


by P. Chu
Summary of technology

• Trade-off between optimal use of hardware


resource and design effort/cost
• No single best technology
RTL Hardware Design Chapter 1 23
by P. Chu
3. System Representation
(View)

RTL Hardware Design Chapter 1 24


by P. Chu
• View: different perspectives of a system
• Behavioral view:
– Describe functionalities and i/o behavior
– Treat the system as a black box
• Structural view:
– Describe the internal implementation
(components and interconnections)
– Essentially block diagram
• Physical view:
– Add more info to structural view: component
size, component locations, routing wires
– E.g., layout of a print circuit board
RTL Hardware Design Chapter 1 25
by P. Chu
e.g., structural and physical view

RTL Hardware Design Chapter 1 26


by P. Chu
4. Abstraction

RTL Hardware Design Chapter 1 27


by P. Chu
• How to manage complexity for a chip with 10
million transistors?
• Abstraction: simplified model of a system
– show the selected features
– Ignore associated detail
• E.g., timing of
an inverter

RTL Hardware Design Chapter 1 28


by P. Chu
• Level of abstractions
– Transistor level
– Gate level
– Register transfer (RT) level
– Processor level
• Characteristics of each level
– Basic building blocks
– Signal representation
– Time representation
– Behavioral representation
– Physical representation.

RTL Hardware Design Chapter 1 29


by P. Chu
Summary

RTL Hardware Design Chapter 1 30


by P. Chu
RT level
• RT (Register Transfer) is a misleading
term
• Should use “module-level”
• Two meanings:
– Loosely: represent the module level
– Formally: a design methodology in which the
system operation is described by how the
data is manipulated and moved among
registers

RTL Hardware Design Chapter 1 31


by P. Chu
• View and abstraction
are two independent
aspects.
• Combined in a Y-
chart

RTL Hardware Design Chapter 1 32


by P. Chu
5. Development Tasks

RTL Hardware Design Chapter 1 33


by P. Chu
• Developing a digital system is a refining
and validating process
• Main tasks:
– Synthesis
– Physical design
– Verification
– Testing

RTL Hardware Design Chapter 1 34


by P. Chu
Synthesis
• A refinement process that realizes a description
with components from the lower abstraction
level.
• The resulting description is a structural view in
the lower abstraction level
• Type of synthesis:
– High-level synthesis
– RT level synthesis
– Gate level synthesis
– Technology mapping

RTL Hardware Design Chapter 1 35


by P. Chu
Physical Design
• Placement and routing
– Refining from structural view to physical view
– Derive lay out of a netlist
• Circuit extraction:
– Determine the wire resistance of capacitance
• Others
– Derivation of power grid and clock distribution
network, assurance of signal integrity etc.

RTL Hardware Design Chapter 1 36


by P. Chu
Verification
• Check whether a design meets the
specification and performance goals.
• Concern the correctness of the initial
design and the refinement processes
• Two aspects
– Functionality
– Performance (timing)

RTL Hardware Design Chapter 1 37


by P. Chu
Method of Verification
• Simulation
– spot check: cannot verify the absence of errors
– Can be computation inensive
• Timing analysis
– Just check delay
• Formal verification
– apply formal math techniques determine its property
– E.g, equivalence checking
• Hardware emulation

RTL Hardware Design Chapter 1 38


by P. Chu
Testing
• Testing is the process of detecting
physical defects of a die or a package
occurred at the time of manufacturing
• Testing and verification are different tasks.
• Difficult for large circuit
– Need to add auxiliary testing circuit in design
– E.g., built-in self test (BIST), scan chain etc.

RTL Hardware Design Chapter 1 39


by P. Chu
Limitation of EDA software
• EDA (Electronic Design Automation)
• EDA software can automate some tasks
• Can software replace human hardware
designer? (e.g., C-program to chip)
• Synthesis software
– should be treated as a tool to perform
transformation and local optimization
– cannot alter the original architecture or
convert a poor design into a good one

RTL Hardware Design Chapter 1 40


by P. Chu
Development Flow

RTL Hardware Design Chapter 1 41


by P. Chu
• Medium design
data file process

targeting FPGA
Synthesis Physical Design Verification

• Circuit up to
RTL 1 1

50,000 gates description testbench

synthesis 3 simulation 2

netlist delay file

placement & 54 simulation 4


routing

configuration delay file


file

device simulation/
programming 7 timing 6
analysis

FPGA 8
chip

RTL Hardware Design Chapter 1 42


by P. Chu
Additional tasks
• Large design targeting FPGA
– Design partition
– More verification
• Large design targeting ASIC
– Thorough verification
– Testing
– Physical design

RTL Hardware Design Chapter 1 43


by P. Chu
Goal of this course
• Goal:
– Systematically develop efficient, portable RT level
designs that can be easily integrated into a larger
system
• Design for efficiency
• Design for “large”
– Large module, large system, overall development
process
• Design for portability
– Device independent, software dependent, design
reuse
RTL Hardware Design Chapter 1 44
by P. Chu

You might also like