Skip to content
GitLab
Explore
Sign in
Register
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
9a98b562
Commit
9a98b562
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Rename wr_flush into wr_flush_en.
parent
d61c490e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/ddr/src/vhdl/io_ddr_driver_flush_ctrl.vhd
+5
-5
5 additions, 5 deletions
libraries/io/ddr/src/vhdl/io_ddr_driver_flush_ctrl.vhd
with
5 additions
and
5 deletions
libraries/io/ddr/src/vhdl/io_ddr_driver_flush_ctrl.vhd
+
5
−
5
View file @
9a98b562
...
@@ -57,7 +57,7 @@ ENTITY io_ddr_driver_flush_ctrl IS
...
@@ -57,7 +57,7 @@ ENTITY io_ddr_driver_flush_ctrl IS
wr_sosi
:
IN
t_dp_sosi
;
wr_sosi
:
IN
t_dp_sosi
;
wr_flush
:
OUT
STD_LOGIC
wr_flush
_en
:
OUT
STD_LOGIC
);
);
END
io_ddr_driver_flush_ctrl
;
END
io_ddr_driver_flush_ctrl
;
...
@@ -104,20 +104,20 @@ BEGIN
...
@@ -104,20 +104,20 @@ BEGIN
p_state
:
PROCESS
(
state
,
dvr_flush_en
,
dvr_done
,
dvr_en
,
dvr_wr_not_rd
,
flush_dis
)
p_state
:
PROCESS
(
state
,
dvr_flush_en
,
dvr_done
,
dvr_en
,
dvr_wr_not_rd
,
flush_dis
)
BEGIN
BEGIN
nxt_state
<=
state
;
nxt_state
<=
state
;
wr_flush
<=
'0'
;
wr_flush
_en
<=
'0'
;
CASE
state
IS
CASE
state
IS
WHEN
s_idle
=>
WHEN
s_idle
=>
IF
dvr_flush_en
=
'1'
AND
dvr_done
=
'1'
THEN
IF
dvr_flush_en
=
'1'
AND
dvr_done
=
'1'
THEN
wr_flush
<=
'1'
;
wr_flush
_en
<=
'1'
;
nxt_state
<=
s_flush
;
nxt_state
<=
s_flush
;
END
IF
;
END
IF
;
WHEN
s_flush
=>
WHEN
s_flush
=>
wr_flush
<=
'1'
;
wr_flush
_en
<=
'1'
;
IF
dvr_en
=
'1'
AND
dvr_wr_not_rd
=
'1'
THEN
IF
dvr_en
=
'1'
AND
dvr_wr_not_rd
=
'1'
THEN
nxt_state
<=
s_stop
;
nxt_state
<=
s_stop
;
END
IF
;
END
IF
;
WHEN
OTHERS
=>
-- s_stop
WHEN
OTHERS
=>
-- s_stop
wr_flush
<=
'1'
;
wr_flush
_en
<=
'1'
;
IF
flush_dis
=
'1'
THEN
IF
flush_dis
=
'1'
THEN
nxt_state
<=
s_idle
;
nxt_state
<=
s_idle
;
END
IF
;
END
IF
;
...
...
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