1 |
4 |
DFC |
-------------------------------------------------------------------------------
|
2 |
|
|
-- Title : Reset Counter
|
3 |
|
|
-------------------------------------------------------------------------------
|
4 |
|
|
-- File : rxaui_0_reset_counter.vhd
|
5 |
|
|
-------------------------------------------------------------------------------
|
6 |
|
|
-- Description: This module counts for a minimum of 500ns after configuration,
|
7 |
|
|
-- then raises the 'done' flag. This is based on a worst case
|
8 |
|
|
-- 200MHz Clock which is the maximum DRP frequency for Artix-7
|
9 |
|
|
-- (Higher than Kintex-7 and Virtex-7)
|
10 |
|
|
-------------------------------------------------------------------------------
|
11 |
|
|
-- (c) Copyright 2009 - 2013 Xilinx, Inc. All rights reserved.
|
12 |
|
|
--
|
13 |
|
|
-- This file contains confidential and proprietary information
|
14 |
|
|
-- of Xilinx, Inc. and is protected under U.S. and
|
15 |
|
|
-- international copyright and other intellectual property
|
16 |
|
|
-- laws.
|
17 |
|
|
--
|
18 |
|
|
-- DISCLAIMER
|
19 |
|
|
-- This disclaimer is not a license and does not grant any
|
20 |
|
|
-- rights to the materials distributed herewith. Except as
|
21 |
|
|
-- otherwise provided in a valid license issued to you by
|
22 |
|
|
-- Xilinx, and to the maximum extent permitted by applicable
|
23 |
|
|
-- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
|
24 |
|
|
-- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
|
25 |
|
|
-- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
|
26 |
|
|
-- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
|
27 |
|
|
-- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
|
28 |
|
|
-- (2) Xilinx shall not be liable (whether in contract or tort,
|
29 |
|
|
-- including negligence, or under any other theory of
|
30 |
|
|
-- liability) for any loss or damage of any kind or nature
|
31 |
|
|
-- related to, arising under or in connection with these
|
32 |
|
|
-- materials, including for any direct, or any indirect,
|
33 |
|
|
-- special, incidental, or consequential loss or damage
|
34 |
|
|
-- (including loss of data, profits, goodwill, or any type of
|
35 |
|
|
-- loss or damage suffered as a result of any action brought
|
36 |
|
|
-- by a third party) even if such damage or loss was
|
37 |
|
|
-- reasonably foreseeable or Xilinx had been advised of the
|
38 |
|
|
-- possibility of the same.
|
39 |
|
|
--
|
40 |
|
|
-- CRITICAL APPLICATIONS
|
41 |
|
|
-- Xilinx products are not designed or intended to be fail-
|
42 |
|
|
-- safe, or for use in any application requiring fail-safe
|
43 |
|
|
-- performance, such as life-support or safety devices or
|
44 |
|
|
-- systems, Class III medical devices, nuclear facilities,
|
45 |
|
|
-- applications related to the deployment of airbags, or any
|
46 |
|
|
-- other applications that could lead to death, personal
|
47 |
|
|
-- injury, or severe property or environmental damage
|
48 |
|
|
-- (individually and collectively, "Critical
|
49 |
|
|
-- Applications"). Customer assumes the sole risk and
|
50 |
|
|
-- liability of any use of Xilinx products in Critical
|
51 |
|
|
-- Applications, subject only to applicable laws and
|
52 |
|
|
-- regulations governing limitations on product liability.
|
53 |
|
|
--
|
54 |
|
|
-- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
|
55 |
|
|
-- PART OF THIS FILE AT ALL TIMES.
|
56 |
|
|
|
57 |
|
|
library ieee;
|
58 |
|
|
use ieee.std_logic_1164.all;
|
59 |
|
|
use ieee.numeric_std.all;
|
60 |
|
|
|
61 |
|
|
entity rxaui_0_reset_counter is
|
62 |
|
|
port (
|
63 |
|
|
clk : in std_logic;
|
64 |
|
|
done : out std_logic
|
65 |
|
|
);
|
66 |
|
|
end rxaui_0_reset_counter;
|
67 |
|
|
|
68 |
|
|
architecture rtl of rxaui_0_reset_counter is
|
69 |
|
|
constant COUNT_WIDTH : integer := 8;
|
70 |
|
|
|
71 |
|
|
signal count : unsigned (COUNT_WIDTH-1 downto 0) := (others => '0');
|
72 |
|
|
|
73 |
|
|
begin
|
74 |
|
|
process(clk) begin
|
75 |
|
|
if rising_edge(clk) then
|
76 |
|
|
if (count(COUNT_WIDTH-1) = '0') then
|
77 |
|
|
count <= count + 1;
|
78 |
|
|
end if;
|
79 |
|
|
end if;
|
80 |
|
|
end process;
|
81 |
|
|
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
done <= std_logic(count(COUNT_WIDTH -1));
|
85 |
|
|
|
86 |
|
|
end rtl;
|