00001 --**************************************************************
00002 --* *
00003 --* The source code for the ATLAS BCM "AAA" FPGA is made *
00004 --* available via the GNU General Public License (GPL) *
00005 --* unless otherwise stated below. *
00006 --* *
00007 --* In case of problems/questions/bug reports etc. please *
00008 --* contact michael.niegl@cern.ch *
00009 --* *
00010 --**************************************************************
00011
00012 --**************************************************************
00013 --* *
00014 --* $Source: /local/reps/bcmfpga/bcm_aaa/bcm_aaa/ddr2/ddr2_mem_idelay_ctrl.vhd,v $
00015 --* $Revision: 1.2.2.4 $ *
00016 --* $Name: dev $ *
00017 --* $Author: mniegl $ *
00018 --* $Date: 2008/11/03 17:57:44 $ *
00019
00020
00021 --* *
00022 --**************************************************************
00023
00024 library ieee;
00025
00026 use ieee.std_logic_1164.all;
00027
00028 use ieee.std_logic_unsigned.all;
00029
00030 use ieee.numeric_std.all;
00031 -- pragma translate_off
00032
00033 library unisim;
00034
00035 use unisim.vcomponents.all;
00036 -- pragma translate_on
00037
00038
00039
00040
00041
00042
00043 entity ddr2_mem_idelay_ctrl is
00044 port (
00045 CLK200 : in ;
00046 RESET : in ;
00047 RDY_STATUS : out
00048 );
00049
00050 end entity;
00051
00052
00053 architecture arc_idelay_ctrl of ddr2_mem_idelay_ctrl is
00054
00055
00056 component IDELAYCTRL
00057 port(
00058 RDY : out ;
00059 REFCLK : in ;
00060 RST : in
00061 );
00062 end component;
00063
00064 begin
00065
00066
00067 idelayctrl0 : IDELAYCTRL
00068 port map (
00069 RDY => RDY_STATUS ,
00070 REFCLK => CLK200,
00071 RST => RESET
00072 );
00073
00074 end arc_idelay_ctrl;