blob: 66a55f0f7bb8e2207d7710d0af4d7d903077601d [file] [log] [blame]
mardyk01b5002ac2023-07-21 17:11:14 -05001#!/usr/bin/env bash
2#
3# Copyright (c) 2023, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8generate_lava_job() {
9 local model="base-aemv8a"
10
11 model="$model" \
12 gicd_are_fixed_one="1" \
13 gicd_ext_ppi_count="64" \
14 gicd_ext_spi_count="1024" \
15 gicd_its_count="1" \
16 gicd_virtual_lpi="1" \
17 gicv3_ext_interrupt_range="1" \
18 gicv3_spi_count="988" \
19 has_gicv4_1="0" \
20 bmcov_plugin="1" \
21 bmcov_plugin_path="${coverage_trace_plugin}" \
22 gen_model_params
23
24 model="$model" gen_fvp_yaml
25}