Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > VHDL > Timing details during synthesis in Xilinx ISE

Reply
Thread Tools

Timing details during synthesis in Xilinx ISE

 
 
Thunder
Guest
Posts: n/a
 
      06-28-2007
My program uses one clk (as one of the ports) and every process is
executed only at the rising edge of the clk. Even then, the synthesis
report contains no clock information or timing summary. It says "No
clock signals found in this design"
The timing summary is given as
Minimum period: No path found
Minimum input arrival time before clock: No path found
Maximum output required time after clock: No path found
Maximum combinational path delay: No path found

The device utilization summary is also not complete.

I will be grateful if you could help me in getting the timing details
along with the device utilization summary.

 
Reply With Quote
 
 
 
 
KJ
Guest
Posts: n/a
 
      06-29-2007

"Thunder" <> wrote in message
news: ups.com...
> My program uses one clk (as one of the ports) and every process is
> executed only at the rising edge of the clk. Even then, the synthesis
> report contains no clock information or timing summary. It says "No
> clock signals found in this design"
> The timing summary is given as
> Minimum period: No path found
> Minimum input arrival time before clock: No path found
> Maximum output required time after clock: No path found
> Maximum combinational path delay: No path found
>
> The device utilization summary is also not complete.
>
> I will be grateful if you could help me in getting the timing details
> along with the device utilization summary.
>

What is most likely happening either:
1. No output of the top level design depends on the code that you've written
so it gets optomized away.
2. All of the inputs to a lower level block are either open or static (i.e.
always '1', '0', 'X') possibly because they have not been connected. In
that situation, the output of the 'clocked' processes can usually be fully
pre-computed and will also be static again resulting in the logic getting
optomized away .

In either case (or any combo of the two) if all registers happen to get
optomized away there will be no clocked timing paths to analyze which will
result in the messages that you're seeing about not finding a timing path to
analyze.

To fix it, start up the simulator, applying stimulus to the input pins of
the top level and see if all of the outputs are doing what you want them to
be doing. What you'll find is that they are not working properly and the
outputs will likely be static (always, '1', '0', 'X', etc. but not
changing). Once you get that going you'll find that the logic won't be
getting optomized away and that the timing analyzer will find timing paths
to analyze.

Messages about sections where device utilization is way below what it should
be (or even 0% utilization) are useful tools to help pinpoint areas of the
design where you've not connected something up right or are feeding in
static signals.

KJ


 
Reply With Quote
 
 
 
 
KJ
Guest
Posts: n/a
 
      06-29-2007

"KJ" <> wrote in message
news:5zYgi.4749$ t...

> 2. All of the inputs to a lower level block are either open or static
> (i.e. always '1', '0', 'X') possibly because they have not been connected.
> In that situation, the output of the 'clocked' processes can usually be
> fully pre-computed and will also be static again resulting in the logic
> getting optomized away .


On item #2 I meant to say 'At least one of the inputs...', not 'All of the
inputs..'. A single unconnected input can cause an entire block to be
optomized away. A simple example would be if every input is connected
except for the clock

KJ


 
Reply With Quote
 
 
 
Reply

Thread Tools

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
xilinx ise synthesis timing summary niyander VHDL 3 07-29-2010 06:23 AM
ise synthesis error - use of null array on signal X is not supported mlefter VHDL 0 11-10-2009 10:20 AM
problem with ise 10 synthesis hussain.elsaid VHDL 1 12-18-2008 03:24 PM
ModelSim Error : "Fatal error in Process determine_phase_shift" during post synthesis of Xilinx vhd fpgaengineer VHDL 7 03-12-2007 07:24 PM
FFT using Xilinx ISE Hari VHDL 1 01-05-2004 04:35 PM



Advertisments