aboutsummaryrefslogtreecommitdiff
path: root/product/morello/mcp_romfw/config_morello_rom.c
diff options
context:
space:
mode:
Diffstat (limited to 'product/morello/mcp_romfw/config_morello_rom.c')
-rw-r--r--product/morello/mcp_romfw/config_morello_rom.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/product/morello/mcp_romfw/config_morello_rom.c b/product/morello/mcp_romfw/config_morello_rom.c
new file mode 100644
index 00000000..734a8b68
--- /dev/null
+++ b/product/morello/mcp_romfw/config_morello_rom.c
@@ -0,0 +1,20 @@
+/*
+ * Arm SCP/MCP Software
+ * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include "morello_mcp_system_mmap.h"
+
+#include <mod_fip.h>
+#include <mod_morello_rom.h>
+
+#include <fwk_module.h>
+
+const struct fwk_module_config config_morello_rom = {
+ .data = &((struct morello_rom_config){
+ .ramfw_base = MCP_RAM0_BASE,
+ .image_type = MOD_FIP_TOC_ENTRY_MCP_BL2,
+ })
+};