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
bb7588be
Commit
bb7588be
authored
1 year ago
by
Reinier van der Walle
Browse files
Options
Downloads
Patches
Plain Diff
replaced if statement with generate statement
parent
02a9a4bf
No related branches found
Branches containing commit
No related tags found
1 merge request
!338
added ip checksum inserter + added generics to eth_tester for setting
Pipeline
#52849
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/eth/src/vhdl/eth_ip_header_checksum.vhd
+42
-24
42 additions, 24 deletions
libraries/io/eth/src/vhdl/eth_ip_header_checksum.vhd
with
42 additions
and
24 deletions
libraries/io/eth/src/vhdl/eth_ip_header_checksum.vhd
+
42
−
24
View file @
bb7588be
...
...
@@ -74,6 +74,7 @@ architecture rtl of eth_ip_header_checksum is
constant
c_hdr_nof_words
:
natural
:
=
ceil_div
(
c_hdr_len
,
g_data_w
);
constant
c_crc_word_span
:
natural
:
=
1
+
c_hdr_crc_word_hi
-
c_hdr_crc_word_lo
;
constant
c_crc_in_one_word
:
boolean
:
=
c_crc_word_span
=
1
;
signal
checksum
:
std_logic_vector
(
c_network_ip_header_checksum_w
-
1
downto
0
)
:
=
(
others
=>
'0'
);
signal
count
:
std_logic_vector
(
31
downto
0
);
...
...
@@ -92,34 +93,51 @@ begin
---------------------------------------------------
-- process to insert checksum in outgoing stream --
---------------------------------------------------
p_insert_crc
:
process
(
dp_pipeline_src_out
,
checksum
,
count
,
reg_done
)
variable
v_count
:
natural
:
=
0
;
variable
v_hi
:
natural
:
=
0
;
variable
v_lo
:
natural
:
=
0
;
begin
v_count
:
=
TO_UINT
(
count
);
src_out
<=
dp_pipeline_src_out
;
nxt_reg_done
<=
reg_done
;
if
reg_done
=
'0'
and
dp_pipeline_src_out
.
valid
=
'1'
then
if
v_count
=
c_hdr_crc_word_hi
and
v_count
=
c_hdr_crc_word_lo
then
-- checksum is in 1 word.
gen_insert_crc_one
:
if
c_crc_in_one_word
generate
-- checksum is in 1 word.
p_insert_crc_one
:
process
(
dp_pipeline_src_out
,
checksum
,
count
,
reg_done
)
variable
v_count
:
natural
:
=
0
;
begin
v_count
:
=
TO_UINT
(
count
);
src_out
<=
dp_pipeline_src_out
;
nxt_reg_done
<=
reg_done
;
if
reg_done
=
'0'
and
dp_pipeline_src_out
.
valid
=
'1'
and
v_count
=
c_hdr_crc_word_hi
then
src_out
.
data
(
c_crc_hi_bit_in_word
downto
c_crc_lo_bit_in_word
)
<=
checksum
;
nxt_reg_done
<=
'1'
;
elsif
v_count
=
c_hdr_crc_word_hi
then
src_out
.
data
(
c_crc_hi_bit_in_word
downto
0
)
<=
checksum
(
c_network_ip_header_checksum_w
-
1
downto
c_network_ip_header_checksum_w
-
c_crc_hi_bit_in_word
-
1
);
elsif
v_count
=
c_hdr_crc_word_lo
then
src_out
.
data
(
g_data_w
-
1
downto
c_crc_lo_bit_in_word
)
<=
checksum
(
g_data_w
-
c_crc_lo_bit_in_word
-
1
downto
0
);
nxt_reg_done
<=
'1'
;
elsif
v_count
<
c_hdr_crc_word_hi
and
v_count
>
c_hdr_crc_word_lo
then
v_hi
:
=
c_network_ip_header_checksum_w
-
1
-
c_crc_hi_bit_in_word
-
1
-
g_data_w
*
(
c_hdr_crc_word_hi
-
v_count
-
1
);
v_lo
:
=
v_hi
+
1
-
g_data_w
;
src_out
.
data
(
g_data_w
-
1
downto
0
)
<=
checksum
(
v_hi
downto
v_lo
);
end
if
;
end
if
;
if
reg_done
=
'1'
and
dp_pipeline_src_out
.
eop
=
'1'
then
nxt_reg_done
<=
'0'
;
end
if
;
end
process
;
if
reg_done
=
'1'
and
dp_pipeline_src_out
.
eop
=
'1'
then
nxt_reg_done
<=
'0'
;
end
if
;
end
process
;
end
generate
;
gen_insert_crc_multi
:
if
not
c_crc_in_one_word
generate
p_insert_crc_multi
:
process
(
dp_pipeline_src_out
,
checksum
,
count
,
reg_done
)
variable
v_count
:
natural
:
=
0
;
variable
v_hi
:
natural
:
=
0
;
variable
v_lo
:
natural
:
=
0
;
begin
v_count
:
=
TO_UINT
(
count
);
src_out
<=
dp_pipeline_src_out
;
nxt_reg_done
<=
reg_done
;
if
reg_done
=
'0'
and
dp_pipeline_src_out
.
valid
=
'1'
then
if
v_count
=
c_hdr_crc_word_hi
then
src_out
.
data
(
c_crc_hi_bit_in_word
downto
0
)
<=
checksum
(
c_network_ip_header_checksum_w
-
1
downto
c_network_ip_header_checksum_w
-
c_crc_hi_bit_in_word
-
1
);
elsif
v_count
=
c_hdr_crc_word_lo
then
src_out
.
data
(
g_data_w
-
1
downto
c_crc_lo_bit_in_word
)
<=
checksum
(
g_data_w
-
c_crc_lo_bit_in_word
-
1
downto
0
);
nxt_reg_done
<=
'1'
;
elsif
v_count
<
c_hdr_crc_word_hi
and
v_count
>
c_hdr_crc_word_lo
then
v_hi
:
=
c_network_ip_header_checksum_w
-
1
-
c_crc_hi_bit_in_word
-
1
-
g_data_w
*
(
c_hdr_crc_word_hi
-
v_count
-
1
);
v_lo
:
=
v_hi
+
1
-
g_data_w
;
src_out
.
data
(
g_data_w
-
1
downto
0
)
<=
checksum
(
v_hi
downto
v_lo
);
end
if
;
end
if
;
if
reg_done
=
'1'
and
dp_pipeline_src_out
.
eop
=
'1'
then
nxt_reg_done
<=
'0'
;
end
if
;
end
process
;
end
generate
;
------------------------------------------------------------------------------------------
-- using common_counter to keep track of the word alignment during checksum calculation --
...
...
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