summaryrefslogtreecommitdiff
path: root/board/intel
diff options
context:
space:
mode:
authorTingting Meng <[email protected]>2025-08-03 18:24:49 -0700
committerTien Fong Chee <[email protected]>2025-08-08 22:20:51 +0800
commit8f7d55037c80a0bcd8568985eaeca4df873944b6 (patch)
tree303558877ecfbe28ecdefc76470ae120c60a198f /board/intel
parent4f14fa7cffd114c7d6faf7482021e76c8235e756 (diff)
arch: arm: mach-socfpga: Add Agilex7 M-series mach-socfgpa enablement
Add platform related files for new platform Agilex7 M-series. Signed-off-by: Tingting Meng <[email protected]> Signed-off-by: Alif Zakuan Yuslaimi <[email protected]> Reviewed-by: Tien Fong Chee <[email protected]>
Diffstat (limited to 'board/intel')
-rw-r--r--board/intel/agilex7m-socdk/MAINTAINERS1
-rw-r--r--board/intel/agilex7m-socdk/socfpga.c12
2 files changed, 13 insertions, 0 deletions
diff --git a/board/intel/agilex7m-socdk/MAINTAINERS b/board/intel/agilex7m-socdk/MAINTAINERS
index d69e614a0be..9a5b80ae4df 100644
--- a/board/intel/agilex7m-socdk/MAINTAINERS
+++ b/board/intel/agilex7m-socdk/MAINTAINERS
@@ -4,6 +4,7 @@ M: Alif Zakuan Yuslaimi <[email protected]>
S: Maintained
F: arch/arm/dts/socfpga_soc64_u-boot.dtsi
F: arch/arm/dts/socfpga_agilex7m*
+F: arch/arm/mach-socfpga/spl_agilex7m.c
F: board/intel/agilex7m-socdk/
F: include/configs/socfpga_agilex7m_socdk.h
F: configs/socfpga_agilex7m_sdmmc_defconfig
diff --git a/board/intel/agilex7m-socdk/socfpga.c b/board/intel/agilex7m-socdk/socfpga.c
new file mode 100644
index 00000000000..60c8704b391
--- /dev/null
+++ b/board/intel/agilex7m-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();
+ return 0;
+}