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
8b89f6fe
Unverified
Commit
8b89f6fe
authored
Feb 01, 2021
by
enjoy-digital
Committed by
GitHub
Feb 01, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #167 from hansfbaier/master
sockit: Fix cable name, default to jtag_atlantic
parents
601c297c
5e4b29c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
litex_boards/platforms/arrow_sockit.py
litex_boards/platforms/arrow_sockit.py
+1
-1
litex_boards/targets/arrow_sockit.py
litex_boards/targets/arrow_sockit.py
+11
-2
No files found.
litex_boards/platforms/arrow_sockit.py
View file @
8b89f6fe
...
...
@@ -164,7 +164,7 @@ class Platform(AlteraPlatform):
AlteraPlatform
.
__init__
(
self
,
_device_map
[
revision
],
_io
,
connectors
=
_connectors_hsmc_gpio_daughterboard
)
def
create_programmer
(
self
):
return
USBBlaster
()
return
USBBlaster
(
cable_name
=
"CV SoCKit"
)
def
do_finalize
(
self
,
fragment
):
AlteraPlatform
.
do_finalize
(
self
,
fragment
)
...
...
litex_boards/targets/arrow_sockit.py
View file @
8b89f6fe
...
...
@@ -4,6 +4,15 @@
#
# Copyright (c) 2020 Hans Baier <hansfbaier@gmail.com>
# SPDX-License-Identifier: BSD-2-Clause
"""
This class provides basic support for the Arrow SoCKit.
Since the SoCKit has its USB2UART attached to the HPS
system, it is not available to the FPGA and thus the only
way to communicate is via JTAG serial which is configured
by default.
To access it, you can use the nios2_terminal application
included in the Intel/Altera quartus distribution.
"""
import
os
import
argparse
...
...
@@ -44,9 +53,9 @@ class BaseSoC(SoCCore):
def
__init__
(
self
,
sys_clk_freq
=
int
(
50e6
),
revision
=
"revd"
,
**
kwargs
):
platform
=
arrow_sockit
.
Platform
(
revision
)
# Defaults to
Crossover UART
because serial is attached to the HPS and cannot be used.
# Defaults to
UART over JTAG
because serial is attached to the HPS and cannot be used.
if
kwargs
[
"uart_name"
]
==
"serial"
:
kwargs
[
"uart_name"
]
=
"
crossover
"
kwargs
[
"uart_name"
]
=
"
jtag_atlantic
"
# SoCCore ----------------------------------------------------------------------------------
SoCCore
.
__init__
(
self
,
platform
,
sys_clk_freq
,
...
...
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