1/* 2 * Copyright (c) 2024-2025 Espressif Systems (Shanghai) Co., Ltd. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&i2s0_default { 8 group1 { 9 pinmux = <I2S0_MCLK_GPIO42>, 10 <I2S0_O_WS_GPIO41>, 11 <I2S0_O_BCK_GPIO40>, 12 <I2S0_O_SD_GPIO39>; 13 output-enable; 14 }; 15 group2 { 16 pinmux = <I2S0_I_SD_GPIO38>; 17 input-enable; 18 }; 19}; 20 21i2s_rxtx: &i2s0 { 22 status = "okay"; 23 24 dmas = <&dma 2>, <&dma 3>; 25 dma-names = "rx", "tx"; 26}; 27 28&dma { 29 status = "okay"; 30}; 31