2017-05-17 08:44:52 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Each core or library found in this collection may have its own licensing terms.
|
|
|
|
// The user should keep this in in mind while exploring these cores.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms,
|
|
|
|
// with or without modification of this file, are permitted under the terms of either
|
|
|
|
// (at the option of the user):
|
|
|
|
//
|
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
|
|
|
// Free Software Foundation, which can be found in the top level directory, or at:
|
|
|
|
// https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
|
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
|
|
|
// 2. An ADI specific BSD license as noted in the top level directory, or on-line at:
|
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/dev/LICENSE
|
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
2015-06-26 09:04:19 +00:00
|
|
|
-- ***************************************************************************
|
|
|
|
-- ***************************************************************************
|
|
|
|
-- Copyright 2013(c) Analog Devices, Inc.
|
|
|
|
-- Author: Lars-Peter Clausen <lars-peter.clausen@analog.com>
|
|
|
|
--
|
|
|
|
-- All rights reserved.
|
|
|
|
--
|
|
|
|
-- Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
-- are permitted provided that the following conditions are met:
|
|
|
|
-- - Redistributions of source code must retain the above copyright
|
|
|
|
-- notice, this list of conditions and the following disclaimer.
|
|
|
|
-- - Redistributions in binary form must reproduce the above copyright
|
|
|
|
-- notice, this list of conditions and the following disclaimer in
|
|
|
|
-- the documentation and/or other materials provided with the
|
|
|
|
-- distribution.
|
|
|
|
-- - Neither the name of Analog Devices, Inc. nor the names of its
|
|
|
|
-- contributors may be used to endorse or promote products derived
|
|
|
|
-- from this software without specific prior written permission.
|
|
|
|
-- - The use of this software may or may not infringe the patent rights
|
|
|
|
-- of one or more patent holders. This license does not release you
|
|
|
|
-- from the requirement that you obtain separate licenses from these
|
|
|
|
-- patent holders to use this software.
|
|
|
|
-- - Use of the software either in source or binary form, must be run
|
|
|
|
-- on or directly connected to an Analog Devices Inc. component.
|
|
|
|
--
|
|
|
|
-- THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
-- INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
-- PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
--
|
|
|
|
-- IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY
|
|
|
|
-- RIGHTS, 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.
|
|
|
|
-- ***************************************************************************
|
|
|
|
-- ***************************************************************************
|
|
|
|
|
|
|
|
library ieee;
|
|
|
|
use ieee.std_logic_1164.all;
|
|
|
|
use ieee.numeric_std.all;
|
|
|
|
|
|
|
|
entity axi_ctrlif is
|
|
|
|
generic
|
|
|
|
(
|
|
|
|
C_NUM_REG : integer := 32;
|
|
|
|
C_S_AXI_DATA_WIDTH : integer := 32;
|
|
|
|
C_S_AXI_ADDR_WIDTH : integer := 32;
|
|
|
|
C_FAMILY : string := "virtex6"
|
|
|
|
);
|
|
|
|
port
|
|
|
|
(
|
|
|
|
-- AXI bus interface
|
2017-04-13 07:03:44 +00:00
|
|
|
s_axi_aclk : in std_logic;
|
|
|
|
s_axi_aresetn : in std_logic;
|
|
|
|
s_axi_awaddr : in std_logic_vector(C_S_AXI_ADDR_WIDTH-1 downto 0);
|
|
|
|
s_axi_awvalid : in std_logic;
|
|
|
|
s_axi_wdata : in std_logic_vector(C_S_AXI_DATA_WIDTH-1 downto 0);
|
|
|
|
s_axi_wstrb : in std_logic_vector((C_S_AXI_DATA_WIDTH/8)-1 downto 0);
|
|
|
|
s_axi_wvalid : in std_logic;
|
|
|
|
s_axi_bready : in std_logic;
|
|
|
|
s_axi_araddr : in std_logic_vector(C_S_AXI_ADDR_WIDTH-1 downto 0);
|
|
|
|
s_axi_arvalid : in std_logic;
|
|
|
|
s_axi_rready : in std_logic;
|
|
|
|
s_axi_arready : out std_logic;
|
|
|
|
s_axi_rdata : out std_logic_vector(C_S_AXI_DATA_WIDTH-1 downto 0);
|
|
|
|
s_axi_rresp : out std_logic_vector(1 downto 0);
|
|
|
|
s_axi_rvalid : out std_logic;
|
|
|
|
s_axi_wready : out std_logic;
|
|
|
|
s_axi_bresp : out std_logic_vector(1 downto 0);
|
|
|
|
s_axi_bvalid : out std_logic;
|
|
|
|
s_axi_awready : out std_logic;
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
rd_addr : out integer range 0 to C_NUM_REG - 1;
|
|
|
|
rd_data : in std_logic_vector(C_S_AXI_DATA_WIDTH-1 downto 0);
|
|
|
|
rd_ack : out std_logic;
|
|
|
|
rd_stb : in std_logic;
|
|
|
|
|
|
|
|
wr_addr : out integer range 0 to C_NUM_REG - 1;
|
|
|
|
wr_data : out std_logic_vector(C_S_AXI_DATA_WIDTH-1 downto 0);
|
|
|
|
wr_ack : in std_logic;
|
|
|
|
wr_stb : out std_logic
|
|
|
|
);
|
|
|
|
end entity axi_ctrlif;
|
|
|
|
|
|
|
|
|
|
|
|
architecture Behavioral of axi_ctrlif is
|
|
|
|
type state_type is (IDLE, RESP, ACK);
|
|
|
|
signal rd_state : state_type;
|
|
|
|
signal wr_state : state_type;
|
|
|
|
begin
|
2017-04-13 07:03:44 +00:00
|
|
|
process (s_axi_aclk)
|
2015-06-26 09:04:19 +00:00
|
|
|
begin
|
2017-04-13 07:03:44 +00:00
|
|
|
if rising_edge(s_axi_aclk) then
|
|
|
|
if s_axi_aresetn = '0' then
|
2015-06-26 09:04:19 +00:00
|
|
|
rd_state <= IDLE;
|
|
|
|
else
|
|
|
|
case rd_state is
|
|
|
|
when IDLE =>
|
2017-04-13 07:03:44 +00:00
|
|
|
if s_axi_arvalid = '1' then
|
2015-06-26 09:04:19 +00:00
|
|
|
rd_state <= RESP;
|
2017-04-13 07:03:44 +00:00
|
|
|
rd_addr <= to_integer(unsigned(s_axi_araddr((C_S_AXI_ADDR_WIDTH-1) downto 2)));
|
2015-06-26 09:04:19 +00:00
|
|
|
end if;
|
|
|
|
when RESP =>
|
2017-04-13 07:03:44 +00:00
|
|
|
if rd_stb = '1' and s_axi_rready = '1' then
|
2015-06-26 09:04:19 +00:00
|
|
|
rd_state <= IDLE;
|
|
|
|
end if;
|
|
|
|
when others => null;
|
|
|
|
end case;
|
|
|
|
end if;
|
|
|
|
end if;
|
|
|
|
end process;
|
|
|
|
|
2017-04-13 07:03:44 +00:00
|
|
|
s_axi_arready <= '1' when rd_state = IDLE else '0';
|
|
|
|
s_axi_rvalid <= '1' when rd_state = RESP and rd_stb = '1' else '0';
|
|
|
|
s_axi_rresp <= "00";
|
|
|
|
rd_ack <= '1' when rd_state = RESP and s_axi_rready = '1' else '0';
|
|
|
|
s_axi_rdata <= rd_data;
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2017-04-13 07:03:44 +00:00
|
|
|
process (s_axi_aclk)
|
2015-06-26 09:04:19 +00:00
|
|
|
begin
|
2017-04-13 07:03:44 +00:00
|
|
|
if rising_edge(s_axi_aclk) then
|
|
|
|
if s_axi_aresetn = '0' then
|
2015-06-26 09:04:19 +00:00
|
|
|
wr_state <= IDLE;
|
|
|
|
else
|
|
|
|
case wr_state is
|
|
|
|
when IDLE =>
|
2017-04-13 07:03:44 +00:00
|
|
|
if s_axi_awvalid = '1' and s_axi_wvalid = '1' and wr_ack = '1' then
|
2015-06-26 09:04:19 +00:00
|
|
|
wr_state <= ACK;
|
|
|
|
end if;
|
|
|
|
when ACK =>
|
|
|
|
wr_state <= RESP;
|
|
|
|
when RESP =>
|
2017-04-13 07:03:44 +00:00
|
|
|
if s_axi_bready = '1' then
|
2015-06-26 09:04:19 +00:00
|
|
|
wr_state <= IDLE;
|
|
|
|
end if;
|
|
|
|
end case;
|
|
|
|
end if;
|
|
|
|
end if;
|
|
|
|
end process;
|
|
|
|
|
2017-04-13 07:03:44 +00:00
|
|
|
wr_stb <= '1' when s_axi_awvalid = '1' and s_axi_wvalid = '1' and wr_state = IDLE else '0';
|
|
|
|
wr_data <= s_axi_wdata;
|
|
|
|
wr_addr <= to_integer(unsigned(s_axi_awaddr((C_S_AXI_ADDR_WIDTH-1) downto 2)));
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2017-04-13 07:03:44 +00:00
|
|
|
s_axi_awready <= '1' when wr_state = ACK else '0';
|
|
|
|
s_axi_wready <= '1' when wr_state = ACK else '0';
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2017-04-13 07:03:44 +00:00
|
|
|
s_axi_bresp <= "00";
|
|
|
|
s_axi_bvalid <= '1' when wr_state = RESP else '0';
|
2015-06-26 09:04:19 +00:00
|
|
|
end;
|