-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
liteeth_gen: Add specific A7_1000BASEX support and example configurat…
…ion. Adapted from known working targets but untested on hardware.
- Loading branch information
1 parent
1ea28bd
commit c05de19
Showing
2 changed files
with
56 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# This file is part of LiteEth. | ||
# | ||
# Copyright (c) 2020-2024 Florent Kermarrec <[email protected]> | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
# PHY ---------------------------------------------------------------------- | ||
phy : A7_1000BASEX | ||
vendor : xilinx | ||
toolchain : vivado | ||
|
||
# Core --------------------------------------------------------------------- | ||
refclk_freq : 200e6 | ||
clk_freq : 25e6 | ||
core : udp | ||
data_width : 32 | ||
dhcp : True | ||
|
||
# UDP Ports -------------------------------------------------------------------- | ||
udp_ports: { | ||
"udp0": { | ||
"data_width" : 32, | ||
"tx_fifo_depth" : 1024, | ||
"rx_fifo_depth" : 1024, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters