⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 components.vhd

📁 free hardware ip core about sparcv8,a soc cpu in vhdl
💻 VHD
字号:
------------------------------------------------------------------------------  This file is a part of the GRLIB VHDL IP LIBRARY--  Copyright (C) 2004 GAISLER RESEARCH----  This program is free software; you can redistribute it and/or modify--  it under the terms of the GNU General Public License as published by--  the Free Software Foundation; either version 2 of the License, or--  (at your option) any later version.----  See the file COPYING for the full details of the license.--------------------------------------------------------------------------------- Package: 	components-- File:	components.vhd-- Author:	Jiri Gaisler, Gaisler Research-- Description:	Component declaration of Micron SDRAM-------------------------------------------------------------------------------- pragma translate_offlibrary ieee;use ieee.std_logic_1164.all;use std.textio.all;package components is  component mt48lc16m16a2    GENERIC (        -- Timing Parameters for -75 (PC133) and CAS Latency = 2        tAC       : TIME    :=  6.0 ns;        tHZ       : TIME    :=  7.0 ns;        tOH       : TIME    :=  2.7 ns;        tMRD      : INTEGER :=  2;          -- 2 Clk Cycles        tRAS      : TIME    := 44.0 ns;        tRC       : TIME    := 66.0 ns;        tRCD      : TIME    := 20.0 ns;        tRP       : TIME    := 20.0 ns;        tRRD      : TIME    := 15.0 ns;        tWRa      : TIME    :=  7.5 ns;     -- A2 Version - Auto precharge mode only (1 Clk + 7.5 ns)        tWRp      : TIME    := 15.0 ns;     -- A2 Version - Precharge mode only (15 ns)        tAH       : TIME    :=  0.8 ns;        tAS       : TIME    :=  1.5 ns;        tCH       : TIME    :=  2.5 ns;        tCL       : TIME    :=  2.5 ns;        tCK       : TIME    := 10.0 ns;        tDH       : TIME    :=  0.8 ns;        tDS       : TIME    :=  1.5 ns;        tCKH      : TIME    :=  0.8 ns;        tCKS      : TIME    :=  1.5 ns;        tCMH      : TIME    :=  0.8 ns;        tCMS      : TIME    :=  1.5 ns;        addr_bits : INTEGER := 13;        data_bits : INTEGER := 16;        col_bits  : INTEGER :=  9;        index     : INTEGER :=  0;	fname     : string := "sdram.srec"	-- File to read from    );    PORT (        Dq    : INOUT STD_LOGIC_VECTOR (data_bits - 1 DOWNTO 0) := (OTHERS => 'Z');        Addr  : IN    STD_LOGIC_VECTOR (addr_bits - 1 DOWNTO 0) := (OTHERS => '0');        Ba    : IN    STD_LOGIC_VECTOR := "00";        Clk   : IN    STD_LOGIC := '0';        Cke   : IN    STD_LOGIC := '1';        Cs_n  : IN    STD_LOGIC := '1';        Ras_n : IN    STD_LOGIC := '1';        Cas_n : IN    STD_LOGIC := '1';        We_n  : IN    STD_LOGIC := '1';        Dqm   : IN    STD_LOGIC_VECTOR (1 DOWNTO 0) := "00"    );  end component;  component mt46v16m16    GENERIC (                                   -- Timing for -75Z CL2        tCK       : TIME    :=  7.500 ns;        tCH       : TIME    :=  3.375 ns;       -- 0.45*tCK        tCL       : TIME    :=  3.375 ns;       -- 0.45*tCK        tDH       : TIME    :=  0.500 ns;        tDS       : TIME    :=  0.500 ns;        tIH       : TIME    :=  0.900 ns;        tIS       : TIME    :=  0.900 ns;        tMRD      : TIME    := 15.000 ns;        tRAS      : TIME    := 40.000 ns;        tRAP      : TIME    := 20.000 ns;        tRC       : TIME    := 65.000 ns;        tRFC      : TIME    := 75.000 ns;        tRCD      : TIME    := 20.000 ns;        tRP       : TIME    := 20.000 ns;        tRRD      : TIME    := 15.000 ns;        tWR       : TIME    := 15.000 ns;        addr_bits : INTEGER := 13;        data_bits : INTEGER := 16;        cols_bits : INTEGER :=  9;        index     : INTEGER :=  0;	fname     : string := "sdram.srec";	-- File to read from        bbits     : INTEGER :=  16    );    PORT (        Dq    : INOUT STD_LOGIC_VECTOR (data_bits - 1 DOWNTO 0) := (OTHERS => 'Z');        Dqs   : INOUT STD_LOGIC_VECTOR (1 DOWNTO 0) := "ZZ";        Addr  : IN    STD_LOGIC_VECTOR (addr_bits - 1 DOWNTO 0);        Ba    : IN    STD_LOGIC_VECTOR (1 DOWNTO 0);        Clk   : IN    STD_LOGIC;        Clk_n : IN    STD_LOGIC;        Cke   : IN    STD_LOGIC;        Cs_n  : IN    STD_LOGIC;        Ras_n : IN    STD_LOGIC;        Cas_n : IN    STD_LOGIC;        We_n  : IN    STD_LOGIC;        Dm    : IN    STD_LOGIC_VECTOR (1 DOWNTO 0)    );  END component;  component ftmt48lc16m16a2    GENERIC (        -- Timing Parameters for -75 (PC133) and CAS Latency = 2        tAC       : TIME    :=  6.0 ns;        tHZ       : TIME    :=  7.0 ns;        tOH       : TIME    :=  2.7 ns;        tMRD      : INTEGER :=  2;          -- 2 Clk Cycles        tRAS      : TIME    := 44.0 ns;        tRC       : TIME    := 66.0 ns;        tRCD      : TIME    := 20.0 ns;        tRP       : TIME    := 20.0 ns;        tRRD      : TIME    := 15.0 ns;        tWRa      : TIME    :=  7.5 ns;     -- A2 Version - Auto precharge mode only (1 Clk + 7.5 ns)        tWRp      : TIME    := 15.0 ns;     -- A2 Version - Precharge mode only (15 ns)        tAH       : TIME    :=  0.8 ns;        tAS       : TIME    :=  1.5 ns;        tCH       : TIME    :=  2.5 ns;        tCL       : TIME    :=  2.5 ns;        tCK       : TIME    := 10.0 ns;        tDH       : TIME    :=  0.8 ns;        tDS       : TIME    :=  1.5 ns;        tCKH      : TIME    :=  0.8 ns;        tCKS      : TIME    :=  1.5 ns;        tCMH      : TIME    :=  0.8 ns;        tCMS      : TIME    :=  1.5 ns;        addr_bits : INTEGER := 13;        data_bits : INTEGER := 16;        col_bits  : INTEGER :=  9;        index     : INTEGER :=  0;	fname     : string := "sdram.srec"	-- File to read from    );    PORT (        Dq    : INOUT STD_LOGIC_VECTOR (data_bits - 1 DOWNTO 0) := (OTHERS => 'Z');        Addr  : IN    STD_LOGIC_VECTOR (addr_bits - 1 DOWNTO 0) := (OTHERS => '0');        Ba    : IN    STD_LOGIC_VECTOR := "00";        Clk   : IN    STD_LOGIC := '0';        Cke   : IN    STD_LOGIC := '1';        Cs_n  : IN    STD_LOGIC := '1';        Ras_n : IN    STD_LOGIC := '1';        Cas_n : IN    STD_LOGIC := '1';        We_n  : IN    STD_LOGIC := '1';        Dqm   : IN    STD_LOGIC_VECTOR (1 DOWNTO 0) := "00"    );  end component;  component ddr2 is  port (    ck      : std_ulogic;    ck_n    : std_ulogic;    cke     : std_ulogic;    cs_n    : std_ulogic;    ras_n   : std_ulogic;    cas_n   : std_ulogic;    we_n    : std_ulogic;    dm_rdqs : std_logic_vector(15 downto 0);    ba      : std_logic_vector(1 downto 0);    addr    : std_logic_vector(12 downto 0);    dq      : std_logic_vector(15 downto 0);    dqs     : std_logic_vector(1 downto 0);    dqs_n   : std_logic_vector(1 downto 0);    rdqs_n  : std_logic_vector(1 downto 0);    odt     : std_ulogic  );  end component;end;-- pragma translate_on

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -