Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jonathan Currier
litex
Commits
dde96423
Commit
dde96423
authored
Oct 16, 2020
by
Raptor Engineering Development Team
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow SoCCore instances to set maximum interrupt number
parent
00827555
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
litex/soc/integration/soc_core.py
litex/soc/integration/soc_core.py
+4
-1
No files found.
litex/soc/integration/soc_core.py
View file @
dde96423
...
...
@@ -4,6 +4,7 @@
# This file is Copyright (c) 2019 Gabriel L. Somlo <gsomlo@gmail.com>
# This file is Copyright (c) 2019 Ilia Sergachev <ilia.sergachev@protonmail.ch>
# This file is Copyright (c) 2018 Jean-François Nguyen <jf@lambdaconcept.fr>
# This file is Copyright (c) 2020 Raptor Engineering, LLC <sales@raptorengineering.com>
# This file is Copyright (c) 2015 Robert Jordens <jordens@gmail.com>
# This file is Copyright (c) 2018 Sean Cross <sean@xobs.io>
# This file is Copyright (c) 2018 Stafford Horne <shorne@gmail.com>
...
...
@@ -84,6 +85,8 @@ class SoCCore(LiteXSoC):
csr_data_width
=
8
,
csr_address_width
=
14
,
csr_paging
=
0x800
,
# Interrupt parameters
irq_n_irqs
=
32
,
# Identifier parameters
ident
=
""
,
ident_version
=
False
,
...
...
@@ -113,7 +116,7 @@ class SoCCore(LiteXSoC):
csr_paging
=
csr_paging
,
csr_reserved_csrs
=
self
.
csr_map
,
irq_n_irqs
=
32
,
irq_n_irqs
=
irq_n_irqs
,
irq_reserved_irqs
=
{},
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment