summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorDominik Haller <[email protected]>2026-01-15 17:41:12 -0800
committerTom Rini <[email protected]>2026-02-02 13:39:42 -0600
commite9fa9a2fe325e7030f01f3bd62bf4d571ec6a6c1 (patch)
treed1a464d0e75693a107c06b85253da8b7c848ff81 /include/configs
parent22d24ee4f6b4d53acd3a56fcd271613e60f66417 (diff)
board: phytec: Add PHYTEC phyCORE-AM68x/TDA4x SoM
Add support for the PHYTEC phyCORE-AM68x/TDA4x (J721S2 family) SoM. Supported features: - 4GB LPDDR4 RAM - eMMC - SD-Card - Ethernet - OSPI - AVS - debug UART Signed-off-by: Dominik Haller <[email protected]> Reviewed-by: Wadim Egorov <[email protected]>
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/phycore_am68x.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/configs/phycore_am68x.h b/include/configs/phycore_am68x.h
new file mode 100644
index 00000000000..341c3ff4a31
--- /dev/null
+++ b/include/configs/phycore_am68x.h
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later OR MIT */
+/*
+ * Configuration header file for PHYTEC phyCORE-AM68x
+ *
+ */
+
+#ifndef __PHYCORE_AM68X_H
+#define __PHYCORE_AM68X_H
+
+/* DDR Configuration */
+#define CFG_SYS_SDRAM_BASE 0x80000000
+
+/* SPL Loader Configuration */
+#if defined(CONFIG_TARGET_PHYCORE_AM68X_A72)
+#define CFG_SYS_UBOOT_BASE 0x50280000
+/* Image load address in RAM for DFU boot*/
+#else
+#define CFG_SYS_UBOOT_BASE 0x50080000
+#endif
+
+#define PHYCORE_AM6XX_FW_NAME_TIBOOT3 u"PHYCORE_AM68X_TIBOOT3"
+#define PHYCORE_AM6XX_FW_NAME_SPL u"PHYCORE_AM68X_SPL"
+#define PHYCORE_AM6XX_FW_NAME_UBOOT u"PHYCORE_AM68X_UBOOT"
+
+#endif /* __PHYCORE_AM62AX_H */