Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
firmware
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
atlas-tdaq-felix
firmware
Commits
4350cfe6
Commit
4350cfe6
authored
3 years ago
by
Frans Schreuder
Browse files
Options
Downloads
Patches
Plain Diff
Fixed reset in FullModeDataEmulator (Blockram case)
parent
b898f681
No related branches found
No related tags found
1 merge request
!311
FLX-1765: Implemented dynamic selection of DMA descriptor based on AXIS_ID
Pipeline
#3315667
passed
3 years ago
Stage: sim
Stage: build_full_4ch
Stage: build_gbt_4ch
Stage: build_strip_4ch
Stage: build_pixel_4ch
Stage: build_lpgbt_4ch
+2
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sources/FullModeDataEmulator/FullModeDataEmulator.vhd
+8
-2
8 additions, 2 deletions
sources/FullModeDataEmulator/FullModeDataEmulator.vhd
with
8 additions
and
2 deletions
sources/FullModeDataEmulator/FullModeDataEmulator.vhd
+
8
−
2
View file @
4350cfe6
...
...
@@ -199,6 +199,9 @@ end process;
-- emulator ram
---------------------------------------------------------------------------------------
g_blockram
:
if
use_blockram
generate
signal
reset_sync_appregclk
:
std_logic
;
signal
reset_sync
:
std_logic
;
begin
emuram_00
:
xpm_memory_tdpram
generic
map
(
-- @suppress "Generic map uses default values. Missing optional actuals: USE_MEM_INIT_MMI, WRITE_PROTECT"
...
...
@@ -248,8 +251,8 @@ g_blockram: if use_blockram generate
injectsbiterrb
=>
'0'
,
injectdbiterrb
=>
'0'
,
clkb
=>
clk240
,
rsta
=>
a
reset
n
_sync_appregclk
,
rstb
=>
a
reset
n
_sync
,
rsta
=>
reset_sync_appregclk
,
rstb
=>
reset_sync
,
enb
=>
'1'
,
regcea
=>
'1'
,
regceb
=>
'1'
,
...
...
@@ -260,6 +263,9 @@ g_blockram: if use_blockram generate
dbiterra
=>
open
,
dbiterrb
=>
open
);
reset_sync_appregclk
<=
not
aresetn_sync_appregclk
;
reset_sync
<=
not
aresetn_sync
;
register_map_gbtemu_monitor
.
FE_EMU_READ
.
DATA
<=
emuram_douta
(
32
downto
0
);
--
...
...
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