x393  1.0
FPGAcodeforElphelNC393camera
ibufg.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 /*Quote from Xilinx "7 Series FPGA SelectIO Primitives":
41 The IBUF and IBUFG primitives are the same. IBUFGs are used when an input buffer is
42 used as a clock input. In the Xilinx software tools, an IBUFG is automatically placed at
43 clock input sites.
44 
45 Actually, it still complains:
46 
47 WARNING: [DRC 23-20] Rule violation (CKLD-2) Clock Net has direct IO Driver - Clock net clocks393_i/ibufg_i/memclk_0 is directly
48  driven by an IO rather than a Clock Buffer. Driverx393.s: clocks393_i/ibufg_i/IBUF_i/O[VivadoPlace:0000]
49 
50 */
51 module ibufg #(
52  parameter CAPACITANCE = "DONT_CARE",
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 );
61  IBUFG #(
63 // .IBUF_DELAY_VALUE (IBUF_DELAY_VALUE),
65 // .IFD_DELAY_VALUE (IFD_DELAY_VALUE),
67  ) IBUFG_i (
68  .O (O), // output
69  .I (I) // input
70  );
71 endmodule
72 
Definition: ibufg.v:51
IBUFG_i IBUFG
Definition: ibufg.v:61
11247I
Definition: ibufg.v:59
11243CAPACITANCE"DONT_CARE"
Definition: ibufg.v:52
11245IOSTANDARD"DEFAULT"
Definition: ibufg.v:56
11244IBUF_LOW_PWR"TRUE"
Definition: ibufg.v:54
11246O
Definition: ibufg.v:58
9727O
Definition: IBUFG.v:47
9728I
Definition: IBUFG.v:48