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
9539a753
Commit
9539a753
authored
2 years ago
by
dam1n19
Browse files
Options
Downloads
Patches
Plain Diff
Linted Expansion Subsystem
parent
6d173a63
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
+32
-1
32 additions, 1 deletion
hal/nanosoc_ip.waive
system/nanosoc_regions/exp/verilog/nanosoc_region_exp.v
+6
-5
6 additions, 5 deletions
system/nanosoc_regions/exp/verilog/nanosoc_region_exp.v
with
38 additions
and
6 deletions
hal/nanosoc_ip.waive
+
32
−
1
View file @
9539a753
...
@@ -70,7 +70,26 @@ lint_checking designunit = nanosoc_ss_debug
...
@@ -70,7 +70,26 @@ lint_checking designunit = nanosoc_ss_debug
// Word Address Used only on APB
// Word Address Used only on APB
USEPRT {"DEBUG_PADDR"} off;
USEPRT {"DEBUG_PADDR"} off;
}
lint_checking designunit = nanosoc_ss_expansion
{
// Not Top-level in design_info
TPOUNR off;
// FT1248 can be a one-bit bus
ONPNSG {"FT_"} off;
// Word Address Used only on APB
USEPRT {"DEBUG_PADDR"} off;
}
lint_checking designunit = nanosoc_region_exp
{
// In Case of Default Slave, Read Data and IRQS and DRQs constant Assigned
TIELOG {"HRDATA|EXP_IRQ|EXP_DRQ"} off;
// Some AHB Signals wont be used in this case
USEPRT {"HADDR|HTRANS|HSIZE|HWDATA|HPROT|HWRITE|EXP_DLAST"} off;
}
}
lint_checking designunit = nanosoc_region_bootrom_0
lint_checking designunit = nanosoc_region_bootrom_0
...
@@ -91,6 +110,18 @@ lint_checking designunit = nanosoc_region_dmem_0
...
@@ -91,6 +110,18 @@ lint_checking designunit = nanosoc_region_dmem_0
URDPRT {"HADDR|HTRANS|HSIZE|HWDATA|HPROT"} off;
URDPRT {"HADDR|HTRANS|HSIZE|HWDATA|HPROT"} off;
}
}
lint_checking designunit = nanosoc_region_expram_l
{
// Some Bits of AHB Signals not Used
USEPRT {"HADDR|HTRANS|HSIZE|HWDATA|HPROT"} off;
}
lint_checking designunit = nanosoc_region_expram_h
{
// Some Bits of AHB Signals not Used
USEPRT {"HADDR|HTRANS|HSIZE|HWDATA|HPROT"} off;
}
lint_checking designunit = nanosoc_bootrom_cpu_0
lint_checking designunit = nanosoc_bootrom_cpu_0
{
{
// Bootrom Clock name different to HCLK
// Bootrom Clock name different to HCLK
...
...
This diff is collapsed.
Click to expand it.
system/nanosoc_regions/exp/verilog/nanosoc_region_exp.v
+
6
−
5
View file @
9539a753
...
@@ -65,12 +65,13 @@ module nanosoc_region_exp #(
...
@@ -65,12 +65,13 @@ module nanosoc_region_exp #(
.
HSEL
(
HSEL
),
.
HSEL
(
HSEL
),
.
HTRANS
(
HTRANS
),
.
HTRANS
(
HTRANS
),
.
HREADY
(
HREADY
),
.
HREADY
(
HREADY
),
.
HREADYOUT
(
HREADYOUT
S
),
.
HREADYOUT
(
HREADYOUT
),
.
HRESP
(
HRESP
S
)
.
HRESP
(
HRESP
)
);
);
assign
HRDATA
=
32'heaedeaed
;
// Tie off Expansion Address Expansion Data
assign
HRDATA
=
32'heaedeaed
;
// Tie off Expansion Address Expansion Data
assign
EXP_IRQ
=
4'
b
0
;
assign
EXP_IRQ
=
4'
d
0
;
assign
EXP_DRQ
=
2'
b
0
;
assign
EXP_DRQ
=
2'
d
0
;
`endif
`endif
endmodule
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