1 |
145 |
olivier.gi |
/*===========================================================================*/
|
2 |
|
|
/* Copyright (C) 2001 Authors */
|
3 |
|
|
/* */
|
4 |
|
|
/* This source file may be used and distributed without restriction provided */
|
5 |
|
|
/* that this copyright statement is not removed from the file and that any */
|
6 |
|
|
/* derivative work contains the original copyright notice and the associated */
|
7 |
|
|
/* disclaimer. */
|
8 |
|
|
/* */
|
9 |
|
|
/* This source file is free software; you can redistribute it and/or modify */
|
10 |
|
|
/* it under the terms of the GNU Lesser General Public License as published */
|
11 |
|
|
/* by the Free Software Foundation; either version 2.1 of the License, or */
|
12 |
|
|
/* (at your option) any later version. */
|
13 |
|
|
/* */
|
14 |
|
|
/* This source is distributed in the hope that it will be useful, but WITHOUT*/
|
15 |
|
|
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
|
16 |
|
|
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
|
17 |
|
|
/* License for more details. */
|
18 |
|
|
/* */
|
19 |
|
|
/* You should have received a copy of the GNU Lesser General Public License */
|
20 |
|
|
/* along with this source; if not, write to the Free Software Foundation, */
|
21 |
|
|
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
|
22 |
|
|
/* */
|
23 |
|
|
/*===========================================================================*/
|
24 |
200 |
olivier.gi |
/* COREMARK */
|
25 |
145 |
olivier.gi |
/*---------------------------------------------------------------------------*/
|
26 |
|
|
/* */
|
27 |
|
|
/* Author(s): */
|
28 |
|
|
/* - Olivier Girard, olgirard@gmail.com */
|
29 |
|
|
/* */
|
30 |
|
|
/*---------------------------------------------------------------------------*/
|
31 |
|
|
/* $Rev: 19 $ */
|
32 |
|
|
/* $LastChangedBy: olivier.girard $ */
|
33 |
|
|
/* $LastChangedDate: 2009-08-04 23:47:15 +0200 (Tue, 04 Aug 2009) $ */
|
34 |
|
|
/*===========================================================================*/
|
35 |
|
|
`define NO_TIMEOUT
|
36 |
|
|
|
37 |
|
|
time mclk_start_time, mclk_end_time;
|
38 |
|
|
real mclk_period, mclk_frequency;
|
39 |
|
|
|
40 |
|
|
time coremark_start_time, coremark_end_time;
|
41 |
|
|
real coremark_per_sec;
|
42 |
|
|
real coremark_per_mhz;
|
43 |
|
|
|
44 |
|
|
integer Number_Of_Iterations;
|
45 |
200 |
olivier.gi |
|
46 |
145 |
olivier.gi |
initial
|
47 |
|
|
begin
|
48 |
|
|
$display(" ===============================================");
|
49 |
|
|
$display("| START SIMULATION |");
|
50 |
|
|
$display(" ===============================================");
|
51 |
202 |
olivier.gi |
// Disable automatic DMA verification
|
52 |
|
|
#10;
|
53 |
|
|
dma_verif_on = 0;
|
54 |
|
|
|
55 |
145 |
olivier.gi |
repeat(5) @(posedge mclk);
|
56 |
|
|
stimulus_done = 0;
|
57 |
|
|
|
58 |
|
|
//---------------------------------------
|
59 |
|
|
// Check CPU configuration
|
60 |
|
|
//---------------------------------------
|
61 |
|
|
|
62 |
200 |
olivier.gi |
if ((`PMEM_SIZE !== 55296) || (`DMEM_SIZE !== 5120))
|
63 |
145 |
olivier.gi |
begin
|
64 |
|
|
$display(" ===============================================");
|
65 |
|
|
$display("| SIMULATION ERROR |");
|
66 |
|
|
$display("| |");
|
67 |
|
|
$display("| Core must be configured for: |");
|
68 |
200 |
olivier.gi |
$display("| - 54kB program memory |");
|
69 |
|
|
$display("| - 5kB data memory |");
|
70 |
145 |
olivier.gi |
$display(" ===============================================");
|
71 |
200 |
olivier.gi |
$finish;
|
72 |
145 |
olivier.gi |
end
|
73 |
|
|
|
74 |
200 |
olivier.gi |
// Disable watchdog
|
75 |
|
|
// (only required because RedHat/TI GCC toolchain doesn't disable watchdog properly at startup)
|
76 |
|
|
`ifdef WATCHDOG
|
77 |
|
|
force dut.watchdog_0.wdtcnt = 16'h0000;
|
78 |
|
|
`endif
|
79 |
|
|
|
80 |
145 |
olivier.gi |
//---------------------------------------
|
81 |
|
|
// Number of benchmark iteration
|
82 |
|
|
// (Must match the C-code value)
|
83 |
|
|
//---------------------------------------
|
84 |
|
|
|
85 |
|
|
Number_Of_Iterations = 1;
|
86 |
|
|
|
87 |
|
|
|
88 |
|
|
//---------------------------------------
|
89 |
|
|
// Measure clock period
|
90 |
|
|
//---------------------------------------
|
91 |
|
|
repeat(100) @(posedge mclk);
|
92 |
|
|
$timeformat(-9, 3, " ns", 10);
|
93 |
|
|
@(posedge mclk);
|
94 |
|
|
mclk_start_time = $time;
|
95 |
|
|
@(posedge mclk);
|
96 |
|
|
mclk_end_time = $time;
|
97 |
|
|
@(posedge mclk);
|
98 |
|
|
mclk_period = mclk_end_time-mclk_start_time;
|
99 |
|
|
mclk_frequency = 1000/mclk_period;
|
100 |
|
|
$display("\nINFO-VERILOG: openMSP430 System clock frequency %f MHz", mclk_frequency);
|
101 |
|
|
|
102 |
|
|
//---------------------------------------
|
103 |
200 |
olivier.gi |
// Measure CoreMark run time
|
104 |
145 |
olivier.gi |
//---------------------------------------
|
105 |
|
|
|
106 |
|
|
// Detect beginning of run
|
107 |
|
|
@(posedge p2_dout[1]);
|
108 |
|
|
coremark_start_time = $time;
|
109 |
|
|
$timeformat(-3, 3, " ms", 10);
|
110 |
|
|
$display("INFO-VERILOG: CoreMark loop started at %t ", coremark_start_time);
|
111 |
200 |
olivier.gi |
$display("");
|
112 |
|
|
$display("INFO-VERILOG: Be patient... there could be up to 90ms to simulate");
|
113 |
|
|
$display("");
|
114 |
|
|
|
115 |
145 |
olivier.gi |
// Detect end of run
|
116 |
|
|
@(negedge p2_dout[1]);
|
117 |
|
|
coremark_end_time = $time;
|
118 |
|
|
$timeformat(-3, 3, " ms", 10);
|
119 |
|
|
$display("INFO-VERILOG: Coremark loop ended at %t ", coremark_end_time);
|
120 |
200 |
olivier.gi |
|
121 |
145 |
olivier.gi |
// Compute results
|
122 |
|
|
$timeformat(-9, 3, " ns", 10);
|
123 |
|
|
coremark_per_sec = coremark_end_time - coremark_start_time;
|
124 |
|
|
coremark_per_sec = 1000000000 / coremark_per_sec;
|
125 |
|
|
coremark_per_sec = Number_Of_Iterations*coremark_per_sec;
|
126 |
|
|
coremark_per_mhz = coremark_per_sec / mclk_frequency;
|
127 |
|
|
|
128 |
|
|
// Report results
|
129 |
|
|
$display("\INFO-VERILOG: CoreMark ticks : %d", {p6_din, p5_din, p4_din, p3_din});
|
130 |
|
|
$display("\INFO-VERILOG: CoreMark per second : %f", coremark_per_sec);
|
131 |
|
|
$display("\INFO-VERILOG: CoreMark per MHz : %f\n\n", coremark_per_mhz);
|
132 |
|
|
|
133 |
|
|
//---------------------------------------
|
134 |
|
|
// Wait for the end of C-code execution
|
135 |
|
|
//---------------------------------------
|
136 |
|
|
@(posedge p2_dout[7]);
|
137 |
200 |
olivier.gi |
|
138 |
145 |
olivier.gi |
stimulus_done = 1;
|
139 |
|
|
|
140 |
|
|
$display(" ===============================================");
|
141 |
|
|
$display("| SIMULATION DONE |");
|
142 |
|
|
$display("| (stopped through verilog stimulus) |");
|
143 |
|
|
$display(" ===============================================");
|
144 |
|
|
$finish;
|
145 |
|
|
|
146 |
|
|
end
|
147 |
|
|
|
148 |
|
|
// Display stuff from the C-program
|
149 |
|
|
always @(p2_dout[0])
|
150 |
|
|
begin
|
151 |
|
|
$write("%s", p1_dout);
|
152 |
200 |
olivier.gi |
$fflush();
|
153 |
145 |
olivier.gi |
end
|
154 |
|
|
|
155 |
200 |
olivier.gi |
// Display some info to show simulation progress
|
156 |
|
|
initial
|
157 |
|
|
begin
|
158 |
|
|
@(posedge p2_dout[1]);
|
159 |
|
|
#1000000;
|
160 |
|
|
while (p2_dout[1])
|
161 |
|
|
begin
|
162 |
|
|
$display("INFO-VERILOG: Simulated time %t ", $time);
|
163 |
|
|
#1000000;
|
164 |
|
|
end
|
165 |
|
|
end
|
166 |
145 |
olivier.gi |
|
167 |
200 |
olivier.gi |
|
168 |
145 |
olivier.gi |
// Time tick counter
|
169 |
|
|
always @(negedge mclk or posedge puc_rst)
|
170 |
|
|
if (puc_rst) {p6_din, p5_din, p4_din, p3_din} <= 32'h0000_0000;
|
171 |
|
|
else if (p2_dout[1]) {p6_din, p5_din, p4_din, p3_din} <= {p6_din, p5_din, p4_din, p3_din} + 32'h1;
|