fvp: remove tc3 runc config from CI
TC3 doesn't boot with 11.28.23 model, with efforts to ensure a single
FVP version to be used in CI and tc4 usecases are available.
Remove usage of tc3 from l3 and l3 run configs. But l1 platform
builds are still retained.
Change-Id: I60b6029cc55c32ec4eba5308ba2cf3f6f680ebf2
Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
diff --git a/run_config/fvp-linux.tc b/run_config/fvp-linux.tc
index 05333be..205266b 100644
--- a/run_config/fvp-linux.tc
+++ b/run_config/fvp-linux.tc
@@ -16,15 +16,15 @@
# Use SCP binary from SCP build if it exists, or fetch pre-built ones.
if [ ! -f "$archive/scp_rom.bin" ]; then
# Pick the appropriate binary based on target platform variant
- if [ $plat_variant -eq 3 ] || [ $plat_variant -eq 4 ]; then
+ if [ $plat_variant -eq 4 ]; then
url="$tfa_downloads/total_compute/tc$plat_variant/scp/tc$plat_variant-bl1.bin" saveas="scp_rom.bin" fetch_file
fi
archive_file "scp_rom.bin"
fi
- # RSE is applicable to TC3 and TC4
- if [ $plat_variant -eq 3 ] || [ $plat_variant -eq 4 ]; then
+ # RSE is applicable to TC4
+ if [ $plat_variant -eq 4 ]; then
# Hold RSE terminal_uart_ap
uart="1" port="5003" file="hold_uart.exp" track_expect
diff --git a/run_config/fvp-tc3 b/run_config/fvp-tc3
deleted file mode 100644
index 688ebce..0000000
--- a/run_config/fvp-tc3
+++ /dev/null
@@ -1,11 +0,0 @@
-generate_lava_job() {
- local model="tc3"
-
- uart="1" set_expect_variable "num_cpus" "8"
-
- set_run_env "ports_script" "$ci_root/model/tc3-ports.awk"
- set_run_env "num_uarts" "4"
-
- model="$model" gen_model_params
- model="$model" gen_fvp_yaml
-}
diff --git a/run_config/fvp-tc3+sve b/run_config/fvp-tc3+sve
deleted file mode 100644
index 1ff9182..0000000
--- a/run_config/fvp-tc3+sve
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-#
-# Copyright (c) 2022-2024, Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-
-generate_lava_job() {
- local model="tc3"
-
- uart="1" set_expect_variable "num_cpus" "8"
-
- set_run_env "ports_script" "$ci_root/model/tc3-ports.awk"
- set_run_env "num_uarts" "4"
-
- model="$model" \
- sve_plugin="1" \
- gen_model_params
- model="$model" gen_fvp_yaml
-}