Configs: Restructure Corstone300 configurations
The CS300 platform (an547 and an552) has been reorganized
in the TF-M, this commit sync the configs with the
I06bf37cdffb55d411d523b0635e8ac9c10f3fefa change.
This includes:
- Rename an552 to corstone300/an552
- Rename an547 to corstone300/an547
- Added corstone300/fvp (which is aligned with an552)
- Changed the lava config to load the binary to the QSPI
Change-Id: I829fa054879661f5d45a2af18618f5dddfebaa06
Signed-off-by: Bence Balogh <bence.balogh@arm.com>
diff --git a/lava_helper/lava_helper_configs.py b/lava_helper/lava_helper_configs.py
index 4de19fa..538f312 100644
--- a/lava_helper/lava_helper_configs.py
+++ b/lava_helper/lava_helper_configs.py
@@ -8,7 +8,7 @@
__copyright__ = """
/*
- * Copyright (c) 2018-2022, Arm Limited. All rights reserved.
+ * Copyright (c) 2018-2023, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
@@ -114,19 +114,19 @@
}
}
-# FVP with BL2 bootloader for AN552
+# FVP with BL2 bootloader for Corstone300
# firmware <-> ns <-> application: --application cpu0=bl2.axf
# bootloader <-> s <-> data: --data cpu0=tfm_s_ns_signed.bin@0x01000000
-fvp_mps3_an552_bl2 = {
+fvp_mps3_cs300_bl2 = {
"templ": "fvp_mps3.jinja2",
- "job_name": "fvp_mps3_an552_bl2",
+ "job_name": "fvp_mps3_cs300_bl2",
"device_type": "fvp",
"job_timeout": 15,
"action_timeout": 10,
"monitor_timeout": 15,
"poweroff_timeout": 1,
- "platforms": {"arm/mps3/an552": ""},
- "data_bin_offset": "0x01000000",
+ "platforms": {"arm/mps3/corstone300/fvp": ""},
+ "data_bin_offset": "0x38000000",
"binaries": {
"application": "bl2.axf",
"data": "tfm_s_ns_signed.bin"
@@ -326,7 +326,7 @@
# All configurations should be mapped here
lava_gen_config_map = {
"mps2_an521_bl2": tfm_mps2_sse_200,
- "fvp_mps3_an552_bl2": fvp_mps3_an552_bl2,
+ "fvp_mps3_cs300_bl2": fvp_mps3_cs300_bl2,
"fvp_mps2_an521_bl2": fvp_mps2_an521_bl2,
"fvp_mps2_an519_bl2": fvp_mps2_an519_bl2,
"fvp_corstone1000": fvp_corstone1000,