aboutsummaryrefslogtreecommitdiff
path: root/product
diff options
context:
space:
mode:
authorDeepak Pandey <Deepak.Pandey@arm.com>2018-12-13 10:50:50 +0530
committerronald-cron-arm <39518861+ronald-cron-arm@users.noreply.github.com>2018-12-21 12:39:56 +0000
commit218892451a8cfad7b2a261997fe6ab6f7a9cfd61 (patch)
tree2de1941ea4cecddf7a941176e97e4d034027922b /product
parent30e205ea9fbbe795fe4889ccaa7ac629a51d87c2 (diff)
n1sdp/scp_rom: add config file for n1sdp_rom module
Change-Id: I506f9464cc3b3273de55dbe699fa28428d65622a Signed-off-by: Deepak Pandey <Deepak.Pandey@arm.com>
Diffstat (limited to 'product')
-rw-r--r--product/n1sdp/scp_romfw/config_n1sdp_rom.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/product/n1sdp/scp_romfw/config_n1sdp_rom.c b/product/n1sdp/scp_romfw/config_n1sdp_rom.c
new file mode 100644
index 00000000..8d1a2283
--- /dev/null
+++ b/product/n1sdp/scp_romfw/config_n1sdp_rom.c
@@ -0,0 +1,18 @@
+/*
+ * Arm SCP/MCP Software
+ * Copyright (c) 2018, Arm Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <fwk_module.h>
+#include <mod_n1sdp_flash.h>
+#include <mod_n1sdp_rom.h>
+#include <n1sdp_scp_system_mmap.h>
+
+const struct fwk_module_config config_n1sdp_rom = {
+ .data = &((struct n1sdp_rom_config) {
+ .ramfw_base = SCP_RAM0_BASE,
+ .image_type = MOD_N1SDP_FIP_TYPE_SCP_BL2,
+ })
+};