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
274432fb
Commit
274432fb
authored
1 year ago
by
dam1n19
Browse files
Options
Downloads
Patches
Plain Diff
Fixed lint errors in nanosoc
parent
c5c00a20
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nanosoc/nanosoc_regions/sysio/verilog/nanosoc_sysio_decode.v
+5
-4
5 additions, 4 deletions
nanosoc/nanosoc_regions/sysio/verilog/nanosoc_sysio_decode.v
nanosoc/nanosoc_system/verilog/nanosoc_system.v
+0
-1
0 additions, 1 deletion
nanosoc/nanosoc_system/verilog/nanosoc_system.v
with
5 additions
and
5 deletions
nanosoc/nanosoc_regions/sysio/verilog/nanosoc_sysio_decode.v
+
5
−
4
View file @
274432fb
...
@@ -73,13 +73,14 @@ module nanosoc_sysio_decode #(
...
@@ -73,13 +73,14 @@ module nanosoc_sysio_decode #(
// Peripheral Selection decode logic
// Peripheral Selection decode logic
// ----------------------------------------------------------
// ----------------------------------------------------------
assign
apbsys_hsel
=
hsel
&
(
haddr
[
31
:
16
]
==
16'h4000
);
// 0x40000000
assign
apbsys_hsel
=
hsel
&
(
haddr
[
31
:
16
]
==
BASEADDR_APBSS
[
31
:
16
]);
// 0x40000000
assign
gpio0_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
assign
gpio0_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
BASEADDR_GPIO0
[
31
:
12
]);
// 0x40010000
BASEADDR_GPIO0
[
31
:
12
]);
// 0x40010000
assign
gpio1_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
assign
gpio1_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
BASEADDR_GPIO1
[
31
:
12
]);
// 0x40011000
BASEADDR_GPIO1
[
31
:
12
]);
// 0x40011000
assign
sysctrl_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
assign
sysctrl_hsel
=
hsel
&
(
haddr
[
31
:
12
]
==
BASEADDR_SYSCTRL
[
31
:
12
]);
// 0x4001F000
BASEADDR_SYSCTRL
[
31
:
12
]);
// 0x4001F000
// ----------------------------------------------------------
// ----------------------------------------------------------
// Default slave decode logic
// Default slave decode logic
...
...
This diff is collapsed.
Click to expand it.
nanosoc/nanosoc_system/verilog/nanosoc_system.v
+
0
−
1
View file @
274432fb
...
@@ -128,7 +128,6 @@ module nanosoc_system #(
...
@@ -128,7 +128,6 @@ module nanosoc_system #(
// System Reset Request Signals
// System Reset Request Signals
wire
SYS_SYSRESETREQ
;
// System Request from System Managers
wire
SYS_SYSRESETREQ
;
// System Request from System Managers
wire
SYS_PRMURESETREQ
;
// CPU Control Reset Request (PMU and Reset Unit)
// AHB Clocks and Resets
// AHB Clocks and Resets
wire
SYS_PORESETn
;
// System Power On Reset
wire
SYS_PORESETn
;
// System Power On Reset
...
...
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