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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [bin/] [msp430sim_c] - Blame information for rev 202

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 76 olivier.gi
#!/bin/bash
2
#------------------------------------------------------------------------------
3
# Copyright (C) 2001 Authors
4
#
5
# This source file may be used and distributed without restriction provided
6
# that this copyright statement is not removed from the file and that any
7
# derivative work contains the original copyright notice and the associated
8
# disclaimer.
9
#
10
# This source file is free software; you can redistribute it and/or modify
11
# it under the terms of the GNU Lesser General Public License as published
12
# by the Free Software Foundation; either version 2.1 of the License, or
13
# (at your option) any later version.
14
#
15
# This source is distributed in the hope that it will be useful, but WITHOUT
16
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18
# License for more details.
19
#
20
# You should have received a copy of the GNU Lesser General Public License
21
# along with this source; if not, write to the Free Software Foundation,
22
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
23
#
24
#------------------------------------------------------------------------------
25 200 olivier.gi
#
26 76 olivier.gi
# File Name: msp430sim_c
27 200 olivier.gi
#
28 76 olivier.gi
# Author(s):
29
#             - Olivier Girard,    olgirard@gmail.com
30
#
31
#------------------------------------------------------------------------------
32
# $Rev: 73 $
33
# $LastChangedBy: olivier.girard $
34
# $LastChangedDate: 2010-08-03 21:26:39 +0200 (Tue, 03 Aug 2010) $
35
#------------------------------------------------------------------------------
36
 
37
###############################################################################
38
#                            Parameter Check                                  #
39
###############################################################################
40
EXPECTED_ARGS=1
41
if [ $# -ne $EXPECTED_ARGS ]; then
42
  echo "ERROR    : wrong number of arguments"
43
  echo "USAGE    : msp430sim_c "
44
  echo "Example  : msp430sim_c sandbox"
45 98 olivier.gi
  echo ""
46 122 olivier.gi
  echo "In order to switch the verilog simulator, the OMSP_SIMULATOR environment"
47 98 olivier.gi
  echo "variable can be set to the following values:"
48
  echo ""
49
  echo "                  - iverilog  : Icarus Verilog  (default)"
50
  echo "                  - cver      : CVer"
51
  echo "                  - verilog   : Verilog-XL"
52
  echo "                  - ncverilog : NC-Verilog"
53
  echo "                  - vcs       : VCS"
54
  echo "                  - vsim      : Modelsim"
55 122 olivier.gi
  echo "                  - isim      : Xilinx simulator"
56 98 olivier.gi
  echo ""
57 76 olivier.gi
  exit 1
58
fi
59
 
60
 
61
###############################################################################
62
#                     Check if the required files exist                       #
63
###############################################################################
64
softdir=../src-c/$1;
65
elffile=../src-c/$1/$1.elf;
66
verfile=../src-c/$1/$1.v;
67 122 olivier.gi
incfile=../../../rtl/verilog/openMSP430_defines.v;
68 76 olivier.gi
submitfile=../src/submit.f;
69 122 olivier.gi
if [ $OMSP_SIMULATOR == "isim" ]; then
70
    submitfile=../src/submit.prj;
71
fi
72 76 olivier.gi
 
73
if [ ! -e $softdir ]; then
74
    echo "Software directory doesn't exist: $softdir"
75
    exit 1
76
fi
77
if [ ! -e $verfile ]; then
78
    echo "Verilog stimulus file $verfile doesn't exist: $verfile"
79
    exit 1
80
fi
81
if [ ! -e $submitfile ]; then
82
    echo "Verilog submit file $submitfile doesn't exist: $submitfile"
83
    exit 1
84
fi
85
 
86
 
87
###############################################################################
88
#                               Cleanup                                       #
89
###############################################################################
90
echo "Cleanup..."
91 98 olivier.gi
rm -rf *.vcd
92
rm -rf *.vpd
93
rm -rf *.trn
94
rm -rf *.dsn
95 141 olivier.gi
rm -rf pmem*
96 76 olivier.gi
rm -rf stimulus.v
97
 
98
 
99
###############################################################################
100
#                              Run simulation                                 #
101
###############################################################################
102
echo " ======================================================="
103
echo "| Start simulation:             $1"
104
echo " ======================================================="
105
 
106 151 olivier.gi
# Make local copy of the openMSP403 configuration file
107
# and prepare it for MSPGCC preprocessing
108
cp  $incfile  ./pmem.h
109 200 olivier.gi
sed -i 's/`ifdef/#ifdef/g'         ./pmem.h
110
sed -i 's/`else/#else/g'           ./pmem.h
111
sed -i 's/`endif/#endif/g'         ./pmem.h
112
sed -i 's/`define/#define/g'       ./pmem.h
113
sed -i 's/`include/\/\/#include/g' ./pmem.h
114
sed -i 's/`//g'              ./pmem.h
115 151 olivier.gi
sed -i "s/'//g"              ./pmem.h
116 76 olivier.gi
 
117 151 olivier.gi
# Use MSPGCC preprocessor to extract the Program, Data
118
# and Peripheral memory sizes
119 202 olivier.gi
if command -v msp430-elf-gcc >/dev/null; then
120 200 olivier.gi
    msp430-elf-gcc -E -P -x c ../bin/omsp_config.sh > pmem.sh
121
else
122
    msp430-gcc     -E -P -x c ../bin/omsp_config.sh > pmem.sh
123
fi
124 76 olivier.gi
 
125 151 olivier.gi
# Source the extracted configuration file
126
source pmem.sh
127 76 olivier.gi
 
128
# Make C program
129 151 olivier.gi
echo "Compile, link & generate IHEX file (Program Memory: $pmemsize B, Data Memory: $dmemsize B, Peripheral Space: $persize B)..."
130 76 olivier.gi
cd $softdir
131
make clean
132
make
133
cd ../../run/
134
 
135
# Create links
136 138 olivier.gi
if [ `uname -o` = "Cygwin" ]
137
then
138
    cp $elffile pmem.elf
139
    cp $verfile stimulus.v
140
else
141
    ln -s $elffile pmem.elf
142
    ln -s $verfile stimulus.v
143
fi
144 76 olivier.gi
 
145
# Create IHEX file from ELF
146
echo "Convert ELF file to IHEX format..."
147 202 olivier.gi
if command -v msp430-elf-objcopy >/dev/null; then
148 200 olivier.gi
    msp430-elf-objcopy -O ihex  pmem.elf pmem.ihex
149
else
150
    msp430-objcopy     -O ihex  pmem.elf pmem.ihex
151
fi
152 76 olivier.gi
 
153
# Generate Program memory file
154
echo "Convert IHEX file to Verilog MEMH format..."
155
../bin/ihex2mem.tcl -ihex pmem.ihex -out pmem.mem -mem_size $pmemsize
156
 
157
# Start verilog simulation
158
echo "Start Verilog simulation..."
159 202 olivier.gi
../bin/rtlsim.sh    stimulus.v pmem.mem $submitfile 0 "NO_DMA_VERIF"

powered by: WebSVN 2.1.0

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