SlideShare a Scribd company logo
1 of 33
3/3/2023 1
VLSI Physical Design Automation
2
3/3/2023
Other Design Styles: FPGA
• Field Programmable Gate Array
• First introduced by Xilinx in 1984.
• Pre-fabricated devices and interconnect, which are
programmable by user.
• Advantages:
– short turnaround time.
– low manufacturing cost.
– fully testable.
– re-programmable.
• Particularly suitable for prototyping, low or medium-
volume production, device controllers, etc.
3
3/3/2023
Comparison of Design Styles
Full-Custom
Standard
Cell
Gate Array FPGA
Cell size variable fixed height fixed fixed
Cell type variable variable fixed
programma
ble
Cell placement variable in row fixed fixed
Interconnections variable variable variable
programma
ble
Fabrication
layers
all layers
all
layers
routing
layers only no layers
4
3/3/2023
Comparison of Design Styles
Full-Custom Standard Cell Gate Array FPGA
Area compact
compact to
moderate
moderate large
Performance high
high
to moderate
moderate low
Design cost high medium medium low
Time-to-market long medium medium short
5
3/3/2023
Programming Technologies
• SRAM to control pass transistor / multiplexer
• EPROM – UV light Erasable PROM
• EEPROM – Electrically Erasable PROM
• Antifuses – One time programmable
• They are different in ease of manufacturing,
manufacturing reliability, area, ON and OFF
resistance, parasitic capacitance, power consumption,
re-programmability.
6
3/3/2023
Typical FPGA Architecture
• Consists of: Logic modules, Routing resources, and
I/O modules.
Logic Module
IO Module
Routing Tracks
& Switch boxes
7
3/3/2023
FPGA Architecture Examples
Logic
Module
Array-based Model Row-based Model
Sea-of-Gates Model Hierarchical Model
Routing
resources
overlayed
on logic
modules
8
3/3/2023
Two Types of Logic Modules
Look-Up Table (LUT) based:
• A block of RAM to store the truth table.
• A k-input 1-output functions needs 2k bits.
• k is usually 5 or 6.
Multiplexer based: e.g., f=ABC+ABC
C
B
A
A
B
f
9
3/3/2023
Two Types of Switchboxes
• First Type:
• Second Type:
10
3/3/2023
Several Segmentation Models
• Non-Segmentation Model:
• Uniform Segmentation Model:
1 4 0 0 2 0 0 3 0 5 0 0 0 0
0 0 0 1 0 0 4 0 2 0 3 0 0 5
Connecting
Not connecting
1 4 0 0 2 0 0 3 0 5 0 0 0 0
0 0 0 1 0 0 4 0 2 0 3 0 0 5
Fuse or
Programmable
switch
11
3/3/2023
Several Segmentation Models
• Uniform Staggered Segmentation Model:
• Non-uniform Staggered Segmentation Model:
1 4 0 0 2 0 0 3 0 5 0 0 0 0
0 0 0 1 0 0 4 0 2 0 3 0 0 5
1 4 0 0 2 0 0 3 0 5 0 0 0 0
0 0 0 1 0 0 4 0 2 0 3 0 0 5
12
3/3/2023
Comparison of Segmentation Models
• The segmented model provides better utilization of
routing resources.
• However, segmented model uses more fuses or
programmable switches.
• The delay of a net is directly proportional to the # of
fuses or programmable switches in the route
– Manhattan-distance based delay model does NOT work
anymore
– The segmented model is slower in general
13
3/3/2023
Physical Design of FPGAs
• Very different from other design styles
• Architecture dependent:
– LUT or Multiplexer in logic modules
– Type of switchboxes used
– Type of segmentation model used
– ......
• Physical Design:
– Partitioning
– Floorplanning/Placement
– Routing
14
3/3/2023
Partitioning
• Want to partition the circuit such that each partition
(cluster) can be implemented by a logic module.
• Also called Clustering.
• # of I/O pins, not cluster sizes, is important.
(For multiplexer based logic modules, functionality of
clusters is also important.)
Example:
Using 4-LUTs
15
3/3/2023
Placement
• Assign clusters formed during partitioning to logic
modules of FPGA.
• The problem is the same as gate-array placement.
16
3/3/2023
Routing
• Global routing:
– Similar to global routing in other design styles.
– Minimize wire length and balance densities.
• Detailed routing:
– Very different from other design styles.
– Different algorithms for different segmentation models.
– Channels and switchboxes have fixed capacities.
17
3/3/2023
Structured ASIC
• New buzz word, but essentially gate array
– Mask reconfigurable
– Not field reconfigurable
• Between FPGA and standard cells
– Balance delay/performance and mask cost
• Only programmable once
– by vias (e.g., Via-Programmable Gate Array – VPGA)
3/3/2023 18
Physcial Design Automation
of MCMs and SiPs
19
3/3/2023
MCM and SiP
• Multi-Chip Module
• System in package (SiP)
– Different package styles
– Thermal consideration for 3D
• Alternative packaging approach for high performance
systems.
• Similar to PCB and IC layout problems, but
– PCB layout tools cannot handle the dense and complex wiring
structure of MCM.
– IC layout tools cannot handle the complex electrical, thermal
and geometrical constraints.
20
3/3/2023
Example: Pentium
Substrate size:
32mmx32mm
Package size:
43mmx43mm
(4 times smaller)
21
3/3/2023
Partitioning
• Partitioning a circuit so that each sub-circuit can be
implemented into a chip.
• MCM may contain as many as 100 chips.
• Need to consider timing constraints and thermal
constraints
• In addition, also need to consider traditional I/O
constraints and area constraints.
22
3/3/2023
Placement
• # of components is much less as compared to IC
placement.
• However, need to consider timing constraints and
thermal constraints (as bare chips are placed close to
each other).
• Routing is done in routing layers, not between chips.
• So no routing region needs to be allocated.
23
3/3/2023
Routing
• Main objective is to satisfy timing constraints.
• Another objective is to minimize # of routing layers, not to
minimize routing area.
– Cost is directly proportional to # of layers
• Crosstalk, skin effect and parasitic effect are important
considerations.
• Wires are of smaller pitch and more dense than PCB layout.
3/3/2023 24
EE382 V -- Conclusions
25
3/3/2023
What Have Been Taught?
• Introduced different problems in Physical Design.
• Numerous algorithms which are different in terms of
– design styles
– objectives
– constraints
– techniques
– optimality
– efficiency
– robustness
– .....
26
3/3/2023
What Is Important?
• Understand the problems
– How to formulate the problems, represent the constraints,
solutions, etc.
– Reasonable assumptions/abstractions
• Know fundamental algorithms to solve the problems.
• However, the world keeps on changing:
– technology
– objectives
– constraints
– requirement on solution quality
– computational power
• It is more important to learn how to think
– formulate the problem
– solve it smartly
27
3/3/2023
Problem Solving Techniques
• Greedy Algorithm
• Simulated Annealing/Genetic Algorithm
• Mathematical Programming
– Linear, Quadratic, Integer Linear, geometric, posynomial, …
• Dynamic Programming
• Reduction to graph problems
– min-cut, max-cut, shortest path, longest path, bipartite matching,
minimum spanning tree, etc.
• Divide-and-Conquer
• Many different heuristics
• ....
28
3/3/2023
System Specification
Micro-Architectural
Specification
Timing & Relationship
Between Units
RTL (in HDL)
Netlist
Architectural Design
Functional Design
Logic Design
Circuit Design
VLSI Design Cycle
29
3/3/2023
Netlist
Layout
Mask
Packaged Chips
Physical Design
Fabrication
Packaging
And Testing
VLSI Design Cycle
30
3/3/2023
Conventional Physical Design Cycle
Partitioning
Floorplanning & Placement
Routing
31
3/3/2023
Technology Trend and Challenges
Source:
ITRS’03
 Interconnect determines the overall performance
 In addition: noise, power => Design closure
 Furthermore: manufacturability => Manufacturing closure
32
3/3/2023
New Trends in Physical Design
• For nanometer IC designs, interconnect dominates
• New physical effects
– Noise: coupling, P/G noise
– Power: leakage, power/voltage islands
– Manufacturability: yield, printability
– Reliability, …
• More and more vertical integration
– Logic synthesis coupled with physical design
– Interconnect optimizations & design planning
– Physical design as a bridge between lower level modeling and
higher level optimization/planning
• Existing CAD algorithms are far away from optimal
33
3/3/2023
Check points
 Problem solving skills on underlying physical
design algorithms
 Know what’s behind the scene of CAD tools
 Know the trend and critique ability if given a new
research paper
 Project study of a topic of your choice and
implementation (through class project)
 Presentation skill
 Paper writing and job preparation

More Related Content

Similar to lecture25_fpga-conclude.ppt

2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos
2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos
2017 Atlanta Regional User Seminar - Real-Time Microgrid DemosOPAL-RT TECHNOLOGIES
 
SISTec Microelectronics VLSI design
SISTec Microelectronics VLSI designSISTec Microelectronics VLSI design
SISTec Microelectronics VLSI designDr. Ravi Mishra
 
Performance and Flexibility for Mmultiple-Processor SoC Design
Performance and Flexibility for Mmultiple-Processor SoC DesignPerformance and Flexibility for Mmultiple-Processor SoC Design
Performance and Flexibility for Mmultiple-Processor SoC DesignYalagoud Patil
 
VLSI unit 1 Technology - S.ppt
VLSI unit 1 Technology - S.pptVLSI unit 1 Technology - S.ppt
VLSI unit 1 Technology - S.pptindrajeetPatel22
 
Field Programmable Gate Arrays : Architecture
Field Programmable Gate Arrays : ArchitectureField Programmable Gate Arrays : Architecture
Field Programmable Gate Arrays : ArchitectureUsha Mehta
 
1st slide VLSI.pdf
1st slide VLSI.pdf1st slide VLSI.pdf
1st slide VLSI.pdfmisbahmridul
 
System On Chip (SOC)
System On Chip (SOC)System On Chip (SOC)
System On Chip (SOC)Shivam Gupta
 
Fpga asic technologies_flow
Fpga asic technologies_flowFpga asic technologies_flow
Fpga asic technologies_flowravi4all
 
Lecture20 asic back_end_design
Lecture20 asic back_end_designLecture20 asic back_end_design
Lecture20 asic back_end_designHung Nguyen
 
VLSI design Dr B.jagadeesh UNIT-5.pptx
VLSI design Dr B.jagadeesh   UNIT-5.pptxVLSI design Dr B.jagadeesh   UNIT-5.pptx
VLSI design Dr B.jagadeesh UNIT-5.pptxjagadeesh276791
 
FPGA-Arch (3).ppt
FPGA-Arch (3).pptFPGA-Arch (3).ppt
FPGA-Arch (3).pptArthi579360
 
FPGA architecture.ppt
FPGA architecture.pptFPGA architecture.ppt
FPGA architecture.pptEcAlwinjolly
 
Static_Timing_Analysis_in_detail.pdf
Static_Timing_Analysis_in_detail.pdfStatic_Timing_Analysis_in_detail.pdf
Static_Timing_Analysis_in_detail.pdfUsha Mehta
 

Similar to lecture25_fpga-conclude.ppt (20)

2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos
2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos
2017 Atlanta Regional User Seminar - Real-Time Microgrid Demos
 
SISTec Microelectronics VLSI design
SISTec Microelectronics VLSI designSISTec Microelectronics VLSI design
SISTec Microelectronics VLSI design
 
Performance and Flexibility for Mmultiple-Processor SoC Design
Performance and Flexibility for Mmultiple-Processor SoC DesignPerformance and Flexibility for Mmultiple-Processor SoC Design
Performance and Flexibility for Mmultiple-Processor SoC Design
 
VLSI unit 1 Technology - S.ppt
VLSI unit 1 Technology - S.pptVLSI unit 1 Technology - S.ppt
VLSI unit 1 Technology - S.ppt
 
Field Programmable Gate Arrays : Architecture
Field Programmable Gate Arrays : ArchitectureField Programmable Gate Arrays : Architecture
Field Programmable Gate Arrays : Architecture
 
1st slide VLSI.pdf
1st slide VLSI.pdf1st slide VLSI.pdf
1st slide VLSI.pdf
 
Design concepts in Microelectronics
Design concepts in MicroelectronicsDesign concepts in Microelectronics
Design concepts in Microelectronics
 
Chapter 10.pptx
Chapter 10.pptxChapter 10.pptx
Chapter 10.pptx
 
System On Chip (SOC)
System On Chip (SOC)System On Chip (SOC)
System On Chip (SOC)
 
Fpga asic technologies_flow
Fpga asic technologies_flowFpga asic technologies_flow
Fpga asic technologies_flow
 
Lecture20 asic back_end_design
Lecture20 asic back_end_designLecture20 asic back_end_design
Lecture20 asic back_end_design
 
3d ic's ppt..
3d ic's ppt..3d ic's ppt..
3d ic's ppt..
 
VLSI design Dr B.jagadeesh UNIT-5.pptx
VLSI design Dr B.jagadeesh   UNIT-5.pptxVLSI design Dr B.jagadeesh   UNIT-5.pptx
VLSI design Dr B.jagadeesh UNIT-5.pptx
 
FPGA-Arch (3).ppt
FPGA-Arch (3).pptFPGA-Arch (3).ppt
FPGA-Arch (3).ppt
 
FPGA-Architecture.ppt
FPGA-Architecture.pptFPGA-Architecture.ppt
FPGA-Architecture.ppt
 
FPGA-Arch.ppt
FPGA-Arch.pptFPGA-Arch.ppt
FPGA-Arch.ppt
 
FPGA architecture.ppt
FPGA architecture.pptFPGA architecture.ppt
FPGA architecture.ppt
 
FPGA-Arch.ppt
FPGA-Arch.pptFPGA-Arch.ppt
FPGA-Arch.ppt
 
Static_Timing_Analysis_in_detail.pdf
Static_Timing_Analysis_in_detail.pdfStatic_Timing_Analysis_in_detail.pdf
Static_Timing_Analysis_in_detail.pdf
 
FPGA-Arch.ppt
FPGA-Arch.pptFPGA-Arch.ppt
FPGA-Arch.ppt
 

More from SouravRoyElectronics (7)

Unit-4_ESE.pdf
Unit-4_ESE.pdfUnit-4_ESE.pdf
Unit-4_ESE.pdf
 
lect501.ppt
lect501.pptlect501.ppt
lect501.ppt
 
CMOS Combinational_Logic_Circuits.pdf
CMOS Combinational_Logic_Circuits.pdfCMOS Combinational_Logic_Circuits.pdf
CMOS Combinational_Logic_Circuits.pdf
 
VIVADO PPT.pptx
VIVADO PPT.pptxVIVADO PPT.pptx
VIVADO PPT.pptx
 
lect14.ppt
lect14.pptlect14.ppt
lect14.ppt
 
MOSFET.ppt
MOSFET.pptMOSFET.ppt
MOSFET.ppt
 
Lec9
Lec9Lec9
Lec9
 

Recently uploaded

UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxkalpana413121
 
Adsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptAdsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptjigup7320
 
Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...ppkakm
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementDr. Deepak Mudgal
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdfAldoGarca30
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdflitvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdfAlexander Litvinenko
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesChandrakantDivate1
 
INTERRUPT CONTROLLER 8259 MICROPROCESSOR
INTERRUPT CONTROLLER 8259 MICROPROCESSORINTERRUPT CONTROLLER 8259 MICROPROCESSOR
INTERRUPT CONTROLLER 8259 MICROPROCESSORTanishkaHira1
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...ronahami
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessorAshwiniTodkar4
 
Passive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.pptPassive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.pptamrabdallah9
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...josephjonse
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information SystemsAnge Felix NSANZIYERA
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 

Recently uploaded (20)

UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptx
 
Adsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptAdsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) ppt
 
Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth Reinforcement
 
Signal Processing and Linear System Analysis
Signal Processing and Linear System AnalysisSignal Processing and Linear System Analysis
Signal Processing and Linear System Analysis
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdflitvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
INTERRUPT CONTROLLER 8259 MICROPROCESSOR
INTERRUPT CONTROLLER 8259 MICROPROCESSORINTERRUPT CONTROLLER 8259 MICROPROCESSOR
INTERRUPT CONTROLLER 8259 MICROPROCESSOR
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor
 
Passive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.pptPassive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.ppt
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 

lecture25_fpga-conclude.ppt

  • 1. 3/3/2023 1 VLSI Physical Design Automation
  • 2. 2 3/3/2023 Other Design Styles: FPGA • Field Programmable Gate Array • First introduced by Xilinx in 1984. • Pre-fabricated devices and interconnect, which are programmable by user. • Advantages: – short turnaround time. – low manufacturing cost. – fully testable. – re-programmable. • Particularly suitable for prototyping, low or medium- volume production, device controllers, etc.
  • 3. 3 3/3/2023 Comparison of Design Styles Full-Custom Standard Cell Gate Array FPGA Cell size variable fixed height fixed fixed Cell type variable variable fixed programma ble Cell placement variable in row fixed fixed Interconnections variable variable variable programma ble Fabrication layers all layers all layers routing layers only no layers
  • 4. 4 3/3/2023 Comparison of Design Styles Full-Custom Standard Cell Gate Array FPGA Area compact compact to moderate moderate large Performance high high to moderate moderate low Design cost high medium medium low Time-to-market long medium medium short
  • 5. 5 3/3/2023 Programming Technologies • SRAM to control pass transistor / multiplexer • EPROM – UV light Erasable PROM • EEPROM – Electrically Erasable PROM • Antifuses – One time programmable • They are different in ease of manufacturing, manufacturing reliability, area, ON and OFF resistance, parasitic capacitance, power consumption, re-programmability.
  • 6. 6 3/3/2023 Typical FPGA Architecture • Consists of: Logic modules, Routing resources, and I/O modules. Logic Module IO Module Routing Tracks & Switch boxes
  • 7. 7 3/3/2023 FPGA Architecture Examples Logic Module Array-based Model Row-based Model Sea-of-Gates Model Hierarchical Model Routing resources overlayed on logic modules
  • 8. 8 3/3/2023 Two Types of Logic Modules Look-Up Table (LUT) based: • A block of RAM to store the truth table. • A k-input 1-output functions needs 2k bits. • k is usually 5 or 6. Multiplexer based: e.g., f=ABC+ABC C B A A B f
  • 9. 9 3/3/2023 Two Types of Switchboxes • First Type: • Second Type:
  • 10. 10 3/3/2023 Several Segmentation Models • Non-Segmentation Model: • Uniform Segmentation Model: 1 4 0 0 2 0 0 3 0 5 0 0 0 0 0 0 0 1 0 0 4 0 2 0 3 0 0 5 Connecting Not connecting 1 4 0 0 2 0 0 3 0 5 0 0 0 0 0 0 0 1 0 0 4 0 2 0 3 0 0 5 Fuse or Programmable switch
  • 11. 11 3/3/2023 Several Segmentation Models • Uniform Staggered Segmentation Model: • Non-uniform Staggered Segmentation Model: 1 4 0 0 2 0 0 3 0 5 0 0 0 0 0 0 0 1 0 0 4 0 2 0 3 0 0 5 1 4 0 0 2 0 0 3 0 5 0 0 0 0 0 0 0 1 0 0 4 0 2 0 3 0 0 5
  • 12. 12 3/3/2023 Comparison of Segmentation Models • The segmented model provides better utilization of routing resources. • However, segmented model uses more fuses or programmable switches. • The delay of a net is directly proportional to the # of fuses or programmable switches in the route – Manhattan-distance based delay model does NOT work anymore – The segmented model is slower in general
  • 13. 13 3/3/2023 Physical Design of FPGAs • Very different from other design styles • Architecture dependent: – LUT or Multiplexer in logic modules – Type of switchboxes used – Type of segmentation model used – ...... • Physical Design: – Partitioning – Floorplanning/Placement – Routing
  • 14. 14 3/3/2023 Partitioning • Want to partition the circuit such that each partition (cluster) can be implemented by a logic module. • Also called Clustering. • # of I/O pins, not cluster sizes, is important. (For multiplexer based logic modules, functionality of clusters is also important.) Example: Using 4-LUTs
  • 15. 15 3/3/2023 Placement • Assign clusters formed during partitioning to logic modules of FPGA. • The problem is the same as gate-array placement.
  • 16. 16 3/3/2023 Routing • Global routing: – Similar to global routing in other design styles. – Minimize wire length and balance densities. • Detailed routing: – Very different from other design styles. – Different algorithms for different segmentation models. – Channels and switchboxes have fixed capacities.
  • 17. 17 3/3/2023 Structured ASIC • New buzz word, but essentially gate array – Mask reconfigurable – Not field reconfigurable • Between FPGA and standard cells – Balance delay/performance and mask cost • Only programmable once – by vias (e.g., Via-Programmable Gate Array – VPGA)
  • 18. 3/3/2023 18 Physcial Design Automation of MCMs and SiPs
  • 19. 19 3/3/2023 MCM and SiP • Multi-Chip Module • System in package (SiP) – Different package styles – Thermal consideration for 3D • Alternative packaging approach for high performance systems. • Similar to PCB and IC layout problems, but – PCB layout tools cannot handle the dense and complex wiring structure of MCM. – IC layout tools cannot handle the complex electrical, thermal and geometrical constraints.
  • 21. 21 3/3/2023 Partitioning • Partitioning a circuit so that each sub-circuit can be implemented into a chip. • MCM may contain as many as 100 chips. • Need to consider timing constraints and thermal constraints • In addition, also need to consider traditional I/O constraints and area constraints.
  • 22. 22 3/3/2023 Placement • # of components is much less as compared to IC placement. • However, need to consider timing constraints and thermal constraints (as bare chips are placed close to each other). • Routing is done in routing layers, not between chips. • So no routing region needs to be allocated.
  • 23. 23 3/3/2023 Routing • Main objective is to satisfy timing constraints. • Another objective is to minimize # of routing layers, not to minimize routing area. – Cost is directly proportional to # of layers • Crosstalk, skin effect and parasitic effect are important considerations. • Wires are of smaller pitch and more dense than PCB layout.
  • 24. 3/3/2023 24 EE382 V -- Conclusions
  • 25. 25 3/3/2023 What Have Been Taught? • Introduced different problems in Physical Design. • Numerous algorithms which are different in terms of – design styles – objectives – constraints – techniques – optimality – efficiency – robustness – .....
  • 26. 26 3/3/2023 What Is Important? • Understand the problems – How to formulate the problems, represent the constraints, solutions, etc. – Reasonable assumptions/abstractions • Know fundamental algorithms to solve the problems. • However, the world keeps on changing: – technology – objectives – constraints – requirement on solution quality – computational power • It is more important to learn how to think – formulate the problem – solve it smartly
  • 27. 27 3/3/2023 Problem Solving Techniques • Greedy Algorithm • Simulated Annealing/Genetic Algorithm • Mathematical Programming – Linear, Quadratic, Integer Linear, geometric, posynomial, … • Dynamic Programming • Reduction to graph problems – min-cut, max-cut, shortest path, longest path, bipartite matching, minimum spanning tree, etc. • Divide-and-Conquer • Many different heuristics • ....
  • 28. 28 3/3/2023 System Specification Micro-Architectural Specification Timing & Relationship Between Units RTL (in HDL) Netlist Architectural Design Functional Design Logic Design Circuit Design VLSI Design Cycle
  • 30. 30 3/3/2023 Conventional Physical Design Cycle Partitioning Floorplanning & Placement Routing
  • 31. 31 3/3/2023 Technology Trend and Challenges Source: ITRS’03  Interconnect determines the overall performance  In addition: noise, power => Design closure  Furthermore: manufacturability => Manufacturing closure
  • 32. 32 3/3/2023 New Trends in Physical Design • For nanometer IC designs, interconnect dominates • New physical effects – Noise: coupling, P/G noise – Power: leakage, power/voltage islands – Manufacturability: yield, printability – Reliability, … • More and more vertical integration – Logic synthesis coupled with physical design – Interconnect optimizations & design planning – Physical design as a bridge between lower level modeling and higher level optimization/planning • Existing CAD algorithms are far away from optimal
  • 33. 33 3/3/2023 Check points  Problem solving skills on underlying physical design algorithms  Know what’s behind the scene of CAD tools  Know the trend and critique ability if given a new research paper  Project study of a topic of your choice and implementation (through class project)  Presentation skill  Paper writing and job preparation