Skip to content
Snippets Groups Projects
Commit 5f953c84 authored by joachim.schmidt's avatar joachim.schmidt
Browse files

Modification of the TCL script to create the project. Modification of the HDL...

Modification of the TCL script to create the project. Modification of the HDL pinout file of the project. Modification of the IPI file of the project.
parent 4851ff09
No related branches found
No related tags found
No related merge requests found
...@@ -36,11 +36,16 @@ set src_dir "${PRJ_DIR}/../src" ...@@ -36,11 +36,16 @@ set src_dir "${PRJ_DIR}/../src"
set ip_dir "${PRJ_DIR}/../../../../../ips/hw" set ip_dir "${PRJ_DIR}/../../../../../ips/hw"
set comp_dir "${ip_dir}/$prj_name" set comp_dir "${ip_dir}/$prj_name"
set comp_src_dir "${comp_dir}/src" set comp_src_dir "${comp_dir}/src"
# USER DEFINE
#set PRJ_ZYNPS "scalp_zynqps"
#set zynqps_dir "${PRJ_DIR}/../../../../../soc/hw/${scalp_zynqps}/src"
##
print_status "Set directory paths" "OK" print_status "Set directory paths" "OK"
# Create the project # Create the project
create_project $prj_name ${PRJ_DIR}/$prj_name -part xc7z015clg485-2 create_project $prj_name ${PRJ_DIR}/$prj_name -part xc7z015clg485-2
set_property board_part SCALP [current_project] #set_property board_part SCALP [current_project]
set_property target_language VHDL [current_project] set_property target_language VHDL [current_project]
print_status "Create project" "OK" print_status "Create project" "OK"
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
-- Tool version: 2019.2 -- Tool version: 2019.2
-- Description: scalp_firmware -- Description: scalp_firmware
-- --
-- Last update: 2020-09-03 -- Last update: 2020-09-07
-- --
--------------------------------------------------------------------------------- ---------------------------------------------------------------------------------
...@@ -286,8 +286,16 @@ architecture arch of scalp_firmware is ...@@ -286,8 +286,16 @@ architecture arch of scalp_firmware is
-- Attributes -- Attributes
attribute mark_debug : string; attribute mark_debug : string;
attribute keep : string; attribute keep : string;
-- Clocks
attribute mark_debug of PSSysClkxC : signal is "true";
attribute keep of PSSysClkxC : signal is "true";
attribute mark_debug of GTPRefClk0xC : signal is "true";
attribute keep of GTPRefClk0xC : signal is "true";
attribute mark_debug of GTPRefClk1xC : signal is "true";
attribute keep of GTPRefClk1xC : signal is "true";
-- Resets
attribute mark_debug of PSSysResetxR : signal is "true";
attribute keep of PSSysResetxR : signal is "true";
begin begin
......
set PRJ_ZYNQPS "scalp_zynqps"
set VIVADO_VERSION "2019.2"
set zynqps_dir "../../../../../../soc/vivado/${PRJ_ZYNQPS}/${VIVADO_VERSION}/src/ipi_tcl"
set zynqps_ipi "${PRJ_ZYNQPS}_ipi.tcl"
source "${zynqps_dir}/${zynqps_ipi}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment