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

📄 atahost_top.vhd

📁 最新的ATA-六总线协议源代码参考
💻 VHD
📖 第 1 页 / 共 2 页
字号:
-------------------------------------------------------------------------                                                             --------  OpenCores IDE Controller                                   --------  ATA/ATAPI-5 IDE controller with DMA support                --------                                                             --------  Author: Richard Herveille                                  --------          richard@asics.ws                                   --------          www.asics.ws                                       --------                                                             -----------------------------------------------------------------------------                                                             -------- Copyright (C) 2002 Richard Herveille                        --------                    richard@asics.ws                         --------                                                             -------- This source file may be used and distributed without        -------- restriction provided that this copyright statement is not   -------- removed from the file and that any derivative work contains -------- the original copyright notice and the associated disclaimer.--------                                                             --------     THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY     -------- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED   -------- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS   -------- FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR      -------- OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,         -------- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES    -------- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE   -------- GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR        -------- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF  -------- LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT  -------- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  -------- OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE         -------- POSSIBILITY OF SUCH DAMAGE.                                 --------                                                             ----------------------------------------------------------------------------- rev.:	1.0  Alpha version Januar 1st, 2001-- rev.: 1.0a Removed all references to records.vhd. Make core compatible with VHDL to Verilog translator tools--            Changed DMA_req signal generation. Make the core compatible with the latest version of the OpenCores DMA engine-- rev.: 1.1  june 18th, 2001. Changed wishbone address-input from ADR_I(4 downto 0) to ADR(6 downto 2)-- rev.: 1.1a june 19th, 2001. Simplified DAT_O output multiplexor----  CVS Log----  $Id: atahost_top.vhd,v 1.1 2002/02/18 14:32:12 rherveille Exp $----  $Date: 2002/02/18 14:32:12 $--  $Revision: 1.1 $--  $Author: rherveille $--  $Locker:  $--  $State: Exp $---- Change History:--               $Log: atahost_top.vhd,v $--               Revision 1.1  2002/02/18 14:32:12  rherveille--               renamed all files to 'atahost_***.vhd'--               broke-up 'counter.vhd' into 'ud_cnt.vhd' and 'ro_cnt.vhd'--               changed resD input to generic RESD in ud_cnt.vhd--               changed ID input to generic ID in ro_cnt.vhd--               changed core to reflect changes in ro_cnt.vhd--               removed references to 'count' library--               changed IO names--               added disclaimer--               added CVS log--               moved registers and wishbone signals into 'atahost_wb_slave.vhd'-------- DeviceType: OCIDEC-3: OpenCores IDE Controller type3-- Features: PIO Compatible Timing, PIO Fast Timing 0/1, Single/Multiword DMA Timing 0/1-- DeviceID: 0x03-- RevNo : 0x00---- Host signals:-- Reset-- DIOR-		read strobe. The falling edge enables data from device onto DD. The rising edge latches data at the host.-- DIOW-		write strobe. The rising edge latches data from DD into the device.-- DMACK-	DMA acknowledge-- DA(2:0)		3bit binary coded adress-- CS0-		select command block registers-- CS1-		select control block registerslibrary ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;entity atahost_top is	generic(		ARST_LVL : std_logic := '0';                -- asynchronous reset level		TWIDTH : natural := 8;                      -- counter width		-- PIO mode 0 settings (@100MHz clock)		PIO_mode0_T1 : natural := 6;                -- 70ns		PIO_mode0_T2 : natural := 28;               -- 290ns		PIO_mode0_T4 : natural := 2;                -- 30ns		PIO_mode0_Teoc : natural := 23;             -- 240ns ==> T0 - T1 - T2 = 600 - 70 - 290 = 240		-- Multiword DMA mode 0 settings (@100MHz clock)		DMA_mode0_Tm : natural := 4;                -- 50ns		DMA_mode0_Td : natural := 21;               -- 215ns		DMA_mode0_Teoc : natural := 21              -- 215ns ==> T0 - Td - Tm = 480 - 50 - 215 = 215	);	port(		-- WISHBONE SYSCON signals		wb_clk_i : in std_logic;                       -- master clock in		arst_i   : in std_logic := '1';                -- asynchronous active low reset		wb_rst_i : in std_logic := '0';                -- synchronous active high reset		-- WISHBONE SLAVE signals		wb_cyc_i : in std_logic;                       -- valid bus cycle input		wb_stb_i : in std_logic;                       -- strobe/core select input		wb_ack_o : out std_logic;                      -- strobe acknowledge output		wb_rty_o : out std_logic;                      -- retry output		wb_err_o : out std_logic;                      -- error output		wb_adr_i : in unsigned(6 downto 2);            -- A6 = '1' ATA devices selected		                                               --       A5 = '1' CS1- asserted, '0' CS0- asserted		                                               --       A4..A2 ATA address lines		                                               -- A6 = '0' ATA controller selected		wb_dat_i : in std_logic_vector(31 downto 0);   -- Databus in		wb_dat_o : out std_logic_vector(31 downto 0);  -- Databus out		wb_sel_i : in std_logic_vector(3 downto 0);    -- Byte select signals		wb_we_i  : in std_logic;                       -- Write enable input		wb_inta_o : out std_logic;                     -- interrupt request signal IDE0		-- DMA engine signals		DMA_req : out std_logic;                    -- DMA request		DMA_Ack : in std_logic;                     -- DMA acknowledge		-- ATA signals		resetn_pad_o : out std_logic;		dd_pad_i     : in  std_logic_vector(15 downto 0);		dd_pad_o     : out std_logic_vector(15 downto 0);		dd_padoe_o   : out std_logic;		da_pad_o     : out unsigned(2 downto 0);		cs0n_pad_o   : out std_logic;		cs1n_pad_o   : out std_logic;		diorn_pad_o	 : out std_logic;		diown_pad_o	 : out std_logic;		iordy_pad_i	 : in  std_logic;		intrq_pad_i	 : in  std_logic;		dmarq_pad_i  : in  std_logic;		dmackn_pad_o : out std_logic	);end entity atahost_top;architecture structural of atahost_top is	--	-- Device ID	--	constant DeviceId : unsigned(3 downto 0) := x"3";	constant RevisionNo : unsigned(3 downto 0) := x"0";	--	-- component declarations	--	component atahost_wb_slave is	generic(		DeviceID   : unsigned(3 downto 0) := x"0";		RevisionNo : unsigned(3 downto 0) := x"0";		-- PIO mode 0 settings (@100MHz clock)		PIO_mode0_T1 : natural := 6;                -- 70ns		PIO_mode0_T2 : natural := 28;               -- 290ns		PIO_mode0_T4 : natural := 2;                -- 30ns		PIO_mode0_Teoc : natural := 23;             -- 240ns ==> T0 - T1 - T2 = 600 - 70 - 290 = 240		-- Multiword DMA mode 0 settings (@100MHz clock)		DMA_mode0_Tm : natural := 4;                -- 50ns		DMA_mode0_Td : natural := 21;               -- 215ns		DMA_mode0_Teoc : natural := 21              -- 215ns ==> T0 - Td - Tm = 480 - 50 - 215 = 215	);	port(		-- WISHBONE SYSCON signals		clk_i  : in std_logic;		                   	-- master clock in		arst_i : in std_logic := '1';               -- asynchronous active low reset		rst_i  : in std_logic := '0';               -- synchronous active high reset		-- WISHBONE SLAVE signals		cyc_i : in std_logic;                       -- valid bus cycle input		stb_i : in std_logic;                       -- strobe/core select input		ack_o : out std_logic;                      -- strobe acknowledge output		rty_o : out std_logic;                      -- retry output		err_o : out std_logic;                      -- error output		adr_i : in unsigned(6 downto 2);            -- A6 = '1' ATA devices selected		                                            --          A5 = '1' CS1- asserted, '0' CS0- asserted		                                            --          A4..A2 ATA address lines		                                            -- A6 = '0' ATA controller selected		dat_i  : in std_logic_vector(31 downto 0);  -- Databus in		dat_o  : out std_logic_vector(31 downto 0); -- Databus out		sel_i  : in std_logic_vector(3 downto 0);   -- Byte select signals		we_i   : in std_logic;                      -- Write enable input		inta_o : out std_logic;                     -- interrupt request signal IDE0		-- PIO control input		PIOsel     : buffer std_logic;		PIOtip,                                         -- PIO transfer in progress		PIOack     : in std_logic;                      -- PIO acknowledge signal		PIOq       : in std_logic_vector(15 downto 0);  -- PIO data input		PIOpp_full : in std_logic;                      -- PIO write-ping-pong buffers full		irq        : in std_logic;                      -- interrupt signal input		-- DMA control inputs		DMAsel    : out std_logic;		DMAtip,                                     -- DMA transfer in progress		DMAack,		DMARxEmpty,                                 -- DMA receive buffer empty		DMATxFull,                                  -- DMA transmit buffer full		DMA_dmarq : in std_logic;                   -- wishbone DMA request		DMAq      : in std_logic_vector(31 downto 0);		-- outputs		-- control register outputs		IDEctrl_rst,		IDEctrl_IDEen,		IDEctrl_FATR1,		IDEctrl_FATR0,		IDEctrl_ppen,		DMActrl_DMAen,		DMActrl_dir,		DMActrl_BeLeC0,		DMActrl_BeLeC1 : out std_logic;		-- CMD port timing registers		PIO_cmdport_T1,		PIO_cmdport_T2,		PIO_cmdport_T4,		PIO_cmdport_Teoc    : buffer unsigned(7 downto 0);		PIO_cmdport_IORDYen : out std_logic;		-- data-port0 timing registers		PIO_dport0_T1,		PIO_dport0_T2,		PIO_dport0_T4,		PIO_dport0_Teoc    : buffer unsigned(7 downto 0);		PIO_dport0_IORDYen : out std_logic;		-- data-port1 timing registers		PIO_dport1_T1,		PIO_dport1_T2,		PIO_dport1_T4,		PIO_dport1_Teoc    : buffer unsigned(7 downto 0);		PIO_dport1_IORDYen : out std_logic;		-- DMA device0 timing registers		DMA_dev0_Tm,		DMA_dev0_Td,		DMA_dev0_Teoc    : buffer unsigned(7 downto 0);		-- DMA device1 timing registers		DMA_dev1_Tm,		DMA_dev1_Td,		DMA_dev1_Teoc    : buffer unsigned(7 downto 0)	);	end component atahost_wb_slave;	component atahost_controller is	generic(		TWIDTH : natural := 8;                   -- counter width		-- PIO mode 0 settings (@100MHz clock)		PIO_mode0_T1 : natural := 6;             -- 70ns		PIO_mode0_T2 : natural := 28;            -- 290ns		PIO_mode0_T4 : natural := 2;             -- 30ns		PIO_mode0_Teoc : natural := 23;          -- 240ns ==> T0 - T1 - T2 = 600 - 70 - 290 = 240		-- Multiword DMA mode 0 settings (@100MHz clock)		DMA_mode0_Tm : natural := 4;             -- 50ns		DMA_mode0_Td : natural := 21;            -- 215ns		DMA_mode0_Teoc : natural := 21           -- 215ns ==> T0 - Td - Tm = 480 - 50 - 215 = 215	);	port(		clk : in std_logic;  		                    	  -- master clock in		nReset	: in std_logic := '1';                 -- asynchronous active low reset		rst : in std_logic := '0';                    -- synchronous active high reset				irq : out std_logic;                          -- interrupt request signal		-- control / registers		IDEctrl_IDEen,		IDEctrl_rst,		IDEctrl_ppen,		IDEctrl_FATR0,		IDEctrl_FATR1 : in std_logic;                 -- control register settings		a  : in unsigned(3 downto 0);                 -- address input		d  : in std_logic_vector(31 downto 0);        -- data input		we : in std_logic;                            -- write enable input '1'=write, '0'=read		-- PIO registers

⌨️ 快捷键说明

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