52 lines
2.0 KiB
VHDL
52 lines
2.0 KiB
VHDL
-------------------------------------------------------------------------------
|
|
-- Title : AW Router Pkg
|
|
-- Project : AXI-3 Crossbar Switch
|
|
-------------------------------------------------------------------------------
|
|
-- File : master2slave/axi3-interconnect-aw-route_pkg.vhd
|
|
-- Author : Mario Hüttel <mario.huettel@gmx.net>
|
|
-- Standard : VHDL'93/02
|
|
-------------------------------------------------------------------------------
|
|
-- Description:
|
|
-------------------------------------------------------------------------------
|
|
-- Copyright (c) 2016
|
|
--
|
|
-- This file is part of AXI-3 Crossbar Switch.
|
|
--
|
|
-- AXI-3 Crossabr Switch 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, version 2 of the License.
|
|
--
|
|
-- This code is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU General Public License
|
|
-- along with this code. If not, see <http://www.gnu.org/licenses/>.
|
|
--
|
|
-------------------------------------------------------------------------------
|
|
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
use work.axi3intercon_pkg.all;
|
|
|
|
package axi_aw_router_pkg is
|
|
type axi_aw_masters_in_t is array (natural range <>) of master_aw_in_t;
|
|
type axi_aw_masters_out_t is array (natural range <>) of master_aw_out_t;
|
|
type axi_aw_slaves_out_t is array (natural range <>) of slave_aw_out_t;
|
|
type axi_aw_slaves_in_t is array (natural range <>) of slave_aw_in_t;
|
|
|
|
type write_lock_t is record
|
|
locked : std_logic;
|
|
slave_idx : integer range 0 to SLAVE_COUNT;
|
|
end record write_lock_t;
|
|
|
|
type write_locks_t is array (natural range <>) of write_lock_t;
|
|
subtype write_releases_t is std_logic_vector(0 to MASTER_COUNT - 1);
|
|
|
|
end package axi_aw_router_pkg;
|
|
|
|
-- package body filename is
|
|
-- end package body filename;
|