]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ARM: dts: rockchip: Add i2s nodes for RK3128
authorAlex Bee <knaerzche@gmail.com>
Mon, 6 May 2024 15:51:02 +0000 (17:51 +0200)
committerHeiko Stuebner <heiko@sntech.de>
Sun, 23 Jun 2024 20:05:00 +0000 (22:05 +0200)
RK3128 SoCs have two i2s controllers. i2s_8ch has 8 tx and 2 rx channels
and is internally hard-wired to the hdmi-controller respectivly the SoC's
analog codec. i2s_2ch has 2 tx and 2 rx channels and can also be used
externally as it's pins are exposed though pinctrl.

Signed-off-by: Alex Bee <knaerzche@gmail.com>
Link: https://lore.kernel.org/r/20240506155103.206592-2-knaerzche@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
arch/arm/boot/dts/rockchip/rk3128.dtsi

index a7ab0904564f0de47fdc8bb3ee4f573098808a3d..2c41a123c96aa6bfa68bc91813b91d6a6af34885 100644 (file)
                status = "disabled";
        };
 
+       i2s_8ch: i2s@10200000 {
+               compatible = "rockchip,rk3128-i2s", "rockchip,rk3066-i2s";
+               reg = <0x10200000 0x1000>;
+               interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
+               clocks = <&cru SCLK_I2S0>, <&cru HCLK_I2S_8CH>;
+               clock-names = "i2s_clk", "i2s_hclk";
+               dmas = <&pdma 14>, <&pdma 15>;
+               dma-names = "tx", "rx";
+               #sound-dai-cells = <0>;
+               status = "disabled";
+       };
+
        sdmmc: mmc@10214000 {
                compatible = "rockchip,rk3128-dw-mshc", "rockchip,rk3288-dw-mshc";
                reg = <0x10214000 0x4000>;
                status = "disabled";
        };
 
+       i2s_2ch: i2s@10220000 {
+               compatible = "rockchip,rk3128-i2s", "rockchip,rk3066-i2s";
+               reg = <0x10220000 0x1000>;
+               interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
+               clocks = <&cru SCLK_I2S1>, <&cru HCLK_I2S_2CH>;
+               clock-names = "i2s_clk", "i2s_hclk";
+               dmas = <&pdma 0>, <&pdma 1>;
+               dma-names = "tx", "rx";
+               rockchip,playback-channels = <2>;
+               pinctrl-names = "default";
+               pinctrl-0 = <&i2s_bus>;
+               #sound-dai-cells = <0>;
+               status = "disabled";
+       };
+
        nfc: nand-controller@10500000 {
                compatible = "rockchip,rk3128-nfc", "rockchip,rk2928-nfc";
                reg = <0x10500000 0x4000>;