OpenCores
URL https://opencores.org/ocsvn/socgen/socgen/trunk

Subversion Repositories socgen

[/] [socgen/] [trunk/] [tools/] [synthesys/] [run_ara] - Blame information for rev 135

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 135 jt_eaton
eval 'exec `which perl` -S $0 ${1+"$@"}'
2
   if 0;
3
#/****************************************************************************/
4
#/*                                                                          */
5
#/*   SOCGEN Design for Reuse toolset                                        */
6
#/*                                                                          */
7
#/*   Version 1.0.0                                                          */
8
#/*                                                                          */
9
#/*   Author(s):                                                             */
10
#/*      - John Eaton, z3qmtr45@gmail.com                                    */
11
#/*                                                                          */
12
#/****************************************************************************/
13
#/*                                                                          */
14
#/*                                                                          */
15
#/*             Copyright 2016 John T Eaton                                  */
16
#/*                                                                          */
17
#/* Licensed under the Apache License, Version 2.0 (the "License");          */
18
#/* you may not use this file except in compliance with the License.         */
19
#/* You may obtain a copy of the License at                                  */
20
#/*                                                                          */
21
#/*    http://www.apache.org/licenses/LICENSE-2.0                            */
22
#/*                                                                          */
23
#/* Unless required by applicable law or agreed to in writing, software      */
24
#/* distributed under the License is distributed on an "AS IS" BASIS,        */
25
#/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
26
#/* See the License for the specific language governing permissions and      */
27
#/* limitations under the License.                                           */
28
#/*                                                                          */
29
#/*                                                                          */
30
#/****************************************************************************/
31
 
32
 
33
############################################################################
34
# General PERL config
35
############################################################################
36
use Getopt::Long;
37
use English;
38
use File::Basename;
39
use Cwd;
40
use XML::LibXML;
41
use lib './tools';
42
use sys::lib;
43
use yp::lib;
44
 
45
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
46
 
47
 
48
############################################################################
49
### Process the options
50
############################################################################
51
Getopt::Long::config("require_order", "prefix=-");
52
GetOptions("h","help",
53
) || die "(use '$program_name -h' for help)";
54
 
55
 
56
 
57
 
58
##############################################################################
59
## Help option
60
##############################################################################
61
if ( $opt_h or $opt_help  )
62
  { print "\n run_ise vendor__library  syn_library_path chip_name chip_part";
63
    print "\n";
64
    exit 1;
65
  }
66
 
67
 
68
#/**********************************************************************/
69
#/*  Process each library by finding any ip-xact file in any component */
70
#/*                                                                    */
71
#/*  Each ip-xact file is parsed and it's filename and the names of any*/
72
#/*  modules that it uses are saved.                                   */
73
#/*                                                                    */
74
#/*                                                                    */
75
#/**********************************************************************/
76
 
77
my $home              = cwd();
78
my $prefix         = yp::lib::get_workspace();
79
 
80
 
81
my $vendor           = $ARGV[0];
82
my $library          = $ARGV[1];
83
my $syn_library_path = $ARGV[2];
84
my $chip_name        = $ARGV[3];
85
my $chip_part        = $ARGV[4];
86
my $chip_tool        = $ARGV[5];
87
 
88
 
89
 
90
chdir  "./${prefix}/${vendor}__${library}${syn_library_path}/${chip_tool}/${chip_name}";
91
 
92
print "ARA Tool NOW  \n";
93
 
94
 
95
$cmd= "yosys -p \"synth_ice40 -blif result.blif\" -s ./filelists/${chip_name}.ARA > ara.log \n";
96
if (system($cmd)) {}
97
 
98
$cmd= "arachne-pnr -d 1k -p ./target/padring.pcf result.blif -o result.asc >> ara.log\n";
99
if (system($cmd)) {}
100
 
101
$cmd= "icepack result.asc Bits.bin >> ara.log \n";
102
if (system($cmd)) {}
103
 
104
$cmd = "icetime -tmd hx1k result.asc >> ara.log\n";
105
if (system($cmd)) {}
106
 
107
 
108
 
109
chdir  "$home";
110
 
111
 
112
 
113
 
114
 
115
 
116
 
117
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.