38
ASIC, FPGAs and programmable processors CMPE 641

ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

  • Upload
    others

  • View
    4

  • Download
    0

Embed Size (px)

Citation preview

Page 1: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

ASIC, FPGAs and programmable processors

CMPE 641

Page 2: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

The Design Warrior’s Guide to FPGAsDevices, Tools, and Flows. ISBN 0750676043Copyright © 2004 Mentor Graphics Corp. (www.mentor.com)

1945 1950 1955 1960 1965 1970 1975 1980 1985 1990 1995 2000

FPGAs

ASICs

CPLDs

SPLDs

Microprocessors

SRAMs & DRAMs

ICs (General)

Transistors

Technology Timeline

Page 3: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

The Design Warrior’s Guide to FPGAsDevices, Tools, and Flows. ISBN 0750676043Copyright © 2004 Mentor Graphics Corp.

PLDs

SPLDs CPLDs

PLAsPROMs PALs GALs etc.

Figure 3-02

Page 4: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

The Design Warrior’s Guide to FPGAsDevices, Tools, and Flows. ISBN 0750676043Copyright © 2004 Mentor Graphics Corp.

a b c

l l l

Address 0 &

Address 1 &

Address 2 &

Address 3 &

Address 4 &

Address 5 &

Address 6 &

Address 7 &

a !a b !b c !c

!a !c!b& &

!a c!b& &

!a !cb& &

!a cb& &

a !c!b& &

a c!b& &

a !cb& &

a cb& &

Predefined AND array

Pro

gra

mm

ab

le O

R a

rra

y

w x y

Predefined link

Programmable link

Figure 3-03

Page 5: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

The Design Warrior’s Guide to FPGAsDevices, Tools, and Flows. ISBN 0750676043Copyright © 2004 Mentor Graphics Corp.

PLDs ASICs

Standard Cell

Full Custom

Gate Arrays

Structured ASICs*

SPLDs

CPLDs

*Not available circa early 1980s

The

GAP

Figure 3-17

Page 6: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

FPGAs Large array of configurable logic blocks (CLB)

connected via programmable interconnects

Page 7: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Features and Specifications of FPGAs

Page 8: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Basic Programmable Devices

Page 9: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Features and Specifications of FPGAs

Page 10: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Features and Specifications of FPGAs

Page 11: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Features and Specifications of FPGAs

Page 12: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Generic Xilinx FPGA Architecture

Page 13: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Clock Tree in FPGAs• Everything is preplaced and routed (there is no

space for improvement)

• There is no gate sizing to enhance performance

Page 14: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

FPGA vs ASIC

Page 15: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Standard cell based IC

vs. Custom design IC

Standard cell based IC:

Design using standard cells

Standard cells come from library provider

Many different choices for cell size, delay, leakage power

Many EDA tools to automate this flow

Shorter design time

Custom design IC:

Design all by yourself

Higher performance

Page 16: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Standard cell based VLSI

design flow

Front end

System specification and architecture

HDL coding & behavioral simulation

Synthesis & gate level simulation

Back end

Placement and routing

DRC (Design Rule Check), LVS (Layout vs Schematic)

dynamic simulation and static analysis

Page 17: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Simple diagram of the front-end design flow

System

Specification

RTL

CodingSynthesis Gate level code

INV (.in (a), .out (a_inv));

AND (.in1 (a_inv), .in2 (b), .out (c));Ex: c = !a & b

Cab

Page 18: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Simple diagram of the back-end design flow

gate level Verilog

from synthesisPlace

&

Route

Final layout

(go for fabrication)

DRC

Gate level VerilogLVS

Timing information

Gate level dynamic and/or static analysis

Design rule

check

Layout vs.

schematic

Page 19: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Flow of placement and routing

• Floorplan (place macros, do power planning)

• Placement and in-place optimization

• Clock tree generation

• Routing

Page 20: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Import needed files

• Gate level verilog (.v)

• Geometry information (.lef)

• Timing information (.lib)

INV (.in (a), .out (a_inv));

AND (.in1 (a_inv), .in2 (b), .out (c));

INV: 1um width AND: 2 um width

INV: 1ns delay; AND: 2 ns delay

INV ANDa

b

C

Delay (a->c): 1ns + 2ns = 3ns

Page 21: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Floorplan• Size of chip

• Location of Pins

• Location of main blocks

• Power supply: give enough power for each gate

• Note: the height of standard cell gates are the same so thGND/VDD lines can connect them all in rows.

VDD (Metal)

Power supply (1.8V)

current

Gate 1 Gate 2 Gate 3 Gate 4

1.75v

Voltage drop equation: V2 = V1 – I * R

1.7v(need another power)

1.65v

VSS

Page 22: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Floorplan of a single processor

Inst

Mem

ALU

MAC

Control

Data

Mem

Clock

In-

FIFO0

In-

FIFO1

Output

Page 23: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Placement & in-placement optimization

• Placement: place the gates

• In-placement optimization

– Why: timing information difference between synthesis and layout (wire delay)

– How: change gate size, insert buffers

– Should not change the circuit function!!

Page 24: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Placement of a single processor

Page 25: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Clock tree

• Main parameters: skew, delay, transition time

Q

QSET

CLR

S

R Q

QSET

CLR

S

R

Q

QSET

CLR

S

R

Q

QSET

CLR

S

R Q

QSET

CLR

S

R

Q

QSET

CLR

S

R

Q

QSET

CLR

S

R Q

QSET

CLR

S

R

Q

QSET

CLR

S

R

Original Clock

Clock Delay = y

Clock Skew= x -yClock Delay= x

Page 26: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Clock tree of single processor

Page 27: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Routing

• Connect the gates using wires

• Two steps

– Connect the global signals (power)

– Connect other signals

Page 28: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Metal Layer Topology

Routing

Page 29: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Layout of a single processor

Area:

0.8mm x 0.8mm

Estimated speed:

450 MHz

Page 30: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

384 Check &

2048 Variable

processors

Logic UtilizationChip 1: low logic

utilization 30%Application 1 gates

Application 2 gates

50 μm 50 μm

30

Chip 2: high logic

utilization 96%

Page 31: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Single Tile

Transistors 325,000

Area 0.17 mm2

CMOS Tech. 65 nm ST

Microelectronics

low-leakage

Max.

frequency1.19 GHz @

1.3 V

Power

(100%

active)

59 mW @

1.19 GHz, 1.3 V

47 mW @

1.06 GHz, 1.2 V

608 μW @

66 MHz, 0.675 V

App. power

(802.11a rx)16 mW @

590 MHz, 1.3 V

55 million transistors, 39.4 mm2

5.9

39 m

m

410 μm

410 μ

m

FFTVit

Mot.

Est. MemMem

5.516 mm

Mem

Summary of the 167 Many-core Chip

Page 32: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

FPGA vs ASIC summary

• Front-end design flow is almost the same for both

• Back-end design flow optimization is different

– ASIC design: freedom in routing, gate sizing, power gating and clock tree optimization.

– FPGA design: everything is preplaced, clock tree is pre-routed, no power gating

– Designs implemented in FPGAs are slower and consume more power than ASIC

Page 33: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

ASIC and FPGA vs DSP

Page 34: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

FPGA vs DSP• DSP:

– Easy to program (usually standard C)

– Very efficient for complex sequential math-intensive tasks

– Fixed datapath-width. Ex: 24-bit adder, is not efficient for 5-bit addition

– Limited resources

• FPGA

– Requires HDL language programming

– Efficient for highly parallel applications

– Efficient for bit-level operations

– Large number of gates and resources

– Does not support floating point, must construct your own.

Page 35: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Current trend

• Programming flexibility

• High performance

– Throughput

– Latency

• High energy efficiency

• Suitable for future

fabrication technologiesP

erf

orm

an

ce

&

En

erg

y e

ffic

ien

cy

Programming flexibility

ASIC

FPGA

Prog.

DSP

Many

-core

Page 36: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Target Many-core Architecture

• High performance• Exploit task-level parallelism in

digital signal processing and multimedia

– Large number of processors per chip to support multiple applications

• High energy efficiency

– Voltage and frequency scaling capability per processor

High F, V

Low F, V

Halt

36

Page 37: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

• 164 programmable procs.

• Three dedicated-purpose procs.

• Per processor Dynamic Voltage and Frequency Scaling (DVFS)

– Selects between two voltages (VDD High and VDD Low)

– Programmable local oscillator

167-processor Multi-voltage Computational Chip

Viterbi

Decoder

FFT

16 KB Shared

Memories

Motion

Estimation

D. Truong, W. Cheng, T. Mohsenin, Z. Yu, A. Jacobson, G. Landge, M. Meeuwsen,

C. Watnik, A. Tran, Z. Xiao, E. Work, J. Webb, P. Mejia, B. Baas, VLSI Symp. 2008, JSSC 2009 37

Page 38: ASIC, FPGAs and programmable processorstinoosh/cmpe641/slides/ASIC-FPGA-pr… · • Note: the height of standard cell gates are the same so th GND/VDD lines can connect them all

Single Tile

Transistors 325,000

Area 0.17 mm2

CMOS Tech. 65 nm ST

Microelectronics

low-leakage

Max.

frequency1.19 GHz @

1.3 V

Power

(100%

active)

59 mW @

1.19 GHz, 1.3 V

47 mW @

1.06 GHz, 1.2 V

608 μW @

66 MHz, 0.675 V

App. power

(802.11a rx)16 mW @

590 MHz, 1.3 V

55 million transistors, 39.4 mm2

5.9

39 m

m

410 μm

410 μ

m

FFTVit

Mot.

Est. MemMem

5.516 mm

Mem

Summary of the 167 Many-core Chip