The AM62D2 SoC, part of the K3 architecture, is built for high-performance DSP tasks in automotive audio, pro audio, radar, sonar, and medical imaging. It features up to four Cortex-A53 cores (1.4GHz), two Cortex-R5F cores, and a C7x DSP with 2 TOPS MMA. Key interfaces include multi-channel McASP audio, TSN-capable Gigabit Ethernet, and a range of peripherals (UART, SPI, I2C, CAN, USB, eMMC/SD, OSPI, CSI). It supports LPDDR4/DDR4, secure boot with hardware security, and low-power modes with CAN/GPIO/UART wakeup.
AM62D2-EVM evaluation module (EVM) is a low-cost expandable platform board designed for AM62D2 SoC from TI. It supports the following interfaces: * 4 GB LPDDR4 RAM * x2 Gigabit Ethernet expansion connectors * x4 3.5mm TRS Audio Jack Line In * x4 3.5mm TRS Audio Jack Line Out * x2 Audio expansion connectors * x1 Type-A USB 2.0, x1 Type-C dual-role device (DRD) USB 2.0 * x1 UHS-1 capable micro SD card slot * 32 GB eMMC Flash * 512 Mb OSPI NOR flash * x4 UARTs via USB 2.0-B * XDS110 for onboard JTAG debug using USB * Temperature sensors, user push buttons and LEDs Also resuse Soc specific files from AM62A. A key distinction from AM62A 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. Technical Reference Manual - https://www.ti.com/lit/pdf/sprujd4 Schematics Link - https://www.ti.com/lit/zip/sprcal5 Branch used-next Kernel Patch https://lore.kernel.org/all/20250708085839.1498505-1-p-bha...@ti.com/ Boot Logs https://gist.github.com/paresh-bhagat12/6e169340c222427c7648b1ef3ca5067f Change Log: v1->v2: - Restruture the commits (verified am62a build for each) - Removed unsigned nodes from binman dts. v1-https://lore.kernel.org/all/20250902060703.191688-1-p-bha...@ti.com/ Paresh Bhagat (5): board: ti: Introduce the basic files needed to support am62d board: ti: am62dx: Add board configs for am62d arch: mach-k3: Introduce support for AM62D2-EVM arm: dts: Introduce AM62D2-EVM dtbs configs: Introduce configs for the AM62D2-EVM arch/arm/dts/Makefile | 2 + arch/arm/dts/k3-am62d-ddr-1866mhz-32bit.dtsi | 2802 ++++++++++++++++++ arch/arm/dts/k3-am62d-evm-binman.dtsi | 262 ++ arch/arm/dts/k3-am62d2-evm-u-boot.dtsi | 14 + arch/arm/dts/k3-am62d2-r5-evm.dts | 82 + arch/arm/mach-k3/am62ax/Kconfig | 25 + board/ti/am62dx/Kconfig | 26 + board/ti/am62dx/MAINTAINERS | 8 + board/ti/am62dx/Makefile | 7 + board/ti/am62dx/am62dx.env | 21 + board/ti/am62dx/board-cfg.yaml | 36 + board/ti/am62dx/evm.c | 37 + board/ti/am62dx/pm-cfg.yaml | 12 + board/ti/am62dx/rm-cfg.yaml | 1047 +++++++ board/ti/am62dx/sec-cfg.yaml | 379 +++ board/ti/am62dx/tifs-rm-cfg.yaml | 903 ++++++ configs/am62dx_evm_a53_defconfig | 22 + configs/am62dx_evm_r5_defconfig | 20 + 18 files changed, 5705 insertions(+) create mode 100644 arch/arm/dts/k3-am62d-ddr-1866mhz-32bit.dtsi create mode 100644 arch/arm/dts/k3-am62d-evm-binman.dtsi create mode 100644 arch/arm/dts/k3-am62d2-evm-u-boot.dtsi create mode 100644 arch/arm/dts/k3-am62d2-r5-evm.dts create mode 100644 board/ti/am62dx/Kconfig create mode 100644 board/ti/am62dx/MAINTAINERS create mode 100644 board/ti/am62dx/Makefile create mode 100644 board/ti/am62dx/am62dx.env create mode 100644 board/ti/am62dx/board-cfg.yaml create mode 100644 board/ti/am62dx/evm.c create mode 100644 board/ti/am62dx/pm-cfg.yaml create mode 100644 board/ti/am62dx/rm-cfg.yaml create mode 100644 board/ti/am62dx/sec-cfg.yaml create mode 100644 board/ti/am62dx/tifs-rm-cfg.yaml create mode 100644 configs/am62dx_evm_a53_defconfig create mode 100644 configs/am62dx_evm_r5_defconfig -- 2.34.1