Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Outer Tracker DTC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
cms-tracker-phase2-backend-systems
Back End Firmware
Outer Tracker DTC
Commits
2f08816a
Commit
2f08816a
authored
5 months ago
by
David Monk
Browse files
Options
Downloads
Patches
Plain Diff
Finished stub path of LinkInterfaceInternal
parent
66d7713b
No related branches found
No related tags found
1 merge request
!88
Draft: Made start on front end testbenches
Pipeline
#8423853
failed
5 months ago
Stage: Setup
Stage: Triggers
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dtc-fe/testbenches/LinkInterfaceInternal/firmware/hdl/TestBench.vhd
+66
-28
66 additions, 28 deletions
...tbenches/LinkInterfaceInternal/firmware/hdl/TestBench.vhd
with
66 additions
and
28 deletions
dtc-fe/testbenches/LinkInterfaceInternal/firmware/hdl/TestBench.vhd
+
66
−
28
View file @
2f08816a
...
@@ -19,9 +19,8 @@ architecture Behavioral of testbench is
...
@@ -19,9 +19,8 @@ architecture Behavioral of testbench is
signal
boxcar_counter
:
integer
:
=
0
;
signal
boxcar_counter
:
integer
:
=
0
;
-- I/O streams
-- I/O streams
signal
stream_in
:
lword
:
=
LWORD_NULL
;
signal
stubs
:
ldata
(
1
downto
0
)
:
=
(
others
=>
LWORD_NULL
);
signal
filtered_stream
:
lword
:
=
LWORD_NULL
;
signal
interleaved_stubs
:
lword
:
=
LWORD_NULL
;
signal
stubs
:
lword
:
=
LWORD_NULL
;
-- Link Interface
-- Link Interface
signal
aligner_reset
:
std_logic
:
=
'0'
;
signal
aligner_reset
:
std_logic
:
=
'0'
;
...
@@ -58,31 +57,70 @@ begin
...
@@ -58,31 +57,70 @@ begin
end
if
;
end
if
;
end
process
pReset
;
end
process
pReset
;
-- I/O
--==============================--
--==============================--
TestBenchIOInstan
ce
:
entity
work
.
TestBenchIO
CicInterfa
ce
:
for
i
in
0
to
2
-
1
generate
--==============================--
--==============================--
generic
map
(
input_filename
=>
"stub_extractor_output.txt"
,
signal
stream_in
:
lword
:
=
LWORD_NULL
;
output_filename
=>
"result.txt"
,
signal
stream_in_aligned
:
lword
:
=
LWORD_NULL
;
input_line_width
=>
64
)
signal
aligner_state
:
std_logic_vector
(
3
downto
0
)
:
=
(
others
=>
'0'
);
port
map
(
clk
=>
clk_p
,
data_out
=>
stream_in
,
data_in
=>
stubs
);
pAddMetadata
:
process
(
clk_p
)
begin
begin
if
rising_edge
(
clk_p
)
then
filtered_stream
<=
LWORD_NULL
;
-- I/O
if
stream_in
.
data
/=
x"0000000000000000"
then
--==============================--
filtered_stream
.
valid
<=
'1'
;
TestBenchIOInstance
:
entity
work
.
TestBenchIO
filtered_stream
.
strobe
<=
'1'
;
--==============================--
filtered_stream
.
data
<=
stream_in
.
data
;
generic
map
(
end
if
;
input_filename
=>
"framed_stream.txt"
,
end
if
;
output_filename
=>
"result"
&
integer
'image
(
i
)
&
".txt"
,
end
process
pAddMetadata
;
input_line_width
=>
16
)
port
map
(
clk
=>
clk_p
,
data_out
=>
stream_in
,
data_in
=>
stubs
(
i
)
);
--==============================--
HeaderAligner
:
entity
work
.
HeaderAligner
--==============================--
generic
map
(
module_type
=>
"2S"
,
bandwidth
=>
5
)
port
map
(
--- Input Ports ---
clk
=>
clk_p
,
data_in
=>
stream_in
,
reset
=>
aligner_reset
,
--- Output Ports ---
header_start
=>
header_start_array
(
i
),
state
=>
aligner_state
-- sync_loss => sync_loss(i)
);
--==============================--
StubExtractor
:
entity
work
.
StubExtractor
--==============================--
generic
map
(
cic_index
=>
i
,
module_type
=>
"2S"
,
bandwidth
=>
5
)
port
map
(
--- Input Ports ---
clk
=>
clk_p
,
data_in
=>
stream_in
,
header_start
=>
header_start_array
(
i
),
aligner_state
=>
aligner_state
,
--- Output Ports ---
stub_out
=>
stubs
(
i
),
header_out
=>
header_array
(
i
)
);
end
generate
CicInterface
;
--==============================--
--==============================--
StubInterleaver
:
entity
work
.
StubInterleaver
StubInterleaver
:
entity
work
.
StubInterleaver
...
@@ -90,10 +128,10 @@ begin
...
@@ -90,10 +128,10 @@ begin
port
map
(
port
map
(
--- Input Ports ---
--- Input Ports ---
clk
=>
clk_p
,
clk
=>
clk_p
,
stub_in_0
=>
filtered_stream
,
stub_in_0
=>
stubs
(
0
)
,
stub_in_1
=>
filtered_stream
,
stub_in_1
=>
stubs
(
1
)
,
--- Output Ports ---
--- Output Ports ---
stub_out
=>
stubs
stub_out
=>
interleaved_
stubs
);
);
end
Behavioral
;
end
Behavioral
;
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