Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit core collection
Manage
Activity
Members
Labels
Plan
Issues
33
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit core collection
Commits
57010aba
Commit
57010aba
authored
12 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
greg_counters: move rx_pause event outside rx status reg insert block
parent
5848dd15
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/wr_endpoint/ep_rx_path.vhd
+5
-1
5 additions, 1 deletion
modules/wr_endpoint/ep_rx_path.vhd
modules/wr_endpoint/ep_rx_status_reg_insert.vhd
+0
-2
0 additions, 2 deletions
modules/wr_endpoint/ep_rx_status_reg_insert.vhd
with
5 additions
and
3 deletions
modules/wr_endpoint/ep_rx_path.vhd
+
5
−
1
View file @
57010aba
...
...
@@ -300,6 +300,7 @@ architecture behavioral of ep_rx_path is
signal
ematch_done
:
std_logic
;
signal
ematch_is_hp
:
std_logic
;
signal
ematch_is_pause
:
std_logic
;
signal
fc_pause_p
:
std_logic
;
signal
pfilter_pclass
:
std_logic_vector
(
7
downto
0
);
signal
pfilter_drop
:
std_logic
;
...
...
@@ -319,6 +320,9 @@ begin -- behavioral
fab_pipe
(
0
)
<=
pcs_fab_i
;
fc_pause_p_o
<=
fc_pause_p
;
rmon_o
.
rx_pause
<=
fc_pause_p
;
U_early_addr_match
:
ep_rx_early_address_match
port
map
(
...
...
@@ -333,7 +337,7 @@ begin -- behavioral
match_is_pause_o
=>
ematch_is_pause
,
match_pause_quanta_o
=>
fc_pause_quanta_o
,
match_pause_prio_mask_o
=>
fc_pause_prio_mask_o
,
match_pause_p_o
=>
fc_pause_p
_o
,
match_pause_p_o
=>
fc_pause_p
,
regs_i
=>
regs_i
);
gen_with_packet_filter
:
if
(
g_with_dpi_classifier
)
generate
...
...
This diff is collapsed.
Click to expand it.
modules/wr_endpoint/ep_rx_status_reg_insert.vhd
+
0
−
2
View file @
57010aba
...
...
@@ -75,7 +75,6 @@ begin -- rtl
when
WAIT_MBUF
=>
if
(
mbuf_valid_i
=
'1'
)
then
rmon_o
.
rx_pause
<=
mbuf_is_pause_i
;
rmon_o
.
rx_pfilter_drop
<=
mbuf_drop_i
;
if
(
mbuf_drop_i
=
'0'
and
mbuf_is_pause_i
=
'0'
)
then
...
...
@@ -92,7 +91,6 @@ begin -- rtl
sreg
.
error
<=
'0'
;
else
rmon_o
.
rx_pfilter_drop
<=
'0'
;
rmon_o
.
rx_pause
<=
'0'
;
rmon_o
.
rx_path_timing_failure
<=
'0'
;
end
if
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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