FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > FPGA

FPGA comp.arch.fpga newsgroup (usenet)

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-10-2004, 11:37 PM
Aman Gayasen
Guest
 
Posts: n/a
Default Problem in Constraining Routing in Xilinx PAR

Hi,

I am trying to place and route my design to a specific portion of the
FPGA
by using the Xilinx modular design flow, coupled with AREA_GROUP
constraints.
But the par for a module gives the following error message for some
(not all) region constraints.

FATAL_ERROR:Route:basrtareacst.c:891:1.18.2.1 - Failed to compute
route area
extrema. Process will terminate. To resolve this error, please
consult the
Answers Database and other online resources at
http://support.xilinx.com. If
you need further assistance, please open a Webcase by clicking on
the
"WebCase" link at http://support.xilinx.com

I am using Xilinx xc2v40 device and ISE 6.1. THe UCF file is:

INST "u1" AREA_GROUP=g1;
AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X9Y5,SLICE_X10Y0:SLICE_X15Y 3;
AREA_GROUP g1 MODE=RECONFIG;
AREA_GROUP g1 PLACE=CLOSED;


Could not find any help in the answers database at Xilinx.
Can someone please help me?

Thanks in anticipation.
Aman
Reply With Quote
  #2 (permalink)  
Old 10-11-2004, 09:25 PM
Aman Gayasen
Guest
 
Posts: n/a
Default Re: Problem in Constraining Routing in Xilinx PAR

I did not mention this in the previous post. This error seems to be
coming only if I try to contrain the routing to non-rectangular
regions.
E.g.:
Following UCF works fine:
INST "u1" AREA_GROUP=g1;
AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X11Y7;
AREA_GROUP g1 MODE=RECONFIG;
AREA_GROUP g1 PLACE=CLOSED;


But following does not:
INST "u1" AREA_GROUP=g1;
AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X9Y5,SLICE_X10Y0:SLICE_X15Y 3;
AREA_GROUP g1 MODE=RECONFIG;
AREA_GROUP g1 PLACE=CLOSED;

Does this mean that I cannot constrain the routing to a region
composed of multiple rectangles like above? Or am I making some
mistake in the UCF?

I appreciate your reading this post.
Thanks,
Aman

[email protected] (Aman Gayasen) wrote in message news:<[email protected] om>...
> Hi,
>
> I am trying to place and route my design to a specific portion of the
> FPGA
> by using the Xilinx modular design flow, coupled with AREA_GROUP
> constraints.
> But the par for a module gives the following error message for some
> (not all) region constraints.
>
> FATAL_ERROR:Route:basrtareacst.c:891:1.18.2.1 - Failed to compute
> route area
> extrema. Process will terminate. To resolve this error, please
> consult the
> Answers Database and other online resources at
> http://support.xilinx.com. If
> you need further assistance, please open a Webcase by clicking on
> the
> "WebCase" link at http://support.xilinx.com
>
> I am using Xilinx xc2v40 device and ISE 6.1. THe UCF file is:
>
> INST "u1" AREA_GROUP=g1;
> AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X9Y5,SLICE_X10Y0:SLICE_X15Y 3;
> AREA_GROUP g1 MODE=RECONFIG;
> AREA_GROUP g1 PLACE=CLOSED;
>
>
> Could not find any help in the answers database at Xilinx.
> Can someone please help me?
>
> Thanks in anticipation.
> Aman

Reply With Quote
  #3 (permalink)  
Old 10-11-2004, 09:38 PM
General Schvantzkoph
Guest
 
Posts: n/a
Default Re: Problem in Constraining Routing in Xilinx PAR

On Mon, 11 Oct 2004 12:25:55 -0700, Aman Gayasen wrote:

> I did not mention this in the previous post. This error seems to be
> coming only if I try to contrain the routing to non-rectangular
> regions.
> E.g.:
> Following UCF works fine:
> INST "u1" AREA_GROUP=g1;
> AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X11Y7;
> AREA_GROUP g1 MODE=RECONFIG;
> AREA_GROUP g1 PLACE=CLOSED;
>
>
> But following does not:
> INST "u1" AREA_GROUP=g1;
> AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X9Y5,SLICE_X10Y0:SLICE_X15Y 3;
> AREA_GROUP g1 MODE=RECONFIG;
> AREA_GROUP g1 PLACE=CLOSED;
>
> Does this mean that I cannot constrain the routing to a region
> composed of multiple rectangles like above? Or am I making some
> mistake in the UCF?
>
> I appreciate your reading this post.
> Thanks,
> Aman
>
> [email protected] (Aman Gayasen) wrote in message news:<[email protected] om>...
>> Hi,
>>
>> I am trying to place and route my design to a specific portion of the
>> FPGA
>> by using the Xilinx modular design flow, coupled with AREA_GROUP
>> constraints.
>> But the par for a module gives the following error message for some
>> (not all) region constraints.
>>
>> FATAL_ERROR:Route:basrtareacst.c:891:1.18.2.1 - Failed to compute
>> route area
>> extrema. Process will terminate. To resolve this error, please
>> consult the
>> Answers Database and other online resources at
>> http://support.xilinx.com. If
>> you need further assistance, please open a Webcase by clicking on
>> the
>> "WebCase" link at http://support.xilinx.com
>>
>> I am using Xilinx xc2v40 device and ISE 6.1. THe UCF file is:
>>
>> INST "u1" AREA_GROUP=g1;
>> AREA_GROUP "g1" RANGE=SLICE_X0Y0:SLICE_X9Y5,SLICE_X10Y0:SLICE_X15Y 3;
>> AREA_GROUP g1 MODE=RECONFIG;
>> AREA_GROUP g1 PLACE=CLOSED;
>>
>>
>> Could not find any help in the answers database at Xilinx.
>> Can someone please help me?
>>
>> Thanks in anticipation.
>> Aman


Have you asked Xilinx? Open a webcase and they'll give you the answer. I'd
guess that they probably are limited to rectangles, it would be pretty
hard to handle other shapes.


Reply With Quote
  #4 (permalink)  
Old 10-12-2004, 12:47 PM
Miguel Silva
Guest
 
Posts: n/a
Default Re: Problem in Constraining Routing in Xilinx PAR

Hi,

Modular Design does not support the use of non-rectangular area group
ranges, http://support.xilinx.com/xlnx/xil_a...PagePath=16423


Miguel Silva
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Constraining Multiple clock design [email protected] Verilog 0 01-16-2007 07:13 AM
Xilinx FPGA routing question Heliboy FPGA 1 07-06-2004 10:44 AM
Xilinx FPGA routing question Heliboy Verilog 1 07-06-2004 10:44 AM
Exact Timing Constraints vs. Over-Constraining PO Laprise FPGA 17 12-03-2003 09:14 PM


All times are GMT +1. The time now is 02:45 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved