forked from esl-epfl/x-heep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_verif.sh
422 lines (378 loc) · 22.4 KB
/
run_verif.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# Init Conda
conda activate core-v-mini-mcu
make mcu-gen MEMORY_BANKS=8 EXTERNAL_DOMAINS=4
# Run Fusesoc
if [[ $1 = "rtl" ]]
then
type="rtl"
fusesoc="questasim-sim-opt-upf"
fusesoc_flags="--flag=use_upf --flag=use_external_device_example"
sim_folder="sim-modelsim"
upf="RUN_UPF=1"
else
echo -e "ERROR: Wrong parameter!\n"
return
fi
# Run Fusesoc
make $fusesoc FUSESOC_FLAGS="${fusesoc_flags}"
# Open output file
if test -f "run_verif_${type}_log.txt";
then
rm run_verif_${type}_log.txt
fi
touch run_verif_${type}_log.txt
echo -e "APPLICATIONS OUTPUT:\n\n" >> ./run_verif_${type}_log.txt
# Run hello_world application
echo -e "Run hello_world application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/hello_world/hello_world.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/hello_world/hello_world.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run hello_world application (exec from flash)
echo -e "Run hello_world application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/hello_world/hello_world.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/hello_world/hello_world.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run hello_world application (load from flash)
echo -e "Run hello_world application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/hello_world/hello_world.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/hello_world/hello_world.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run matadd application
echo -e "Run matadd application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/matadd/matadd.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/matadd/matadd.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run matadd application (exec from flash)
echo -e "Run matadd application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/matadd/matadd.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/matadd/matadd.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run matadd application (load from flash)
echo -e "Run matadd application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/matadd/matadd.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/matadd/matadd.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_external_peripheral application
echo -e "Run example_external_peripheral application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_external_peripheral/example_external_peripheral.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_external_peripheral/example_external_peripheral.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_external_peripheral application (exec from flash)
echo -e "Run example_external_peripheral application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_external_peripheral/example_external_peripheral.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_external_peripheral/example_external_peripheral.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_external_peripheral application (load from flash)
echo -e "Run example_external_peripheral application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_external_peripheral/example_external_peripheral.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_external_peripheral/example_external_peripheral.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_gpio_cnt application
echo -e "Run example_gpio_cnt application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_gpio_cnt/example_gpio_cnt.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_gpio_cnt/example_gpio_cnt.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_gpio_cnt application (exec from flash)
echo -e "Run example_gpio_cnt application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_gpio_cnt/example_gpio_cnt.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_gpio_cnt/example_gpio_cnt.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_gpio_cnt application (load from flash)
echo -e "Run example_gpio_cnt application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_gpio_cnt/example_gpio_cnt.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_gpio_cnt/example_gpio_cnt.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run gpio_pmw application
echo -e "Run gpio_pmw application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/gpio_pmw/gpio_pmw.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/gpio_pmw/gpio_pmw.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run gpio_pmw application (exec from flash)
echo -e "Run gpio_pmw application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/gpio_pmw/gpio_pmw.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/gpio_pmw/gpio_pmw.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run gpio_pmw application (load from flash)
echo -e "Run gpio_pmw application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/gpio_pmw/gpio_pmw.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/gpio_pmw/gpio_pmw.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run spi_host_example application (load from flash)
echo -e "Run spi_host_example application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/spi_host_example/spi_host_example.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/spi_host_example/spi_host_example.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run dma_example application
echo -e "Run dma_example application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/dma_example/dma_example.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/dma_example/dma_example.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run dma_example application (exec from flash)
echo -e "Run dma_example application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/dma_example/dma_example.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/dma_example/dma_example.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run dma_example application (load from flash)
echo -e "Run dma_example application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/dma_example/dma_example.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/dma_example/dma_example.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run spi_host_dma_example application (load from flash)
echo -e "Run spi_host_dma_example application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/spi_host_dma_example/spi_host_dma_example.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/spi_host_dma_example/spi_host_dma_example.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_core application
echo -e "Run example_power_gating_core application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_core/example_power_gating_core.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_core/example_power_gating_core.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_core application (exec from flash)
echo -e "Run example_power_gating_core application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_core/example_power_gating_core.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_core/example_power_gating_core.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_core application (load from flash)
echo -e "Run example_power_gating_core application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_core/example_power_gating_core.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_core/example_power_gating_core.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run spi_host_dma_power_gate_example application (load from flash)
echo -e "Run spi_host_dma_power_gate_example application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/spi_host_dma_power_gate_example/spi_host_dma_power_gate_example.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/spi_host_dma_power_gate_example/spi_host_dma_power_gate_example.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_periph application
echo -e "Run example_power_gating_periph application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_periph/example_power_gating_periph.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_periph/example_power_gating_periph.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_periph application (exec from flash)
echo -e "Run example_power_gating_periph application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_periph/example_power_gating_periph.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_periph/example_power_gating_periph.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_periph application (load from flash)
echo -e "Run example_power_gating_periph application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_periph/example_power_gating_periph.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_periph/example_power_gating_periph.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_ram_blocks application
echo -e "Run example_power_gating_ram_blocks application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_ram_blocks application (exec from flash)
echo -e "Run example_power_gating_ram_blocks application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_ram_blocks application (load from flash)
echo -e "Run example_power_gating_ram_blocks application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_ram_blocks/example_power_gating_ram_blocks.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_ram_blocks application
echo -e "Run example_set_retentive_ram_blocks application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_ram_blocks application (exec from flash)
echo -e "Run example_set_retentive_ram_blocks application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_ram_blocks application (load from flash)
echo -e "Run example_set_retentive_ram_blocks application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_ram_blocks/example_set_retentive_ram_blocks.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_external application
echo -e "Run example_power_gating_external application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_external/example_power_gating_external.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_external/example_power_gating_external.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_external application (exec from flash)
echo -e "Run example_power_gating_external application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_external/example_power_gating_external.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_external/example_power_gating_external.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_power_gating_external application (load from flash)
echo -e "Run example_power_gating_external application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_power_gating_external/example_power_gating_external.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_power_gating_external/example_power_gating_external.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_external_ram_blocks application
echo -e "Run example_set_retentive_external_ram_blocks application...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.hex" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_external_ram_blocks application (exec from flash)
echo -e "Run example_set_retentive_external_ram_blocks application (exec from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.flash_exec.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.flash_exec.hex boot_sel=1 execute_from_flash=1" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Run example_set_retentive_external_ram_blocks application (load from flash)
echo -e "Run example_set_retentive_external_ram_blocks application (load from flash)...\n" >> ./run_verif_${type}_log.txt
cd sw/
make clean applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.flash_load.hex
cd ../build/openhwgroup.org_systems_core-v-mini-mcu_0/${sim_folder}/
make run RUN_OPT=1 PLUSARGS="c firmware=../../../sw/applications/example_set_retentive_external_ram_blocks/example_set_retentive_external_ram_blocks.flash_load.hex boot_sel=1 execute_from_flash=0" ${upf}
cat uart0.log >> ../../../run_verif_${type}_log.txt
cd ../../../
echo -e "\n" >> ./run_verif_${type}_log.txt
# Print output file
echo -e "\n"
cat ./run_verif_${type}_log.txt