mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-09 00:48:40 -08:00
22 lines
612 B
Tcl
22 lines
612 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 basex_pcs_pma_0
|
|
|
|
set_property -dict [list \
|
|
CONFIG.Standard {1000BASEX} \
|
|
CONFIG.Physical_Interface {Transceiver} \
|
|
CONFIG.Management_Interface {false} \
|
|
CONFIG.Auto_Negotiation {false} \
|
|
CONFIG.TransceiverControl {false} \
|
|
CONFIG.RefClkRate {156.25} \
|
|
CONFIG.DrpClkRate {62.5} \
|
|
CONFIG.SupportLevel {Include_Shared_Logic_in_Core} \
|
|
CONFIG.GT_Location {X0Y10} \
|
|
] [get_ips basex_pcs_pma_0]
|