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