-
Notifications
You must be signed in to change notification settings - Fork 2
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
150 changed files
with
6,402 additions
and
150,365 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
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
Submodule CommsCtrlFPGA
added at
66f314
Submodule fofb-ctrl-gw
added at
b2b9e5
Submodule infra-cores
updated
267 files
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
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
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 |
---|---|---|
|
@@ -90,4 +90,5 @@ planAhead_run_*/ | |
*synthesize.tcl | ||
*translate.tcl | ||
*project.tcl | ||
*synthesis_descriptor_pkg.vhd | ||
*files.tcl |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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,61 @@ | ||
target = "xilinx" | ||
action = "synthesis" | ||
|
||
language = "vhdl" | ||
|
||
# Allow the user to override fetchto using: | ||
# hdlmake -p "fetchto='xxx'" | ||
if locals().get('fetchto', None) is None: | ||
fetchto = "../../ip_cores" | ||
|
||
syn_device = "xc7a200t" | ||
syn_grade = "-2" | ||
syn_package = "ffg1156" | ||
syn_top = "dbe_bpm2_with_dcc" | ||
syn_project = "dbe_bpm2_with_dcc" | ||
syn_tool = "vivado" | ||
syn_properties = [ | ||
["steps.synth_design.args.more options", "-verbose"], | ||
["steps.synth_design.args.retiming", "1"], | ||
["steps.synth_design.args.assert", "1"], | ||
["steps.opt_design.args.verbose", "1"], | ||
["steps.opt_design.is_enabled", "1"], | ||
["steps.phys_opt_design.args.directive", "Explore"], | ||
["steps.phys_opt_design.args.more options", "-verbose"], | ||
["steps.phys_opt_design.is_enabled", "1"], | ||
["steps.post_route_phys_opt_design.args.directive", "Explore"], | ||
["steps.post_route_phys_opt_design.args.more options", "-verbose"], | ||
["steps.post_route_phys_opt_design.is_enabled", "1"], | ||
["steps.write_bitstream.args.verbose", "1"]] | ||
|
||
board = "afc" | ||
|
||
# For appending the afc_ref_design.xdc to synthesis | ||
afc_base_xdc = ['acq'] | ||
|
||
import os | ||
import sys | ||
if os.path.isfile("synthesis_descriptor_pkg.vhd"): | ||
files = ["synthesis_descriptor_pkg.vhd"]; | ||
else: | ||
sys.exit("Generate the SDB descriptor before using HDLMake (./build_synthesis_sdb.sh)") | ||
|
||
machine_pkg = "sirius_bo_250M"; | ||
|
||
# Pass more XDC to afc-gw so it will merge it last with | ||
# other .xdc. We need this as we depend on variables defined | ||
# on afc_base xdc files. | ||
xdc_files = [ | ||
"../dbe_common/dbe_bpm2.xdc", | ||
"../dbe_common/afc_p2p_gts.xdc", | ||
] | ||
|
||
additional_xdc = [] | ||
for f in xdc_files: | ||
additional_xdc.append(os.path.abspath(f)) | ||
|
||
modules = { | ||
"local" : [ | ||
"../../../top/afc_v3/dbe_bpm2_with_dcc" | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
hdl/syn/afc_v3/dbe_bpm2_bo_sirius_with_dcc/build_synthesis_sdb.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Exit on error | ||
set -e | ||
# Check for uninitialized variables | ||
set -u | ||
|
||
# Maximum of 16 chars | ||
SYNTH_INFO_PROJECT="bpm-gw-bo-sirius" | ||
SYNTH_INFO_TOOL="VIVADO" | ||
SYNTH_INFO_VER=$(vivado -version | head -n 1 | cut -d' ' -f2 | cut -d 'v' -f2) | ||
|
||
SYNTH_INFO_COMMAND="../../gen_sdbsyn.py --project ${SYNTH_INFO_PROJECT} --tool ${SYNTH_INFO_TOOL} --ver ${SYNTH_INFO_VER}" | ||
|
||
# Generate synthesis file | ||
echo $SYNTH_INFO_COMMAND | ||
eval $SYNTH_INFO_COMMAND |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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,61 @@ | ||
target = "xilinx" | ||
action = "synthesis" | ||
|
||
language = "vhdl" | ||
|
||
# Allow the user to override fetchto using: | ||
# hdlmake -p "fetchto='xxx'" | ||
if locals().get('fetchto', None) is None: | ||
fetchto = "../../ip_cores" | ||
|
||
syn_device = "xc7a200t" | ||
syn_grade = "-2" | ||
syn_package = "ffg1156" | ||
syn_top = "dbe_bpm2_with_dcc" | ||
syn_project = "dbe_bpm2_with_dcc" | ||
syn_tool = "vivado" | ||
syn_properties = [ | ||
["steps.synth_design.args.more options", "-verbose"], | ||
["steps.synth_design.args.retiming", "1"], | ||
["steps.synth_design.args.assert", "1"], | ||
["steps.opt_design.args.verbose", "1"], | ||
["steps.opt_design.is_enabled", "1"], | ||
["steps.phys_opt_design.args.directive", "Explore"], | ||
["steps.phys_opt_design.args.more options", "-verbose"], | ||
["steps.phys_opt_design.is_enabled", "1"], | ||
["steps.post_route_phys_opt_design.args.directive", "Explore"], | ||
["steps.post_route_phys_opt_design.args.more options", "-verbose"], | ||
["steps.post_route_phys_opt_design.is_enabled", "1"], | ||
["steps.write_bitstream.args.verbose", "1"]] | ||
|
||
board = "afc" | ||
|
||
# For appending the afc_ref_design.xdc to synthesis | ||
afc_base_xdc = ['acq'] | ||
|
||
import os | ||
import sys | ||
if os.path.isfile("synthesis_descriptor_pkg.vhd"): | ||
files = ["synthesis_descriptor_pkg.vhd"]; | ||
else: | ||
sys.exit("Generate the SDB descriptor before using HDLMake (./build_synthesis_sdb.sh)") | ||
|
||
machine_pkg = "sirius_sr_250M"; | ||
|
||
# Pass more XDC to afc-gw so it will merge it last with | ||
# other .xdc. We need this as we depend on variables defined | ||
# on afc_base xdc files. | ||
xdc_files = [ | ||
"../dbe_common/dbe_bpm2.xdc", | ||
"../dbe_common/afc_p2p_gts.xdc", | ||
] | ||
|
||
additional_xdc = [] | ||
for f in xdc_files: | ||
additional_xdc.append(os.path.abspath(f)) | ||
|
||
modules = { | ||
"local" : [ | ||
"../../../top/afc_v3/dbe_bpm2_with_dcc" | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
hdl/syn/afc_v3/dbe_bpm2_sr_sirius_with_dcc/build_bitstream_local.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
# Exit on error | ||
set -e | ||
# Check for uninitialized variables | ||
set -u | ||
|
||
COMMAND="(./build_synthesis_sdb.sh; hdlmake -a makefile; time make; date) 2>&1 | tee make_output" | ||
|
||
echo $COMMAND | ||
eval $COMMAND |
5 changes: 5 additions & 0 deletions
5
.../afc_v1/dbe_bpm/build_bitstream_remote.sh → ...sirius_with_dcc/build_bitstream_remote.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
17 changes: 17 additions & 0 deletions
17
hdl/syn/afc_v3/dbe_bpm2_sr_sirius_with_dcc/build_synthesis_sdb.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Exit on error | ||
set -e | ||
# Check for uninitialized variables | ||
set -u | ||
|
||
# Maximum of 16 chars | ||
SYNTH_INFO_PROJECT="bpm-gw-sr-sirius" | ||
SYNTH_INFO_TOOL="VIVADO" | ||
SYNTH_INFO_VER=$(vivado -version | head -n 1 | cut -d' ' -f2 | cut -d 'v' -f2) | ||
|
||
SYNTH_INFO_COMMAND="../../gen_sdbsyn.py --project ${SYNTH_INFO_PROJECT} --tool ${SYNTH_INFO_TOOL} --ver ${SYNTH_INFO_VER}" | ||
|
||
# Generate synthesis file | ||
echo $SYNTH_INFO_COMMAND | ||
eval $SYNTH_INFO_COMMAND |
6 changes: 6 additions & 0 deletions
6
hdl/syn/afc_v3/dbe_bpm2_sr_sirius_with_dcc/synthesis_descriptor_pkg.vhd
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,6 @@ | ||
-- This file will be overwritten prior to synthesis, | ||
-- by hdlmake "syn_pre_cmd" specified on top Manifest.py. | ||
-- | ||
-- However, hdlmake requires all files to be present | ||
-- on parsing-time. So, fool the tool with this dummy | ||
-- file so we can bypass this requirement. |
Oops, something went wrong.