Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex-boards
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
Kestrel Collaboration
Kestrel LiteX
litex-boards
Commits
fc22e28f
Commit
fc22e28f
authored
Jun 30, 2020
by
Florent Kermarrec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
targets: replace PCIeSoC with BaseSoC.
parent
d28a0c42
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
litex_boards/targets/acorn_cle_215.py
litex_boards/targets/acorn_cle_215.py
+3
-3
litex_boards/targets/aller.py
litex_boards/targets/aller.py
+3
-3
litex_boards/targets/nereid.py
litex_boards/targets/nereid.py
+3
-3
litex_boards/targets/tagus.py
litex_boards/targets/tagus.py
+3
-3
No files found.
litex_boards/targets/acorn_cle_215.py
View file @
fc22e28f
...
...
@@ -68,9 +68,9 @@ class CRG(Module):
self
.
submodules
.
idelayctrl
=
S7IDELAYCTRL
(
self
.
cd_clk200
)
#
PCI
eSoC -----------------------------------------------------------------------------------------
#
Bas
eSoC -----------------------------------------------------------------------------------------
class
PCI
eSoC
(
SoCCore
):
class
Bas
eSoC
(
SoCCore
):
def
__init__
(
self
,
platform
,
**
kwargs
):
sys_clk_freq
=
int
(
100e6
)
...
...
@@ -171,7 +171,7 @@ def main():
args
.
csr_data_width
=
32
platform
=
acorn_cle_215
.
Platform
()
soc
=
PCI
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
soc
=
Bas
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
builder
=
Builder
(
soc
,
**
builder_argdict
(
args
))
builder
.
build
(
run
=
args
.
build
)
...
...
litex_boards/targets/aller.py
View file @
fc22e28f
...
...
@@ -51,9 +51,9 @@ class CRG(Module):
self
.
submodules
.
idelayctrl
=
S7IDELAYCTRL
(
self
.
cd_clk200
)
#
PCI
eSoC -----------------------------------------------------------------------------------------
#
Bas
eSoC -----------------------------------------------------------------------------------------
class
PCI
eSoC
(
SoCCore
):
class
Bas
eSoC
(
SoCCore
):
def
__init__
(
self
,
platform
,
**
kwargs
):
sys_clk_freq
=
int
(
100e6
)
...
...
@@ -152,7 +152,7 @@ def main():
args
.
csr_data_width
=
32
platform
=
aller
.
Platform
()
soc
=
PCI
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
soc
=
Bas
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
builder
=
Builder
(
soc
,
**
builder_argdict
(
args
))
builder
.
build
(
run
=
args
.
build
)
...
...
litex_boards/targets/nereid.py
View file @
fc22e28f
...
...
@@ -48,9 +48,9 @@ class CRG(Module):
self
.
submodules
.
idelayctrl
=
S7IDELAYCTRL
(
self
.
cd_clk200
)
#
PCI
eSoC -----------------------------------------------------------------------------------------
#
Bas
eSoC -----------------------------------------------------------------------------------------
class
PCI
eSoC
(
SoCCore
):
class
Bas
eSoC
(
SoCCore
):
def
__init__
(
self
,
platform
,
**
kwargs
):
sys_clk_freq
=
int
(
100e6
)
...
...
@@ -143,7 +143,7 @@ def main():
args
.
csr_data_width
=
32
platform
=
nereid
.
Platform
()
soc
=
PCI
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
soc
=
Bas
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
builder
=
Builder
(
soc
,
**
builder_argdict
(
args
))
builder
.
build
(
run
=
args
.
build
)
...
...
litex_boards/targets/tagus.py
View file @
fc22e28f
...
...
@@ -51,9 +51,9 @@ class CRG(Module):
self
.
submodules
.
idelayctrl
=
S7IDELAYCTRL
(
self
.
cd_clk200
)
#
PCI
eSoC -----------------------------------------------------------------------------------------
#
Bas
eSoC -----------------------------------------------------------------------------------------
class
PCI
eSoC
(
SoCCore
):
class
Bas
eSoC
(
SoCCore
):
def
__init__
(
self
,
platform
,
**
kwargs
):
sys_clk_freq
=
int
(
100e6
)
...
...
@@ -152,7 +152,7 @@ def main():
args
.
csr_data_width
=
32
platform
=
tagus
.
Platform
()
soc
=
PCI
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
soc
=
Bas
eSoC
(
platform
,
**
soc_sdram_argdict
(
args
))
builder
=
Builder
(
soc
,
**
builder_argdict
(
args
))
builder
.
build
(
run
=
args
.
build
)
...
...
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