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
Merge requests
!221
decreased design_note field from 52B to 48B to fit the 32 word system
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
decreased design_note field from 52B to 48B to fit the 32 word system
L2SDP-598
into
master
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
Reinier van der Walle
requested to merge
L2SDP-598
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
4
Expand
info
Closes
L2SDP-598
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
337045b7
1 commit,
3 years ago
4 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
boards/uniboard2b/libraries/unb2b_board/src/vhdl/unb2b_board_system_info_reg.vhd
+
2
−
2
Options
@@ -78,7 +78,7 @@ ARCHITECTURE rtl OF unb2b_board_system_info_reg IS
CONSTANT
c_nof_design_name_regs
:
NATURAL
:
=
13
;
-- design_name
CONSTANT
c_nof_stamp_regs
:
NATURAL
:
=
2
;
-- date, time
CONSTANT
c_nof_revision_id_regs
:
NATURAL
:
=
3
;
-- revision id, commit hash or id (hash: first 9 chars of the 40chars commit hash)
CONSTANT
c_nof_design_note_regs
:
NATURAL
:
=
1
3
;
-- note
CONSTANT
c_nof_design_note_regs
:
NATURAL
:
=
1
2
;
-- note
CONSTANT
c_info_reg
:
NATURAL
:
=
0
;
CONSTANT
c_use_phy_reg
:
NATURAL
:
=
1
;
@@ -87,7 +87,7 @@ ARCHITECTURE rtl OF unb2b_board_system_info_reg IS
CONSTANT
c_stamp_time_offset
:
NATURAL
:
=
c_nof_fixed_regs
+
c_nof_design_name_regs
+
1
;
CONSTANT
c_revision_id_offset
:
NATURAL
:
=
c_nof_fixed_regs
+
c_nof_design_name_regs
+
c_nof_stamp_regs
;
CONSTANT
c_design_note_offset
:
NATURAL
:
=
c_nof_fixed_regs
+
c_nof_design_name_regs
+
c_nof_stamp_regs
+
c_nof_revision_id_regs
;
CONSTANT
c_nof_regs
:
NATURAL
:
=
c_nof_fixed_regs
+
c_nof_design_name_regs
+
c_nof_stamp_regs
+
c_nof_revision_id_regs
+
c_nof_design_note_regs
;
CONSTANT
c_nof_regs
:
NATURAL
:
=
c_nof_fixed_regs
+
c_nof_design_name_regs
+
c_nof_stamp_regs
+
c_nof_revision_id_regs
+
c_nof_design_note_regs
;
-- = 2+13+2+3+12 = 32
CONSTANT
c_mm_reg
:
t_c_mem
:
=
(
latency
=>
1
,
adr_w
=>
ceil_log2
(
c_nof_regs
),
dat_w
=>
c_word_w
,
-- Use MM bus data width = c_word_w = 32 for all MM registers
Loading