From: Paresh Bhagat <p-bhagat@ti.com>
To: <nm@ti.com>, <vigneshr@ti.com>, <praneeth@ti.com>
Cc: <kristo@kernel.org>, <robh@kernel.org>, <krzk+dt@kernel.org>,
<conor+dt@kernel.org>, <linux-arm-kernel@lists.infradead.org>,
<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<khasim@ti.com>, <v-singh1@ti.com>, <afd@ti.com>
Subject: [PATCH v3 0/3] Add support for AM62D2 SoC and EVM
Date: Thu, 8 May 2025 14:44:19 +0530 [thread overview]
Message-ID: <20250508091422.288876-1-p-bhagat@ti.com> (raw)
This patch series adds support for the AM62D SoC and its evaluation
module (EVM) board. The AM62D SoC is a high-performance Digital
Signal Processing (DSP) device with a quad-core Cortex-A53 cluster,
dual Cortex-R5F cores, and a Cx7 DSP core with Matrix Multiplication
Accelerator (MMA). It features a range of peripherals, including
multichannel audio serial ports, Ethernet, UARTs, SPI, I2C, USB, and
more.
The EVM board is a low-cost, expandable platform designed for the AM62D2
SoC, having 4GB LPDDR4 RAM, Gigabit Ethernet expansion connectors, audio
jacks, USB ports, and more.
This SoC is part K3 AM62x family, which includes the AM62A and AM62P
variants. While the AM62A and AM62D are largely similar, the AM62D is
specifically targeted for general-purpose DSP applications, whereas the
AM62A focuses on edge AI workloads. A key distinction is that the AM62D
does not include multimedia components such as the video encoder/decoder,
MJPEG encoder, Vision Processing Accelerator (VPAC) for image signal
processing, or the display subsystem. Additionally, the AM62D has a
different pin configuration compared to the AM62A, which impacts embedded
software development.
This patch series includes updates to the dts and dtsi files, device tree
bindings, and pin control header files to support the AM62D SoC and EVM
board.
Bootlog-
https://gist.github.com/paresh-bhagat12/1757cc54a39f1baf883341af2a383db6
Tech Ref Manual-https://www.ti.com/lit/pdf/sprujd4
Schematics Link-https://www.ti.com/lit/zip/sprcal5
Note: This patch series should be applied after the below series
has been merged.
https://lore.kernel.org/all/20250415153147.1844076-1-jm@ti.com/
Change Log:
V2 -> V3:
-Added bootph-all property to essential device nodes.
-Updated reserved memory for ATF.
-Introduce common dtsi files for AM62A and AM62D.
V1 -> V2: Fixed indentation and build errors.
Paresh Bhagat (3):
dt-bindings: arm: ti: Add bindings for AM62D2 SoC
arm64: dts: ti: Add pinctrl entries for AM62D2 family of SoCs
arm64: dts: ti: Add support for AM62D2-EVM
.../devicetree/bindings/arm/ti/k3.yaml | 6 +
arch/arm64/boot/dts/ti/Makefile | 3 +
.../dts/ti/k3-am62a-am62d-common-main.dtsi | 1013 +++++++++++++++++
...cu.dtsi => k3-am62a-am62d-common-mcu.dtsi} | 26 +-
...tsi => k3-am62a-am62d-common-thermal.dtsi} | 2 +-
...dtsi => k3-am62a-am62d-common-wakeup.dtsi} | 2 +-
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 1005 ----------------
arch/arm64/boot/dts/ti/k3-am62a.dtsi | 9 +-
arch/arm64/boot/dts/ti/k3-am62d.dtsi | 123 ++
arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 533 +++++++++
arch/arm64/boot/dts/ti/k3-am62d2.dtsi | 155 +++
arch/arm64/boot/dts/ti/k3-pinctrl.h | 3 +
12 files changed, 1846 insertions(+), 1034 deletions(-)
create mode 100644 arch/arm64/boot/dts/ti/k3-am62a-am62d-common-main.dtsi
rename arch/arm64/boot/dts/ti/{k3-am62a-mcu.dtsi => k3-am62a-am62d-common-mcu.dtsi} (86%)
rename arch/arm64/boot/dts/ti/{k3-am62a-thermal.dtsi => k3-am62a-am62d-common-thermal.dtsi} (94%)
rename arch/arm64/boot/dts/ti/{k3-am62a-wakeup.dtsi => k3-am62a-am62d-common-wakeup.dtsi} (97%)
create mode 100644 arch/arm64/boot/dts/ti/k3-am62d.dtsi
create mode 100644 arch/arm64/boot/dts/ti/k3-am62d2-evm.dts
create mode 100644 arch/arm64/boot/dts/ti/k3-am62d2.dtsi
--
2.34.1
next reply other threads:[~2025-05-08 9:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-08 9:14 Paresh Bhagat [this message]
2025-05-08 9:14 ` [PATCH v3 1/3] dt-bindings: arm: ti: Add bindings for AM62D2 SoC Paresh Bhagat
2025-05-08 10:10 ` Rob Herring (Arm)
2025-05-08 14:48 ` Conor Dooley
2025-05-08 9:14 ` [PATCH v3 2/3] arm64: dts: ti: Add pinctrl entries for AM62D2 family of SoCs Paresh Bhagat
2025-05-08 9:14 ` [PATCH v3 3/3] arm64: dts: ti: Add support for AM62D2-EVM Paresh Bhagat
2025-05-09 0:22 ` Bryan Brattlof
2025-05-09 2:16 ` Nishanth Menon
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=20250508091422.288876-1-p-bhagat@ti.com \
--to=p-bhagat@ti.com \
--cc=afd@ti.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=khasim@ti.com \
--cc=kristo@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nm@ti.com \
--cc=praneeth@ti.com \
--cc=robh@kernel.org \
--cc=v-singh1@ti.com \
--cc=vigneshr@ti.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