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
4a189516
Commit
4a189516
authored
3 years ago
by
Florent Kermarrec
Browse files
Options
Downloads
Patches
Plain Diff
tul_pynq_z2: Fix copyrights, remove PS7 part for now.
parent
54c777a4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
litex_boards/platforms/tul_pynq_z2.py
+1
-1
1 addition, 1 deletion
litex_boards/platforms/tul_pynq_z2.py
litex_boards/targets/tul_pynq_z2.py
+3
-14
3 additions, 14 deletions
litex_boards/targets/tul_pynq_z2.py
with
4 additions
and
15 deletions
litex_boards/platforms/tul_pynq_z2.py
+
1
−
1
View file @
4a189516
#
# This file is part of LiteX-Boards.
#
# Copyright (c) 20
19-2020 Florent Kermarrec <florent@enjoy-digital.fr
>
# Copyright (c) 20
21 Martin Troiber <martin.troiber@gmail.com
>
# SPDX-License-Identifier: BSD-2-Clause
from
litex.build.generic_platform
import
*
...
...
This diff is collapsed.
Click to expand it.
litex_boards/targets/tul_pynq_z2.py
+
3
−
14
View file @
4a189516
...
...
@@ -3,7 +3,8 @@
#
# This file is part of LiteX-Boards.
#
# Copyright (c) 2019-2020 Florent Kermarrec <florent@enjoy-digital.fr>,
# Copyright (c) 2021 Martin Troiber <martin.troiber@gmail.com>
# Copyright (c) 2019-2020 Florent Kermarrec <florent@enjoy-digital.fr>
# SPDX-License-Identifier: BSD-2-Clause
import
os
...
...
@@ -58,19 +59,7 @@ class BaseSoC(SoCCore):
# Zynq7000 Integration ---------------------------------------------------------------------
if
kwargs
.
get
(
"
cpu_type
"
,
None
)
==
"
zynq7000
"
:
# Get and set the pre-generated .xci FIXME: change location? add it to the repository?
os
.
system
(
"
wget https://github.com/litex-hub/litex-boards/files/4967144/zybo_z7_ps7.txt
"
)
os
.
makedirs
(
"
xci
"
,
exist_ok
=
True
)
os
.
system
(
"
mv zybo_z7_ps7.txt xci/zybo_z7_ps7.xci
"
)
self
.
cpu
.
set_ps7_xci
(
"
xci/zybo_z7_ps7.xci
"
)
# Connect AXI GP0 to the SoC with base address of 0x43c00000 (default one)
wb_gp0
=
wishbone
.
Interface
()
self
.
submodules
+=
axi
.
AXI2Wishbone
(
axi
=
self
.
cpu
.
add_axi_gp_master
(),
wishbone
=
wb_gp0
,
base_address
=
0x43c00000
)
self
.
add_wb_master
(
wb_gp0
)
raise
NotImplementedError
# CRG --------------------------------------------------------------------------------------
self
.
submodules
.
crg
=
_CRG
(
platform
,
sys_clk_freq
)
...
...
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