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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SoCLabs
NanoSoC Tech
Commits
a1a0961a
Commit
a1a0961a
authored
2 years ago
by
dam1n19
Browse files
Options
Downloads
Patches
Plain Diff
Linted DMA Subsystem
parent
e33864ec
No related branches found
No related tags found
1 merge request
!1
changed imem to rom to allow initial program loading, updated bootloader code...
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
hal/nanosoc_ip.waive
+11
-0
11 additions, 0 deletions
hal/nanosoc_ip.waive
system/nanosoc_subsystems/dma/verilog/nanosoc_ss_dma.v
+11
-11
11 additions, 11 deletions
system/nanosoc_subsystems/dma/verilog/nanosoc_ss_dma.v
with
22 additions
and
11 deletions
hal/nanosoc_ip.waive
+
11
−
0
View file @
a1a0961a
...
...
@@ -40,6 +40,17 @@ lint_checking designunit = nanosoc_ss_cpu
USEPRT {"HBURST|HMASTLOCK"} off;
}
lint_checking designunit = nanosoc_ss_dma
{
// Not Top-level in design_info
ATLGLC off;
TPOUNR off;
// DMAC 1 Currently tied off
TIELOG {"DMAC_1"} off;
USEPRT {"DMAC_1"} off;
}
lint_checking designunit = nanosoc_region_bootrom_0
{
// Some Bits of AHB Signals not Used
...
...
This diff is collapsed.
Click to expand it.
system/nanosoc_subsystems/dma/verilog/nanosoc_ss_dma.v
+
11
−
11
View file @
a1a0961a
...
...
@@ -120,20 +120,20 @@ module nanosoc_ss_dma #(
// DMA Controller 1 Instantiation - Not implemented
// -------------------------------
// AHB Tie-off signals
assign
DMAC_1_HADDR
=
32'
b
0
;
assign
DMAC_1_HTRANS
=
2'
b
0
;
assign
DMAC_1_HWRITE
=
1'
b
0
;
assign
DMAC_1_HSIZE
=
3'
b
0
;
assign
DMAC_1_HBURST
=
3'
b
0
;
assign
DMAC_1_HPROT
=
4'
b
0
;
assign
DMAC_1_HWDATA
=
32'
b
0
;
assign
DMAC_1_HMASTLOCK
=
1'
b
0
;
assign
DMAC_1_HADDR
=
32'
d
0
;
assign
DMAC_1_HTRANS
=
2'
d
0
;
assign
DMAC_1_HWRITE
=
1'
d
0
;
assign
DMAC_1_HSIZE
=
3'
d
0
;
assign
DMAC_1_HBURST
=
3'
d
0
;
assign
DMAC_1_HPROT
=
4'
d
0
;
assign
DMAC_1_HWDATA
=
32'
d
0
;
assign
DMAC_1_HMASTLOCK
=
1'
d
0
;
// APB Tie-off signals
assign
DMAC_1_PRDATA
=
32'
b
0
;
assign
DMAC_1_PRDATA
=
32'
d
0
;
// DMA Status Tie-off signals
assign
DMAC_1_DMA_DONE
=
0
;
assign
DMAC_1_DMA_ERR
=
0
;
assign
DMAC_1_DMA_DONE
=
{
DMAC_1_CHANNEL_NUM
{
1'b0
}}
;
assign
DMAC_1_DMA_ERR
=
1'b
0
;
endmodule
\ No newline at end of file
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