Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
NanoSoC Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
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
NanoSoC Tech
Commits
035a1441
Commit
035a1441
authored
1 year ago
by
dwf1m12
Browse files
Options
Downloads
Patches
Plain Diff
change default DMA block transfer size to 16 to improve bandwidth
parent
32f4e250
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
software/common/validation/dma_tests.c
+2
-1
2 additions, 1 deletion
software/common/validation/dma_tests.c
with
2 additions
and
1 deletion
software/common/validation/dma_tests.c
+
2
−
1
View file @
035a1441
...
...
@@ -296,7 +296,8 @@ void dma_memory_copy (unsigned int src, unsigned int dest, unsigned int size, un
(
size
<<
24
)
|
/* src_size */
(
size
<<
21
)
|
/* dst_prot_ctrl - HPROT[3:1] */
(
size
<<
18
)
|
/* src_prot_ctrl - HPROT[3:1] */
(
0
<<
14
)
|
/* R_power */
// (0 << 14) | /* R_power */
(
4
<<
14
)
|
/* R_power for 16-word block transfer*/
((
num
-
1
)
<<
4
)
|
/* n_minus_1 */
(
0
<<
3
)
|
/* next_useburst */
(
2
<<
0
)
;
/* cycle_ctrl - auto */
...
...
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