51
Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Embed Size (px)

Citation preview

Page 1: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

1

Xilinx AcademyM1.5i Advanced Implementation Tools Training

Rohit Sawhney

Page 2: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

2

AGENDA Intro Lab / Demo

M1 Constraints Lab

Map Lab

M1 PAR (Effort Levels and MPPR)— Place and Route Lab / Re-Entrant Routing Lab— Cleanup Routing Lab (optional)

Floorplanner Lab (Area Based Floorplanning - optional)

EPIC Lab (Editing a Design / Adding a Probe Pin - optional)

Timing Improvement Lab

Guide Lab (optional)

Summary

Page 3: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

3

M1 Constraints

Understanding Timing and Placement Constraints

Page 4: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

4

M1 Design Flow

XNF/EDIF netlist

NGDBUILDFlatten Hierarchical Design

MAPLogical to Physical translationGroup LUTs and FFs into CLBs

TRCEStatic Timing Estimates

BITGENGenerates configuration file

.BIT

UCFUser Constraints File

.NGD

.PCF.NCD

PARLayout of Physical Design Routes Physical Design

.NCD

Optional: Reports block delays

Page 5: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

5

What Needs Constraining? Internal clock speed for one or more clocks

I/O speed

Logic using multi-cycle clocks

Pin to Pin timing

Pin Locations & Logic Locations

OUT1

X

Y

Z<0:9>

OUT22 Levels of Logic

Clk & CE Speed I/O Speed

Pin 2 Pin Speed

I/O Speed

Pin Locations

Pin Locations

Logic Locations

1 Level of Logic

QD QD

CLK

Page 6: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

6

Types of constraints supported Timing Constraints

— Specify delay along logic paths— Allows both “quick and dirty” and “highly detailed” timing control

Location Constraints— Specify location of components on FPGA— Specify mapping constraints INST M

Y_FMAP BLKNM=ABC

INST FLOP1 BLKNM=ABC

INST FLOP2 BLKNM=ABC

Page 7: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

7

Timing Constraints (I)

Using PERIOD and OFFSET constraints

Page 8: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

8

Period Constraint - Definition

PERIOD PERIOD is the duration of the clock and can be

configured to have different duty cycles Derived clocks can be defined as a function of another

clock (*,/) PERIOD is preferred over other explicit constraints

(FROM:TO) ; M1 tools will have a faster runtime. PERIOD should cover most of design.

Page 9: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

9

Period : This constraint covers all paths from a PAD to a synchronous element (FF, Latch or synchronous RAM), and paths between synchronous elements which are clocked by the referenced net. (Every synchronous element is effectively identified by forward propagation.)

It does not cover paths to output pads, but does cover input pads.

What Constraints Editor writes into UCF file: Single clock designs:NET “CLKA_IN” TNM_NET = “CLKA_IN”; …...(make a group)TIMESPEC “TS_CLKA_IN” = PERIOD “CLKA_IN” 20 NS HIGH 50; …..(apply PERIOD to the group) Multiple Related Clock Designs (after CLKB_IN has also been defined):TIMESPEC “TS_CLKB2CLKA” = FROM “CLKB_IN” TO CLKA_IN” 15 NS;

The Period Constraint

OUT1

OUT2

QD QD

CLK

RAM

PERIOD=30G

LATCHFLOP

Path controlled by PERIOD

Forward propagation path

Page 10: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

10

The OFFSET IN - ‘BEFORE’ constraint

OFFSET = IN 20nS BEFORE CLK

CLK

UPSTREAM DEVICE FPGA

This says, Data will be valid here, 20nS BEFORE the clock arrives here.In other words: “The Data to be registered in the FPGA will be available on the FPGA’s input Pad 20ns BEFORE the clock pulse is seen by the FPGA’s clock pad.” Therefore, the M1 tools will calculate: Maximum_Allowable_Internal_P2S_Delay = OFFSET + internal_CLK_delay.

The tools can automatically calculate and control internal data and clock delays to meet TsuFF

TsuFF

Tbufg

20ns

Data Outof DEV1 onthis edge.

Data registered in FPGA onthis edge.

Internal delay

Din

CLK

Valid

Valid

Designer must ensure that T(clock_period) - 20ns = ext-delay

Page 11: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

11

The OFFSET OUT - ‘AFTER’ constraintOFFSET = OUT 22nS AFTER CLK

This says, Data will be valid here, 22nS AFTER the clock arrives here!…..In other words: “The Data to be registered in the Downstream Device will be available on the FPGA’s output Pad 22ns AFTER the clock pulse is seen by the FPGA.” (Maximum_Allowable_Internal_Dout_Delay = OFFSET - internal_CLK_delay).

22ns

Data Outof FPGA onthis edge.

Data clockedinto DEV2 onthis edge.

DOWNSTREAM DEVICEFPGA

Designer must ensure that T(clock_period) - 22ns = ext-delay

ext-delay = sufficient time forexternal delays involved with meeting DEV2 setup time.

Valid

Page 12: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

12

Timing Constraints (II)

Using FROM:TO and other constraints

Page 13: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

13

Timing Path Keywords

Timing constraints are applied to logic paths

Logic paths typically start and stop at pads, registers, latches, and RAM

M1 recognizes the following keywords to define endpoints or time groups:PADS All I/O padsFFS All flip-flopsLATCHES All latchesRAMS All RAM elements

Keywords can be used globally, and to create design sub-groups

Page 14: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

14

Basic Global Timing Constraints( using the FROM-TO Syntax)

UCF TIMESPEC command using default keywords:

TIMESPEC TS_C2S=FROM:FFS:TO:FFS:30;

TIMESPEC TS_P2S=FROM:PADS:TO:FFS:25;

TIMESPEC TS_P2P=FROM:PADS:TO:PADS:26;

TIMESPEC TS_C2P=FROM:FFS:TO:PADS:9;

TS_C2P

TS_C2S TS_P2S

TS_P2P

OUT1QD QD

CLK

OUT2

Page 15: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

15

Basic Global Timing Constraints( using the FROM-TO Syntax)

TIMESPEC TS_F2F=FROM:FFS:TO:FFS:30;

The word TIMESPEC defines the type of specification

The Spec’s name must start with “TS” any alpha-numeric after TS is fine. Recommendation: Make the name something you will remember later.

FROM: designates the origin of the path

TO: designates the destination of the path

30; in ns by default, is the specification. You can use MHz, or even another time spec like TS_C2S/2 or TS_C2S*2

Page 16: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

16

Using TNM to create Groups

NET clock TNM=clk_group; Any Keyword element can be made into a ‘group’ for timing purposes

In this example the net ‘clock’ is traced forward to the two flip-flop (FFS).

These flip-flops are ‘timing-named’ (TNM) with the name ‘clk_group’.

They can now be referenced by this TNM in TIMESPECs

OUT1

QD QD

CLOCK

OUT2

Page 17: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

17

Using TNM to create Groups(cont.)

NET clock TNM=clk_group; These timing groups can overlap, meaning a FFS, LATCHES,

RAMS, or PADS can belong to multiple groups if necessary to describe your design’s timing

Time constraints are case sensitive (TNM=abc TNM=ABC)— No longer an issue due to the intro of the Constraints Editor !

Groups are ideal for identifying groups of logic that work at different speeds…….(multi-cycle paths and other slow exceptions).

Page 18: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

18

Using TNM_NET to create Groups

NET clock TNM_NET=clk_group;

TNM_NET is equivalent to TNM on a net except for pad nets.

In M1.4, when placing a TNM on a pad net, the TNM would locate itself on the pad and not trace forward through the buffer to the next synchronous element. TNM_NET was created for this purpose in M1.5. If you place a TNM_NET on a pad net, it will trace through the buffer to the next synchronous element.

TNM_NET is extremely useful for synthesis designs because the only meaningful net names are the ones directly connected to pads.

Constraints Editor automatically uses the TNM_NET syntax any time it is placing a timing name on a net.

Page 19: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

19

Constraining Between Multiple Clock Domains

OUT1

QD

CLK_A

CLK_B

D

QD

QDQ

Define individual clocks (Constraints Editor - Global Tab)— NET “CLK_A” TNM_NET = “CLK_A”;— TIMESPEC “TS_CLK_A” = PERIOD “CLK_A” 20NS HIGH 50;— NET “CLK_B” TNM_NET = “CLK_B”;— TIMESPEC “TS_CLK_B” = PERIOD “CLK_B” TS_CLK_A*2;

Define phase difference between clocks (Constraints Editor - Advanced Tab)— TIMESPEC TS_CLKA2CLKB=FROM “CLK_A” TO “CLK_B” 15NS;

Page 20: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

20

Timing Ignore (TIG)

TIG removes paths from analysis— Reduces reports by removing non-critical

paths— This reduces the critical paths that PAR

must deal with— TIG does change the percentage of

connections covered in the timing report statistics

Page 21: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

21

Disappearing Groups/ Paths

Empty Groups— Registers getting sucked into IOBs— Elements get trimmed in mapper

No Paths— Covered by another constraint (Priority)

— TIG or Path Tracing Control has eliminated the paths

Page 22: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

22

Timing Constraint Priority Within a particular source:

— Highest Priority Timing ignores (TIG)FROM:THRU:TO specs

Source and destination defined by user Source or destination defined by user Source and destination are pre-fined groups

FROM:TO specs Source and destination defined by user Source or destination defined by user Source and destination are pre-fined groups

PERIOD specs— Lowest Priority — Note: OFFSET does not override and cannot be overridden. This will

be addressed for M2.1i.

Page 23: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

23

M1.5i Constraints Editor

Page 24: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

24

Flow

NGO

EDN NCF

EDIF2NGD

NGDBUILD

EDN NCF

EDIF2NGD

NGO

UCF

NGD

MAP

CONSTRAINTSEDITOR

Page 25: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

25

DM/FE and CE

Page 26: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

26

Guides user to the best constraint methodology Eliminates need for user knowledge of syntax Reduces need for user knowledge of nets and

components of the design

Graphical Constraints Editor

Page 27: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

27

Graphical Constraints EditorThree Easy Tabs!

Global Tab— Automatically displays every clock in the design— Simple entry of clock periods, setup times, and clock-to-

pad Ports Tab

— Displays all I/O pins for the design— Simple entry of pin locations, setup, clock-to-pad

Advanced Tab— Enter more detailed constraints here— Create groups, use them in FROM:TO specs

Constraints Window at bottom displays UCF syntax— Editable and Read-Only Tabs— Can view, disable, and delete constraints

Page 28: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

28

Global Tab

Page 29: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

29

Ports Tab

Page 30: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

30

AGENDA Intro Lab / Demo

M1 Constraints Lab

Map Lab

M1 PAR (Effort Levels and MPPR)— Place and Route Lab / Re-Entrant Routing Lab— Cleanup Routing Lab (optional)

Floorplanner Lab (Area Based Floorplanning - optional)

EPIC Lab (Editing a Design / Adding a Probe Pin - optional)

Timing Improvement Lab

Guide Lab (optional)

Summary

Page 31: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

31

M1 PAREffort Levels and MPPR

Page 32: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

32

Example 1 MPPR Clock Period Distribution

Median: 24.1nsMin: 22.7nsMax: 26.6ns

Design: bdes2 4010XL

Histogram

0

2

4

6

8

10

12

14

22.7 23.3 23.8 24.4 24.9 25.5 26.0 More

Clock Period

Occ

ure

nce

s

Page 33: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

33

Example 1MPPR Performance and Timing Errors

Design: bdes2 4010XL

Clock Period & Timing Errors

20.0

21.0

22.0

23.0

24.0

25.0

26.0

27.0

1 4 7 10 13 16 19 22 25 28 31 34 37 40

Clo

ck P

erio

d

0

10

20

30

40

50

60

Tim

ing

Err

ors

Period

Timing Errors

Page 34: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

34

Example 2MPPR Clock Period Distribution

Median: 30.0nsMin: 28.2nsMax: 32.2ns

Design: txr 4020XL

0

2

4

6

8

10

12

14

16

18

28.2 28.8 29.3 29.9 30.5 31.0 31.6 More

Clock Period

Oc

cu

ren

ce

s

Page 35: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

35

Example 3MPPR Clock Period Distribution

Median: 21.9nsMin: 19.6nsMax: 28.4ns

Design: mtpp 4013XL

0

2

4

6

8

10

12

14

16

19.6

20.9

22.1

23.4

24.6

25.9

27.1

Mor

e

Clock Period

Oc

cu

ren

ce

s

Page 36: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

36

Running Fewer Cost Tables

0

2

4

6

8

10

12

14

16

18

28.2 28.8 29.3 29.9 30.5 31.0 31.6 More

Clock Period

Oc

cu

ren

ce

s

Fewer cost tables have a smaller distributionbut still useful to estimate performance potential.

Page 37: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

37

Realized circuit performance is a random, “bell-shaped” distribution

Even running a limited set of cost tables is useful. — Covers enough of distribution to allow good prediction of

ultimate performance potential

Impossible to predict which cost-table is best

MPPR is an advanced option; follow guidelines:— Don’t attempt on your 1st rev....only when design is about

95% complete — Push the limits (good placement->good routing->better timing

results)

MPPR Performance

Page 38: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

38

M1.5i FloorplannerTraining Lab

Page 39: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

39

Training Lab Agenda

Understand basic floorplanner flow within M1

Look at “traditional” BEL-level floorplanning in a more realistic, datapath oriented design

Learn about what characteristics make a design a good candidate for floorplanning

Advanced: Area-Based Floorplanning

Page 40: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

40

Device / Platform Support

Supported Devices:— All 4K families (E, EX, XL, XV, Spartan)— 3K, 5K, and Virtex are not supported

Supported Platforms— Windows NT, Win95— Solaris 2.5.x— HP

Page 41: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

41

Invoking the Floorplanner

After selecting a particular revision, the Floorplanner can be invoked two ways:• Tools->Floorplanner• Click on the Floorplanner icon in the toolbar.

Page 42: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

42

The Floorplanner / M1 Interface

Input Files: NGD, NCD

Output Files: — FNF : The actual floorplan - constraints

and design hierarchy— MFP: Constraints file to control both

packing and placement - used as input to mapper.

Page 43: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

43

M1.5i Floorplanner Interface Diagram

ngdbuildngdbuild

design.ngd map map

ngd2fnfngd2fnf

design.ncd

ncd2fnfncd2fnf

design.fnf

M1.4 FPLAN GUIM1.4 FPLAN GUI

map -fp map -fp

design.ncd

design.pcf

par par

Floorplanner GUI Floorplanner GUI

design.ngd

design.fnf

design.ngd

design.mfp

Page 44: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

44

Floorplanner GUIFloorplanner GUI

design.fnf

M1.5i Floorplanner *Preferred Flow*

ngdbuildngdbuild

design.ngd map map

design.ncd

map -fp map -fp

design.ncd

design.pcf

par par

design.ngd

design.ngd

design.mfp par par

design_p.ncd

File->NewDesign: designngd: design.ngdncd: design_p.ncdfnf: <blank>

Page 45: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

45

AGENDA Intro Lab / Demo

M1 Constraints Lab

Map Lab

M1 PAR (Effort Levels and MPPR) Place and Route Lab / Re-Entrant Routing Lab— Cleanup Routing Lab (optional)Cleanup Routing Lab (optional)

Floorplanner Lab (Area Based Floorplanning - optional)

EPIC Lab (Editing a Design / Adding a Probe Pin - optional)

Timing Improvement Lab

Guide Lab (optional)

Summary

Page 46: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

46

Most appropriate for schematic designs— Low success rate for synthesis designs

Use leverage mode

Use guide PAR alone (not guided MAP) to reduce runtime.

Guide design must be “good”:— Meets timing— I/O locations are satisfactory

Guide LabSimple Rules for Guide

Page 47: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

47

Summary Constraints Editor

— Global, Ports, and Advanced Tabs allow for easy entry of design constraints

Place and Route— Time well spent in placement pays off in routing. — Improve timing by increasing effort levels— Push the limits - 15-20% spread in performance with MPPR

Timing Analysis— Understand what to expect from the tools — Identify when to modify the design source

– Reduce Logic Levels (Logic-to-Routing Ratio)– Long net delays (bad pin assignments?)– High fanout nets

Page 48: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

48

AGENDA Intro Lab / Demo

M1 Constraints Lab

Map Lab

M1 PAR (Effort Levels and MPPR) Place and Route Lab / Re-Entrant Routing Lab— Cleanup Routing Lab (optional)Cleanup Routing Lab (optional)

Floorplanner Lab (Area Based Floorplanning - optional)

EPIC Lab (Editing a Design / Adding a Probe Pin - optional)

Timing Improvement Lab

Guide Lab (optional)Guide Lab (optional)

Summary

Page 49: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

49

Useful References Refer to Chapter 12 (Attributes, Constraints and Carry Logic)

of the Xilinx Libraries Guide for a full list of all supported constraints and examples of syntax

What else is new in M1.5/i ? Take a look at the Xilinx Implementation Tools Release 1.5 Features Application Note:— http://www.xilinx.com/apps/xactstep.htm

Support.xilinx.com — Troubleshoot - Answers Database — Software - Software Updates (patches)— Library - Expert Journals (ex - Timing Presentation)/ App

Notes/ Software Manuals/ Tutorials

Page 50: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

50

Page 51: Xilinx-Academy Training 2/12/99 1 Xilinx Academy M1.5i Advanced Implementation Tools Training Rohit Sawhney

Xilinx-Academy Training 2/12/99

51