1 |
2 |
pjf |
--------------------------------------------------------------------------------
|
2 |
|
|
-- Company:
|
3 |
|
|
-- Engineer:
|
4 |
|
|
--
|
5 |
|
|
-- Create Date: 17:32:02 06/03/2011
|
6 |
|
|
-- Design Name:
|
7 |
|
|
-- Module Name: C:/Users/pjf/Documents/projects/fpga/xilinx/Network/ip1/IPv4_RX_tb.vhd
|
8 |
|
|
-- Project Name: ip1
|
9 |
|
|
-- Target Device:
|
10 |
|
|
-- Tool versions:
|
11 |
|
|
-- Description:
|
12 |
|
|
--
|
13 |
|
|
-- VHDL Test Bench Created by ISE for module: IPv4_RX
|
14 |
|
|
--
|
15 |
|
|
-- Dependencies:
|
16 |
|
|
--
|
17 |
|
|
-- Revision:
|
18 |
|
|
-- Revision 0.01 - File Created
|
19 |
|
|
-- Additional Comments:
|
20 |
|
|
--
|
21 |
|
|
-- Notes:
|
22 |
|
|
-- This testbench has been automatically generated using types std_logic and
|
23 |
|
|
-- std_logic_vector for the ports of the unit under test. Xilinx recommends
|
24 |
|
|
-- that these types always be used for the top-level I/O of a design in order
|
25 |
|
|
-- to guarantee that the testbench will bind correctly to the post-implementation
|
26 |
|
|
-- simulation model.
|
27 |
|
|
--------------------------------------------------------------------------------
|
28 |
|
|
library IEEE;
|
29 |
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
30 |
|
|
use IEEE.NUMERIC_STD.ALL;
|
31 |
|
|
use work.axi.all;
|
32 |
|
|
use work.ipv4_types.all;
|
33 |
|
|
use work.arp_types.all;
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
ENTITY IPv4_RX_tb IS
|
37 |
|
|
END IPv4_RX_tb;
|
38 |
|
|
|
39 |
|
|
ARCHITECTURE behavior OF IPv4_RX_tb IS
|
40 |
|
|
|
41 |
|
|
-- Component Declaration for the Unit Under Test (UUT)
|
42 |
|
|
|
43 |
|
|
COMPONENT IPv4_RX
|
44 |
|
|
PORT(
|
45 |
|
|
-- IP Layer signals
|
46 |
|
|
ip_rx : out ipv4_rx_type;
|
47 |
|
|
ip_rx_start : out std_logic; -- indicates receipt of ip frame.
|
48 |
|
|
-- system signals
|
49 |
|
|
clk : in STD_LOGIC; -- same clock used to clock mac data and ip data
|
50 |
|
|
reset : in STD_LOGIC;
|
51 |
|
|
our_ip_address : in STD_LOGIC_VECTOR (31 downto 0);
|
52 |
|
|
-- MAC layer RX signals
|
53 |
|
|
mac_data_in : in STD_LOGIC_VECTOR (7 downto 0); -- ethernet frame (from dst mac addr through to last byte of frame)
|
54 |
|
|
mac_data_in_valid : in STD_LOGIC; -- indicates data_in valid on clock
|
55 |
|
|
mac_data_in_last : in STD_LOGIC -- indicates last data in frame
|
56 |
|
|
);
|
57 |
|
|
END COMPONENT;
|
58 |
|
|
|
59 |
|
|
|
60 |
|
|
--Inputs
|
61 |
|
|
signal clk : std_logic := '0';
|
62 |
|
|
signal reset : std_logic := '0';
|
63 |
|
|
signal our_ip_address : std_logic_vector(31 downto 0) := (others => '0');
|
64 |
|
|
signal mac_data_in : std_logic_vector(7 downto 0) := (others => '0');
|
65 |
|
|
signal mac_data_in_valid : std_logic := '0';
|
66 |
|
|
signal mac_data_in_last : std_logic := '0';
|
67 |
|
|
|
68 |
|
|
--Outputs
|
69 |
|
|
signal ip_rx_start : std_logic;
|
70 |
|
|
signal ip_rx : ipv4_rx_type;
|
71 |
|
|
|
72 |
|
|
-- Clock period definitions
|
73 |
|
|
constant clk_period : time := 8 ns;
|
74 |
|
|
|
75 |
|
|
BEGIN
|
76 |
|
|
|
77 |
|
|
-- Instantiate the Unit Under Test (UUT)
|
78 |
|
|
uut: IPv4_RX PORT MAP (
|
79 |
|
|
ip_rx => ip_rx,
|
80 |
|
|
ip_rx_start => ip_rx_start,
|
81 |
|
|
clk => clk,
|
82 |
|
|
reset => reset,
|
83 |
|
|
our_ip_address => our_ip_address,
|
84 |
|
|
mac_data_in => mac_data_in,
|
85 |
|
|
mac_data_in_valid => mac_data_in_valid,
|
86 |
|
|
mac_data_in_last => mac_data_in_last
|
87 |
|
|
);
|
88 |
|
|
|
89 |
|
|
-- Clock process definitions
|
90 |
|
|
clk_process :process
|
91 |
|
|
begin
|
92 |
|
|
clk <= '0';
|
93 |
|
|
wait for clk_period/2;
|
94 |
|
|
clk <= '1';
|
95 |
|
|
wait for clk_period/2;
|
96 |
|
|
end process;
|
97 |
|
|
|
98 |
|
|
|
99 |
|
|
-- Stimulus process
|
100 |
|
|
stim_proc: process
|
101 |
|
|
begin
|
102 |
|
|
-- hold reset state for 100 ns.
|
103 |
|
|
wait for 100 ns;
|
104 |
|
|
|
105 |
|
|
our_ip_address <= x"c0a80509"; -- 192.168.5.9
|
106 |
|
|
mac_data_in_valid <= '0';
|
107 |
|
|
mac_data_in_last <= '0';
|
108 |
|
|
|
109 |
|
|
reset <= '1';
|
110 |
|
|
wait for clk_period*10;
|
111 |
|
|
reset <= '0';
|
112 |
|
|
wait for clk_period*5;
|
113 |
|
|
|
114 |
|
|
-- check reset conditions
|
115 |
|
|
assert ip_rx_start = '0' report "ip_rx_start not initialised correctly on reset";
|
116 |
|
|
assert ip_rx.hdr.is_valid = '0' report "ip_rx.hdr.is_valid not initialised correctly on reset";
|
117 |
|
|
assert ip_rx.hdr.protocol = x"00" report "ip_rx.hdr.protocol not initialised correctly on reset";
|
118 |
|
|
assert ip_rx.hdr.data_length = x"0000" report "ip_rx.hdr.data_length not initialised correctly on reset";
|
119 |
|
|
assert ip_rx.hdr.src_ip_addr = x"00000000" report "ip_rx.hdr.src_ip_addr not initialised correctly on reset";
|
120 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "ip_rx.hdr.num_frame_errors not initialised correctly on reset";
|
121 |
|
|
assert ip_rx.data.data_in = x"00" report "ip_rx.data.data_in not initialised correctly on reset";
|
122 |
|
|
assert ip_rx.data.data_in_valid = '0' report "ip_rx.data.data_in_valid not initialised correctly on reset";
|
123 |
|
|
assert ip_rx.data.data_in_last = '0' report "ip_rx.data.data_in_last not initialised correctly on reset";
|
124 |
|
|
|
125 |
|
|
-- insert stimulus here
|
126 |
|
|
|
127 |
|
|
------------
|
128 |
|
|
-- TEST 1 -- basic functional rx test with received ip pkt
|
129 |
|
|
------------
|
130 |
|
|
|
131 |
|
|
report "T1: Send an eth frame with IP pkt dst ip_address c0a80509, dst mac 002320212223";
|
132 |
|
|
|
133 |
|
|
mac_data_in_valid <= '1';
|
134 |
|
|
-- dst MAC (bc)
|
135 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
136 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
137 |
|
|
mac_data_in <= x"20"; wait for clk_period;
|
138 |
|
|
mac_data_in <= x"21"; wait for clk_period;
|
139 |
|
|
mac_data_in <= x"22"; wait for clk_period;
|
140 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
141 |
|
|
-- src MAC
|
142 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
143 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
144 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
145 |
|
|
mac_data_in <= x"29"; wait for clk_period;
|
146 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
147 |
|
|
mac_data_in <= x"7c"; wait for clk_period;
|
148 |
|
|
-- type
|
149 |
|
|
mac_data_in <= x"08"; wait for clk_period; -- IP pkt
|
150 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
151 |
|
|
-- ver & HL / service type
|
152 |
|
|
mac_data_in <= x"45"; wait for clk_period;
|
153 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
154 |
|
|
-- total len
|
155 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
156 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
157 |
|
|
-- ID
|
158 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
159 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
160 |
|
|
-- flags & frag
|
161 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
162 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
163 |
|
|
-- TTL
|
164 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
165 |
|
|
-- Protocol
|
166 |
|
|
mac_data_in <= x"11"; wait for clk_period;
|
167 |
|
|
-- Header CKS
|
168 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
169 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
170 |
|
|
-- SRC IP
|
171 |
|
|
mac_data_in <= x"c0"; wait for clk_period;
|
172 |
|
|
mac_data_in <= x"a8"; wait for clk_period;
|
173 |
|
|
mac_data_in <= x"05"; wait for clk_period;
|
174 |
|
|
mac_data_in <= x"01"; wait for clk_period;
|
175 |
|
|
-- DST IP
|
176 |
|
|
mac_data_in <= x"c0"; wait for clk_period;
|
177 |
|
|
mac_data_in <= x"a8"; wait for clk_period;
|
178 |
|
|
mac_data_in <= x"05"; wait for clk_period;
|
179 |
|
|
mac_data_in <= x"09"; wait for clk_period;
|
180 |
|
|
|
181 |
|
|
-- user data
|
182 |
|
|
mac_data_in <= x"24"; wait for clk_period;
|
183 |
|
|
|
184 |
|
|
assert ip_rx.hdr.is_valid = '1' report "T1: ip_rx.hdr.is_valid not set";
|
185 |
|
|
assert ip_rx.hdr.protocol = x"11" report "T1: ip_rx.hdr.protocol not set correctly";
|
186 |
|
|
assert ip_rx.hdr.data_length = x"0004" report "T1: ip_rx.hdr.data_length not set correctly";
|
187 |
|
|
assert ip_rx.hdr.src_ip_addr = x"c0a80501" report "T1: ip_rx.hdr.src_ip_addr not set correctly";
|
188 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T1: ip_rx.hdr.num_frame_errors not set correctly";
|
189 |
|
|
assert ip_rx.hdr.last_error_code = x"0" report "T1: ip_rx.hdr.last_error_code not set correctly";
|
190 |
6 |
pjf |
assert ip_rx.hdr.is_broadcast = '0' report "T1: ip_rx.hdr.is_broadcast should not be set";
|
191 |
2 |
pjf |
assert ip_rx_start = '1' report "T1: ip_rx_start not set";
|
192 |
|
|
assert ip_rx.data.data_in_valid = '1' report "T1: ip_rx.data.data_in_valid not set";
|
193 |
|
|
|
194 |
|
|
mac_data_in <= x"25"; wait for clk_period;
|
195 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
196 |
|
|
mac_data_in <= x"27"; mac_data_in_last <= '1';wait for clk_period;
|
197 |
|
|
|
198 |
|
|
assert ip_rx.data.data_in_last = '1' report "T1: ip_rx.data.data_in_last not set";
|
199 |
|
|
|
200 |
|
|
mac_data_in <= x"00";
|
201 |
|
|
mac_data_in_last <= '0';
|
202 |
|
|
mac_data_in_valid <= '0';
|
203 |
|
|
wait for clk_period;
|
204 |
|
|
|
205 |
|
|
assert ip_rx.data.data_in_valid = '0' report "T1: ip_rx.data.data_in_valid not cleared";
|
206 |
|
|
assert ip_rx.data.data_in_last = '0' report "T1: ip_rx.data.data_in_last not cleared";
|
207 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T1: ip_rx.hdr.num_frame_errors non zero at end of test";
|
208 |
|
|
assert ip_rx.hdr.last_error_code = x"0" report "T1: ip_rx.hdr.last_error_code indicates error at end of test";
|
209 |
|
|
assert ip_rx_start = '0' report "T1: ip_rx_start not cleared";
|
210 |
|
|
|
211 |
|
|
------------
|
212 |
|
|
-- TEST 2 -- basic functional rx test with received ip pkt that is not for us
|
213 |
|
|
------------
|
214 |
|
|
|
215 |
|
|
report "T2: Send an eth frame with IP pkt dst ip_address c0a80507, dst mac 002320212223";
|
216 |
|
|
|
217 |
|
|
mac_data_in_valid <= '1';
|
218 |
|
|
-- dst MAC (bc)
|
219 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
220 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
221 |
|
|
mac_data_in <= x"20"; wait for clk_period;
|
222 |
|
|
mac_data_in <= x"21"; wait for clk_period;
|
223 |
|
|
mac_data_in <= x"22"; wait for clk_period;
|
224 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
225 |
|
|
|
226 |
|
|
assert ip_rx.hdr.is_valid = '0' report "T2: ip_rx.hdr.is_valid remains set";
|
227 |
|
|
|
228 |
|
|
-- src MAC
|
229 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
230 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
231 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
232 |
|
|
mac_data_in <= x"29"; wait for clk_period;
|
233 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
234 |
|
|
mac_data_in <= x"7c"; wait for clk_period;
|
235 |
|
|
-- type
|
236 |
|
|
mac_data_in <= x"08"; wait for clk_period; -- IP pkt
|
237 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
238 |
|
|
-- ver & HL / service type
|
239 |
|
|
mac_data_in <= x"45"; wait for clk_period;
|
240 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
241 |
|
|
-- total len
|
242 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
243 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
244 |
|
|
-- ID
|
245 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
246 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
247 |
|
|
-- flags & frag
|
248 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
249 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
250 |
|
|
-- TTL
|
251 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
252 |
|
|
-- Protocol
|
253 |
|
|
mac_data_in <= x"11"; wait for clk_period;
|
254 |
|
|
-- Header CKS
|
255 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
256 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
257 |
|
|
-- SRC IP
|
258 |
|
|
mac_data_in <= x"c0"; wait for clk_period;
|
259 |
|
|
mac_data_in <= x"a8"; wait for clk_period;
|
260 |
|
|
mac_data_in <= x"05"; wait for clk_period;
|
261 |
|
|
mac_data_in <= x"02"; wait for clk_period;
|
262 |
|
|
-- DST IP
|
263 |
|
|
mac_data_in <= x"c0"; wait for clk_period;
|
264 |
|
|
mac_data_in <= x"a8"; wait for clk_period;
|
265 |
|
|
mac_data_in <= x"05"; wait for clk_period;
|
266 |
|
|
mac_data_in <= x"07"; wait for clk_period;
|
267 |
|
|
|
268 |
|
|
-- user data
|
269 |
|
|
mac_data_in <= x"24"; wait for clk_period;
|
270 |
|
|
|
271 |
|
|
assert ip_rx.hdr.is_valid = '1' report "T2: ip_rx.hdr.is_valid not set";
|
272 |
|
|
assert ip_rx.hdr.protocol = x"11" report "T2: ip_rx.hdr.protocol not set correctly";
|
273 |
|
|
assert ip_rx.hdr.data_length = x"0004" report "T2: ip_rx.hdr.data_length not set correctly";
|
274 |
|
|
assert ip_rx.hdr.src_ip_addr = x"c0a80502" report "T2: ip_rx.hdr.src_ip_addr not set correctly";
|
275 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T2: ip_rx.hdr.num_frame_errors not set correctly";
|
276 |
6 |
pjf |
assert ip_rx.hdr.is_broadcast = '0' report "T2: ip_rx.hdr.is_broadcast should not be set";
|
277 |
2 |
pjf |
assert ip_rx.hdr.last_error_code = x"0" report "T2: ip_rx.hdr.last_error_code not set correctly";
|
278 |
|
|
assert ip_rx_start = '0' report "T2: ip_rx_start set when pkt not for us";
|
279 |
|
|
assert ip_rx.data.data_in_valid = '0' report "T2: ip_rx.data.data_in_valid set when pkt not for us";
|
280 |
|
|
|
281 |
|
|
mac_data_in <= x"25"; wait for clk_period;
|
282 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
283 |
|
|
mac_data_in <= x"27"; mac_data_in_last <= '1';wait for clk_period;
|
284 |
|
|
|
285 |
|
|
assert ip_rx.data.data_in_last = '0' report "T2: ip_rx.data.data_in_last set";
|
286 |
|
|
|
287 |
|
|
mac_data_in <= x"00";
|
288 |
|
|
mac_data_in_last <= '0';
|
289 |
|
|
mac_data_in_valid <= '0';
|
290 |
|
|
wait for clk_period;
|
291 |
|
|
|
292 |
|
|
assert ip_rx.data.data_in_valid = '0' report "T2: ip_rx.data.data_in_valid not cleared";
|
293 |
|
|
assert ip_rx.data.data_in_last = '0' report "T2: ip_rx.data.data_in_last not cleared";
|
294 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T2: ip_rx.hdr.num_frame_errors non zero at end of test";
|
295 |
|
|
assert ip_rx.hdr.last_error_code = x"0" report "T2: ip_rx.hdr.last_error_code indicates error at end of test";
|
296 |
|
|
assert ip_rx_start = '0' report "T2: ip_rx_start not cleared";
|
297 |
|
|
|
298 |
6 |
pjf |
wait for clk_period*20;
|
299 |
|
|
|
300 |
|
|
|
301 |
|
|
------------
|
302 |
|
|
-- TEST 3 -- RX Broadcast pkt
|
303 |
|
|
------------
|
304 |
|
|
|
305 |
|
|
report "T3: Send an eth frame with IP pkt dst ip_address = BC, dst mac = BC";
|
306 |
|
|
|
307 |
|
|
mac_data_in_valid <= '1';
|
308 |
|
|
-- dst MAC (bc)
|
309 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
310 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
311 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
312 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
313 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
314 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
315 |
|
|
-- src MAC
|
316 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
317 |
|
|
mac_data_in <= x"23"; wait for clk_period;
|
318 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
319 |
|
|
mac_data_in <= x"29"; wait for clk_period;
|
320 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
321 |
|
|
mac_data_in <= x"7c"; wait for clk_period;
|
322 |
|
|
-- type
|
323 |
|
|
mac_data_in <= x"08"; wait for clk_period; -- IP pkt
|
324 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
325 |
|
|
-- ver & HL / service type
|
326 |
|
|
mac_data_in <= x"45"; wait for clk_period;
|
327 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
328 |
|
|
-- total len
|
329 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
330 |
|
|
mac_data_in <= x"18"; wait for clk_period;
|
331 |
|
|
-- ID
|
332 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
333 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
334 |
|
|
-- flags & frag
|
335 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
336 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
337 |
|
|
-- TTL
|
338 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
339 |
|
|
-- Protocol
|
340 |
|
|
mac_data_in <= x"11"; wait for clk_period;
|
341 |
|
|
-- Header CKS
|
342 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
343 |
|
|
mac_data_in <= x"00"; wait for clk_period;
|
344 |
|
|
-- SRC IP
|
345 |
|
|
mac_data_in <= x"c0"; wait for clk_period;
|
346 |
|
|
mac_data_in <= x"a8"; wait for clk_period;
|
347 |
|
|
mac_data_in <= x"05"; wait for clk_period;
|
348 |
|
|
mac_data_in <= x"01"; wait for clk_period;
|
349 |
|
|
-- DST IP
|
350 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
351 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
352 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
353 |
|
|
mac_data_in <= x"ff"; wait for clk_period;
|
354 |
|
|
|
355 |
|
|
-- user data
|
356 |
|
|
mac_data_in <= x"24"; wait for clk_period;
|
357 |
|
|
|
358 |
|
|
assert ip_rx.hdr.is_valid = '1' report "T3: ip_rx.hdr.is_valid not set";
|
359 |
|
|
assert ip_rx.hdr.protocol = x"11" report "T3: ip_rx.hdr.protocol not set correctly";
|
360 |
|
|
assert ip_rx.hdr.data_length = x"0004" report "T3: ip_rx.hdr.data_length not set correctly";
|
361 |
|
|
assert ip_rx.hdr.src_ip_addr = x"c0a80501" report "T3: ip_rx.hdr.src_ip_addr not set correctly";
|
362 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T3: ip_rx.hdr.num_frame_errors not set correctly";
|
363 |
|
|
assert ip_rx.hdr.is_broadcast = '1' report "T3: ip_rx.hdr.is_broadcast not set";
|
364 |
|
|
assert ip_rx.hdr.last_error_code = x"0" report "T3: ip_rx.hdr.last_error_code not set correctly";
|
365 |
|
|
assert ip_rx_start = '1' report "T3: ip_rx_start not set";
|
366 |
|
|
assert ip_rx.data.data_in_valid = '1' report "T3: ip_rx.data.data_in_valid not set";
|
367 |
|
|
|
368 |
|
|
mac_data_in <= x"25"; wait for clk_period;
|
369 |
|
|
mac_data_in <= x"26"; wait for clk_period;
|
370 |
|
|
mac_data_in <= x"27"; mac_data_in_last <= '1';wait for clk_period;
|
371 |
|
|
|
372 |
|
|
assert ip_rx.data.data_in_last = '1' report "T3: ip_rx.data.data_in_last not set";
|
373 |
|
|
|
374 |
|
|
mac_data_in <= x"00";
|
375 |
|
|
mac_data_in_last <= '0';
|
376 |
|
|
mac_data_in_valid <= '0';
|
377 |
|
|
wait for clk_period;
|
378 |
|
|
|
379 |
|
|
assert ip_rx.data.data_in_valid = '0' report "T3: ip_rx.data.data_in_valid not cleared";
|
380 |
|
|
assert ip_rx.data.data_in_last = '0' report "T3: ip_rx.data.data_in_last not cleared";
|
381 |
|
|
assert ip_rx.hdr.num_frame_errors = x"00" report "T3: ip_rx.hdr.num_frame_errors non zero at end of test";
|
382 |
|
|
assert ip_rx.hdr.last_error_code = x"0" report "T3: ip_rx.hdr.last_error_code indicates error at end of test";
|
383 |
|
|
assert ip_rx_start = '0' report "T3: ip_rx_start not cleared";
|
384 |
|
|
|
385 |
|
|
|
386 |
2 |
pjf |
report "--- end of tests ---";
|
387 |
|
|
|
388 |
|
|
wait;
|
389 |
|
|
end process;
|
390 |
|
|
|
391 |
|
|
END;
|