1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/sound/adi,adau7002.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Analog Devices ADAU7002 Stereo PDM-to-I2S/TDM Converter 8 9maintainers: 10 - Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> 11 12allOf: 13 - $ref: dai-common.yaml# 14 15properties: 16 compatible: 17 const: adi,adau7002 18 19 IOVDD-supply: 20 description: 21 IOVDD power supply, if skipped then it is assumed that the supply pin is 22 hardwired to always on. 23 24 wakeup-delay-ms: 25 description: 26 Delay after power up needed for device to settle. 27 28required: 29 - compatible 30 31unevaluatedProperties: false 32 33examples: 34 - | 35 audio-codec { 36 compatible = "adi,adau7002"; 37 IOVDD-supply = <&pp1800_l15a>; 38 #sound-dai-cells = <0>; 39 wakeup-delay-ms = <80>; 40 }; 41