ad9361: ml605 updates

main
Rejeesh Kutty 2014-05-05 11:03:21 -04:00
parent 4d4f66fbdd
commit 1d50489870
1 changed files with 10 additions and 0 deletions

View File

@ -673,9 +673,19 @@ module axi_ad9361_dev_if (
.IB (rx_clk_in_n),
.O (clk_ibuf_s));
generate
if (PCORE_BUFTYPE == PCORE_VIRTEX6) begin
BUFR #(.BUFR_DIVIDE("BYPASS")) i_clk_rbuf (
.CLR (1'b0),
.CE (1'b1),
.I (clk_ibuf_s),
.O (clk));
end else begin
BUFG i_clk_gbuf (
.I (clk_ibuf_s),
.O (clk));
end
endgenerate
endmodule