Update Musca-B1 platform path and add Musca-B1 SE

Original Musca-B1 platform was moved to musca_b1/sse_200 directory, and
Musca-B1 Secure Enclave platform was added into musca_b1/secure_enclave
directory.

Change-Id: Ie0697201416918a5bd4adf3e5080f9986769e016
Signed-off-by: Mark Horvath <mark.horvath@arm.com>
diff --git a/tfm_ci_pylib/tfm_build_manager.py b/tfm_ci_pylib/tfm_build_manager.py
index 436d0c8..ecc7881 100644
--- a/tfm_ci_pylib/tfm_build_manager.py
+++ b/tfm_ci_pylib/tfm_build_manager.py
@@ -31,15 +31,16 @@
 from .tfm_builder import TFM_Builder
 
 
-mapPlatform = {"cypress/psoc64":   "psoc64",
-               "mps2/an519":       "AN519",
-               "mps2/an521":       "AN521",
-               "mps2/an539":       "AN539",
-               "mps2/sse-200_aws": "SSE-200_AWS",
-               "mps3/an524":       "AN524",
-               "musca_a":          "MUSCA_A",
-               "musca_b1":         "MUSCA_B1",
-               "musca_s1":         "MUSCA_S1"}
+mapPlatform = {"cypress/psoc64":            "psoc64",
+               "mps2/an519":                "AN519",
+               "mps2/an521":                "AN521",
+               "mps2/an539":                "AN539",
+               "mps2/sse-200_aws":          "SSE-200_AWS",
+               "mps3/an524":                "AN524",
+               "musca_a":                   "MUSCA_A",
+               "musca_b1/sse_200":          "MUSCA_B1",
+               "musca_b1/secure_enclave":   "MUSCA_B1_SE",
+               "musca_s1":                  "MUSCA_S1"}
 
 mapCompiler = {"toolchain_GNUARM.cmake":   "GNUARM",
                "toolchain_ARMCLANG.cmake": "ARMCLANG"}
@@ -401,7 +402,7 @@
                             "partition_ps": i.partition_ps}
         if i.test_psa_api == "IPC":
             overwrite_params["test_psa_api"] += " -DINCLUDE_PANIC_TESTS=1"
-            if i.tfm_platform == "musca_b1":
+            if i.tfm_platform == "musca_b1/sse_200":
                 overwrite_params["test_psa_api"] += " -DITS_RAM_FS=ON -DPS_RAM_FS=ON"
         build_cfg["config_template"] %= overwrite_params
         if len(build_cfg["build_cmds"]) > 1: