1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*0e8011faSEmmanuel Vadot%YAML 1.2 3*0e8011faSEmmanuel Vadot--- 4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/everest,es71x4.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: Everest ES7134/7144/7154 2 channels I2S analog to digital converter 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Neil Armstrong <neil.armstrong@linaro.org> 11*0e8011faSEmmanuel Vadot 12*0e8011faSEmmanuel Vadotproperties: 13*0e8011faSEmmanuel Vadot compatible: 14*0e8011faSEmmanuel Vadot enum: 15*0e8011faSEmmanuel Vadot - everest,es7134 16*0e8011faSEmmanuel Vadot - everest,es7144 17*0e8011faSEmmanuel Vadot - everest,es7154 18*0e8011faSEmmanuel Vadot 19*0e8011faSEmmanuel Vadot VDD-supply: true 20*0e8011faSEmmanuel Vadot PVDD-supply: true 21*0e8011faSEmmanuel Vadot 22*0e8011faSEmmanuel Vadot '#sound-dai-cells': 23*0e8011faSEmmanuel Vadot const: 0 24*0e8011faSEmmanuel Vadot 25*0e8011faSEmmanuel Vadotrequired: 26*0e8011faSEmmanuel Vadot - compatible 27*0e8011faSEmmanuel Vadot - VDD-supply 28*0e8011faSEmmanuel Vadot 29*0e8011faSEmmanuel VadotallOf: 30*0e8011faSEmmanuel Vadot - $ref: dai-common.yaml# 31*0e8011faSEmmanuel Vadot - if: 32*0e8011faSEmmanuel Vadot properties: 33*0e8011faSEmmanuel Vadot compatible: 34*0e8011faSEmmanuel Vadot contains: 35*0e8011faSEmmanuel Vadot enum: 36*0e8011faSEmmanuel Vadot - everest,es7134 37*0e8011faSEmmanuel Vadot - everest,es7144 38*0e8011faSEmmanuel Vadot then: 39*0e8011faSEmmanuel Vadot properties: 40*0e8011faSEmmanuel Vadot PVDD-supply: false 41*0e8011faSEmmanuel Vadot 42*0e8011faSEmmanuel Vadot - if: 43*0e8011faSEmmanuel Vadot properties: 44*0e8011faSEmmanuel Vadot compatible: 45*0e8011faSEmmanuel Vadot contains: 46*0e8011faSEmmanuel Vadot enum: 47*0e8011faSEmmanuel Vadot - everest,es7154 48*0e8011faSEmmanuel Vadot then: 49*0e8011faSEmmanuel Vadot required: 50*0e8011faSEmmanuel Vadot - PVDD-supply 51*0e8011faSEmmanuel Vadot 52*0e8011faSEmmanuel VadotunevaluatedProperties: false 53*0e8011faSEmmanuel Vadot 54*0e8011faSEmmanuel Vadotexamples: 55*0e8011faSEmmanuel Vadot - | 56*0e8011faSEmmanuel Vadot codec { 57*0e8011faSEmmanuel Vadot compatible = "everest,es7134"; 58*0e8011faSEmmanuel Vadot #sound-dai-cells = <0>; 59*0e8011faSEmmanuel Vadot VDD-supply = <&vdd_supply>; 60*0e8011faSEmmanuel Vadot }; 61*0e8011faSEmmanuel Vadot 62*0e8011faSEmmanuel Vadot... 63