Hog v10.38.0
pre-synthesis.tcl
Go to the documentation of this file.
1 #!/usr/bin/env tclsh
2 # Copyright 2018-2026 The University of Birmingham
3 # Copyright 2018-2026 Max-Planck-Institute for Physics
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 
17 # @file
18 # The pre synthesis script checks the status of your git repository and stores into a set of variables that are fed as generics to the HDL project.
19 # This script is automatically integrated into the Vivado/Quartus workflow by the Create Project script.
20 
21 ##nagelfar variable quartus
22 ##nagelfar variable project
23 
24 set tcl_path [file normalize "[file dirname [info script]]/.."]
25 source $tcl_path/hog.tcl
26 
27 # Import tcllib
28 if {[IsSynplify] || [IsDiamond]} {
29  if {[info exists env(HOG_TCLLIB_PATH)]} {
30  lappend auto_path $env(HOG_TCLLIB_PATH)
31  } else {
32  puts "ERROR: To run Hog with Microsemi Libero SoC, you need to define the HOG_TCLLIB_PATH variable."
33  return
34  }
35 }
36 
37 if {[catch {package require struct::matrix} ERROR]} {
38  puts "$ERROR\n If you are running this script on tclsh, you can fix this by installing 'tcllib'"
39  return
40 }
41 
42 
43 if {[IsISE]} {
44  # Vivado + PlanAhead
45  set project [file tail $project_name]
46  set old_path [file normalize "../../Projects/${project_name}/$project.runs/synth_1"]
47  file mkdir $old_path
48 } else {
49  set old_path [pwd]
50 }
51 
52 if {[info exists env(HOG_EXTERNAL_PATH)]} {
53  set ext_path $env(HOG_EXTERNAL_PATH)
54  Msg Info "Found environment variable HOG_EXTERNAL_PATH, setting path for external files to $ext_path..."
55 } else {
56  set ext_path ""
57 }
58 
59 if {[IsXilinx]} {
60  # Vivado + PlanAhead
61  if {[IsISE]} {
62  set proj_file "[get_property DIRECTORY [current_project]]/$project.prr"
63  } else {
64  set proj_file [get_property parent.project_path [current_project]]
65  }
66  set proj_dir [file normalize [file dirname $proj_file]]
67  set proj_name [file rootname [file tail $proj_file]]
68 } elseif {[IsQuartus]} {
69  # Quartus
70  set proj_name [lindex $quartus(args) 1]
71  #set proj_dir [file normalize "$repo_path/Projects/$proj_name"]
72  set proj_dir [pwd]
73  set proj_file [file normalize "$proj_dir/$proj_name.qpf"]
74  # Test generated files
75  set hogQsysFileName [file normalize "$proj_dir/.hog/.hogQsys.md5"]
76  if {[file exists $hogQsysFileName] != 0} {
77  set hogQsysFile [open $hogQsysFileName r]
78  set hogQsysFileLines [split [read $hogQsysFile] "\n"]
79  foreach line $hogQsysFileLines {
80  set fileEntry [split $line "\t"]
81  set fileEntryName [lindex $fileEntry 0]
82  if {$fileEntryName != ""} {
83  if {[file exists $fileEntryName]} {
84  set newMd5Sum [Md5Sum $fileEntryName]
85  set oldMd5Sum [lindex $fileEntry 1]
86  if {$newMd5Sum != $oldMd5Sum} {
87  Msg Warning "The checksum for file $fileEntryName is not equal to the one saved in $hogQsysFileName.\n\
88  New checksum $newMd5Sum, old checksum $oldMd5Sum. \
89  Please check the any changes in the file are correctly propagated to git!"
90  }
91  } else {
92  Msg Warning "File $fileEntryName not found... Will not check Md5Sum!"
93  }
94  }
95  }
96  }
97 } elseif {[IsSynplify]} {
98  set proj_dir [file normalize [file dirname "[project_data -dir]/../.."]]
99  set proj_name [file tail $proj_dir]
100  set project $proj_name
101 } elseif {[IsDiamond]} {
102  set proj_dir [file normalize "[pwd]/.."]
103  set proj_name [file tail $proj_dir]
104  set project $proj_name
105 } else {
106  #Tclssh
107  set proj_file $old_path/[file tail $old_path].xpr
108  set proj_dir [file normalize [file dirname $proj_file]]
109  set proj_name [file rootname [file tail $proj_file]]
110  Msg CriticalWarning "You seem to be running locally on tclsh, so this is a debug message. \
111  The project file will be set to $proj_file and was derived from the path you launched this script from: $old_path. \
112  If you want this script to work properly in debug mode, please launch it from the top folder of one project, \
113  for example Repo/Projects/fpga1/ or Repo/Top/fpga1/"
114 }
115 
116 Notify Info "Starting synthesis of $proj_name."
117 
118 # Go to repository path
119 set repo_path [file normalize "$tcl_path/../.."]
120 cd $repo_path
121 
122 set group [GetGroupName $proj_dir "$tcl_path/../.."]
123 
124 # Calculating flavour if any
125 set flavour [string map {. ""} [file extension $proj_name]]
126 if {$flavour != ""} {
127  if {[string is integer $flavour]} {
128  Msg Info "Project $proj_name has flavour = $flavour, the generic variable FLAVOUR will be set to $flavour"
129  } else {
130  Msg Warning "Project name has a unexpected non numeric extension, flavour will be set to -1"
131  set flavour -1
132  }
133 } else {
134  set flavour -1
135 }
136 
137 ######## Reset files before synthesis ###########
138 ResetRepoFiles "./Projects/hog_reset_files"
139 
140 # Getting all the versions and SHAs of the repository
141 lassign [GetRepoVersions [file normalize $repo_path/Top/$group/$proj_name] $repo_path $ext_path] \
142 commit version hog_hash hog_ver \
143 top_hash top_ver \
144 libs hashes vers \
145 cons_ver cons_hash ext_names ext_hashes \
146 xml_hash xml_ver user_ip_repos user_ip_hashes user_ip_vers
147 
148 
149 set describe [GetHogDescribe [file normalize $repo_path/Top/$group/$proj_name] $repo_path]
150 set dst_dir [file normalize "bin/$group/$proj_name\-$describe"]
151 Msg Info "Creating $dst_dir..."
152 file mkdir $dst_dir/reports
153 
154 
155 #check list files and project properties
156 set confDict [dict create]
157 set allow_fail_on_conf 0
158 set allow_fail_on_list 0
159 set allow_fail_on_git 0
160 set full_diff_log 0
161 if {[file exists "$tcl_path/../../Top/$group/$proj_name/hog.conf"]} {
162  set confDict [ReadConf "$tcl_path/../../Top/$group/$proj_name/hog.conf"]
163  set allow_fail_on_check [DictGet [DictGet $confDict "hog"] "ALLOW_FAIL_ON_CHECK" 0]
164  set allow_fail_on_git [DictGet [DictGet $confDict "hog"] "ALLOW_FAIL_ON_GIT" 0]
165  set full_diff_log [DictGet [DictGet $confDict "hog"] "FULL_DIFF_LOG" 0]
166 }
167 
168 
169 set this_commit [GetSHA]
170 
171 if {[IsVivado] || [IsSynplify] || [IsDiamond]} {
172  Msg Info "Running list file checker..."
173  ##nagelfar ignore
174  if {![string equal ext_path ""]} {
175  set argv [list "-ext_path" "$ext_path" "-project" "$group/$proj_name" "-outDir" "$dst_dir" "-log" "[expr {!$allow_fail_on_check}]"]
176  } else {
177  set argv [list "-project" "$group/$proj_name" "-outDir" "$dst_dir" "-log" "[expr {!$allow_fail_on_check}]"]
178  }
179  source $tcl_path/utils/check_list_files.tcl
180  if {[file exists "$dst_dir/diff_list_and_conf.txt"]} {
181  Msg CriticalWarning "Project list or hog.conf mismatch, will use current SHA ($this_commit) and version will be set to 0."
182  set commit 0000000
183  set version 00000000
184  }
185 } elseif {[IsQuartus]} {
186  # Quartus
187  #TO BE IMPLEMENTED
188 } else {
189  #Tclssh
190 }
191 
192 Msg Info "Evaluating non committed changes..."
193 set found_uncommitted 0
194 set diff [Git diff]
195 set diff_stat [Git "diff --stat"]
196 if {$diff != ""} {
197  set found_uncommitted 1
198  Msg Warning "Found non committed changes:..."
199  if {$full_diff_log} {
200  Msg Status "$diff"
201  } else {
202  Msg Status "$diff_stat"
203  }
204  set fp [open "$dst_dir/diff_presynthesis.txt" w+]
205  puts $fp "$diff"
206  close $fp
207  Msg CriticalWarning "Repository is not clean, will use current SHA ($this_commit) and create a dirty bitfile..."
208 }
209 
210 lassign [GetHogFiles -ext_path "$ext_path" "$tcl_path/../../Top/$group/$proj_name/list/" "$tcl_path/../../"] listLibraries listProperties
211 
212 if {!$allow_fail_on_git} {
213  foreach library [dict keys $listLibraries] {
214  set fileNames [dict get $listLibraries $library]
215  foreach fileName $fileNames {
216  if {[FileCommitted $fileName] == 0} {
217  set fp [open "$dst_dir/diff_presynthesis.txt" a+]
218  set found_uncommitted 1
219  puts $fp "\n[Relative $tcl_path/../../ $fileName] is not in the git repository"
220  Msg CriticalWarning "[Relative $tcl_path/../../ $fileName] is not in the git repository. \
221  Will use current SHA ($this_commit) and version will be set to 0."
222  close $fp
223  }
224  }
225  }
226 }
227 if {$found_uncommitted == 0} {
228  Msg Info "No uncommitted changes found."
229 } else {
230  set commit 0000000
231  set version 00000000
232 }
233 
234 
235 # Check if repository has v0.0.1 tag
236 lassign [GitRet "tag -l v0.0.1"] status result
237 if {$status == 1} {
238  Msg CriticalWarning "Repository does not have an initial v0.0.1 tag yet. Please create it with \"git tag v0.0.1\" "
239 }
240 
241 
242 Msg Info "Git describe for $commit is: $describe"
243 
244 if {$commit == 0} {
245  set commit $this_commit
246 } else {
247  Msg Info "Found last SHA for $proj_name: $commit"
248  if {$commit != $this_commit} {
249  set count [Git "rev-list --count $commit..$this_commit"]
250  Msg Info "The commit in which project $proj_name was last modified is $commit, that is $count commits older than current commit $this_commit."
251  }
252 }
253 
254 if {$xml_hash != ""} {
255  set xml_dst [file normalize $old_path/../xml]
256  Msg Info "Creating XML directory $xml_dst..."
257  file mkdir $xml_dst
258  Msg Info "Copying xml files to $xml_dst and replacing placeholders with xml version $xml_ver..."
259  CopyIPbusXMLs ./Top/$group/$proj_name/ $repo_path $xml_dst [HexVersionToString $xml_ver] $xml_hash
260  set use_ipbus 1
261 } else {
262  set use_ipbus 0
263 }
264 
265 #number of threads
266 if {![IsDiamond]} {
267  set maxThreads [GetMaxThreads [file normalize ./Top/$group/$proj_name/]]
268 
269  if {$maxThreads != 1} {
270  Msg Warning "Multithreading enabled. Bitfile will not be deterministic. Number of threads: $maxThreads"
271  } else {
272  Msg Info "Disabling multithreading to assure deterministic bitfile"
273  }
274 
275  if {[IsXilinx]} {
276  ### Vivado
277  set_param general.maxThreads $maxThreads
278  } elseif {[IsQuartus]} {
279  # QUARTUS
280  if {[catch {package require ::quartus::project} ERROR]} {
281  Msg Error "$ERROR\n Can not find package ::quartus::project"
282  cd $old_path
283  return 1
284  }
285  set this_dir [pwd]
286  cd $proj_dir
287  project_open $proj_name -current_revision
288  cd $this_dir
289  set_global_assignment -name NUM_PARALLEL_PROCESSORS $maxThreads
290  project_close
291  } elseif {[IsSynplify]} {
292  set_option -max_parallel_jobs $maxThreads
293  }
294 }
295 set clock_seconds [clock seconds]
296 set tt [clock format $clock_seconds -format {%d/%m/%Y at %H:%M:%S}]
297 
298 if {[GitVersion 2.9.3]} {
299  set date [Git "log -1 --format=%cd --date=format:%d%m%Y $commit"]
300  set timee [Git "log -1 --format=%cd --date=format:00%H%M%S $commit"]
301 } else {
302  Msg Warning "Found Git version older than 2.9.3. Using current date and time instead of commit time."
303  set date [clock format $clock_seconds -format {%d%m%Y}]
304  set timee [clock format $clock_seconds -format {00%H%M%S}]
305 }
306 
307 ##### Passing Hog generic to top file
308 if {[IsXilinx] || [IsSynplify] || [IsDiamond]} {
309  ### VIVADO
310  set proj_group_and_name "$group/$proj_name"
311  # set global generic variables
312  if {[IsDiamond]} {
313  prj_project open $proj_dir/$proj_name.ldf
314  }
315  WriteGenerics "synth" $repo_path $proj_group_and_name $date $timee $commit $version \
316  $top_hash $top_ver $hog_hash $hog_ver \
317  $cons_ver $cons_hash $libs $vers \
318  $hashes $ext_names $ext_hashes \
319  $user_ip_repos $user_ip_vers $user_ip_hashes \
320  $flavour $xml_ver $xml_hash
321 
322  if {[IsDiamond]} {
323  prj_project save
324  prj_project close
325  }
326  set status_file [file normalize "$old_path/../versions.txt"]
327 } elseif {[IsQuartus]} {
328  #Quartus
329  if {[catch {package require ::quartus::project} ERROR]} {
330  Msg Error "$ERROR\n Can not find package ::quartus::project"
331  cd $old_path
332  return 1
333  }
334  set this_dir [pwd]
335  cd $proj_dir
336  project_open $proj_name -current_revision
337  cd $this_dir
338 
339  set zero_ttb 00000000
340 
341  binary scan [binary format H* [string map {{'} {}} $date]] B32 bits
342  set_parameter -name GLOBAL_DATE $bits
343  binary scan [binary format H* [string map {{'} {}} $timee]] B32 bits
344  set_parameter -name GLOBAL_TIME $bits
345  binary scan [binary format H* [string map {{'} {}} $version]] B32 bits
346  set_parameter -name GLOBAL_VER $bits
347  binary scan [binary format H* [string map {{'} {}} $commit]] B32 bits
348  set_parameter -name GLOBAL_SHA $bits
349  binary scan [binary format H* [string map {{'} {}} $top_hash]] B32 bits
350  set_parameter -name TOP_SHA $bits
351  binary scan [binary format H* [string map {{'} {}} $top_ver]] B32 bits
352  set_parameter -name TOP_VER $bits
353  binary scan [binary format H* [string map {{'} {}} $hog_hash]] B32 bits
354  set_parameter -name HOG_SHA $bits
355  binary scan [binary format H* [string map {{'} {}} $hog_ver]] B32 bits
356  set_parameter -name HOG_VER $bits
357  binary scan [binary format H* [string map {{'} {}} $cons_ver]] B32 bits
358  set_parameter -name CON_VER $bits
359  binary scan [binary format H* [string map {{'} {}} $cons_hash]] B32 bits
360  set_parameter -name CON_SHA $bits
361 
362  if {$use_ipbus == 1} {
363  binary scan [binary format H* [string map {{'} {}} $xml_ver]] B32 bits
364  set_parameter -name XML_VER $bits
365  binary scan [binary format H* [string map {{'} {}} $xml_hash]] B32 bits
366  set_parameter -name XML_SHA $bits
367  }
368 
369  #set project specific lists
370  foreach l $libs v $vers h $hashes {
371  binary scan [binary format H* [string map {{'} {}} $v]] B32 bits
372  set_parameter -name "[string toupper $l]_VER" $bits
373  binary scan [binary format H* [string map {{'} {}} $h]] B32 bits
374  set_parameter -name "[string toupper $l]_SHA" $bits
375  }
376 
377  foreach e $ext_names h $ext_hashes {
378  binary scan [binary format H* [string map {{'} {}} $h]] B32 bits
379  set_parameter -name "[string toupper $e]_SHA" $bits
380  }
381 
382  if {$flavour != -1} {
383  set_parameter -name FLAVOUR $flavour
384  }
385 
386  if {![file exists "$old_path/output_files"]} {
387  file mkdir "$old_path/output_files"
388  }
389 
390  set status_file "$old_path/output_files/versions.txt"
391  project_close
392 } else {
393  ### Tcl Shell
394  puts "Hog:DEBUG GLOBAL_DATE=$date GLOBAL_TIME=$timee"
395  puts "Hog:DEBUG GLOBAL_SHA=$commit TOP_SHA=$top_hash"
396  puts "Hog:DEBUG CON_VER=$cons_ver CON_SHA=$cons_hash"
397  puts "Hog:DEBUG XML_SHA=$xml_hash GLOBAL_VER=$version TOP_VER=$top_ver"
398  puts "Hog:DEBUG XML_VER=$xml_ver HOG_SHA=$hog_hash HOG_VER=$hog_ver"
399  puts "Hog:DEBUG LIBS: $libs $vers $hashes"
400  puts "Hog:DEBUG EXT: $ext_names $ext_hashes"
401  puts "Hog:DEBUG FLAVOUR: $flavour"
402  set status_file "$old_path/versions.txt"
403 }
404 Msg Info "Opening version file $status_file..."
405 set status_file [open $status_file "w+"]
406 
407 Msg Status " ------------------------- PRE SYNTHESIS -------------------------"
408 Msg Status " $tt"
409 Msg Status " Firmware date and time: $date, $timee"
410 if {$flavour != -1} {
411  Msg Status " Project flavour: $flavour"
412 }
413 
414 set version [HexVersionToString $version]
415 if {$group != ""} {
416  puts $status_file "## $group/$proj_name Version Table\n"
417 } else {
418  puts $status_file "## $proj_name Version Table\n"
419 }
420 
421 struct::matrix m
422 m add columns 7
423 
424 m add row "| \"**File set**\" | \"**Commit SHA**\" | **Version** |"
425 m add row "| --- | --- | --- |"
426 Msg Status " Global SHA: $commit, VER: $version"
427 m add row "| Global | $commit | $version |"
428 
429 set cons_ver [HexVersionToString $cons_ver]
430 Msg Status " Constraints SHA: $cons_hash, VER: $cons_ver"
431 m add row "| Constraints | $cons_hash | $cons_ver |"
432 
433 if {$use_ipbus == 1} {
434  set xml_ver [HexVersionToString $xml_ver]
435  Msg Status " IPbus XML SHA: $xml_hash, VER: $xml_ver"
436  m add row "| \"IPbus XML\" | $xml_hash | $xml_ver |"
437 }
438 set top_ver [HexVersionToString $top_ver]
439 Msg Status " Top SHA: $top_hash, VER: $top_ver"
440 m add row "| \"Top Directory\" | $top_hash | $top_ver |"
441 
442 set hog_ver [HexVersionToString $hog_ver]
443 Msg Status " Hog SHA: $hog_hash, VER: $hog_ver"
444 m add row "| Hog | $hog_hash | $hog_ver |"
445 
446 Msg Status " --- Libraries ---"
447 foreach l $libs v $vers h $hashes {
448  set v [HexVersionToString $v]
449  Msg Status " $l SHA: $h, VER: $v"
450  m add row "| \"**Lib:** $l\" | $h | $v |"
451 }
452 
453 if {[llength $user_ip_repos] > 0} {
454  Msg Status " --- User IP Repositories ---"
455  foreach r $user_ip_repos v $user_ip_vers h $user_ip_hashes {
456  set v [HexVersionToString $v]
457  set repo_name [file tail $r]
458  Msg Status " $repo_name SHA: $h, VER: $v"
459  m add row "| \"**Repo:** $repo_name\" | $h | $v |"
460  }
461 }
462 
463 if {[llength $ext_names] > 0} {
464  Msg Status " --- External Libraries ---"
465  foreach e $ext_names eh $ext_hashes {
466  Msg Status " $e SHA: $eh"
467  m add row "| \"**Ext:** $e\" | $eh | \" \" |"
468  }
469 }
470 
471 Msg Status " -----------------------------------------------------------------"
472 
473 puts $status_file [m format 2string]
474 puts $status_file "\n\n"
475 close $status_file
476 
477 if {[IsXilinx]} {
478  CheckYmlRef [file normalize $tcl_path/../..] true
479 }
480 
481 set user_pre_synthesis_file "./Top/$group/$proj_name/pre-synthesis.tcl"
482 if {[file exists $user_pre_synthesis_file]} {
483  Msg Info "Sourcing user pre-synthesis file $user_pre_synthesis_file"
484  source $user_pre_synthesis_file
485 }
486 
487 cd $old_path
488 
489 Msg Info "All done."