x393  1.0
FPGAcodeforElphelNC393camera
ibuf_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/ibuf_ibufg_i/memclk_0 is directly
48  driven by an IO rather than a Clock Buffer. Driverx393.s: clocks393_i/ibuf_ibufg_i/IBUF_i/O[VivadoPlace:0000]
49 
50 */
51 module ibuf_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  IBUF #(
67  ) IBUF_i (
68  .O (O), // output
69  .I (I) // input
70  );
71 endmodule
72 
11217IBUF_DELAY_VALUE"0"
Definition: ibuf_ibufg.v:53
11216CAPACITANCE"DONT_CARE"
Definition: ibuf_ibufg.v:52
11220IOSTANDARD"DEFAULT"
Definition: ibuf_ibufg.v:56
IBUF_i IBUF
Definition: ibuf_ibufg.v:61
11218IBUF_LOW_PWR"TRUE"
Definition: ibuf_ibufg.v:54
11219IFD_DELAY_VALUE"AUTO"
Definition: ibuf_ibufg.v:55