summaryrefslogtreecommitdiff
path: root/board/intel
diff options
context:
space:
mode:
Diffstat (limited to 'board/intel')
-rw-r--r--board/intel/agilex5-socdk/MAINTAINERS2
-rw-r--r--board/intel/agilex5-socdk/Makefile7
-rw-r--r--board/intel/agilex5-socdk/socfpga.c12
3 files changed, 21 insertions, 0 deletions
diff --git a/board/intel/agilex5-socdk/MAINTAINERS b/board/intel/agilex5-socdk/MAINTAINERS
index b696f788c81..30d8815d202 100644
--- a/board/intel/agilex5-socdk/MAINTAINERS
+++ b/board/intel/agilex5-socdk/MAINTAINERS
@@ -2,7 +2,9 @@ SOCFPGA BOARD
M: Tien Fong Chee <tien.fong.chee@intel.com>
M: Teik Heng Chong <teik.heng.chong@intel.com>
M: Jit Loon Lim <jit.loon.lim@intel.com>
+M: Dinesh Maniyam <dinesh.maniyam@intel.com>
S: Maintained
F: board/intel/agilex5-socdk/
F: include/configs/socfpga_agilex5_socdk.h
F: configs/socfpga_agilex5_defconfig
+F: configs/socfpga_agilex5_nand2_defconfig
diff --git a/board/intel/agilex5-socdk/Makefile b/board/intel/agilex5-socdk/Makefile
new file mode 100644
index 00000000000..306a8cf5f0b
--- /dev/null
+++ b/board/intel/agilex5-socdk/Makefile
@@ -0,0 +1,7 @@
+#
+# Copyright (C) 2025 Altera Corporation <www.altera.com>
+#
+# SPDX-License-Identifier: GPL-2.0
+#
+
+obj-y := socfpga.o
diff --git a/board/intel/agilex5-socdk/socfpga.c b/board/intel/agilex5-socdk/socfpga.c
new file mode 100644
index 00000000000..d6628cfc696
--- /dev/null
+++ b/board/intel/agilex5-socdk/socfpga.c
@@ -0,0 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2025 Altera Corporation <www.altera.com>
+ */
+
+#include <asm/arch/misc.h>
+
+int board_early_init_f(void)
+{
+ socfpga_get_sys_mgr_addr("sysmgr@10d12000");
+ return 0;
+}