[U-Boot] [PATCH v3 06/17] arm: socfpga: agilex: Add system manager support
Ley Foon Tan
ley.foon.tan at intel.com
Tue Aug 20 07:51:38 UTC 2019
Add system manager support for Agilex.
Signed-off-by: Ley Foon Tan <ley.foon.tan at intel.com>
---
v3:
- Change include filename to system_manager_soc64.h.
- Move to use defines instead of struct.
v2:
- Include system_manager_s10_agilex_common.h in system_manager_agilex.h
---
arch/arm/mach-socfpga/include/mach/system_manager.h | 2 ++
.../mach-socfpga/include/mach/system_manager_agilex.h | 11 +++++++++++
2 files changed, 13 insertions(+)
create mode 100644 arch/arm/mach-socfpga/include/mach/system_manager_agilex.h
diff --git a/arch/arm/mach-socfpga/include/mach/system_manager.h b/arch/arm/mach-socfpga/include/mach/system_manager.h
index f2f6bc8aec..cfabf48a48 100644
--- a/arch/arm/mach-socfpga/include/mach/system_manager.h
+++ b/arch/arm/mach-socfpga/include/mach/system_manager.h
@@ -23,6 +23,8 @@
#if defined(CONFIG_TARGET_SOCFPGA_STRATIX10)
#include <asm/arch/system_manager_s10.h>
+#elif defined(CONFIG_TARGET_SOCFPGA_AGILEX)
+#include <asm/arch/system_manager_agilex.h>
#else
#define SYSMGR_ROMCODEGRP_CTRL_WARMRSTCFGPINMUX BIT(0)
#define SYSMGR_ROMCODEGRP_CTRL_WARMRSTCFGIO BIT(1)
diff --git a/arch/arm/mach-socfpga/include/mach/system_manager_agilex.h b/arch/arm/mach-socfpga/include/mach/system_manager_agilex.h
new file mode 100644
index 0000000000..cb284114be
--- /dev/null
+++ b/arch/arm/mach-socfpga/include/mach/system_manager_agilex.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright (C) 2019 Intel Corporation <www.intel.com>
+ */
+
+#ifndef _SYSTEM_MANAGER_AGILEX_
+#define _SYSTEM_MANAGER_AGILEX_
+
+#include <asm/arch/system_manager_soc64.h>
+
+#endif /* _SYSTEM_MANAGER_AGILEX_ */
--
2.19.0
More information about the U-Boot
mailing list