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
c835965d
Commit
c835965d
authored
5 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Fixed mm_pipeline to support g_pipeline_mosi.
parent
1657b9bf
No related branches found
Branches containing commit
No related tags found
2 merge requests
!28
Master
,
!15
Resolve L2SDP-27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/mm/tb/vhdl/tb_tb_mm_master_mux.vhd
+10
-7
10 additions, 7 deletions
libraries/base/mm/tb/vhdl/tb_tb_mm_master_mux.vhd
with
10 additions
and
7 deletions
libraries/base/mm/tb/vhdl/tb_tb_mm_master_mux.vhd
+
10
−
7
View file @
c835965d
...
@@ -47,12 +47,15 @@ BEGIN
...
@@ -47,12 +47,15 @@ BEGIN
-- g_pipeline_bus_miso_rdval : BOOLEAN := FALSE;
-- g_pipeline_bus_miso_rdval : BOOLEAN := FALSE;
-- g_pipeline_bus_miso_wait : BOOLEAN := FALSE
-- g_pipeline_bus_miso_wait : BOOLEAN := FALSE
u_no_pipe
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
FALSE
,
FALSE
,
FALSE
);
u_no_pipe
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
FALSE
,
FALSE
,
FALSE
);
u_pipe_mosi
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
TRUE
,
FALSE
,
FALSE
);
u_pipe_mosi
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
TRUE
,
FALSE
,
FALSE
);
u_pipe_miso_rdval
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
FALSE
,
TRUE
,
FALSE
);
u_pipe_miso_rdval
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
FALSE
,
FALSE
,
TRUE
,
FALSE
);
u_waitrequest_no_pipe
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
FALSE
,
FALSE
,
FALSE
);
u_waitrequest_no_pipe
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
FALSE
,
FALSE
,
FALSE
);
u_waitrequest_pipe_miso_rdval
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
FALSE
,
TRUE
,
FALSE
);
u_waitrequest_pipe_miso_rdval
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
FALSE
,
TRUE
,
FALSE
);
--u_waitrequest_pipe_mosi : ENTITY work.tb_mm_master_mux GENERIC MAP (2, (0, 256), (4, 8), TRUE, TRUE, FALSE, FALSE);
u_waitrequest_pipe_mosi
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
TRUE
,
FALSE
,
FALSE
);
--u_waitrequest_pipe_mosi_miso_rdval : ENTITY work.tb_mm_master_mux GENERIC MAP (2, (0, 256), (4, 8), TRUE, TRUE, TRUE, FALSE);
u_waitrequest_pipe_mosi_miso_rdval
:
ENTITY
work
.
tb_mm_master_mux
GENERIC
MAP
(
2
,
(
0
,
256
),
(
4
,
8
),
TRUE
,
TRUE
,
TRUE
,
FALSE
);
-- Do not support simultaneous g_pipeline_mosi = TRUE and g_pipeline_miso_wait = TRUE, see mm_bus_pipe.vhd.
--u_waitrequest_pipe_all : ENTITY work.tb_mm_master_mux GENERIC MAP (2, (0, 256), (4, 8), TRUE, TRUE, TRUE, TRUE);
END
tb
;
END
tb
;
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