blob: a849eaab8a1215e4a8311f6df332fb70f3e05ce8 [file] [log] [blame]
Manish Pandeye7cc1402024-03-08 14:26:47 +00001#!/usr/bin/env bash
2#
Govindraj Raja4d54f7a2025-02-20 12:03:26 -06003# Copyright (c) 2024-2025, Arm Limited. All rights reserved.
Manish Pandeye7cc1402024-03-08 14:26:47 +00004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8generate_lava_job() {
9 local model="base-aemv8a"
10
11 uart="0" file="tftf.exp" track_expect
12 uart="1" file="hold_uart.exp" track_expect
13
14 model="$model" \
15 bmcov_plugin="1" \
16 bmcov_plugin_path="${coverage_trace_plugin}" \
Govindraj Raja4d54f7a2025-02-20 12:03:26 -060017 has_ete="1" \
Manish Pandeye7cc1402024-03-08 14:26:47 +000018 etm_plugin="1" \
Govindraj Raja700a3df2024-06-12 15:10:52 -050019 has_sve="1" \
Manish Pandeye7cc1402024-03-08 14:26:47 +000020 etm_present="1" \
21 amu_present="1" \
22 has_sme="1" has_sme2="1" \
Manish Pandeye11b6592024-03-11 13:10:46 +000023 has_mpam="1" \
24 has_ecv="1" \
25 memory_tagging_support_level="3" \
Manish Pandeye7cc1402024-03-08 14:26:47 +000026 supports_branch_record_buffer_control_regs="1" \
27 supports_trace_buffer_control_regs="1" \
28 supports_trace_filter_regs="2" \
29 supports_system_trace_filter_regs="1" \
30 arch_version="9.2" \
31 gen_model_params
32
33 model="$model" gen_fvp_yaml
34}