mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-07 16:28:40 -08:00
21 lines
582 B
Tcl
21 lines
582 B
Tcl
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2025 FPGA Ninja, LLC
|
|
#
|
|
# Authors:
|
|
# - Alex Forencich
|
|
#
|
|
|
|
create_ip -name gig_ethernet_pcs_pma -vendor xilinx.com -library ip -module_name sgmii_pcs_pma_0
|
|
|
|
set_property -dict [list \
|
|
CONFIG.Standard {SGMII} \
|
|
CONFIG.Physical_Interface {LVDS} \
|
|
CONFIG.Management_Interface {false} \
|
|
CONFIG.SupportLevel {Include_Shared_Logic_in_Core} \
|
|
CONFIG.LvdsRefClk {625} \
|
|
CONFIG.TxLane0_Placement {DIFF_PAIR_2} \
|
|
CONFIG.RxLane0_Placement {DIFF_PAIR_0} \
|
|
CONFIG.Tx_In_Upper_Nibble {0} \
|
|
] [get_ips sgmii_pcs_pma_0]
|