Skip to content
Snippets Groups Projects
Commit 1ee12a36 authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Using eth_statistics to make TB self-checking.

parent 3c4a0f5e
No related branches found
No related tags found
No related merge requests found
...@@ -36,46 +36,48 @@ END tb_arts_unb1_sc1_bg_1GbE; ...@@ -36,46 +36,48 @@ END tb_arts_unb1_sc1_bg_1GbE;
ARCHITECTURE tb OF tb_arts_unb1_sc1_bg_1GbE IS ARCHITECTURE tb OF tb_arts_unb1_sc1_bg_1GbE IS
CONSTANT c_sim : BOOLEAN := TRUE; CONSTANT c_sim : BOOLEAN := TRUE;
CONSTANT c_unb_nr : NATURAL := 0; -- UniBoard 0 CONSTANT c_unb_nr : NATURAL := 0; -- UniBoard 0
CONSTANT c_node_nr : NATURAL := 7; -- Back node 3 CONSTANT c_node_nr : NATURAL := 7; -- Back node 3
CONSTANT c_id : STD_LOGIC_VECTOR(7 DOWNTO 0) := TO_UVEC(c_unb_nr, c_unb1_board_nof_uniboard_w) & TO_UVEC(c_node_nr, c_unb1_board_nof_chip_w); CONSTANT c_id : STD_LOGIC_VECTOR(7 DOWNTO 0) := TO_UVEC(c_unb_nr, c_unb1_board_nof_uniboard_w) & TO_UVEC(c_node_nr, c_unb1_board_nof_chip_w);
CONSTANT c_version : STD_LOGIC_VECTOR(1 DOWNTO 0) := "00"; CONSTANT c_version : STD_LOGIC_VECTOR(1 DOWNTO 0) := "00";
CONSTANT c_fw_version : t_unb1_board_fw_version := (1, 0); CONSTANT c_fw_version : t_unb1_board_fw_version := (1, 0);
CONSTANT c_eth_clk_period : TIME := 40 ns; -- 25 MHz XO on UniBoard CONSTANT c_eth_clk_period : TIME := 40 ns; -- 25 MHz XO on UniBoard
CONSTANT c_clk_period : TIME := 5 ns; CONSTANT c_clk_period : TIME := 5 ns;
CONSTANT c_pps_period : NATURAL := 1000; CONSTANT c_pps_period : NATURAL := 1000;
-- DUT -- DUT
SIGNAL clk : STD_LOGIC := '0'; SIGNAL clk : STD_LOGIC := '0';
SIGNAL pps : STD_LOGIC := '0'; SIGNAL pps : STD_LOGIC := '0';
SIGNAL pps_rst : STD_LOGIC := '0'; SIGNAL pps_rst : STD_LOGIC := '0';
SIGNAL WDI : STD_LOGIC; SIGNAL WDI : STD_LOGIC;
SIGNAL INTA : STD_LOGIC; SIGNAL INTA : STD_LOGIC;
SIGNAL INTB : STD_LOGIC; SIGNAL INTB : STD_LOGIC;
SIGNAL eth_clk : STD_LOGIC := '0'; SIGNAL eth_clk : STD_LOGIC := '0';
SIGNAL VERSION : STD_LOGIC_VECTOR(c_unb1_board_aux.version_w-1 DOWNTO 0) := c_version; SIGNAL VERSION : STD_LOGIC_VECTOR(c_unb1_board_aux.version_w-1 DOWNTO 0) := c_version;
SIGNAL ID : STD_LOGIC_VECTOR(c_unb1_board_aux.id_w-1 DOWNTO 0) := c_id; SIGNAL ID : STD_LOGIC_VECTOR(c_unb1_board_aux.id_w-1 DOWNTO 0) := c_id;
SIGNAL TESTIO : STD_LOGIC_VECTOR(c_unb1_board_aux.testio_w-1 DOWNTO 0); SIGNAL TESTIO : STD_LOGIC_VECTOR(c_unb1_board_aux.testio_w-1 DOWNTO 0);
-- Ethernet stats -- Ethernet stats
SIGNAL eth_statistics_serial_in : STD_LOGIC; CONSTANT c_eth_check_nof_packets : NATURAL := 10;
SIGNAL eth_statistics_pkt_cnt : NATURAL; CONSTANT c_eth_packet_size : NATURAL := 1221; --(24 subbands*50 timesamples=) 1200 (2pols*16b=) 32b words + 21 header words
SIGNAL eth_statistics_pkt_len : NATURAL;
SIGNAL eth_statistics_serial_in : STD_LOGIC;
SIGNAL tb_end : STD_LOGIC;
BEGIN BEGIN
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
-- System setup -- System setup
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
clk <= NOT clk AFTER c_clk_period/2; -- External clock (200 MHz) clk <= NOT clk OR tb_end AFTER c_clk_period/2; -- External clock (200 MHz)
eth_clk <= NOT eth_clk AFTER c_eth_clk_period/2; -- Ethernet ref clock (25 MHz) eth_clk <= NOT eth_clk OR tb_end AFTER c_eth_clk_period/2; -- Ethernet ref clock (25 MHz)
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- External PPS -- External PPS
...@@ -106,12 +108,15 @@ BEGIN ...@@ -106,12 +108,15 @@ BEGIN
-- Verify proper DUT output using Ethernet packet statistics -- Verify proper DUT output using Ethernet packet statistics
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
u_eth_statistics : ENTITY eth_lib.eth_statistics u_eth_statistics : ENTITY eth_lib.eth_statistics
GENERIC MAP (
g_runtime_nof_packets => c_eth_check_nof_packets,
g_runtime_timeout => 1000000 ns,
g_check_nof_valid => TRUE,
g_check_nof_valid_ref => c_eth_check_nof_packets*c_eth_packet_size
)
PORT MAP ( PORT MAP (
eth_clk => eth_clk,
eth_serial_in => eth_statistics_serial_in, eth_serial_in => eth_statistics_serial_in,
tb_end => tb_end
pkt_cnt => eth_statistics_pkt_cnt,
pkt_len => eth_statistics_pkt_len
); );
END tb; END tb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment