1/*
2 * Copyright (c) 2025 Espressif Systems (Shanghai) Co., Ltd.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&i2s0_default {
8	group1 {
9		pinmux = <I2S0_O_WS_GPIO17>,
10				<I2S0_O_BCK_GPIO16>,
11				<I2S0_O_SD_GPIO15>,
12				<I2S0_I_WS_GPIO11>,
13				<I2S0_I_BCK_GPIO10>;
14		output-enable;
15	};
16	group2 {
17		pinmux = <I2S0_I_SD_GPIO18>;
18		input-enable;
19	};
20};
21
22i2s_rxtx: &i2s0 {
23	status = "okay";
24
25	interrupts = <I2S0_INTR_SOURCE IRQ_DEFAULT_PRIORITY 0>,
26		<I2S0_INTR_SOURCE IRQ_DEFAULT_PRIORITY 0>;
27	interrupt-names = "tx", "rx";
28
29};
30