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}; 31