Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rkx7-litex-boards
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Reform
rkx7-litex-boards
Commits
79fe4a91
Unverified
Commit
79fe4a91
authored
3 years ago
by
enjoy-digital
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #275 from alainlou/master
rz_easyfpga: cleanup and ease of use
parents
2b2c7d3d
1b676f92
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
litex_boards/platforms/rz_easyfpga.py
+0
-4
0 additions, 4 deletions
litex_boards/platforms/rz_easyfpga.py
litex_boards/targets/rz_easyfpga.py
+5
-0
5 additions, 0 deletions
litex_boards/targets/rz_easyfpga.py
with
6 additions
and
5 deletions
README.md
+
1
−
1
View file @
79fe4a91
...
...
@@ -153,7 +153,7 @@ The Colorlight5A is a very nice board to start with, cheap, powerful, easy to us
| QMTech XC7A35T | Xilinx Artix7 | XC7A35T | 100MHz | FTDI | 16-bit 256MB DDR3 | No | 1Gbps GMII
**
| 16MB QSPI | Yes
**
|
| QMTech Wukong1 | Xilinx Artix7 | XC7A100T | 100MHz | FTDI | 16-bit 256MB DDR3 | No | 1Gbps GMII | 16MB QSPI | Yes
**
|
| QMTech Wukong2 | Xilinx Artix7 | XC7A100T/200T | 100MHz | FTDI | 16-bit 256MB DDR3 | No | 1Gbps GMII | 16MB QSPI | Yes |
| RZ-EasyFPGA | Intel Cyclone4 | EP4CE6 |
2
5MHz | IOs | 16-bit 8MB SDR | No | No | No | No |
| RZ-EasyFPGA | Intel Cyclone4 | EP4CE6 | 5
0
MHz | IOs | 16-bit 8MB SDR | No | No | No | No |
| SP605 | Xilinx Spartan6 | XC6SLX45T | 100MHz | FTDI | 16-bit 128MB DDR3
* | Gen1 X1*
| 1Gbps GMII | 8MB QSPI
* | Yes*
|
| Tagus | Xilinx Artix7 | XC7A200T | 100MHz | PCIe | 16-bit 256MB DDR3 | Gen2 X1 | 1Gbps-BASE-X
* | 16MB QSPI*
| No |
| VC707 | Xilinx Virex7 | XC7VX485T | 125MHz | FTDI | 64-bit 1GB DDR3 | Gen3 X8
* | 1Gbps GMII | 16MB QSPI*
| Yes
*
|
...
...
This diff is collapsed.
Click to expand it.
litex_boards/platforms/rz_easyfpga.py
+
0
−
4
View file @
79fe4a91
...
...
@@ -62,7 +62,3 @@ class Platform(AlteraPlatform):
def
do_finalize
(
self
,
fragment
):
AlteraPlatform
.
do_finalize
(
self
,
fragment
)
self
.
add_period_constraint
(
self
.
lookup_request
(
"
clk50
"
,
loose
=
True
),
1e9
/
50e6
)
# Generate PLL clock in STA
self
.
toolchain
.
additional_sdc_commands
.
append
(
"
derive_pll_clocks
"
)
# Calculates clock uncertainties
self
.
toolchain
.
additional_sdc_commands
.
append
(
"
derive_clock_uncertainty
"
)
This diff is collapsed.
Click to expand it.
litex_boards/targets/rz_easyfpga.py
+
5
−
0
View file @
79fe4a91
...
...
@@ -2,6 +2,7 @@
#
# This file is part of LiteX-Boards.
#
# Copyright (c) 2021 Alain Lou <alainzlou@gmail.com>
# SPDX-License-Identifier: BSD-2-Clause
...
...
@@ -64,6 +65,10 @@ class BaseSoC(SoCCore):
kwargs
[
"
integrated_rom_size
"
]
=
0x6200
kwargs
[
"
integrated_sram_size
"
]
=
0x1000
# Can only support minimal variant of vexriscv
if
kwargs
.
get
(
"
cpu_type
"
,
"
vexriscv
"
)
==
"
vexriscv
"
:
kwargs
[
"
cpu_variant
"
]
=
"
minimal
"
# SoCCore ----------------------------------------------------------------------------------
SoCCore
.
__init__
(
self
,
platform
,
sys_clk_freq
,
ident
=
"
LiteX SoC on RZ-EasyFPGA
"
,
...
...
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