aboutsummaryrefslogtreecommitdiff
path: root/product/rddaniel/scp_romfw/config_rddaniel_rom.c
diff options
context:
space:
mode:
Diffstat (limited to 'product/rddaniel/scp_romfw/config_rddaniel_rom.c')
-rw-r--r--product/rddaniel/scp_romfw/config_rddaniel_rom.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/product/rddaniel/scp_romfw/config_rddaniel_rom.c b/product/rddaniel/scp_romfw/config_rddaniel_rom.c
new file mode 100644
index 00000000..960021cf
--- /dev/null
+++ b/product/rddaniel/scp_romfw/config_rddaniel_rom.c
@@ -0,0 +1,19 @@
+/*
+ * Arm SCP/MCP Software
+ * Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <fwk_module.h>
+#include <mod_rddaniel_rom.h>
+#include <scp_software_mmap.h>
+#include <scp_rddaniel_mmap_scp.h>
+
+const struct fwk_module_config config_rddaniel_rom = {
+ .data = &((struct rddaniel_rom_config) {
+ .ramfw_base = SCP_RAM0_BASE,
+ .nor_base = SCP_NOR_BASE,
+ .load_ram_size = SCP_IMAGE_SIZE,
+ })
+};