build_helper_config: Add new dma350_ns config

The tf-m-extras repo has a new example for DMA350 NS tests.
Added the configuration for that so it can be used in the job-configs.

Change-Id: If5b75ef3698f2812377b60156632ef9e64bd2549
Signed-off-by: Bence Balogh <bence.balogh@arm.com>
diff --git a/build_helper/build_helper_configs.py b/build_helper/build_helper_configs.py
index 9240ba1..0f1ae93 100755
--- a/build_helper/build_helper_configs.py
+++ b/build_helper/build_helper_configs.py
@@ -549,6 +549,21 @@
                 "invalid": _common_tfm_invalid_configs + []
                 }
 
+config_example_dma350_ns = {"seed_params": {
+                "tfm_platform":     ["arm/mps3/corstone310/fvp"],
+                "compiler":         ["GCC_10_3"],
+                "isolation_level":  ["1"],
+                "test_regression":  ["OFF"],
+                "test_psa_api":     ["OFF"],
+                "cmake_build_type": ["Release"],
+                "with_bl2":         [True],
+                "profile":          [""],
+                "extra_params":     ["EXAMPLE_DMA350_NS"]
+                },
+                "common_params": _common_tfm_builder_cfg,
+                "invalid": _common_tfm_invalid_configs + []
+                }
+
 config_example_dma350_trigger = {"seed_params": {
                 "tfm_platform":     ["arm/mps3/corstone310/fvp"],
                 "compiler":         ["GCC_10_3"],
@@ -1063,6 +1078,7 @@
                     "example_dma350_trigger": config_example_dma350_trigger,
                     "example_dma350_clcd": config_example_dma350_clcd,
                     "example_dma350_s": config_example_dma350_s,
+                    "example_dma350_ns": config_example_dma350_ns,
 
                     # config groups for debug
                     "debug": config_debug,