aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--product/n1sdp/mcp_romfw/config_n1sdp_flash.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/product/n1sdp/mcp_romfw/config_n1sdp_flash.c b/product/n1sdp/mcp_romfw/config_n1sdp_flash.c
new file mode 100644
index 00000000..56557247
--- /dev/null
+++ b/product/n1sdp/mcp_romfw/config_n1sdp_flash.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 <n1sdp_mcp_system_mmap.h>
+
+const struct fwk_module_config config_n1sdp_flash = {
+ .data = &((struct mod_n1sdp_flash_config) {
+ .flash_base_address = MCP_QSPI_FLASH_BASE_ADDR,
+ .flash_base_address_alt = MCP_QSPI_FLASH_BASE_ADDR_ALT,
+ .toc_offset = 0x0,
+ })
+};