This adds initial support for the Toradex Verdin AM62P module. The module consists of an TI AM62P family SoC, a TPS65219 PMIC, a Gigabit Ethernet PHY, up to 8GB of LPDDR4 RAM, an eMMC, a TLA2024 ADC, an I2C EEPROM, an RX8130 RTC, plus an optional Bluetooth/Wi-Fi module. These specific changes adds support for Toradex Verdin AM62P Quad 2GB WB IT module. Link: https://www.toradex.com/computer-on-modules/verdin-arm-family/ti-am62p Link: https://www.toradex.com/products/carrier-board/verdin-development-board-kit Signed-off-by: Parth Pancholi <parth.pancholi@toradex.com> Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
32 lines
615 B
Plaintext
32 lines
615 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright 2025 Toradex
|
|
*
|
|
* Common dtsi for Verdin AM62P SoM WB variant
|
|
*
|
|
* https://www.toradex.com/computer-on-modules/verdin-arm-family/ti-am62p
|
|
*/
|
|
|
|
/* On-module Bluetooth */
|
|
&main_uart6 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_uart6>;
|
|
uart-has-rtscts;
|
|
status = "okay";
|
|
|
|
bluetooth {
|
|
compatible = "nxp,88w8987-bt";
|
|
fw-init-baudrate = <3000000>;
|
|
};
|
|
};
|
|
|
|
/* On-module Wi-Fi */
|
|
&sdhci2 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_sdhci2>;
|
|
keep-power-in-suspend;
|
|
non-removable;
|
|
ti,fails-without-test-cd;
|
|
status = "okay";
|
|
};
|