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 04-23-2005, 09:06 PM
gallen
Guest
 
Posts: n/a
Default "Implement Design" Error on ISE 6.3 webpack

I'm getting an error during the translate portion of the implement
design section and I have no clue what it is about:

ERROR:NgdBuild:455 - logical net 'blt_blitter_o_memAddr<0>_cyo' has
multiple
drivers. The possible drivers causing this are:
pin G on block XST_GND with type GND,
pin PAD on block blt_blitter_o_memAddr<0>_cyo with type PAD
ERROR:NgdBuild:462 - input pad net 'blt_blitter_o_memAddr<0>_cyo'
drives
multiple buffers. Possible pins causing this are: :
pin I on block dll_rstpad with type IBUF,
pin I on block w_extCe_OBUF with type OBUF,
pin I on block w_fbce0_OBUF with type OBUF,
pin I on block w_fbce1_OBUF with type OBUF
ERROR:NgdBuild:466 - input pad net 'blt_blitter_o_memAddr<0>_cyo' has
illegal
connection. Possible pins causing this are:
pin G on block XST_GND with type GND,
pin DI on block blt_blitter_o_xAddr<5>cy with type MUXCY,
pin DI on block blt_blitter_o_xAddr<6>cy with type MUXCY,
pin DI on block tv_tvs_hcount_LPM_COUNTER_2__n0000<10>cy with type
MUXCY,
pin CI on block blt_blitter_o_memAddr<6>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<9>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<10>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<11>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<12>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<13>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<14>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<15>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<16>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<17>cy with type MUXCY,
pin CI on block blt_blitter__n0000<0>cy with type MUXCY,
pin DI on block blt_blitter__n0000<1>cy with type MUXCY,
pin DI on block blt_blitter__n0000<2>cy with type MUXCY,
pin DI on block blt_blitter__n0000<3>cy with type MUXCY,
pin DI on block blt_blitter__n0000<4>cy with type MUXCY,
pin DI on block blt_blitter__n0000<5>cy with type MUXCY
ERROR:NgdBuild:466 - input pad net 'blt_blitter_o_memAddr<0>_cyo' has
illegal
connection. Possible pins causing this are:
pin G on block XST_GND with type GND,
pin DI on block blt_blitter_o_xAddr<5>cy with type MUXCY,
pin DI on block blt_blitter_o_xAddr<6>cy with type MUXCY,
pin DI on block tv_tvs_hcount_LPM_COUNTER_2__n0000<10>cy with type
MUXCY,
pin CI on block blt_blitter_o_memAddr<6>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<9>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<10>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<11>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<12>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<13>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<14>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<15>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<16>cy with type MUXCY,
pin DI on block blt_blitter_o_memAddr<17>cy with type MUXCY,
pin CI on block blt_blitter__n0000<0>cy with type MUXCY,
pin DI on block blt_blitter__n0000<1>cy with type MUXCY,
pin DI on block blt_blitter__n0000<2>cy with type MUXCY,
pin DI on block blt_blitter__n0000<3>cy with type MUXCY,
pin DI on block blt_blitter__n0000<4>cy with type MUXCY,
pin DI on block blt_blitter__n0000<5>cy with type MUXCY

I've looked at the xilinx web reference, but I don't have multiple
drivers on this signal. The system passes simulation without any
warnings, so what might cause this?

I was getting this on other signals, but I changed how they were worded
at it went away. For example I had something like this

wire [7:0] gfxinput;
wire [3:0] xout;
wire [3:0] yout;

gfxmod gfx(
.input(gfxinput)
);

gfxgen gfxg(
.xout(xout),
.yout(yout)
);

assign gfxinput = {xout,yout};

and that would fail with gfxinput being the error node (gfxgen was
driving xout and yout and gfxmod takes them concatenated as input).

I got the error to go away (go to another net anyway) by changing the
code to this:
wire [3:0] xout;
wire [3:0] yout;

gfxmod gfx(
.input({xout,yout})
);

gfxgen gfxg(
.xout(xout),
.yout(yout)
);

Does this make sense to anybody? Has this happened to anybody else
before?

Thanks for the help,
Arlen

Reply With Quote
  #2 (permalink)  
Old 04-26-2005, 10:24 PM
Gabor
Guest
 
Posts: n/a
Default Re: "Implement Design" Error on ISE 6.3 webpack

gallen wrote:
> I'm getting an error during the translate portion of the implement
> design section and I have no clue what it is about:
>
> ERROR:NgdBuild:455 - logical net 'blt_blitter_o_memAddr<0>_cyo' has
> multiple
> drivers. The possible drivers causing this are:
> pin G on block XST_GND with type GND,
> pin PAD on block blt_blitter_o_memAddr<0>_cyo with type PAD
> ERROR:NgdBuild:462 - input pad net 'blt_blitter_o_memAddr<0>_cyo'
> drives
> multiple buffers. Possible pins causing this are: :
> pin I on block dll_rstpad with type IBUF,
> pin I on block w_extCe_OBUF with type OBUF,
> pin I on block w_fbce0_OBUF with type OBUF,
> pin I on block w_fbce1_OBUF with type OBUF
> ERROR:NgdBuild:466 - input pad net 'blt_blitter_o_memAddr<0>_cyo' has
> illegal
> connection. Possible pins causing this are:
> pin G on block XST_GND with type GND,
> pin DI on block blt_blitter_o_xAddr<5>cy with type MUXCY,
> pin DI on block blt_blitter_o_xAddr<6>cy with type MUXCY,
> pin DI on block tv_tvs_hcount_LPM_COUNTER_2__n0000<10>cy with

type
> MUXCY,
> pin CI on block blt_blitter_o_memAddr<6>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<9>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<10>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<11>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<12>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<13>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<14>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<15>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<16>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<17>cy with type MUXCY,
> pin CI on block blt_blitter__n0000<0>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<1>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<2>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<3>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<4>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<5>cy with type MUXCY
> ERROR:NgdBuild:466 - input pad net 'blt_blitter_o_memAddr<0>_cyo' has
> illegal
> connection. Possible pins causing this are:
> pin G on block XST_GND with type GND,
> pin DI on block blt_blitter_o_xAddr<5>cy with type MUXCY,
> pin DI on block blt_blitter_o_xAddr<6>cy with type MUXCY,
> pin DI on block tv_tvs_hcount_LPM_COUNTER_2__n0000<10>cy with

type
> MUXCY,
> pin CI on block blt_blitter_o_memAddr<6>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<9>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<10>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<11>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<12>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<13>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<14>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<15>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<16>cy with type MUXCY,
> pin DI on block blt_blitter_o_memAddr<17>cy with type MUXCY,
> pin CI on block blt_blitter__n0000<0>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<1>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<2>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<3>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<4>cy with type MUXCY,
> pin DI on block blt_blitter__n0000<5>cy with type MUXCY
>
> I've looked at the xilinx web reference, but I don't have multiple
> drivers on this signal. The system passes simulation without any
> warnings, so what might cause this?
>
> I was getting this on other signals, but I changed how they were

worded
> at it went away. For example I had something like this
>
> wire [7:0] gfxinput;
> wire [3:0] xout;
> wire [3:0] yout;
>
> gfxmod gfx(
> .input(gfxinput)
> );
>
> gfxgen gfxg(
> .xout(xout),
> .yout(yout)
> );
>
> assign gfxinput = {xout,yout};
>
> and that would fail with gfxinput being the error node (gfxgen was
> driving xout and yout and gfxmod takes them concatenated as input).
>
> I got the error to go away (go to another net anyway) by changing the
> code to this:
> wire [3:0] xout;
> wire [3:0] yout;
>
> gfxmod gfx(
> .input({xout,yout})
> );
>
> gfxgen gfxg(
> .xout(xout),
> .yout(yout)
> );
>
> Does this make sense to anybody? Has this happened to anybody else
> before?
>
> Thanks for the help,
> Arlen


This looks suspiciously like you have a module that was built with
IO pads when it was intended to be internal. If for example you infer
an IFD (D flip-flop with an IBUF at its D input and IOB=TRUE) instead
of an FD (basic CLB D flip-flop), the IBUF forces the place-and-route
to instantiate a pad which will also drive the IBUF input in addition
to the net you attached to the IFD's D.

If you build a module as a black-box and include it in a top-level
design,
you need to synthesize with "Add I/O Buffers" unchecked in the
Synthesis properties.

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
how to represent "inout" data type in testbenches in "verilog" linuxczar Verilog 2 03-21-2007 07:28 PM
"Error loading design" error thomasc Verilog 5 03-07-2005 09:22 AM
Why do we need "check" "call" "misc" in PLI? Lee Verilog 1 05-17-2004 04:42 PM
"clean" or "unprotected" versions of AHDL2X, SYNTHX from Xilinx (ABL2XNF sub tools) Bill Smith FPGA 0 11-11-2003 12:17 AM


All times are GMT +1. The time now is 02:41 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