Skip to content

Commit 0a3102d

Browse files
Hi-Im-Davidnordicjm
authored andcommitted
samples: drivers: audio: dmic: Add support for nRF7120
Added supported for nRF7120 dmic sample using the AUXPLL. Signed-off-by: David Jewsbury <[email protected]>
1 parent db4ff5e commit 0a3102d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
aliases {
9+
dmic-dev = &pdm20;
10+
};
11+
};
12+
13+
&pinctrl {
14+
pdm20_default_alt: pdm20_default_alt {
15+
group1 {
16+
psels = <NRF_PSEL(PDM_CLK, 1, 14)>,
17+
<NRF_PSEL(PDM_DIN, 1, 12)>;
18+
};
19+
};
20+
};
21+
22+
dmic_dev: &pdm20 {
23+
status = "okay";
24+
pinctrl-0 = <&pdm20_default_alt>;
25+
pinctrl-names = "default";
26+
clock-source = "ACLK";
27+
};
28+
29+
&audio_auxpll {
30+
nordic,frequency = <NRF_AUXPLL_FREQ_DIV_AUDIO_48K>;
31+
status = "okay";
32+
};

0 commit comments

Comments
 (0)