[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250508091422.288876-1-p-bhagat@ti.com>
Date: Thu, 8 May 2025 14:44:19 +0530
From: Paresh Bhagat <p-bhagat@...com>
To: <nm@...com>, <vigneshr@...com>, <praneeth@...com>
CC: <kristo@...nel.org>, <robh@...nel.org>, <krzk+dt@...nel.org>,
<conor+dt@...nel.org>, <linux-arm-kernel@...ts.infradead.org>,
<devicetree@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<khasim@...com>, <v-singh1@...com>, <afd@...com>
Subject: [PATCH v3 0/3] Add support for AM62D2 SoC and EVM
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
Powered by blists - more mailing lists