aboutsummaryrefslogtreecommitdiff
path: root/product/n1sdp/scp_romfw/firmware.mk
diff options
context:
space:
mode:
authorDeepak Pandey <Deepak.Pandey@arm.com>2018-12-13 10:56:50 +0530
committerronald-cron-arm <39518861+ronald-cron-arm@users.noreply.github.com>2018-12-21 12:39:56 +0000
commit7faa8a9288fb8862ce252435eacdab6cbf2c1587 (patch)
tree0064465c52e00b8d88faafa94e8dee9058e8e8fd /product/n1sdp/scp_romfw/firmware.mk
parent218892451a8cfad7b2a261997fe6ab6f7a9cfd61 (diff)
n1sdp/scp_rom: add Makefile and linker configuration file
Change-Id: I47b875771e18a1474de84a458b65b1c17b1806f2 Signed-off-by: Deepak Pandey <Deepak.Pandey@arm.com>
Diffstat (limited to 'product/n1sdp/scp_romfw/firmware.mk')
-rw-r--r--product/n1sdp/scp_romfw/firmware.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/product/n1sdp/scp_romfw/firmware.mk b/product/n1sdp/scp_romfw/firmware.mk
new file mode 100644
index 00000000..a44fe955
--- /dev/null
+++ b/product/n1sdp/scp_romfw/firmware.mk
@@ -0,0 +1,30 @@
+#
+# Arm SCP/MCP Software
+# Copyright (c) 2018, Arm Limited and Contributors. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+# The order of the modules in the BS_FIRMWARE_MODULES list is the order in which
+# the modules are initialized, bound, started during the pre-runtime phase.
+#
+
+BS_FIRMWARE_CPU := cortex-m7
+BS_FIRMWARE_HAS_MULTITHREADING := no
+BS_FIRMWARE_HAS_NOTIFICATION := yes
+BS_FIRMWARE_MODULE_HEADERS_ONLY := timer \
+ power_domain
+
+BS_FIRMWARE_MODULES := \
+ pl011 \
+ log \
+ n1sdp_flash \
+ n1sdp_rom \
+ clock
+
+BS_FIRMWARE_SOURCES := \
+ config_log.c \
+ config_n1sdp_flash.c \
+ config_n1sdp_rom.c \
+ config_clock.c
+
+include $(BS_DIR)/firmware.mk