diff options
Diffstat (limited to 'rtl/wb2axip/axlite_wrapper.vhd')
| -rw-r--r-- | rtl/wb2axip/axlite_wrapper.vhd | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/rtl/wb2axip/axlite_wrapper.vhd b/rtl/wb2axip/axlite_wrapper.vhd new file mode 100644 index 0000000..591d56d --- /dev/null +++ b/rtl/wb2axip/axlite_wrapper.vhd @@ -0,0 +1,136 @@ +-------------------------------------------------------------------------------- +-- +-- Filename: axlite_wrapper.vhd +-- +-- Project: WB2AXIPSP: bus bridges and other odds and ends +-- +-- Purpose: When wrapped with this wrapper, the axlite2wbsp.v core was +-- verified to work in FPGA silicon via Vivado. +-- +-- Thank you Ambroz for donating this code! +-- +-- Creator: Ambroz Bizjak +-- +-------------------------------------------------------------------------------- +-- +-- Copyright (C) 2019-2023, Gisselquist Technology, LLC +-- +-- This file is part of the WB2AXIP project. +-- +-- The WB2AXIP project contains free software and gateware, licensed under the +-- Apache License, Version 2.0 (the "License"). You may not use this project, +-- or this file, except in compliance with the License. You may obtain a copy +-- of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +-- License for the specific language governing permissions and limitations +-- under the License. +-- +-------------------------------------------------------------------------------- +-- +-- +library IEEE; +use IEEE.STD_LOGIC_1164.ALL; + +entity axlite2wbsp_wrapper is + generic ( + C_AXI_ADDR_WIDTH : integer := 28; + LGFIFO : integer := 4; + F_MAXSTALL : integer := 3; + F_MAXDELAY : integer := 3; + + --- Must not be changed. + C_AXI_DATA_WIDTH : integer := 32 + ); + port ( + s_axi_aclk : in std_logic; + s_axi_aresetn : in std_logic; + + s_axi_awready : out std_logic; + s_axi_awaddr : in std_logic_vector(C_AXI_ADDR_WIDTH-1 downto 0); + s_axi_awcache : in std_logic_vector(3 downto 0); + s_axi_awprot : in std_logic_vector(2 downto 0); + s_axi_awvalid : in std_logic; + s_axi_wready : out std_logic; + s_axi_wdata : in std_logic_vector(C_AXI_DATA_WIDTH-1 downto 0); + s_axi_wstrb : in std_logic_vector(C_AXI_DATA_WIDTH/8-1 downto 0); + s_axi_wvalid : in std_logic; + s_axi_bresp : out std_logic_vector(1 downto 0); + s_axi_bvalid : out std_logic; + s_axi_bready : in std_logic; + s_axi_arready : out std_logic; + s_axi_araddr : in std_logic_vector(C_AXI_ADDR_WIDTH-1 downto 0); + s_axi_arcache : in std_logic_vector(3 downto 0); + s_axi_arprot : in std_logic_vector(2 downto 0); + s_axi_arvalid : in std_logic; + s_axi_rresp : out std_logic_vector(1 downto 0); + s_axi_rvalid : out std_logic; + s_axi_rdata : out std_logic_vector(C_AXI_DATA_WIDTH-1 downto 0); + s_axi_rready : in std_logic; + + m_wb_reset : out std_logic; + m_wb_cyc : out std_logic; + m_wb_stb : out std_logic; + m_wb_we : out std_logic; + m_wb_adr : out std_logic_vector(C_AXI_ADDR_WIDTH-2-1 downto 0); + m_wb_dat_w : out std_logic_vector(C_AXI_DATA_WIDTH-1 downto 0); + m_wb_sel : out std_logic_vector(C_AXI_DATA_WIDTH/8-1 downto 0); + m_wb_ack : in std_logic; + m_wb_stall : in std_logic; + m_wb_dat_r : in std_logic_vector(C_AXI_DATA_WIDTH-1 downto 0); + m_wb_err : in std_logic + ); +end axlite2wbsp_wrapper; + +architecture Behavioral of axlite2wbsp_wrapper is + +begin + axlite2wbsp : entity work.axlite2wbsp + generic map ( + C_AXI_ADDR_WIDTH => C_AXI_ADDR_WIDTH, + LGFIFO => LGFIFO, + F_MAXSTALL => F_MAXSTALL, + F_MAXDELAY => F_MAXDELAY + ) + port map ( + i_clk => s_axi_aclk, + i_axi_reset_n => s_axi_aresetn, + o_axi_awready => s_axi_awready, + i_axi_awaddr => s_axi_awaddr, + i_axi_awcache => s_axi_awcache, + i_axi_awprot => s_axi_awprot, + i_axi_awvalid => s_axi_awvalid, + o_axi_wready => s_axi_wready, + i_axi_wdata => s_axi_wdata, + i_axi_wstrb => s_axi_wstrb, + i_axi_wvalid => s_axi_wvalid, + o_axi_bresp => s_axi_bresp, + o_axi_bvalid => s_axi_bvalid, + i_axi_bready => s_axi_bready, + o_axi_arready => s_axi_arready, + i_axi_araddr => s_axi_araddr, + i_axi_arcache => s_axi_arcache, + i_axi_arprot => s_axi_arprot, + i_axi_arvalid => s_axi_arvalid, + o_axi_rresp => s_axi_rresp, + o_axi_rvalid => s_axi_rvalid, + o_axi_rdata => s_axi_rdata, + i_axi_rready => s_axi_rready, + o_reset => m_wb_reset, + o_wb_cyc => m_wb_cyc, + o_wb_stb => m_wb_stb, + o_wb_we => m_wb_we, + o_wb_addr => m_wb_adr, + o_wb_data => m_wb_dat_w, + o_wb_sel => m_wb_sel, + i_wb_ack => m_wb_ack, + i_wb_stall => m_wb_stall, + i_wb_data => m_wb_dat_r, + i_wb_err => m_wb_err + ); + +end Behavioral; |
