Skip to content

Commit 4ad36e7

Browse files
smalaekartben
authored andcommitted
drivers: i2s: siwx91x: i2s output app support
Add siwx917_rb4338a board overlay file Signed-off-by: Sai Santhosh Malae <Santhosh.Malae@silabs.com>
1 parent 1971bc0 commit 4ad36e7

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright (c) 2025 Silicon Laboratories Inc.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
i2s-tx = &i2s0;
10+
};
11+
};
12+
13+
&pinctrl0 {
14+
i2s0_default: i2s0_default {
15+
out {
16+
/* I2S0_CLK_HP25 - P25, I2S0_DOUT0_HP28 - P31, I2S0_WS_HP26 - P27*/
17+
pinmux = <I2S0_CLK_HP25>, <I2S0_DOUT0_HP28>, <I2S0_WS_HP26>;
18+
};
19+
in {
20+
/* I2S0_DIN0_HP27 - P29 */
21+
pinmux = <I2S0_DIN0_HP27>;
22+
};
23+
};
24+
};
25+
26+
&i2s0 {
27+
status = "okay";
28+
pinctrl-0 = <&i2s0_default>;
29+
pinctrl-names = "default";
30+
31+
dmas = <&dma0 15>, <&dma0 14>;
32+
dma-names = "tx", "rx";
33+
};
34+
35+
&dma0 {
36+
status = "okay";
37+
};

0 commit comments

Comments
 (0)