-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
82 additions
and
5 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Setup the Xilinx software and licensing | ||
source /afs/slac.stanford.edu/g/reseng/xilinx/2024.1/Vivado/2024.1/settings64.sh | ||
source /afs/slac.stanford.edu/g/reseng/xilinx/2023.1/Vivado/2023.1/settings64.sh | ||
|
||
# Setup VCS | ||
source /afs/slac.stanford.edu/g/reseng/synopsys/vcs/T-2022.06-SP2/settings.sh |
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
76 changes: 76 additions & 0 deletions
76
firmware/targets/Simple10GbeRudpKcu105Example/vivado/post_synthesis.tcl
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,76 @@ | ||
############################################################################## | ||
## This file is part of 'Simple-10GbE-RUDP-KCU105-Example'. | ||
## It is subject to the license terms in the LICENSE.txt file found in the | ||
## top-level directory of this distribution and at: | ||
## https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
## No part of 'Simple-10GbE-RUDP-KCU105-Example', including this file, | ||
## may be copied, modified, propagated, or distributed except according to | ||
## the terms contained in the LICENSE.txt file. | ||
############################################################################## | ||
|
||
############################## | ||
# Get variables and procedures | ||
############################## | ||
source -quiet $::env(RUCKUS_DIR)/vivado_env_var.tcl | ||
source -quiet $::env(RUCKUS_DIR)/vivado_proc.tcl | ||
|
||
###################################################### | ||
# Bypass the debug chipscope generation via return cmd | ||
# ELSE ... comment out the return to include chipscope | ||
###################################################### | ||
#return | ||
|
||
############################ | ||
## Open the synthesis design | ||
############################ | ||
open_run synth_1 | ||
|
||
############################### | ||
## Set the name of the ILA core | ||
############################### | ||
set ilaName u_ila_0 | ||
|
||
################## | ||
## Create the core | ||
################## | ||
CreateDebugCore ${ilaName} | ||
|
||
####################### | ||
## Set the record depth | ||
####################### | ||
set_property C_DATA_DEPTH 1024 [get_debug_cores ${ilaName}] | ||
|
||
################################# | ||
## Set the clock for the ILA core | ||
################################# | ||
SetDebugCoreClk ${ilaName} {axilClk} | ||
|
||
####################### | ||
## Set the debug Probes | ||
####################### | ||
|
||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/ack[resp][*]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/i2cRegMasterOut[regFailCode][*]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/r_reg[state][*]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/sAxilReadSlave[rresp][*]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/xbarReadSlave[rresp][*]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/ack[done]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/i2cRegMasterOut[regAck]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/i2cRegMasterOut[regFail]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/mAxilReadMasters[*][arvalid]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/mAxilReadSlaves[*][arready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/mAxilReadSlaves[*][rvalid]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/mAxilReadMasters[*][rready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/sAxilReadMaster[arvalid]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/sAxilReadMaster[rready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/sAxilReadSlave[arready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/sAxilReadSlave[rvalid]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/xbarReadMaster[arvalid]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/xbarReadMaster[rready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/xbarReadSlave[arready]} | ||
ConfigProbe ${ilaName} {U_Core/GEN_REAL.U_XbarI2cMux/xbarReadSlave[rvalid]} | ||
|
||
########################## | ||
## Write the port map file | ||
########################## | ||
WriteDebugProbes ${ilaName} |
1 change: 1 addition & 0 deletions
1
firmware/targets/Simple10GbeRudpKcu105Example/vivado/pre_opt_run.tcl
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