1 --------------------------------------------------------------------------------
3 -- FIFO Generator Core Demo Testbench
5 --------------------------------------------------------------------------------
7 -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
9 -- This file contains confidential and proprietary information
10 -- of Xilinx, Inc. and is protected under U.S. and
11 -- international copyright and other intellectual property
15 -- This disclaimer is not a license and does not grant any
16 -- rights to the materials distributed herewith. Except as
17 -- otherwise provided in a valid license issued to you by
18 -- Xilinx, and to the maximum extent permitted by applicable
19 -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
20 -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
21 -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
22 -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
23 -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
24 -- (2) Xilinx shall not be liable (whether in contract or tort,
25 -- including negligence, or under any other theory of
26 -- liability) for any loss or damage of any kind or nature
27 -- related to, arising under or in connection with these
28 -- materials, including for any direct, or any indirect,
29 -- special, incidental, or consequential loss or damage
30 -- (including loss of data, profits, goodwill, or any type of
31 -- loss or damage suffered as a result of any action brought
32 -- by a third party) even if such damage or loss was
33 -- reasonably foreseeable or Xilinx had been advised of the
34 -- possibility of the same.
36 -- CRITICAL APPLICATIONS
37 -- Xilinx products are not designed or intended to be fail-
38 -- safe, or for use in any application requiring fail-safe
39 -- performance, such as life-support or safety devices or
40 -- systems, Class III medical devices, nuclear facilities,
41 -- applications related to the deployment of airbags, or any
42 -- other applications that could lead to death, personal
43 -- injury, or severe property or environmental damage
44 -- (individually and collectively, "Critical
45 -- Applications"). Customer assumes the sole risk and
46 -- liability of any use of Xilinx products in Critical
47 -- Applications, subject only to applicable laws and
48 -- regulations governing limitations on product liability.
50 -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
51 -- PART OF THIS FILE AT ALL TIMES.
52 --------------------------------------------------------------------------------
54 -- Filename: fifo_adc_synth.vhd
57 -- This is the demo testbench for fifo_generator core.
59 --------------------------------------------------------------------------------
60 -- Library Declarations
61 --------------------------------------------------------------------------------
65 USE ieee.STD_LOGIC_1164.
ALL;
66 USE ieee.STD_LOGIC_unsigned.
ALL;
67 USE IEEE.STD_LOGIC_arith.
ALL;
68 USE ieee.numeric_std.
ALL;
69 USE ieee.STD_LOGIC_misc.
ALL;
75 USE work.fifo_adc_pkg.
ALL;
77 --------------------------------------------------------------------------------
79 --------------------------------------------------------------------------------
82 FREEZEON_ERROR : := 0;
91 STATUS : OUT (7 DOWNTO 0)
97 -- FIFO interface signal declarations
100 SIGNAL wr_data_count : (10-1 DOWNTO 0);
101 SIGNAL rd_data_count : (8-1 DOWNTO 0);
106 SIGNAL din : (16-1 DOWNTO 0);
107 SIGNAL dout : (64-1 DOWNTO 0);
111 SIGNAL wr_data : (16-1 DOWNTO 0);
112 SIGNAL dout_i : (64-1 DOWNTO 0);
113 SIGNAL wr_en_i : := '0';
114 SIGNAL rd_en_i : := '0';
115 SIGNAL full_i : := '0';
116 SIGNAL empty_i : := '0';
117 SIGNAL almost_full_i : := '0';
118 SIGNAL almost_empty_i : := '0';
119 SIGNAL prc_we_i : := '0';
120 SIGNAL prc_re_i : := '0';
121 SIGNAL dout_chk_i : := '0';
122 SIGNAL rst_int_rd : := '0';
123 SIGNAL rst_int_wr : := '0';
124 SIGNAL rst_s_wr1 : := '0';
125 SIGNAL rst_s_wr2 : := '0';
126 SIGNAL rst_gen_rd : (7 DOWNTO 0) := (OTHERS => '0');
127 SIGNAL rst_s_wr3 : := '0';
128 SIGNAL rst_s_rd : := '0';
129 SIGNAL reset_en : := '0';
130 SIGNAL rst_async_wr1 : := '0';
131 SIGNAL rst_async_wr2 : := '0';
132 SIGNAL rst_async_wr3 : := '0';
133 SIGNAL rst_async_rd1 : := '0';
134 SIGNAL rst_async_rd2 : := '0';
135 SIGNAL rst_async_rd3 : := '0';
140 ---- Reset generation logic -----
141 rst_int_wr <= rst_async_wr3 OR rst_s_wr3;
142 rst_int_rd <= rst_async_rd3 OR rst_s_rd;
144 --Testbench reset synchronization
145 PROCESS(rd_clk_i,RESET)
148 rst_async_rd1 <= '1';
149 rst_async_rd2 <= '1';
150 rst_async_rd3 <= '1';
151 ELSIF(rd_clk_i'event AND rd_clk_i='1') THEN
152 rst_async_rd1 <= RESET;
153 rst_async_rd2 <= rst_async_rd1;
154 rst_async_rd3 <= rst_async_rd2;
158 PROCESS(wr_clk_i,RESET)
161 rst_async_wr1 <= '1';
162 rst_async_wr2 <= '1';
163 rst_async_wr3 <= '1';
164 ELSIF(wr_clk_i'event AND wr_clk_i='1') THEN
165 rst_async_wr1 <= RESET;
166 rst_async_wr2 <= rst_async_wr1;
167 rst_async_wr3 <= rst_async_wr2;
171 --Soft reset for core and testbench
174 IF(rd_clk_i'event AND rd_clk_i='1') THEN
175 rst_gen_rd <= rst_gen_rd + "1";
176 IF(reset_en = '1' AND AND_REDUCE(rst_gen_rd) = '1') THEN
179 report "Reset applied..Memory Collision checks are not valid"
182 IF(AND_REDUCE(rst_gen_rd) = '1' AND rst_s_rd = '1') THEN
191 IF(wr_clk_i'event AND wr_clk_i='1') THEN
192 rst_s_wr1 <= rst_s_rd;
193 rst_s_wr2 <= rst_s_wr1;
194 rst_s_wr3 <= rst_s_wr2;
195 IF(rst_s_wr3 = '1' AND rst_s_wr2 = '0') THEN
197 report "Reset removed..Memory Collision checks are valid"
204 ---- Clock buffers for testbench ----
209 rst <= RESET OR rst_s_rd AFTER 12 ns;
224 PORT MAP (
-- Write Port
227 PRC_WR_EN => prc_we_i,
237 C_USE_EMBEDDED_REG =>
0,
244 PRC_RD_EN => prc_re_i,
248 DOUT_CHK => dout_chk_i
253 AXI_CHANNEL =>
"Native",
254 C_APPLICATION_TYPE =>
0,
257 C_WR_PNTR_WIDTH =>
10,
258 C_RD_PNTR_WIDTH =>
8,
260 FREEZEON_ERROR => FREEZEON_ERROR ,
262 TB_STOP_CNT => TB_STOP_CNT
265 RESET_WR => rst_int_wr,
266 RESET_RD => rst_int_rd,
267 RESET_EN => reset_en,
270 PRC_WR_EN => prc_we_i,
271 PRC_RD_EN => prc_re_i,
273 ALMOST_FULL => almost_full_i ,
274 ALMOST_EMPTY => almost_empty_i ,
275 DOUT_CHK => dout_chk_i,
279 SIM_DONE => SIM_DONE,
291 WR_DATA_COUNT => wr_data_count,
292 RD_DATA_COUNT => rd_data_count,
294 OVERFLOW => overflow,