Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Reform
rkx7-litex-boards
Commits
05f31583
Commit
05f31583
authored
Sep 30, 2021
by
Florent Kermarrec
Browse files
mnt_rkx7: Increase default sys_clk_freq to 125MHz.
parent
1217e942
Changes
1
Hide whitespace changes
Inline
Side-by-side
litex_boards/targets/mnt_rkx7.py
View file @
05f31583
...
...
@@ -47,7 +47,7 @@ class _CRG(Module):
# BaseSoC ------------------------------------------------------------------------------------------
class
BaseSoC
(
SoCCore
):
def
__init__
(
self
,
sys_clk_freq
=
int
(
1
00
e6
),
with_ethernet
=
False
,
with_etherbone
=
False
,
def
__init__
(
self
,
sys_clk_freq
=
int
(
1
25
e6
),
with_ethernet
=
False
,
with_etherbone
=
False
,
with_spi_flash
=
False
,
**
kwargs
):
platform
=
mnt_rkx7
.
Platform
()
...
...
@@ -100,7 +100,7 @@ def main():
parser
=
argparse
.
ArgumentParser
(
description
=
"LiteX SoC on MNT-RKX7"
)
parser
.
add_argument
(
"--build"
,
action
=
"store_true"
,
help
=
"Build bitstream"
)
parser
.
add_argument
(
"--load"
,
action
=
"store_true"
,
help
=
"Load bitstream"
)
parser
.
add_argument
(
"--sys-clk-freq"
,
default
=
1
00
e6
,
help
=
"System clock frequency (default: 1
00
MHz)"
)
parser
.
add_argument
(
"--sys-clk-freq"
,
default
=
1
25
e6
,
help
=
"System clock frequency (default: 1
25
MHz)"
)
parser
.
add_argument
(
"--with-spi-flash"
,
action
=
"store_true"
,
help
=
"Enable SPI Flash (MMAPed)"
)
parser
.
add_argument
(
"--with-sdcard"
,
action
=
"store_true"
,
help
=
"Enable SDCard support"
)
ethopts
=
parser
.
add_mutually_exclusive_group
()
...
...
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