summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-10-31 07:53:16 -0600
committerTom Rini <[email protected]>2025-10-31 07:53:16 -0600
commit62b45e82bdbf703571450e97f605893fe0d50530 (patch)
treee4e4b3df093893d01e6e9ce3bf7e93296a7392b2 /include
parent2ab70b3b488c9ee1f9686f27334668fa63c12e6f (diff)
parent087277fc76baa0bdd6275ab365891d9058612e1e (diff)
Merge tag 'u-boot-imx-master-20251030' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/28092 - Fix a i.MX6ULL regression related to the REFTOP_VBGADJ setting. - Shrink SPL size for the Liebherr BTT board. - Add suppot for Toradex SMARC iMX95. - Fix Aquila imx95 0098 Product ID.
Diffstat (limited to 'include')
-rw-r--r--include/configs/toradex-smarc-imx95.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/configs/toradex-smarc-imx95.h b/include/configs/toradex-smarc-imx95.h
new file mode 100644
index 00000000000..e1aebd70af2
--- /dev/null
+++ b/include/configs/toradex-smarc-imx95.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/* Copyright (C) 2025 Toradex */
+
+#ifndef __IMX95_TORADEX_SMARC_H
+#define __IMX95_TORADEX_SMARC_H
+
+#include <linux/sizes.h>
+#include <asm/arch/imx-regs.h>
+
+/* module has 8GB, 2GB from 0x80000000..0xffffffff, 6GB above */
+#define SZ_6G _AC(0x180000000, ULL)
+
+/* first 256MB reserved for firmware */
+#define CFG_SYS_INIT_RAM_ADDR 0x90000000
+#define CFG_SYS_INIT_RAM_SIZE SZ_2M
+
+#define CFG_SYS_SDRAM_BASE 0x90000000
+#define PHYS_SDRAM 0x90000000
+#define PHYS_SDRAM_SIZE (SZ_2G - SZ_256M)
+#define PHYS_SDRAM_2_SIZE SZ_6G
+
+#define WDOG_BASE_ADDR WDG3_BASE_ADDR
+
+#endif