+ All Categories
Home > Documents > StaticRoute : A novel router for the dynamic partial reconfiguration of FPGAs

StaticRoute : A novel router for the dynamic partial reconfiguration of FPGAs

Date post: 22-Feb-2016
Category:
Upload: mattox
View: 51 times
Download: 0 times
Share this document with a friend
Description:
StaticRoute : A novel router for the dynamic partial reconfiguration of FPGAs. Brahim Al Farisi , Karel Bruneel, Dirk Stroobandt. Overview. Dynamic reconfiguration of FPGAs: Modular d ynamic reconfiguration (MDR) Dynamic circuit specialization (DCS) Novel tool flow - PowerPoint PPT Presentation
Popular Tags:
26
StaticRoute: A novel router for the dynamic partial reconfiguration of FPGAs Brahim Al Farisi, Karel Bruneel, Dirk Stroobandt
Transcript
Page 1: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

StaticRoute: A novel router for the dynamic partial

reconfiguration of FPGAsBrahim Al Farisi,

Karel Bruneel, Dirk Stroobandt

Page 2: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Overview

2

• Dynamic reconfiguration of FPGAs:• Modular dynamic reconfiguration (MDR)• Dynamic circuit specialization (DCS)

• Novel tool flow• Experiments and results• Conclusions

Page 3: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

FPGA

3

FFLUT

0

1

1

0

1

0

0

1

01 0

0 0

10

1 0

0 1

00

0

0

0

1

0

1

1

1

0

Page 4: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Conventional FPGA tool flow

4

• Input: textual description of functionality

SYNTHESIS

MAP

PLACE

HDL design

Configuration

ROUTE

Page 5: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

entity multiplexer isport( sel : in std_logic_vector(1 downto 0); in : in std_logic_vector(3 downto 0); out : out std_logic);end multiplexer;

architecture behavior of multiplexer isbegin out <= in(conv_integer(sel));end behavior;

Textual description: HDL design

5

in0

in1

in2

in3

sel0

sel1

out

Page 6: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Conventional FPGA tool flow

6

SYNTHESIS

MAP

• Input: Textual description of functionality• Output: FPGA configuration

PLACE

HDL design

Configuration

ROUTE

100101011100001111

Page 7: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic reconfiguration of FPGAs

7

• Advantages:• Smaller area• Lower power usage

M1 M2 M3

• Goal: area reduction with reduced reconfiguration time

M1M2M3

• Disadvantage:• Reconfiguration

time

Page 8: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic reconfiguration of FPGAs

8

M1 M2 M3

• 2 tool flows:• Modular Dynamic Reconfiguration (MDR)• Dynamic Circuit Specialization (DCS)

M1M2M3

Page 9: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Modular Dynamic Reconfiguration (MDR)

9

Mode 1

SYNTHESIS

MAP

PLACE

Configuration 1

ROUTE

Mode 2

SYNTHESIS

MAP

PLACE

Configuration 2

ROUTE

Page 10: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

MDR

• Different modes are implemented independently• Complete area is rewritten Results in long reconfiguration times

10

Page 11: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic Circuit specialization

• Design with parameters: input signals that only change once a while

• Implement dependency on parameters using dynamic reconfiguration

11

Page 12: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic circuit specialization

12

• Input: annotated textual description of functionality

SYNTHESIS

Param. HDL

TMAP

TPLACE

Param. Conf.

TROUTE

Page 13: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

entity multiplexer isport( --BEGIN PARAM sel : in std_logic_vector(1 downto 0); --END PARAM in : in std_logic_vector(3 downto 0); out : out std_logic);end multiplexer;

architecture behavior of multiplexer isbegin out <= in(conv_integer(sel));end behavior;

Parameterised HDL design

13

in0

in1

in2

in3

sel0

sel1

out

Page 14: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic circuit specialization

14

SYNTHESIS

• Input: Annotated textual description of functionalityParam. HDL

TMAP

TPLACE

Param. Conf.

TROUTE

Page 15: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic circuit specialization

15

• Input: Annotated textual description of functionality

• Output: Parameterised configurationParam. HDL

SYNTHESIS

TMAP

TPLACE

Param. Conf.

TROUTE

1A01010111B00C1111

A = sel0 AND sel1

B = sel1 C = sel0 OR sel1

Page 16: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

TRoute

16

Page 17: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Dynamic Circuit Specialization

• Reduced reconfiguration time• Takes as input 1 parameterised design• How to implement several modes with DCS?

17

Page 18: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Goal of our research

• Develop tool flow for dynamic reconfiguration of multi-mode circuits

• Reduce reconfiguration time • Combined routing of different modes using TRoute:

Increase correlation between configurations of the different modes

18

Page 19: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Novel tool flow

19

Mode 1

SYNTHESIS

MAP

Mode 2

SYNTHESIS

MAP

Param. Conf.

TROUTE

Merge

PLACE

Configuration 1

ROUTE

PLACE

Configuration 2

ROUTE

Page 20: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Experiments

21

• Regular expression matching hardware and general MCNC benchmarks

• Circuits of 200-400 LBs• 2 to 5 modes considered• Comparison of MDR and DCS (this work)• Metrics:• Reconfiguration time• Wire length (of each mode separately)

Page 21: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Results – Reconfiguration time

22

• Speed-up of routing reconfiguration time • Speed-up of total reconfiguration time

Page 22: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Results – Reconfiguration time routing (MDR)

23

Page 23: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Results – Total reconfiguration time (MDR)

25

Page 24: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Results – Wire length

28

Page 25: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

Conclusions

27

• Using novel tool flow that uses TRoute:• Total reconfiguration speed-up of 3X to 5X• Increase in wire length between 10 to 25 percent

Page 26: StaticRoute : A  novel router  for the  dynamic partial reconfiguration  of  FPGAs

A novel tool flow for increased routing configuration similarity in

multi-mode circuitsBrahim Al Farisi,

Elias Vansteenkiste, Karel Bruneel, Dirk Stroobandt


Recommended