mardyk01 | b5002ac | 2023-07-21 17:11:14 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # |
| 3 | # Copyright (c) 2023, Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | generate_lava_job() { |
| 9 | local model="base-aemv8a" |
| 10 | |
| 11 | # 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. |
| 16 | arch_version="8.8" \ |
| 17 | has_rng_trap="1" \ |
| 18 | has_rng="1" \ |
| 19 | bmcov_plugin="1" \ |
| 20 | bmcov_plugin_path="${coverage_trace_plugin}" \ |
| 21 | gen_model_params |
| 22 | model="$model" gen_fvp_yaml |
| 23 | } |