Skip to content

Commit da7a148

Browse files
kl-cruzgithub-actions[bot]
authored andcommitted
[nrf fromtree] tests: drivers: i2s: Add overlay to support nRF54L15 DK
Add overlay to support nRF54L15 DK. Signed-off-by: Karol Lasończyk <[email protected]> (cherry picked from commit 19252bd) (cherry picked from commit e6b24cb)
1 parent 7d77811 commit da7a148

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* i2s-node0 is the transmitter/receiver */
8+
9+
/ {
10+
aliases {
11+
i2s-node0 = &i2s20;
12+
};
13+
};
14+
15+
&pinctrl {
16+
i2s20_default_alt: i2s20_default_alt {
17+
group1 {
18+
psels = <NRF_PSEL(I2S_SCK_M, 1, 11)>,
19+
<NRF_PSEL(I2S_LRCK_M, 1, 12)>,
20+
<NRF_PSEL(I2S_SDOUT, 1, 8)>,
21+
<NRF_PSEL(I2S_SDIN, 1, 9)>;
22+
};
23+
};
24+
};
25+
26+
&i2s20 {
27+
status = "okay";
28+
pinctrl-0 = <&i2s20_default_alt>;
29+
pinctrl-names = "default";
30+
};
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* i2s-node0 is the transmitter/receiver */
8+
9+
/ {
10+
aliases {
11+
i2s-node0 = &i2s20;
12+
};
13+
};
14+
15+
&pinctrl {
16+
i2s20_default_alt: i2s20_default_alt {
17+
group1 {
18+
psels = <NRF_PSEL(I2S_SCK_M, 1, 11)>,
19+
<NRF_PSEL(I2S_LRCK_M, 1, 12)>,
20+
<NRF_PSEL(I2S_SDOUT, 1, 8)>,
21+
<NRF_PSEL(I2S_SDIN, 1, 9)>;
22+
};
23+
};
24+
};
25+
26+
&i2s20 {
27+
status = "okay";
28+
pinctrl-0 = <&i2s20_default_alt>;
29+
pinctrl-names = "default";
30+
};

0 commit comments

Comments
 (0)