58
Introduction to Field Programmable Gate Arrays (FPGAs) MicroLab, NTUA 1

Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

  • Upload
    others

  • View
    13

  • Download
    1

Embed Size (px)

Citation preview

Page 1: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Introduction to

Field Programmable Gate

Arrays

(FPGAs)

MicroLab, NTUA 1

Page 2: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

What is a Field Programmable Gate Array ?

.. a quick answer for the impatient

An FPGA is an integrated circuit

Mostly digital electronics

An FPGA is programmable in the in the field (=outside the factory),

hence the name “ field programmable”

Design is specified by schematics or with a

hardware description language

Tools compute a programming file for the FPGA

(gateware or firmware)

The FPGA is configured with the design

Your electronic circuit is ready to use

With an FPGA you can build electronic circuits …

… without using a bread board or soldering iron

… without plugging together NIM modules

… without having a chip produced at a factory

MicroLab, NTUA 2

Page 3: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Outline

Quick look at digital electronics

Shor t history of programmable logic devices

FPGAs and their features

Programming techniques

Design flow

MicroLab, NTUA 3

Page 4: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Acknowledgement

Parts of this lecture are based on material by of several

books on FPGAs and running/completed projects.

MicroLab, NTUA 4

Page 5: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

World of Integrated Circuits

Full-Custom

ASICs

Semi-Custom

ASICs

User

Programmable

PLD FPGA

Page 6: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Digital electronics

MicroLab, NTUA 6

Page 7: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

The building blocks: logic gatesTruth table C equivalent

AND gate

OR gate

Exclusive OR gate XOR gate

q = a && b;

q = a || b;

q = a != b;A

BQ

MicroLab, NTUA 7

Page 8: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Combinatorial logic (asynchronous)

Outputs are determined by Inputs, only

Example: Full adder with carry-in, carry-out

Combinatorial logic may

be implemented using

Look-Up Tables (LUTs)

LUT = small memory

A B Cin S Cout

0 0 0 0 0

1 0 0 1 0

0 1 0 1 0

1 1 0 0 1

0 0 1 1 0

1 0 1 0 1

0 1 1 0 1

1 1 1 1 1MicroLab, NTUA 8

Page 9: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

(Synchronous) sequential logic

Outputs are determined

by Inputs and their History

(Sequence)The logic has an internal state

clock

data Output

Inverted output

reset

D Flip-flop:samples the data at the rising (or falling) edge of the clock

The output will be equal tothe last sampled input until the

next rising (or falling) clock edge

D Flip-flop (D=data, delay)

2-bit binary counter

set

MicroLab, NTUA 9

Page 10: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Synchronous sequential logic

+ =

Using Look-Up-Tables and Flip-Flopsany kind of digital electronics may be implemented

Of course there are some detailsto be learnt about electronics design …

MicroLab, NTUA 10

Page 11: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Programmable

digital electronics

MicroLab, NTUA 11

Page 12: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Long long ti me ago ...

τranslstαs

ΙC (Geneιal)

SRλλ &ORAM

ASICs

SPLDs

CPLDs

I I I I I I I I 11 I I(

ι I ι I I ι I ι I

(

(ι I 1 ι Ι Ι

(

l (

(I ι I ι I

(

MicroLab, NTUA 12

Page 13: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Simple Programmable Logic Devices (sPLDs)a) Programmable Read Only Memory (PROMs)

Late 60’s

Unprogrammed PROM (Fixed AND Array, Programmable OR Array)MicroLab, NTUA 13

Page 14: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Programmable AND array

Unprogrammed PLA (Programmable AND and OR Arrays)

1975Most flexible but slower

Simple Programmable Logic Devices (sPLDs)b) Programmable Logic Arrays (PLAs)

MicroLab, NTUA 14

Page 15: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Unprogrammed PAL (Programmable AND Array, Fixed OR Array)

Simple Programmable Logic Devices (sPLDs)c) Programmable Array Logic (PAL)

MicroLab, NTUA 15

Page 16: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Complex PLDs (CPLDs)

and flip-flops

Coarse grained100’s of blocks, restrictive structure

(EE)PROM basedMicroLab, NTUA 16

Page 17: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

τranslstαs

ΙC (Geneιal)

SRλλ &ORAM

ASICs

SPLDs

CPLDs

J:PGA."

FPGAs ...

I I I I I I I I 11 I I(

ι I ι I I ι I ι I

(

(ι I 1 ι Ι Ι

(

l (

(I ι I ι I

(

(

I ιΙ I I

MicroLab, NTUA 17

Page 18: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

FPGAs

Programmable Input / Output pinsFine-grained: 100.000’s of blocks today: up to 4 million logic blocks

(extremely flexible)

MicroLab, NTUA 18

Page 19: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

LUT-based Fabrics

MicroLab, NTUA 19

Page 20: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Typical LUT-based Logic Cell

Xilinx: logic cell, Altera: logic element

LUT may implement any function of the inputs

Flip-Flop registers the LUT output

May use only the LUT or only the Flip-flop

LUT may alternatively be configured a shift register

Additional elements (not shown): fast carry logicMicroLab, NTUA 20

Page 21: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

οοοοοοοοοοοοοο

οοοο

ο0 0 0 0 0 0 0

Clock Trees

Clock

treeFlip-flops

οο

0 0 0 0 0 0 0

Specίal clock

pin and pad

Clock signal fromL - - - - - - - oυtside wor1d

Clock trees guarantee that the clock arriνes at the same time at all flip-flopsMicroLab, NTUA 21

Page 22: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Clock Managers

Daughter clocks

may have multiple

or fractionof the frequency

MicroLab, NTUA 22

Page 23: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Embedded RAM blocksColumns of

embedded RAM

blooks

Arrays of

programmable - - - - - . .

loglc blocks

Today: Up to -100 Mbit of RAMMicroLab, NTUA 23

Page 24: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Embedded Multipliers & DSPs

[)][)][)][)]

11

[)]

I[J11j

r - RAM

blocks- Mult.ιplιers

, ...,....,' [ Loglc blocks

_,...- ............r--...

r1 '\

-/ - - [ \

\

MicroLab, NTUA 24

Page 25: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Digital Signal Processor (DSP)

DSP block (Xilinx 7-series) Up to several 1000 per chip

MicroLab, NTUA 25

Page 26: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Soft and Hard Processor Cores

Soft core

Design implemented with

the programmable

resources (logic cells) in

the chip

Hard core

Processor core that is

available in addit ion to the

programmable resources

E.g.: Power PC, ARM

MicroLab, NTUA 26

Page 27: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

General-Purpose Input/ Output (GPIO)

Today: Up to 1200 user I/O pins Input and / or output

Voltages from (1.0), 1.2 .. 3.3 VMany IO standards

Single-ended: LVTTL, LVCMOS, … Differential pairs: LVDS, …MicroLab, NTUA 27

Page 28: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

High-Speed Serial Interconnect

Using differential pairs

Standard I/ O pins limited to

about 1 Gbit/ s

Latest serial transceivers:

typically 10 Gb/ s, 13.1 Gb/ s,

up to 32.75 Gb/ s

up to 56 Gb/ s with

Pulse Amplitude Modulation(PAM)

FPGAs with multi-Tbit/ s IO

bandwidth

(SERDES)

MicroLab, NTUA 28

Page 29: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Components in a modern FPGA

Ο ' ι ι •[ Q • ι ι ' Οι

ο Logίc block

ΟSRAM block

ο Multiplier

Ο DSP block

D DD

ι ιD

-

ι ι ι

-- 1- 1- r-

ι ι ι

D PLL

D Clock Manager

1/0 Bank

D SERDES

block

- --DD

DD

- - - 1- 1- 1--ι ι ι

- Ι -- f -- Ι -

1- - 1- 1- 1-

DD

DD

ι _ι ι

Ο ι ι ι ιΕ:l)ι ι ι ι Ο

MicroLab, NTUA 29

Page 30: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Programming techniques

MicroLab, NTUA 30

Page 31: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Fusible Links (not used in FPGAs)

Unprogrammed link

Programmed lίnk-----. .... -/ ι ι \ '

MicroLab, NTUA 31

Page 32: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Antifuse Technology

L!Jnprogrammed link

Programmed link

Amorphous sιlioon column

++====; ;;;;::ι.._---, •

Polysilioon νia

+Meta l - •Oxιde • f==.===;;;=;;;=l----

,- Metal

• Substrate •

(a) Before programming (b) After ρrogramming

MicroLab, NTUA 32

Page 33: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

EPROM TechnologyErasable Programmable Read Only Memory

Intel, 1971

MicroLab, NTUA 33

Page 34: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

EEPROM and FLASH TechnologyElectrically Erasable Programmable Read Only Memory

EEPROM: erasable word by word FLASH: erasable by block or by device

MicroLab, NTUA 34

Page 35: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

SRAM-Based Devices

Multi-transistor SRAM cell

MicroLab, NTUA 35

Page 36: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Programming a 3-bit wide LUT

2:1

----

/U

jX

Hard-wϊred Osand 1s(Antifuse technology)

ISRAMoells

(S ; · b a • & d looh, ogy )

2:1

-- -

/U

jXο

1

ο1

ο1

1

1

Υ

C - '

b - - - - - '

C - - '

b - - - - - '

a - - - - - - - - - '

Υ

MicroLab, NTUA 36

Page 37: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Summary of Technologies

Rad-tolerant(e.g. Alice)

Used in mostFPGAs

Rad-tolerant secure

MicroLab, NTUA 37

Page 38: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Design Considerations (SRAM Config.)

MicroLab, NTUA 38

Page 39: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Configuration at power-up

FPGA

( SRAM based )

FlashPROM

Serial bit-stream (may be encrypted)

stores

single or

multiple

designs

Typical FPGA configuration time: millisecondsMicroLab, NTUA 39

Page 40: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Programming via JTAGJoint Test Action Group

FPGA

( SRAM based )

JTAG is a serial bus that can be used to- Program Flash PROMs

- Program FPGAs- Read / write the status of all FPGA I/ Os

( = Boundary scan )

FlashPROM

JTAGconnector

...MicroLab, NTUA 40

Page 41: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Remote programming

...

JTAG bus

FPGA

( SRAM based )

FlashPROM FPGA PCI, VME

The JTAG bus may be driven by an FPGA

which contains an interface to a host PC

via PCI or VME

gateware can then be updated remotelyMicroLab, NTUA 41

Page 42: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Major Manufacturers Xilinx

First company to produce FPGAs in 1985

About 45-50% market share, today

SRAM based CMOS devices

Intel FPGA (formerly Altera)

About 40-45% market share

SRAM based CMOS devices

Microsemi (Actel)

Anti-fuse FPGAs

Flash based FPGAs

Mixed Signal

Lattice Semiconductor

SRAM based with integrated Flash PROM

low power

(Formerly )

MicroLab, NTUA 42

Page 43: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Trends

MicroLab, NTUA 43

Page 44: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Ever-decreasing feature size

130 nmXilinx Virtex-2

28 nm Xilinx Virtex-7 / Altera Stratix V

16 nm Xilinx UltraScale

14 nm Altera Stratix 10

Slowing down

5.5 million logic cells

4 million logic cells

Higher capacity

Higher speed

Lower power

consumption

MicroLab, NTUA 44

Page 45: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Trends Speed of logic increasing

Look-up-tables with more inputs (5 or 6)

Speed of serial links increasing (mult iple Gb/ s)

More and more hard macro cores on the FPGA

PCI Express

Gen2: 5 Gb/ s per lane

Gen3: 8 Gb/ s per lane

up to 8 lanes / FPGA

Gen4: 16 Gb/ s per lane

10 Gb/ s, 40 Gb/ s, 100 Gb/ s Ethernet

Sophist icated soft macros CPUs

Gb/s MACs

Memory interfaces (DDR2 / 3 / 4)

Processor-centric architectures – see next slides

MicroLab, NTUA 45

Page 46: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

System-On-a-Chip (SoC) FPGAs

Xlinix Zynq

Altera Stratix 10

CPU(s) + Peripherals + FPGA in one packageMicroLab, NTUA 46

Page 47: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

FPGAs in Server Processors and the Cloud

New in 2016: Intel Xeon Server Processor with FPGA insocket

Intel acquired

Altera in 2015

FPGAs in the cloud

Amazon Elastic Cloud F1 instances

8 CPUs / 1 Xlinix UltraScale FPGA

64 CPUs / 8 Xlinix UltraScale FPGA

MicroLab, NTUA 47

Page 48: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

FPGA – ASIC comparison

FPGA

Rapid development cycle(minutes / hours)

May be reprogrammed in thefield (gateware upgrade)

New features

Bug fixes

Low development cost

You can get started with a

development board (< $100)

and free software

• ASIC

Higher performance

Analog designs possible

Better radiation hardness

Long development cycle (weeks / months)

Design cannot be changed once it is produced

Extremely high development cost ASICs are produced at a

semiconductor fabrication facility(“ fab” ) according to your design

Lower cost per device comparedto FPGA, when large quantit iesare needed

MicroLab, NTUA 48

Page 49: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

FPGA development

MicroLab, NTUA 49

Page 50: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Design entry

Graphical overview

Can draw entire design

Use pre-defined blocks

Can generate blocks using loops

Can synthesize algorithms

Independent of design tool

May use tools used in SW

development (SVN, git …)

entity DelayLine is

generic (

n_halfcycles : integer := 2);

port (

x : in std_logic_vector;

x_delayed : out std_logic_vector;

clk : in std_logic);

end entity DelayLine;

Schematics Hardware description languageVHDL, Verilog

Mostly a personal choice depending on previous experienceMicroLab, NTUA 50

Page 51: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Schematics

MicroLab, NTUA 51

Page 52: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Hardware Description Language

Looks similar to a programming language

BUT be aware of the difference

Programming Language => translated into machine

instructions that are executed by a CPU

HDL => translated into gateware (logic gates & flip-flops)

Common HDLs

VHDL

Verilog

AHDL ( Altera specific )

Newer trends

C-like languages (handle-C, System C)

Labview

MicroLab, NTUA 52

Page 53: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Example: VHDL Looks like a

programming

language

All statements

executed in

parallel, except

inside

processes

MicroLab, NTUA 53

Page 54: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Schematics & HDL combined

Graphlcal State Dlagram

\\\\

\\

\

,,,,ιιι

,JTof)-leνel ,, block-leνel

schematic,,

,,

'

\\\

\\\\

'\ \\

\\

Graphlcal Flowchart

Textual HDL

IMιcn cιισnAcsη (s • • Ο)

thθny" ta & bl Ι t ;

e l s e y . c & l (d . "

,,,,,

Blod<..fevel schematlc

MicroLab, NTUA 54

Page 55: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Design flow

Synthesis

ImplementationMap

Place & Route

Timing

SimulationProgramming file

Behavioral

Simulation

constraints Schematics

Pins Timing Area

Core GeneratorVHDL / Verilog

Counters FIFOs…

Static Timing

Analysis

Intellectual Property cores

Processors Interfaces Controllers

State Machines

Register Transfer Level (RTL) model

MicroLab, NTUA 55

Page 56: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Floorplan (ΧΙinx Virtex 2)

MicroLab, NTUA 56

Page 57: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Manual Floor planning

For large designs, manual

floor planning may be necessary

Routing congesti on

Xilinx Virtex 7 (Vivado)MicroLab, NTUA 57

Page 58: Introduction to Field Programmable Gate Arrays (FPGAs) · What is a Field Programmable Gate Array ?.. a quick answer for the impatient An FPGA is an integrated circuit Mostly digital

Embedded Logic Analyzers

MicroLab, NTUA 58