Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gennum GN4124 core
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Gennum GN4124 core
Commits
8d8560df
Commit
8d8560df
authored
14 years ago
by
Matthieu Cattin
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix in packet write FSM, last data detection during L2P_ADDR_L state was wrong.
parent
9898a141
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hdl/gn4124core/design/rtl/l2p_dma_master.vhd
+1
-1
1 addition, 1 deletion
hdl/gn4124core/design/rtl/l2p_dma_master.vhd
with
1 addition
and
1 deletion
hdl/gn4124core/design/rtl/l2p_dma_master.vhd
+
1
−
1
View file @
8d8560df
...
...
@@ -397,7 +397,7 @@ begin
when
L2P_ADDR_L
=>
-- send host address 32 lowest bits
ldm_arb_data_o
<=
std_logic_vector
(
l2p_address_l
);
if
(
l2p_data_cnt
<=
2
)
then
if
(
l2p_data_cnt
<=
1
)
then
-- Only one 32-bit data word to send
l2p_dma_current_state
<=
L2P_LAST_DATA
;
-- Stop reading from fifo
...
...
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