From: Emanuele Ghidoli <ghidoliemanuele@gmail.com>
To: Tom Rini <trini@konsulko.com>,
Stefano Babic <sbabic@nabladev.com>,
Fabio Estevam <festevam@gmail.com>,
"NXP i.MX U-Boot Team" <uboot-imx@nxp.com>,
Francesco Dolcini <francesco.dolcini@toradex.com>
Cc: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>,
"Peng Fan" <peng.fan@nxp.com>, "Alice Guo" <alice.guo@nxp.com>,
"Sumit Garg" <sumit.garg@oss.qualcomm.com>,
Simon Glass <sjg@chromium.org>,
u-boot@lists.denx.de
Subject: [PATCH v2 0/3] add Toradex Verdin iMX95 support
Date: Fri, 17 Apr 2026 09:13:30 +0200 [thread overview]
Message-ID: <20260417071546.1610330-1-ghidoliemanuele@gmail.com> (raw)
From: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
This series adds initial U-Boot support for the Toradex Verdin iMX95.
It also introduces a new RAM-size probing helper based on alias checks.
On Verdin iMX95, the first DDR region is reserved for Cortex-M7 firmware and
the get_ram_size() could not be used to detect the actual RAM size.
Using explicit probe/alias pairs provides reliable size detection for the
supported memory variants.
The board DT is currently aligned with linux-next. Once the board DTS is
in mainline Linux, we'll move to OF_UPSTREAM.
v2:
- add check for CONFIG_IS_ENABLED(SYS_DCACHE_OFF) in probe_ram_size_by_alias
- renamed ram_alias_check variable to ram_alias_checks. Added static qualifier.
- fixed typo in verdin-imx95.h: determited -> determined
v1: https://lore.kernel.org/u-boot/20260416084535.1490476-1-ghidoliemanuele@gmail.com/
Emanuele Ghidoli (3):
common: memsize: add RAM size probe based on alias detection
board: toradex: add Toradex Verdin iMX95
toradex: tdx-cfg-block: add verdin imx95 0226, 0227 and 0228 pid4
arch/arm/dts/imx95-verdin-dev.dtsi | 239 ++++
.../arm/dts/imx95-verdin-wifi-dev-u-boot.dtsi | 112 ++
arch/arm/dts/imx95-verdin-wifi-dev.dts | 21 +
arch/arm/dts/imx95-verdin-wifi.dtsi | 50 +
arch/arm/dts/imx95-verdin.dtsi | 1172 +++++++++++++++++
arch/arm/mach-imx/imx9/Kconfig | 5 +
board/toradex/common/tdx-cfg-block.c | 3 +
board/toradex/common/tdx-cfg-block.h | 3 +
board/toradex/verdin-imx95/Kconfig | 36 +
board/toradex/verdin-imx95/MAINTAINERS | 13 +
board/toradex/verdin-imx95/Makefile | 8 +
board/toradex/verdin-imx95/spl.c | 75 ++
board/toradex/verdin-imx95/verdin-imx95.c | 80 ++
board/toradex/verdin-imx95/verdin-imx95.env | 20 +
common/memsize.c | 59 +
configs/verdin-imx95_defconfig | 183 +++
doc/board/toradex/index.rst | 1 +
doc/board/toradex/verdin-imx95.rst | 171 +++
include/configs/verdin-imx95.h | 27 +
include/init.h | 7 +
20 files changed, 2285 insertions(+)
create mode 100644 arch/arm/dts/imx95-verdin-dev.dtsi
create mode 100644 arch/arm/dts/imx95-verdin-wifi-dev-u-boot.dtsi
create mode 100644 arch/arm/dts/imx95-verdin-wifi-dev.dts
create mode 100644 arch/arm/dts/imx95-verdin-wifi.dtsi
create mode 100644 arch/arm/dts/imx95-verdin.dtsi
create mode 100644 board/toradex/verdin-imx95/Kconfig
create mode 100644 board/toradex/verdin-imx95/MAINTAINERS
create mode 100644 board/toradex/verdin-imx95/Makefile
create mode 100644 board/toradex/verdin-imx95/spl.c
create mode 100644 board/toradex/verdin-imx95/verdin-imx95.c
create mode 100644 board/toradex/verdin-imx95/verdin-imx95.env
create mode 100644 configs/verdin-imx95_defconfig
create mode 100644 doc/board/toradex/verdin-imx95.rst
create mode 100644 include/configs/verdin-imx95.h
--
2.43.0
next reply other threads:[~2026-04-17 7:15 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-17 7:13 Emanuele Ghidoli [this message]
2026-04-17 7:13 ` [PATCH v2 1/3] common: memsize: add RAM size probe based on alias detection Emanuele Ghidoli
2026-04-17 8:15 ` Emanuele Ghidoli
2026-04-17 7:13 ` [PATCH v2 2/3] board: toradex: add Toradex Verdin iMX95 Emanuele Ghidoli
2026-04-17 8:15 ` Emanuele Ghidoli
2026-04-17 7:13 ` [PATCH v2 3/3] toradex: tdx-cfg-block: add verdin imx95 0226, 0227 and 0228 pid4 Emanuele Ghidoli
2026-04-17 8:15 ` Emanuele Ghidoli
2026-04-17 7:46 ` [PATCH v2 0/3] add Toradex Verdin iMX95 support Francesco Dolcini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260417071546.1610330-1-ghidoliemanuele@gmail.com \
--to=ghidoliemanuele@gmail.com \
--cc=alice.guo@nxp.com \
--cc=emanuele.ghidoli@toradex.com \
--cc=festevam@gmail.com \
--cc=francesco.dolcini@toradex.com \
--cc=peng.fan@nxp.com \
--cc=sbabic@nabladev.com \
--cc=sjg@chromium.org \
--cc=sumit.garg@oss.qualcomm.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=uboot-imx@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox