Build: Convert musca_a target to modern cmake

Add cmake files to musca_a target directory. Alter scatter files to
remove preprocessor shebang. Alter header files where include paths have
changed.

WARNING: This change will not build in isolation, it requires _all_
other cmake changes to successfully build. It is split out only for ease
of understanding.

Signed-off-by: Raef Coles <raef.coles@arm.com>
Signed-off-by: Balint Matyi <Balint.Matyi@arm.com>
Change-Id: Icde58c51a248d680a8a00a9516f15f86906a0e57
diff --git a/platform/CMakeLists.txt b/platform/CMakeLists.txt
index 70c1bcb..77ef0e4 100644
--- a/platform/CMakeLists.txt
+++ b/platform/CMakeLists.txt
@@ -119,6 +119,12 @@
             tfm_arch
     )
 
+    if (NOT DEFINED MCUBOOT_UPGRADE_STRATEGY)
+        message(FATAL_ERROR "MCUBOOT_UPGRADE_STRATEGY is undefined")
+    else()
+        string(CONCAT UPGRADE_STRATEGY "MCUBOOT_" ${MCUBOOT_UPGRADE_STRATEGY})
+    endif()
+
     target_compile_definitions(platform_bl2
         PUBLIC
             BL2
diff --git a/platform/ext/musca_a.cmake b/platform/ext/musca_a.cmake
deleted file mode 100644
index e76f751..0000000
--- a/platform/ext/musca_a.cmake
+++ /dev/null
@@ -1,236 +0,0 @@
-#-------------------------------------------------------------------------------
-# Copyright (c) 2018-2020, Arm Limited. All rights reserved.
-# Copyright (c) 2020, Cypress Semiconductor Corporation. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-#-------------------------------------------------------------------------------
-
-#This file gathers all Musca-A specific files in the application.
-
-#Musca-A has a Cortex M33 CPU.
-include("Common/CpuM33")
-
-set(PLATFORM_DIR ${CMAKE_CURRENT_LIST_DIR})
-
-#Specify the location of platform specific build dependencies.
-if(COMPILER STREQUAL "ARMCLANG")
-    set (S_SCATTER_FILE_NAME   "${PLATFORM_DIR}/common/armclang/tfm_common_s.sct")
-    set (BL2_SCATTER_FILE_NAME "${PLATFORM_DIR}/target/musca_a/Device/Source/armclang/musca_bl2.sct")
-    set (NS_SCATTER_FILE_NAME  "${PLATFORM_DIR}/target/musca_a/Device/Source/armclang/musca_ns.sct")
-    if (DEFINED CMSIS_DIR)
-      # not all project defines CMSIS_DIR, only the ones that use it.
-      set (RTX_LIB_PATH "${CMSIS_DIR}/RTOS2/RTX/Library/ARM/RTX_V8MMN.lib")
-    endif()
-elseif(COMPILER STREQUAL "GNUARM")
-    set (S_SCATTER_FILE_NAME   "${PLATFORM_DIR}/common/gcc/tfm_common_s.ld")
-    set (BL2_SCATTER_FILE_NAME "${PLATFORM_DIR}/target/musca_a/Device/Source/gcc/musca_bl2.ld")
-    set (NS_SCATTER_FILE_NAME  "${PLATFORM_DIR}/target/musca_a/Device/Source/gcc/musca_ns.ld")
-    if (DEFINED CMSIS_DIR)
-      # not all project defines CMSIS_DIR, only the ones that use it.
-      set (RTX_LIB_PATH "${CMSIS_DIR}/RTOS2/RTX/Library/GCC/libRTX_V8MMN.a")
-    endif()
-elseif(COMPILER STREQUAL "IARARM")
-    set (S_SCATTER_FILE_NAME   "${PLATFORM_DIR}/common/iar/tfm_common_s.icf")
-    set (BL2_SCATTER_FILE_NAME "${PLATFORM_DIR}/target/musca_a/Device/Source/iar/musca_bl2.icf")
-    set (NS_SCATTER_FILE_NAME  "${PLATFORM_DIR}/target/musca_a/Device/Source/iar/musca_ns.icf")
-    if (DEFINED CMSIS_DIR)
-      # not all project defines CMSIS_DIR, only the ones that use it.
-      set (RTX_LIB_PATH "${CMSIS_DIR}/RTOS2/RTX/Library/IAR/RTX_V8MMN.a")
-    endif()
-else()
-    message(FATAL_ERROR "No startup file is available for compiler '${CMAKE_C_COMPILER_ID}'.")
-endif()
-set (FLASH_LAYOUT          "${PLATFORM_DIR}/target/musca_a/partition/flash_layout.h")
-set (PLATFORM_LINK_INCLUDES "${PLATFORM_DIR}/target/musca_a/partition")
-
-embedded_include_directories(PATH "${PLATFORM_DIR}/cmsis" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver/Config" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/Device/Config" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/Device/Include" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/Native_Driver" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/partition" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/services/include" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/Libraries" ABSOLUTE)
-embedded_include_directories(PATH "${PLATFORM_DIR}/../include" ABSOLUTE)
-
-#Gather all source files we need.
-if (TFM_PARTITION_PLATFORM)
-    list(APPEND ALL_SRC_C_NS "${PLATFORM_DIR}/target/musca_a/services/src/tfm_ioctl_ns_api.c")
-endif()
-
-if (NOT DEFINED BUILD_CMSIS_CORE)
-  message(FATAL_ERROR "Configuration variable BUILD_CMSIS_CORE (true|false) is undefined!")
-elseif(BUILD_CMSIS_CORE)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Device/Source/system_core_init.c")
-endif()
-
-if (NOT DEFINED BUILD_RETARGET)
-  message(FATAL_ERROR "Configuration variable BUILD_RETARGET (true|false) is undefined!")
-elseif(BUILD_RETARGET)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Device/Source/device_definition.c")
-endif()
-
-if (NOT DEFINED BUILD_UART_STDOUT)
-  message(FATAL_ERROR "Configuration variable BUILD_UART_STDOUT (true|false) is undefined!")
-elseif(BUILD_UART_STDOUT)
-  if (NOT DEFINED SECURE_UART1)
-    message(FATAL_ERROR "Configuration variable SECURE_UART1 (true|false) is undefined!")
-  elseif(SECURE_UART1)
-    message(FATAL_ERROR "Configuration SECURE_UART1 TRUE is invalid for this target!")
-  endif()
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/uart_stdout.c")
-  embedded_include_directories(PATH "${PLATFORM_DIR}/common" ABSOLUTE)
-  set(BUILD_NATIVE_DRIVERS true)
-  set(BUILD_CMSIS_DRIVERS true)
-endif()
-
-if (NOT DEFINED BUILD_NATIVE_DRIVERS)
-  message(FATAL_ERROR "Configuration variable BUILD_NATIVE_DRIVERS (true|false) is undefined!")
-elseif(BUILD_NATIVE_DRIVERS)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/uart_pl011_drv.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/musca_a1_scc_drv.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/qspi_ip6514e_drv.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/gpio_cmsdk_drv.c")
-
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/Native_Driver/mpc_sie200_drv.c"
-              "${PLATFORM_DIR}/target/musca_a/Native_Driver/ppc_sse200_drv.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/qspi_ip6514e_drv.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Libraries/mt25ql_flash_lib.c")
-endif()
-
-if (NOT DEFINED BUILD_TIME)
-  message(FATAL_ERROR "Configuration variable BUILD_TIME (true|false) is undefined!")
-elseif(BUILD_TIME)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/Native_Driver/timer_cmsdk_drv.c")
-  embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/Native_Driver" ABSOLUTE)
-endif()
-
-if (NOT DEFINED BUILD_STARTUP)
-  message(FATAL_ERROR "Configuration variable BUILD_STARTUP (true|false) is undefined!")
-elseif(BUILD_STARTUP)
-  if(CMAKE_C_COMPILER_ID STREQUAL "ARMCLANG")
-    list(APPEND ALL_SRC_ASM_S "${PLATFORM_DIR}/target/musca_a/Device/Source/armclang/startup_cmsdk_musca_s.s")
-    list(APPEND ALL_SRC_ASM_NS "${PLATFORM_DIR}/target/musca_a/Device/Source/armclang/startup_cmsdk_musca_ns.s")
-    list(APPEND ALL_SRC_ASM_BL2 "${PLATFORM_DIR}/target/musca_a/Device/Source/armclang/startup_cmsdk_musca_bl2.s")
-  elseif(CMAKE_C_COMPILER_ID STREQUAL "GNUARM")
-    list(APPEND ALL_SRC_ASM_S "${PLATFORM_DIR}/target/musca_a/Device/Source/gcc/startup_cmsdk_musca_s.S")
-    list(APPEND ALL_SRC_ASM_NS "${PLATFORM_DIR}/target/musca_a/Device/Source/gcc/startup_cmsdk_musca_ns.S")
-    list(APPEND ALL_SRC_ASM_BL2 "${PLATFORM_DIR}/target/musca_a/Device/Source/gcc/startup_cmsdk_musca_bl2.S")
-    set_property(SOURCE "${ALL_SRC_ASM_S}" "${ALL_SRC_ASM_NS}" "${ALL_SRC_ASM_BL2}" APPEND
-      PROPERTY COMPILE_DEFINITIONS "__STARTUP_CLEAR_BSS_MULTIPLE" "__STARTUP_COPY_MULTIPLE")
-  elseif(CMAKE_C_COMPILER_ID STREQUAL "IARARM")
-    list(APPEND ALL_SRC_ASM_S "${PLATFORM_DIR}/target/musca_a/Device/Source/iar/startup_cmsdk_musca_s.s")
-    list(APPEND ALL_SRC_ASM_NS "${PLATFORM_DIR}/target/musca_a/Device/Source/iar/startup_cmsdk_musca_ns.s")
-    list(APPEND ALL_SRC_ASM_BL2 "${PLATFORM_DIR}/target/musca_a/Device/Source/iar/startup_cmsdk_musca_bl2.s")
-  else()
-    message(FATAL_ERROR "No startup file is available for compiler '${CMAKE_C_COMPILER_ID}'.")
-  endif()
-endif()
-
-#Enable the checks of attestation claims against hard-coded values.
-set(ATTEST_CLAIM_VALUE_CHECK ON)
-
-if (NOT DEFINED BUILD_TARGET_CFG)
-  message(FATAL_ERROR "Configuration variable BUILD_TARGET_CFG (true|false) is undefined!")
-elseif(BUILD_TARGET_CFG)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/target_cfg.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/spm_hal.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/common/template/attest_hal.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/Native_Driver/mpu_armv8m_drv.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/common/tfm_hal_its.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/common/tfm_hal_ps.c")
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/common/tfm_platform.c")
-  if (TFM_PARTITION_PLATFORM)
-    list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/services/src/tfm_platform_system.c")
-    list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/services/src/tfm_ioctl_s_api.c")
-  endif()
-  embedded_include_directories(PATH "${PLATFORM_DIR}/common" ABSOLUTE)
-endif()
-
-if (NOT DEFINED BUILD_PLAT_TEST)
-  message(FATAL_ERROR "Configuration variable BUILD_PLAT_TEST (true|false) is undefined!")
-elseif(BUILD_PLAT_TEST)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/plat_test.c")
-endif()
-
-if (NOT DEFINED BUILD_BOOT_HAL)
-  message(FATAL_ERROR "Configuration variable BUILD_BOOT_HAL (true|false) is undefined!")
-elseif(BUILD_BOOT_HAL)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/boot_hal.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/boot_hal.c")
-endif()
-
-if (NOT DEFINED BUILD_TARGET_HARDWARE_KEYS)
-  message(FATAL_ERROR "Configuration variable BUILD_TARGET_HARDWARE_KEYS (true|false) is undefined!")
-elseif(BUILD_TARGET_HARDWARE_KEYS)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/template/tfm_initial_attestation_key_material.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/template/tfm_rotpk.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/template/crypto_keys.c")
-endif()
-
-if (NOT DEFINED BUILD_TARGET_NV_COUNTERS)
-  message(FATAL_ERROR "Configuration variable BUILD_TARGET_NV_COUNTERS (true|false) is undefined!")
-elseif(BUILD_TARGET_NV_COUNTERS)
-  # NOTE: This non-volatile counters implementation is a dummy
-  #       implementation. Platform vendors have to implement the
-  #       API ONLY if the target has non-volatile counters.
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/common/template/nv_counters.c")
-  set(TARGET_NV_COUNTERS_ENABLE ON)
-  # Sets PS_ROLLBACK_PROTECTION flag to compile in the PS services
-  # rollback protection code as the target supports nv counters.
-  set (PS_ROLLBACK_PROTECTION ON)
-endif()
-
-if (NOT DEFINED BUILD_CMSIS_DRIVERS)
-  message(FATAL_ERROR "Configuration variable BUILD_CMSIS_DRIVERS (true|false) is undefined!")
-elseif(BUILD_CMSIS_DRIVERS)
-  list(APPEND ALL_SRC_C_S "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver/Driver_MPC.c"
-    "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver/Driver_PPC.c")
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver/Driver_USART.c")
-  embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver" ABSOLUTE)
-  embedded_include_directories(PATH "${PLATFORM_DIR}/driver" ABSOLUTE)
-endif()
-
-if (NOT DEFINED BUILD_FLASH)
-  message(FATAL_ERROR "Configuration variable BUILD_FLASH (true|false) is undefined!")
-elseif(BUILD_FLASH)
-  list(APPEND ALL_SRC_C "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver/Driver_QSPI_Flash.c")
-  # As the PS area is going to be in RAM, it is required to set PS_CREATE_FLASH_LAYOUT
-  # to be sure the PS service knows that when it starts the PS area does not contain any
-  # valid PS flash layout and it needs to create one. The same for ITS.
-  set(PS_CREATE_FLASH_LAYOUT ON)
-  set(ITS_CREATE_FLASH_LAYOUT ON)
-  embedded_include_directories(PATH "${PLATFORM_DIR}/target/musca_a/CMSIS_Driver" ABSOLUTE)
-  embedded_include_directories(PATH "${PLATFORM_DIR}/driver" ABSOLUTE)
-endif()
-
-if (NOT BL2)
-    message(WARNING "BL2 is mandatory on target '${TARGET_PLATFORM}'. Your choice was overriden.")
-    add_definitions(-DBL2)
-    set(BL2 True)
-    set(MCUBOOT_IMAGE_NUMBER 1)
-    mcuboot_override_upgrade_strategy("RAM_LOADING")
-    message(STATUS "MCUBOOT_UPGRADE_STRATEGY was not set, using the mandatory value for '${TARGET_PLATFORM}': ${MCUBOOT_UPGRADE_STRATEGY}.")
-    set(MCUBOOT_SIGNATURE_TYPE "RSA-3072")
-    message(STATUS "MCUBOOT_SIGNATURE_TYPE was not set, using default value: ${MCUBOOT_SIGNATURE_TYPE}.")
-else() #BL2 is True
-    if (NOT ${MCUBOOT_UPGRADE_STRATEGY} STREQUAL "RAM_LOADING")
-        message(WARNING "RAM_LOADING upgrade strategy is mandatory on target '${TARGET_PLATFORM}'. Your choice was overriden.")
-        mcuboot_override_upgrade_strategy("RAM_LOADING")
-    endif()
-endif()
-
-if (BL2)
-    set(BL2_LINKER_CONFIG ${BL2_SCATTER_FILE_NAME})
-
-    #FixMe: MCUBOOT_SIGN_RSA_LEN can be removed when ROTPK won't be hard coded in platform/ext/common/template/tfm_rotpk.c
-    #       instead independently loaded from secure code as a blob.
-    if (${MCUBOOT_SIGNATURE_TYPE} STREQUAL "RSA-2048")
-        add_definitions(-DMCUBOOT_SIGN_RSA_LEN=2048)
-    endif()
-    if (${MCUBOOT_SIGNATURE_TYPE} STREQUAL "RSA-3072")
-        add_definitions(-DMCUBOOT_SIGN_RSA_LEN=3072)
-    endif()
-endif()
diff --git a/platform/ext/target/musca_a/CMakeLists.txt b/platform/ext/target/musca_a/CMakeLists.txt
new file mode 100644
index 0000000..db0082f
--- /dev/null
+++ b/platform/ext/target/musca_a/CMakeLists.txt
@@ -0,0 +1,161 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2020, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+#-------------------------------------------------------------------------------
+
+cmake_policy(SET CMP0076 NEW)
+set(CMAKE_CURRENT_SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR})
+
+#========================= Platform region defs ===============================#
+
+target_include_directories(platform_region_defs
+    INTERFACE
+        partition
+)
+
+#========================= Platform common defs ===============================#
+
+# Specify the location of platform specific build dependencies.
+target_sources(tfm_s
+    PRIVATE
+    $<$<C_COMPILER_ID:ARMClang>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/armclang/startup_cmsdk_musca_s.s>
+    $<$<C_COMPILER_ID:GNU>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/gcc/startup_cmsdk_musca_s.S>
+)
+
+target_add_scatter_file(tfm_s
+    $<$<C_COMPILER_ID:ARMClang>:${CMAKE_BINARY_DIR}/generated/platform/ext/common/armclang/tfm_common_s.sct>
+    $<$<C_COMPILER_ID:GNU>:${CMAKE_BINARY_DIR}/generated/platform/ext/common/gcc/tfm_common_s.ld>
+    $<$<C_COMPILER_ID:IAR>:${CMAKE_BINARY_DIR}/generated/platform/ext/common/iar/tfm_common_s.icf>
+)
+
+if(NS)
+    target_sources(tfm_ns
+        PRIVATE
+            $<$<C_COMPILER_ID:ARMClang>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/armclang/startup_cmsdk_musca_ns.s>
+            $<$<C_COMPILER_ID:GNU>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/gcc/startup_cmsdk_musca_ns.S>
+    )
+    target_add_scatter_file(tfm_ns
+        $<$<C_COMPILER_ID:ARMClang>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/armclang/musca_ns.sct>
+        $<$<C_COMPILER_ID:GNU>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/gcc/musca_ns.ld>
+    )
+    target_link_libraries(tfm_ns
+        PRIVATE
+            $<$<C_COMPILER_ID:ARMClang>:${CMSIS_5_PATH}/RTOS2/RTX/Library/ARM/RTX_V8MMN.lib>
+            $<$<C_COMPILER_ID:GNU>:${CMSIS_5_PATH}/RTOS2/RTX/Library/GCC/libRTX_V8MMN.a>
+            # These libraries require linking to the veneers, so the veneers are
+            # marked again here as a link dependency to get the ordering right
+            tfm_s_veneers
+    )
+endif()
+
+if(BL2)
+    target_sources(bl2
+        PRIVATE
+            $<$<C_COMPILER_ID:ARMClang>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/armclang/startup_cmsdk_musca_bl2.s>
+            $<$<C_COMPILER_ID:GNU>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/gcc/startup_cmsdk_musca_bl2.S>
+    )
+    target_add_scatter_file(bl2
+            $<$<C_COMPILER_ID:ARMClang>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/armclang/musca_bl2.sct>
+            $<$<C_COMPILER_ID:GNU>:${CMAKE_CURRENT_SOURCE_DIR}/Device/Source/gcc/musca_bl2.ld>
+    )
+endif()
+
+#========================= Platform Secure ====================================#
+
+target_include_directories(platform_s
+    PUBLIC
+        .
+        CMSIS_Driver
+        CMSIS_Driver/Config
+        Device/Config
+        Device/Include
+        Native_Driver
+        partition
+        services/include
+)
+
+target_sources(platform_s
+    PRIVATE
+        CMSIS_Driver/Driver_QSPI_Flash.c
+        CMSIS_Driver/Driver_MPC.c
+        CMSIS_Driver/Driver_PPC.c
+        CMSIS_Driver/Driver_USART.c
+        Device/Source/device_definition.c
+        Device/Source/system_core_init.c
+        Native_Driver/mpc_sie200_drv.c
+        Native_Driver/mpu_armv8m_drv.c
+        Native_Driver/ppc_sse200_drv.c
+        Native_Driver/gpio_cmsdk_drv.c
+        Native_Driver/qspi_ip6514e_drv.c
+        Native_Driver/musca_a1_scc_drv.c
+        spm_hal.c
+        target_cfg.c
+        Native_Driver/ppc_sse200_drv.c
+        Native_Driver/uart_pl011_drv.c
+        Native_Driver/timer_cmsdk_drv.c
+        $<$<BOOL:TFM_PARTITION_PLATFORM>:${CMAKE_CURRENT_SOURCE_DIR}/plat_test.c>
+        $<$<BOOL:TFM_PARTITION_PLATFORM>:${CMAKE_CURRENT_SOURCE_DIR}/services/src/tfm_platform_system.c>
+)
+
+target_compile_options(platform_s
+    PUBLIC
+        ${COMPILER_CMSE_FLAG}
+)
+
+target_compile_definitions(platform_s
+    PUBLIC
+        $<$<C_COMPILER_ID:GNU>:__STARTUP_CLEAR_BSS_MULTIPLE>
+        $<$<C_COMPILER_ID:GNU>:__STARTUP_COPY_MULTIPLE>
+)
+
+#========================= Platform Non-Secure ================================#
+
+target_sources(platform_ns
+    PRIVATE
+        Native_Driver/uart_pl011_drv.c
+        Native_Driver/musca_a1_scc_drv.c
+        CMSIS_Driver/Driver_USART.c
+        Device/Source/system_core_init.c
+        Device/Source/device_definition.c
+)
+
+target_include_directories(platform_ns
+    PUBLIC
+        .
+        CMSIS_Driver/Config
+        Device/Config
+        Device/Include
+        Native_Driver
+        Libraries
+)
+
+#========================= Platform BL2 =======================================#
+
+if(BL2)
+    target_sources(platform_bl2
+        PRIVATE
+            CMSIS_Driver/Driver_QSPI_Flash.c
+            boot_hal.c
+            Device/Source/system_core_init.c
+            Device/Source/device_definition.c
+            Native_Driver/qspi_ip6514e_drv.c
+            Native_Driver/uart_pl011_drv.c
+            CMSIS_Driver/Driver_USART.c
+            Native_Driver/musca_a1_scc_drv.c
+            Libraries/mt25ql_flash_lib.c
+    )
+
+    target_include_directories(platform_bl2
+        PUBLIC
+            partition
+            Device/Include
+            Libraries
+        PRIVATE
+            .
+            CMSIS_Driver/Config
+            Device/Config
+            Native_Driver
+    )
+endif()
diff --git a/platform/ext/target/musca_a/Device/Source/armclang/musca_bl2.sct b/platform/ext/target/musca_a/Device/Source/armclang/musca_bl2.sct
index 5f34956..6180694 100644
--- a/platform/ext/target/musca_a/Device/Source/armclang/musca_bl2.sct
+++ b/platform/ext/target/musca_a/Device/Source/armclang/musca_bl2.sct
@@ -1,5 +1,3 @@
-#! armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -xc
-
 /*
  * Copyright (c) 2018-2020 Arm Limited. All rights reserved.
  *
diff --git a/platform/ext/target/musca_a/Device/Source/armclang/musca_ns.sct b/platform/ext/target/musca_a/Device/Source/armclang/musca_ns.sct
index e9f623b..ea7d5e1 100644
--- a/platform/ext/target/musca_a/Device/Source/armclang/musca_ns.sct
+++ b/platform/ext/target/musca_a/Device/Source/armclang/musca_ns.sct
@@ -1,5 +1,3 @@
-#! armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -xc
-
 /*
  * Copyright (c) 2018-2020 Arm Limited. All rights reserved.
  *
diff --git a/platform/ext/target/musca_a/config.cmake b/platform/ext/target/musca_a/config.cmake
new file mode 100644
index 0000000..10fc289
--- /dev/null
+++ b/platform/ext/target/musca_a/config.cmake
@@ -0,0 +1,9 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2020, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+#-------------------------------------------------------------------------------
+
+set(MCUBOOT_UPGRADE_STRATEGY            "RAM_LOADING" CACHE STRING   "Upgrade strategy when multiple boot images are loaded [OVERWRITE_ONLY, SWAP, NO_SWAP, RAM_LOADING]" FORCE)
+set(MCUBOOT_IMAGE_NUMBER                1           CACHE STRING    "Whether to combine S and NS into either 1 image, or sign each seperately" FORCE)
diff --git a/platform/ext/target/musca_a/preload.cmake b/platform/ext/target/musca_a/preload.cmake
new file mode 100644
index 0000000..db0a473
--- /dev/null
+++ b/platform/ext/target/musca_a/preload.cmake
@@ -0,0 +1,19 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2020, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+#-------------------------------------------------------------------------------
+
+# preload.cmake is used to set things that related to the platform that are both
+# immutable and global, which is to say they should apply to any kind of project
+# that uses this platform. In practise this is normally compiler definitions and
+# variables related to hardware.
+
+# Set architecture and CPU
+set(TFM_SYSTEM_PROCESSOR cortex-m33)
+set(TFM_SYSTEM_ARCHITECTURE armv8-m.main)
+set(TFM_SYSTEM_DSP OFF)
+
+# Reload compiler to generate options from the CPU and architecture
+_compiler_reload()