blob: b6dcad2b033f6b69d31061f7497eea3a3084ed04 [file] [log] [blame]
Juan Pablo Conded0b527c2022-07-25 16:48:17 -04001#!/usr/bin/env bash
2#
3# Copyright (c) 2022, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8post_tf_archive() {
9 local model="base-aemv8a"
10
11 model="$model" \
12 # Due to a bug in the model, the FEAT_RNG_TRAP feature is not available
13 # in models that implement versions lower than 8.8, even though this is
14 # a v8.5 feature. Therefore, version 8.8 will be used while the FVP
15 # team fixes this problem. Once ready, the parameter arch_version will
16 # be changed to 8.5.
17 arch_version="8.8" \
18 has_rng_trap="1" \
19 gen_model_params
20 model="$model" gen_fvp_yaml
21}
22
23fetch_tf_resource() {
24 uart="0" timeout="60" file="timeout.exp" track_expect
25 uart="1" timeout="60" file="crash_rng_trap_unhandled_exception_at_el3.exp" track_expect
26}