Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how to use BUFGDLL of Xilinx FPGA? help!!!

Status
Not open for further replies.

vvsvv

Full Member level 1
Joined
May 26, 2004
Messages
98
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
796
bufgdll

how to use bufgdll of Spartan2 fpga ?
my design includes a Top module which will call some small module and some other modules.

when i use

u1: bufgdll(clk_in,clk) ;

there errors !!!

how to use BUFGDLL ?
thanks!
 

xilinx bufgdll spartan

vvsvv said:
how to use bufgdll of Spartan2 fpga ?
when i use

u1: bufgdll(clk_in,clk) ;

there errors !!!

how to use BUFGDLL ?
thanks!

First of all: how do you expect to get an answer if you don't post the error?

Secondly: have you read the Xilinx Application Note "Using the Virtex Delay-Locked Loop XAPP132"? Go to support.xilinx.com to find it.
 

Which HDL are you using?

In VHDL, you include the Xilinx library (uncomment it), and use component instantiation:
Code:
u1: bufgdll port map(
    I => clk_in,
    O => clk
  );
 

Check out that clk_in is not driven by an IBUF or IBUFG, clkin here can not be driven by input buffers "got it"
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top