x393  1.0
FPGAcodeforElphelNC393camera
x393_global.tcl
Go to the documentation of this file.
1 #################################################################################
2 # Filename: x393_global.tcl
3 # Date:2016-03-28
4 # Author: Andrey Filippov
5 # Description: Placementg constraints (selected by HISPI parameter in system_devines.vh)
6 #
7 # Copyright (c) 2016 Elphel, Inc.
8 # x393_global.tcl is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # x393_global.tcl is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/> .
20 #
21 # Additional permission under GNU GPL version 3 section 7:
22 # If you modify this Program, or any covered work, by linking or combining it
23 # with independent modules provided by the FPGA vendor only (this permission
24 # does not extend to any 3-rd party modules, "soft cores" or macros) under
25 # different license terms solely for the purpose of generating binary "bitstream"
26 # files and/or simulating the code, the copyright holders of this Program give
27 # you the right to distribute the covered work without those independent modules
28 # as long as the source code for them is available from the FPGA vendor free of
29 # charge, and there is no dependence on any encrypted modules for simulating of
30 # the combined code. This permission applies to you if the distributed code
31 # contains all the components and scripts required to completely simulate it
32 # with at least one of the Free Software programs.
33 #################################################################################
34 cd ~/vdt/x393
35 set infile [open "system_defines.vh" r]
36 set HISPI 0
37 while { [gets $infile line] >= 0 } {
38  if { [regexp {(.*)`define(\s*)HISPI} $line matched prematch] } {
39  if {[regexp "//" $prematch] != 0} { continue}
40  set HISPI 1
41  break
42  }
43 }
44 close $infile
45 if { $HISPI} {
46  puts "using HISPI sensors"
47 } else {
48  puts "using parallel sensors"
49 }
50 
51 # Global constraints
52 
53 set_property INTERNAL_VREF 0.750 [get_iobanks 34]
54 set_property DCI_CASCADE 34 [get_iobanks 35]
55 set_property INTERNAL_VREF 0.750 [get_iobanks 35]
56 set_property CFGBVS GND [current_design]
57 set_property CONFIG_VOLTAGE 1.8 [current_design]
58 
59 # Disabling some of the DRC checks:
60 #http://forums.xilinx.com/t5/7-Series-FPGAs/MMCM-reference-clock-muxing/td-p/550622
61 set_property is_enabled false [get_drc_checks REQP-119]
62 #Input Buffer Connections .. has no loads. An input buffer must drive an internal load.
63 set_property is_enabled false [get_drc_checks BUFC-1]
64 #DSP Buffering:
65 set_property is_enabled false [get_drc_checks DPIP-1]
66 set_property is_enabled false [get_drc_checks DPOP-1]
67 #MMCME2_ADV connectivity violation
68 set_property is_enabled false [get_drc_checks REQP-1577]
69 #Synchronous clocking for BRAM (mult_saxi_wr_inbuf_i/ram_var_w_var_r_i/ram_i/RAMB36E1_i) in SDP mode ...
70 set_property is_enabled false [get_drc_checks REQP-165]
71 #Useless input. The input pins CE and CLR are not used for BUFR_DIVIDE BYPASS.
72 set_property is_enabled false [get_drc_checks REQP-14]
73 
74 #Some ports in some applications (sensors) are used as input-only or output-only while being specified as bidirectional
75 #WARNING: [DRC 23-20] Rule violation (RPBF-3) IO port buffering is incomplete - Device port sns4_dp74[7] expects both input and output buffering but the buffers are incomplete.
76 #WARNING: [DRC 23-20] Rule violation (RPBF-4) IO port buffering is incomplete - Device port SDDML expects output buffering but has an input buffer connected.
77 set_property is_enabled false [get_drc_checks RPBF-3]
78 set_property is_enabled false [get_drc_checks RPBF-4]
79 
80