Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
f0334694
Commit
f0334694
authored
2 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Move func_eth_tester_gn_index_*() functions from tb to component package.
parent
2df3a4c1
No related branches found
No related tags found
1 merge request
!292
Use default 0 for nxt_info to avoid X to decimal conversion error in sim_io.py...
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/io/eth/src/vhdl/eth_tester_pkg.vhd
+67
-1
67 additions, 1 deletion
libraries/io/eth/src/vhdl/eth_tester_pkg.vhd
libraries/io/eth/tb/vhdl/tb_eth_tester_pkg.vhd
+0
-20
0 additions, 20 deletions
libraries/io/eth/tb/vhdl/tb_eth_tester_pkg.vhd
with
67 additions
and
21 deletions
libraries/io/eth/src/vhdl/eth_tester_pkg.vhd
+
67
−
1
View file @
f0334694
...
@@ -35,6 +35,11 @@ PACKAGE eth_tester_pkg is
...
@@ -35,6 +35,11 @@ PACKAGE eth_tester_pkg is
CONSTANT
c_eth_tester_rx_block_len_max
:
NATURAL
:
=
c_network_eth_payload_jumbo_max
+
c_network_eth_crc_len
;
-- 9004 octets
CONSTANT
c_eth_tester_rx_block_len_max
:
NATURAL
:
=
c_network_eth_payload_jumbo_max
+
c_network_eth_crc_len
;
-- 9004 octets
CONSTANT
c_eth_tester_eth_packet_len_max
:
NATURAL
:
=
c_network_eth_word_align_len
+
c_network_eth_frame_jumbo_max
;
-- 9020 octets = 2 word align + 14 header + 9000 + 4 crc
CONSTANT
c_eth_tester_eth_packet_len_max
:
NATURAL
:
=
c_network_eth_word_align_len
+
c_network_eth_frame_jumbo_max
;
-- 9020 octets = 2 word align + 14 header + 9000 + 4 crc
-- Support maximum (2**31-1)/200e6 = 10.7 s BG sync interval for sync timeout
-- in BSN monitors, assuming st_clk at 200 MHz and with maximum NATURAL value
-- of c_natural_high = 2**31 - 1.
CONSTANT
c_eth_tester_sync_timeout
:
NATURAL
:
=
c_natural_high
;
-- hdr_field_sel bit selects where the hdr_field value is set:
-- hdr_field_sel bit selects where the hdr_field value is set:
-- . 0 = data path controlled, value is set in data path, so field_default()
-- . 0 = data path controlled, value is set in data path, so field_default()
-- is not used.
-- is not used.
...
@@ -92,7 +97,7 @@ PACKAGE eth_tester_pkg is
...
@@ -92,7 +97,7 @@ PACKAGE eth_tester_pkg is
CONSTANT
c_eth_tester_app_hdr_len
:
NATURAL
:
=
12
;
-- octets
CONSTANT
c_eth_tester_app_hdr_len
:
NATURAL
:
=
12
;
-- octets
--
Destinations
:
--
Source ETH MAC/IP/UDP
:
-- . MAC address 00:22:86:08:pp:qq = UNB_ETH_SRC_MAC_BASE in
-- . MAC address 00:22:86:08:pp:qq = UNB_ETH_SRC_MAC_BASE in
-- libraries/unb_osy/unbos_eth.h, pp = backplane ID, qq = node ID
-- libraries/unb_osy/unbos_eth.h, pp = backplane ID, qq = node ID
-- . IP address 10.99.xx.yy = g_base_ip in ctrl_unb2#_board.vhd used in
-- . IP address 10.99.xx.yy = g_base_ip in ctrl_unb2#_board.vhd used in
...
@@ -116,6 +121,15 @@ PACKAGE eth_tester_pkg is
...
@@ -116,6 +121,15 @@ PACKAGE eth_tester_pkg is
app
:
t_eth_tester_app_header
;
app
:
t_eth_tester_app_header
;
END
RECORD
;
END
RECORD
;
-- Map global node index on UniBoard2 to node src MAC, IP and UDP port
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
-- default use 1GbE port I
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
-- default use 1GbE port I
FUNCTION
func_eth_tester_gn_index_to_udp_7_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
FUNCTION
func_eth_tester_gn_index_to_udp_7_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
-- default use 1GbE port I
-- Map packet header fields to t_eth_tester_header record
FUNCTION
func_eth_tester_map_header
(
hdr_fields_raw
:
STD_LOGIC_VECTOR
)
RETURN
t_eth_tester_header
;
FUNCTION
func_eth_tester_map_header
(
hdr_fields_raw
:
STD_LOGIC_VECTOR
)
RETURN
t_eth_tester_header
;
END
eth_tester_pkg
;
END
eth_tester_pkg
;
...
@@ -123,6 +137,58 @@ END eth_tester_pkg;
...
@@ -123,6 +137,58 @@ END eth_tester_pkg;
PACKAGE
BODY
eth_tester_pkg
IS
PACKAGE
BODY
eth_tester_pkg
IS
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
-- Assume gn_index < 256.
-- Use default address for 1GbE II (eth_port_index = 0) and
-- an address offset for 1GbE II (eth_port_index = 1)
CONSTANT
c_unb_nr
:
NATURAL
:
=
gn_index
/
c_4
;
-- 4 PN per Uniboard2
CONSTANT
c_node_nr
:
NATURAL
:
=
gn_index
MOD
c_4
;
CONSTANT
c_offset
:
NATURAL
:
=
eth_port_index
*
c_4
;
CONSTANT
c_mac_15_0
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
c_unb_nr
,
8
)
&
TO_UVEC
(
c_node_nr
+
c_offset
,
8
);
BEGIN
RETURN
c_mac_15_0
;
END
func_eth_tester_gn_index_to_mac_15_0
;
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
BEGIN
RETURN
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
,
0
);
-- default use 1GbE port I
END
func_eth_tester_gn_index_to_mac_15_0
;
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
-- Assume gn_index < 256.
-- Use default address for 1GbE II (eth_port_index = 0) and
-- an address offset for 1GbE II (eth_port_index = 1)
CONSTANT
c_unb_nr
:
NATURAL
:
=
gn_index
/
c_4
;
-- 4 PN per Uniboard2
CONSTANT
c_node_nr
:
NATURAL
:
=
gn_index
MOD
c_4
;
CONSTANT
c_offset
:
NATURAL
:
=
eth_port_index
*
c_4
;
CONSTANT
c_ip_15_0
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
c_unb_nr
,
8
)
&
TO_UVEC
(
c_node_nr
+
1
+
c_offset
,
8
);
-- +1 to avoid IP = *.*.*.0
BEGIN
RETURN
c_ip_15_0
;
END
func_eth_tester_gn_index_to_ip_15_0
;
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
BEGIN
RETURN
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
,
0
);
-- default use 1GbE port I
END
func_eth_tester_gn_index_to_ip_15_0
;
FUNCTION
func_eth_tester_gn_index_to_udp_7_0
(
gn_index
:
NATURAL
;
eth_port_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
-- Assume gn_index < 128.
-- Use default udp port for 1GbE I (eth_port_index = 0) and
-- an increment udp port for 1GbE II (eth_port_index = 1)
CONSTANT
c_offset
:
NATURAL
:
=
eth_port_index
*
c_128
;
-- MSbit 7
CONSTANT
c_udp_7_0
:
STD_LOGIC_VECTOR
(
7
DOWNTO
0
)
:
=
TO_UVEC
(
gn_index
+
c_offset
,
8
);
BEGIN
RETURN
c_udp_7_0
;
END
func_eth_tester_gn_index_to_udp_7_0
;
FUNCTION
func_eth_tester_gn_index_to_udp_7_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
BEGIN
RETURN
func_eth_tester_gn_index_to_udp_7_0
(
gn_index
,
0
);
-- default use 1GbE port I
END
func_eth_tester_gn_index_to_udp_7_0
;
FUNCTION
func_eth_tester_map_header
(
hdr_fields_raw
:
STD_LOGIC_VECTOR
)
RETURN
t_eth_tester_header
IS
FUNCTION
func_eth_tester_map_header
(
hdr_fields_raw
:
STD_LOGIC_VECTOR
)
RETURN
t_eth_tester_header
IS
VARIABLE
v
:
t_eth_tester_header
;
VARIABLE
v
:
t_eth_tester_header
;
BEGIN
BEGIN
...
...
This diff is collapsed.
Click to expand it.
libraries/io/eth/tb/vhdl/tb_eth_tester_pkg.vhd
+
0
−
20
View file @
f0334694
...
@@ -39,10 +39,6 @@ PACKAGE tb_eth_tester_pkg is
...
@@ -39,10 +39,6 @@ PACKAGE tb_eth_tester_pkg is
CONSTANT
c_eth_tester_ip_dst_addr
:
STD_LOGIC_VECTOR
(
31
DOWNTO
0
)
:
=
x"0A6300FE"
;
-- 0A6300FE = '10.99.0.254' = DOP36-enp2s0
CONSTANT
c_eth_tester_ip_dst_addr
:
STD_LOGIC_VECTOR
(
31
DOWNTO
0
)
:
=
x"0A6300FE"
;
-- 0A6300FE = '10.99.0.254' = DOP36-enp2s0
CONSTANT
c_eth_tester_udp_dst_port
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
6001
,
16
);
-- 0x1771 = 6001
CONSTANT
c_eth_tester_udp_dst_port
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
6001
,
16
);
-- 0x1771 = 6001
-- Map global node index on UniBoard2 to node MAC address and node IP address
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
;
-- Ethernet packet length in octets inclduing eth header and CRC
-- Ethernet packet length in octets inclduing eth header and CRC
FUNCTION
func_eth_tester_eth_packet_length
(
block_len
:
NATURAL
)
RETURN
NATURAL
;
FUNCTION
func_eth_tester_eth_packet_length
(
block_len
:
NATURAL
)
RETURN
NATURAL
;
...
@@ -54,22 +50,6 @@ END tb_eth_tester_pkg;
...
@@ -54,22 +50,6 @@ END tb_eth_tester_pkg;
PACKAGE
BODY
tb_eth_tester_pkg
IS
PACKAGE
BODY
tb_eth_tester_pkg
IS
FUNCTION
func_eth_tester_gn_index_to_mac_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
CONSTANT
c_unb_nr
:
NATURAL
:
=
gn_index
/
4
;
-- 4 PN per Uniboard2
CONSTANT
c_node_nr
:
NATURAL
:
=
gn_index
MOD
4
;
CONSTANT
c_mac_15_0
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
c_unb_nr
,
8
)
&
TO_UVEC
(
c_node_nr
,
8
);
BEGIN
RETURN
c_mac_15_0
;
END
func_eth_tester_gn_index_to_mac_15_0
;
FUNCTION
func_eth_tester_gn_index_to_ip_15_0
(
gn_index
:
NATURAL
)
RETURN
STD_LOGIC_VECTOR
IS
CONSTANT
c_unb_nr
:
NATURAL
:
=
gn_index
/
4
;
-- 4 PN per Uniboard2
CONSTANT
c_node_nr
:
NATURAL
:
=
gn_index
MOD
4
;
CONSTANT
c_ip_15_0
:
STD_LOGIC_VECTOR
(
15
DOWNTO
0
)
:
=
TO_UVEC
(
c_unb_nr
,
8
)
&
TO_UVEC
(
c_node_nr
+
1
,
8
);
-- +1 to avoid IP = *.*.*.0
BEGIN
RETURN
c_ip_15_0
;
END
func_eth_tester_gn_index_to_ip_15_0
;
FUNCTION
func_eth_tester_eth_packet_length
(
block_len
:
NATURAL
)
RETURN
NATURAL
IS
FUNCTION
func_eth_tester_eth_packet_length
(
block_len
:
NATURAL
)
RETURN
NATURAL
IS
CONSTANT
c_app_len
:
NATURAL
:
=
c_eth_tester_app_hdr_len
+
block_len
;
CONSTANT
c_app_len
:
NATURAL
:
=
c_eth_tester_app_hdr_len
+
block_len
;
CONSTANT
c_udp_len
:
NATURAL
:
=
c_network_udp_header_len
+
c_app_len
;
CONSTANT
c_udp_len
:
NATURAL
:
=
c_network_udp_header_len
+
c_app_len
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment