mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-28 01:05:36 +00:00
This patch adds the device tree to support Toradex Verdin iMX8M Mini a computer on module which can be used on different carrier boards. The module consists of an NXP i.MX 8M Mini family SoC (either i.MX 8M Mini Quad or 8M Mini DualLite), a PCA9450A PMIC, a Gigabit Ethernet PHY, 1 or 2 GB of LPDDR4 RAM, an eMMC, a TLA2024 ADC, an I2C EEPROM, an RX8130 RTC, an optional SPI CAN controller plus an optional Bluetooth/ Wi-Fi module. Anything that is not self-contained on the module is disabled by default. The device tree for the Dahlia includes the module's device tree and enables the supported peripherals of the carrier board. The device tree for the Verdin Development Board includes the module's device tree as well as the Dahlia one as it is a superset and supports almost all peripherals available. So far there is no display functionality supported at all but basic console UART, PCIe, USB host, eMMC and Ethernet and PCIe functionality work fine. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Reviewed-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
68 lines
1.4 KiB
Plaintext
68 lines
1.4 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright 2022 Toradex
|
|
*/
|
|
|
|
#include "imx8mm-verdin-dahlia.dtsi"
|
|
|
|
/ {
|
|
sound_card: sound-card {
|
|
compatible = "simple-audio-card";
|
|
simple-audio-card,bitclock-master = <&dailink_master>;
|
|
simple-audio-card,format = "i2s";
|
|
simple-audio-card,frame-master = <&dailink_master>;
|
|
simple-audio-card,name = "imx8mm-nau8822";
|
|
simple-audio-card,routing =
|
|
"Headphones", "LHP",
|
|
"Headphones", "RHP",
|
|
"Speaker", "LSPK",
|
|
"Speaker", "RSPK",
|
|
"Line Out", "AUXOUT1",
|
|
"Line Out", "AUXOUT2",
|
|
"LAUX", "Line In",
|
|
"RAUX", "Line In",
|
|
"LMICP", "Mic In",
|
|
"RMICP", "Mic In";
|
|
simple-audio-card,widgets =
|
|
"Headphones", "Headphones",
|
|
"Line Out", "Line Out",
|
|
"Speaker", "Speaker",
|
|
"Microphone", "Mic In",
|
|
"Line", "Line In";
|
|
|
|
dailink_master: simple-audio-card,codec {
|
|
clocks = <&clk IMX8MM_CLK_SAI2_ROOT>;
|
|
sound-dai = <&nau8822_1a>;
|
|
};
|
|
|
|
simple-audio-card,cpu {
|
|
sound-dai = <&sai2>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&gpio_expander_21 {
|
|
status = "okay";
|
|
};
|
|
|
|
/* Verdin I2C_1 */
|
|
&i2c4 {
|
|
/* Audio Codec */
|
|
nau8822_1a: audio-codec@1a {
|
|
compatible = "nuvoton,nau8822";
|
|
reg = <0x1a>;
|
|
};
|
|
};
|
|
|
|
/* Verdin UART_1, connector X50 through RS485 transceiver */
|
|
&uart2 {
|
|
linux,rs485-enabled-at-boot-time;
|
|
rs485-rts-active-low;
|
|
rs485-rx-during-tx;
|
|
};
|
|
|
|
/* Limit frequency on dev board due to long traces and bad signal integrity */
|
|
&usdhc2 {
|
|
max-frequency = <100000000>;
|
|
};
|