summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOliver Gaskell <[email protected]>2024-09-12 16:51:01 +0100
committerTom Rini <[email protected]>2024-10-03 09:29:23 -0600
commit1083fa7577e3660c56b1690bb8aab30c6a3ffb25 (patch)
tree98a4c80168e576b5740ac456008fe9a69bd62b0a /include
parent0370f306198f00f573e4c5a430398b30434d1bd4 (diff)
arm: SC573-EZKIT initial support
Adds support for Analog Devices' SC573-EZKIT board. Includes: - SoC specific configs in mach-sc5xx/Kconfig - Memory Map for SPL - Necessary board-specific init functions - Board-specific Kconfig and environment in board/adi/ - Memory configuration Co-developed-by: Greg Malysa <[email protected]> Signed-off-by: Greg Malysa <[email protected]> Co-developed-by: Nathan Barrett-Morrison <[email protected]> Signed-off-by: Nathan Barrett-Morrison <[email protected]> Signed-off-by: Oliver Gaskell <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/sc573-ezkit.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/configs/sc573-ezkit.h b/include/configs/sc573-ezkit.h
new file mode 100644
index 00000000000..42e42f8150b
--- /dev/null
+++ b/include/configs/sc573-ezkit.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * (C) Copyright 2024 - Analog Devices, Inc.
+ */
+
+#ifndef __CONFIG_SC573_EZKIT_H
+#define __CONFIG_SC573_EZKIT_H
+
+/*
+ * Memory Settings
+ */
+#define MEM_MT41K128M16JT
+#define MEM_DMC0
+
+#define CFG_SYS_SDRAM_BASE 0x82000000
+#define CFG_SYS_SDRAM_SIZE 0xe000000
+
+#endif