Files
taxi-bsl/src/cndm/board/AS02MC04/fpga/fpga_10g/config.tcl
Alex Forencich 2c45420b52 cndm: Add corundum-micro design for AS02MC04
Signed-off-by: Alex Forencich <alex@alexforencich.com>
2025-12-31 18:53:50 -08:00

23 lines
440 B
Tcl

# SPDX-License-Identifier: MIT
#
# Copyright (c) 2025 FPGA Ninja, LLC
#
# Authors:
# - Alex Forencich
#
set params [dict create]
# 10G MAC configuration
dict set params CFG_LOW_LATENCY "1"
dict set params COMBINED_MAC_PCS "1"
dict set params MAC_DATA_W "32"
# apply parameters to top-level
set param_list {}
dict for {name value} $params {
lappend param_list $name=$value
}
set_property generic $param_list [get_filesets sources_1]