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
fabf9a18
Commit
fabf9a18
authored
4 years ago
by
Dimitris Lampridis
Browse files
Options
Downloads
Patches
Plain Diff
hdl: minor code cleanup
Signed-off-by:
Dimitris Lampridis
<
dimitris.lampridis@cern.ch
>
parent
52428736
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/rtl/l2p_dma_master.vhd
+4
-7
4 additions, 7 deletions
hdl/rtl/l2p_dma_master.vhd
with
4 additions
and
7 deletions
hdl/rtl/l2p_dma_master.vhd
+
4
−
7
View file @
fabf9a18
...
...
@@ -112,7 +112,6 @@ architecture arch of l2p_dma_master is
signal
l2p_fsm_valid
:
std_logic
:
=
'0'
;
signal
l2p_fsm_dframe
:
std_logic
:
=
'0'
;
signal
l2p_fsm_hold
:
std_logic
:
=
'0'
;
signal
l2p_fsm_data
:
std_logic_vector
(
31
downto
0
)
:
=
(
others
=>
'0'
);
signal
l2p_fsm_dma_param_wr
:
std_logic
:
=
'0'
;
...
...
@@ -125,10 +124,10 @@ architecture arch of l2p_dma_master is
signal
dma_last_packet
:
std_logic
:
=
'0'
;
signal
wb_dma_cyc
:
std_logic
:
=
'0'
;
signal
wb_dma_stb
:
std_logic
:
=
'0'
;
signal
wb_dma_fsm_en
:
std_logic
:
=
'0'
;
signal
wb_dma_fsm_en_sync
:
std_logic
:
=
'0'
;
signal
wb_dma_cyc
:
std_logic
:
=
'0'
;
signal
wb_dma_stb
:
std_logic
:
=
'0'
;
signal
wb_dma_fsm_en
:
std_logic
:
=
'0'
;
signal
wb_dma_fsm_en_sync
:
std_logic
:
=
'0'
;
signal
data_fifo_rd
:
std_logic
:
=
'0'
;
signal
data_fifo_wr
:
std_logic
:
=
'0'
;
...
...
@@ -165,7 +164,6 @@ begin
ldm_arb_req_o
<=
'0'
;
l2p_fsm_valid
<=
'0'
;
l2p_fsm_dframe
<=
'0'
;
l2p_fsm_hold
<=
'0'
;
dma_ctrl_done_o
<=
'0'
;
dma_ctrl_error_o
<=
'0'
;
wb_dma_fsm_en
<=
'0'
;
...
...
@@ -195,7 +193,6 @@ begin
when
L2P_IDLE
=>
wb_dma_fsm_en
<=
'0'
;
fsm_fifo_rst_n
<=
'0'
;
l2p_fsm_hold
<=
'0'
;
dma_last_packet
<=
'0'
;
if
dma_ctrl_start_l2p_i
=
'1'
then
dma_target_addr
<=
unsigned
(
dma_ctrl_target_addr_i
(
31
downto
2
));
...
...
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