blob: 0ae4540e10c0273809536d21a70bc7ae14b10678 [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
Chris Kay4e8aaf12022-09-01 15:21:55 +01008generate_lava_job() {
9 local model="base-aemv8a"
Juan Pablo Conded0b527c2022-07-25 16:48:17 -040010
Juan Pablo Conded0b527c2022-07-25 16:48:17 -040011 # Due to a bug in the model, the FEAT_RNG_TRAP feature is not available
12 # in models that implement versions lower than 8.8, even though this is
13 # a v8.5 feature. Therefore, version 8.8 will be used while the FVP
14 # team fixes this problem. Once ready, the parameter arch_version will
15 # be changed to 8.5.
Juan Pablo Condee64636a2022-12-07 15:31:40 -060016 arch_version="8.8" \
17 has_rng_trap="1" \
18 has_rng="1" \
19 gen_model_params
Juan Pablo Conded0b527c2022-07-25 16:48:17 -040020 model="$model" gen_fvp_yaml
21}