From 9561890e44720642ea0929a8fd2058c54a22a287 Mon Sep 17 00:00:00 2001 From: vauban353 <vauban353@gmail.com> Date: Tue, 30 Aug 2022 18:27:44 +0100 Subject: [PATCH] Script debug: Add display messages to show script execution progress. --- .../HIGH_SPEED_CONNECTOR/IO_STUB/ADD_HIGH_SPEED_CONNECTOR.tcl | 3 +++ .../HIGH_SPEED_CONNECTOR/NONE/ADD_HIGH_SPEED_CONNECTOR.tcl | 3 ++- script_support/components/M2/DEFAULT/ADD_M2_INTERFACE.tcl | 2 ++ script_support/components/M2/NONE/ADD_M2_INTERFACE.tcl | 2 ++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/ADD_HIGH_SPEED_CONNECTOR.tcl b/script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/ADD_HIGH_SPEED_CONNECTOR.tcl index 55fa40e..5227dbe 100644 --- a/script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/ADD_HIGH_SPEED_CONNECTOR.tcl +++ b/script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/ADD_HIGH_SPEED_CONNECTOR.tcl @@ -1,4 +1,7 @@ +puts "======== Add High Speed Connector option: IO_STUB ========" + + source script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/PF_IO_C0.tcl source script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/PF_IO_C1.tcl source script_support/components/HIGH_SPEED_CONNECTOR/IO_STUB/PF_IO_C2.tcl diff --git a/script_support/components/HIGH_SPEED_CONNECTOR/NONE/ADD_HIGH_SPEED_CONNECTOR.tcl b/script_support/components/HIGH_SPEED_CONNECTOR/NONE/ADD_HIGH_SPEED_CONNECTOR.tcl index 80f3a2a..2db78cd 100644 --- a/script_support/components/HIGH_SPEED_CONNECTOR/NONE/ADD_HIGH_SPEED_CONNECTOR.tcl +++ b/script_support/components/HIGH_SPEED_CONNECTOR/NONE/ADD_HIGH_SPEED_CONNECTOR.tcl @@ -1,4 +1,5 @@ # # Intentionally empty. # Used when the high speed connector block is not included in the FPGA design. -# \ No newline at end of file +# +puts "======== Add High Speed Connector option: NONE ========" diff --git a/script_support/components/M2/DEFAULT/ADD_M2_INTERFACE.tcl b/script_support/components/M2/DEFAULT/ADD_M2_INTERFACE.tcl index 2242967..85a1726 100644 --- a/script_support/components/M2/DEFAULT/ADD_M2_INTERFACE.tcl +++ b/script_support/components/M2/DEFAULT/ADD_M2_INTERFACE.tcl @@ -1,3 +1,5 @@ +puts "======== Add M.2 option: DEFAULT ========" + source script_support/components/M2/DEFAULT/M2_USB.tcl source script_support/components/M2/DEFAULT/PCIE_INITIATOR.tcl diff --git a/script_support/components/M2/NONE/ADD_M2_INTERFACE.tcl b/script_support/components/M2/NONE/ADD_M2_INTERFACE.tcl index 2ce1d85..3d794f1 100644 --- a/script_support/components/M2/NONE/ADD_M2_INTERFACE.tcl +++ b/script_support/components/M2/NONE/ADD_M2_INTERFACE.tcl @@ -2,6 +2,8 @@ # Tie off and unused signals when no M.2 interface is included. #=============================================================================== +puts "======== Add M.2 option: NONE ========" + sd_mark_pins_unused -sd_name {B_V_F_BASE_DESIGN} -pin_names {BVF_RISCV_SUBSYSTEM:FIC_0_AXI4_TARGET} sd_mark_pins_unused -sd_name {B_V_F_BASE_DESIGN} -pin_names {BVF_RISCV_SUBSYSTEM:M2_APB_MTARGET} sd_connect_pins_to_constant -sd_name {B_V_F_BASE_DESIGN} -pin_names {BVF_RISCV_SUBSYSTEM:PCIE_INT_N} -value {VCC} -- GitLab