x393  1.0
FPGAcodeforElphelNC393camera
ibufds_ibufgds.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
41 /*Quote from Xilinx "7 Series FPGA SelectIO Primitives":
42 The IBUFDS and IBUFGDS primitives are the same, IBUFGDS is used when an differential
43 input buffer is used as a clock input.
44 
45 Actually, it still complains:
46 WARNING: [DRC 23-20] Rule violation (CKLD-2) Clock Net has direct IO Driver - Clock net clocks393_i/ibuf_ibufg_i/memclk_0 is directly driven by an IO rather than a Clock Buffer. Driverx393.s: clocks393_i/ibuf_ibufg_i/IBUF_i/O[VivadoPlace:0000]
47 
48 */
49 module ibufds_ibufgds #(
50  parameter CAPACITANCE = "DONT_CARE",
51  parameter DIFF_TERM = "FALSE",
52  parameter DQS_BIAS = "FALSE",
53  parameter IBUF_DELAY_VALUE = "0",
54  parameter IBUF_LOW_PWR = "TRUE",
55  parameter IFD_DELAY_VALUE = "AUTO",
56  parameter IOSTANDARD = "DEFAULT"
57  )(
58  output O,
59  input I,
60  input IB
61 );
62  IBUFDS #(
65  .DQS_BIAS (DQS_BIAS),
70  ) IBUFDS_i (
71  .O (O), // output
72  .I (I), // input
73  .IB (IB) // input
74  );
75 
76 endmodule
77 
79  parameter CAPACITANCE = "DONT_CARE",
80  parameter DIFF_TERM = "FALSE",
81  parameter DQS_BIAS = "FALSE",
82  parameter IBUF_DELAY_VALUE = "0",
83  parameter IBUF_LOW_PWR = "TRUE",
84  parameter IFD_DELAY_VALUE = "AUTO",
85  parameter IOSTANDARD = "DEFAULT"
86  )(
87  output O,
88  input I,
89  input IB
90 );
91 (* IN_TERM="UNTUNED_SPLIT_50" *)
92  IBUFDS #(
95  .DQS_BIAS (DQS_BIAS),
100  ) IBUFDS_i (
101  .O (O), // output
102  .I (I), // input
103  .IB (IB) // input
104  );
105 
106 endmodule
107 
11225DQS_BIAS"FALSE"
11227IBUF_LOW_PWR"TRUE"
11239IOSTANDARD"DEFAULT"
11228IFD_DELAY_VALUE"AUTO"
11233CAPACITANCE"DONT_CARE"
11223CAPACITANCE"DONT_CARE"
11238IFD_DELAY_VALUE"AUTO"
IBUFDS_i IBUFDS
11229IOSTANDARD"DEFAULT"
11224DIFF_TERM"FALSE"