Build: Add config to run CC3XX_RUNTIME_ENABLED on S1/B1

Add option to exercise this experimental configuration under the
"nightly_cc3xx_runtime_enabled" group

Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
Change-Id: Ia2af7bf110e75c0fe85c62dbd44502c8624a3981
diff --git a/build_helper/build_helper_configs.py b/build_helper/build_helper_configs.py
index 2a37766..ff2cf77 100755
--- a/build_helper/build_helper_configs.py
+++ b/build_helper/build_helper_configs.py
@@ -698,6 +698,22 @@
                 "invalid": _common_tfm_invalid_configs + []
                 }
 
+config_cc3xx_runtime_enabled = {"seed_params": {
+               "tfm_platform":      ["arm/musca_b1",
+                                     "arm/musca_s1"],
+                "compiler":         ["GCC_13_2"],
+                "isolation_level":  ["1"],
+                "test_regression":  ["RegBL2, RegS, RegNS"],
+                "test_psa_api":     ["OFF"],
+                "cmake_build_type": ["Release"],
+                "with_bl2":         [True],
+                "profile":          [""],
+                "extra_params":     ["CC3XX_RUNTIME_ENABLED"]
+                },
+                "common_params": _common_tfm_builder_cfg,
+                "invalid": _common_tfm_invalid_configs + []
+                }
+
 config_fp = {"seed_params": {
                 "tfm_platform":     ["arm/mps2/an521",
                                      "arm/mps3/corstone300/an552",
@@ -1551,6 +1567,7 @@
                     "nightly_profile_l": config_profile_l,
                     "nightly_ipc_backend": config_ipc_backend,
                     "nightly_cc_driver_psa": config_cc_driver_psa,
+                    "nightly_cc3xx_runtime_enabled": config_cc3xx_runtime_enabled,
                     "nightly_fp":config_fp,
                     "nightly_psa_api": config_psa_api,
                     "nightly_nsce": config_nsce,