Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SLDMA-350 Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
SoCLabs
SLDMA-350 Tech
Commits
d7b4b1b6
Commit
d7b4b1b6
authored
1 year ago
by
Daniel Newbrook
Browse files
Options
Downloads
Patches
Plain Diff
Fix width mismatch in hprot
parent
3f1282ae
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wrapper/logical/sldma350_ahb.v
+9
-2
9 additions, 2 deletions
wrapper/logical/sldma350_ahb.v
with
9 additions
and
2 deletions
wrapper/logical/sldma350_ahb.v
+
9
−
2
View file @
d7b4b1b6
...
...
@@ -220,6 +220,13 @@ wire DMAC_HALTED;
assign
DMA_ERR
=
|
DMAC_CH_ERR
;
// AHB conversion WIRES
wire
[
6
:
0
]
HPROT_0_int
;
wire
[
6
:
0
]
HPROT_1_int
;
assign
HPROT_0
=
HPROT_0_int
[
3
:
0
];
assign
HPROT_1
=
HPROT_1_int
[
3
:
0
];
// -------------------------------
// DMA Controller Instantiation
// -------------------------------
...
...
@@ -496,7 +503,7 @@ xhb500_axi_to_ahb_bridge_sldma350 u_xhb_0
.
htrans
(
HTRANS_0
),
.
hsize
(
HSIZE_0
),
.
hwrite
(
HWRITE_0
),
.
hprot
(
HPROT_0
),
.
hprot
(
HPROT_0
_int
),
.
hburst
(
HBURST_0
),
.
hmastlock
(
HMASTLOCK_0
),
.
hwdata
(
HWDATA_0
),
...
...
@@ -599,7 +606,7 @@ xhb500_axi_to_ahb_bridge_sldma350 u_xhb_1
.
htrans
(
HTRANS_1
),
.
hsize
(
HSIZE_1
),
.
hwrite
(
HWRITE_1
),
.
hprot
(
HPROT_1
),
.
hprot
(
HPROT_1
_int
),
.
hburst
(
HBURST_1
),
.
hmastlock
(
HMASTLOCK_1
),
.
hwdata
(
HWDATA_1
),
...
...
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