aboutsummaryrefslogtreecommitdiff
path: root/product/rdn1e1/mcp_ramfw/config_hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'product/rdn1e1/mcp_ramfw/config_hello.c')
-rw-r--r--product/rdn1e1/mcp_ramfw/config_hello.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/product/rdn1e1/mcp_ramfw/config_hello.c b/product/rdn1e1/mcp_ramfw/config_hello.c
new file mode 100644
index 00000000..6c167248
--- /dev/null
+++ b/product/rdn1e1/mcp_ramfw/config_hello.c
@@ -0,0 +1,15 @@
+#include <fwk_module_idx.h>
+#include <stdbool.h>
+#include <fwk_element.h>
+#include <fwk_module.h>
+#include <mod_hello.h>
+#include <scp_system_mmap.h>
+
+
+/* Configuration of the DDR PHY500 module. */
+struct fwk_module_config config_hello = {
+ .data = &((struct mod_hello_module_config) {
+ .initialize_init_complete = true,
+ .initialize_ref_en = true,
+ }),
+};