spman
Advanced Member level 4
- Joined
- Aug 15, 2010
- Messages
- 113
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,296
- Activity points
- 2,061
Hi,
I have bought a Virtex-7 board. The board has a 100MHz Silicon Labs programmable clock (570FBC000642DG). The problem is that I can't use this clock. I used an IBUFGDS in this manner:
and ucf:
I'm sure about location constraints but not about IOSTANDARDS.
The design is implemented without any warnings. But the clock signal doesn't work!
Please help me. Thanks in advance
I have bought a Virtex-7 board. The board has a 100MHz Silicon Labs programmable clock (570FBC000642DG). The problem is that I can't use this clock. I used an IBUFGDS in this manner:
Code:
input clk_p, clk_n;
wire clk;
IBUFGDS clkbuf (.I(clk_p), .IB(clk_n), .O(clk));
and ucf:
Code:
NET "clk_p" IOSTANDARD = LVDS;
NET "clk_n" IOSTANDARD = LVDS;
NET "clk_p" LOC = AU20;
NET "clk_n" LOC = AV19;
I'm sure about location constraints but not about IOSTANDARDS.
The design is implemented without any warnings. But the clock signal doesn't work!
Please help me. Thanks in advance