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/maxim,max98088.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: MAX98088 audio CODEC 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Abdulrasaq Lawani <abdulrasaqolawani@gmail.com> 11*0e8011faSEmmanuel Vadot 12*0e8011faSEmmanuel Vadotproperties: 13*0e8011faSEmmanuel Vadot compatible: 14*0e8011faSEmmanuel Vadot enum: 15*0e8011faSEmmanuel Vadot - maxim,max98088 16*0e8011faSEmmanuel Vadot - maxim,max98089 17*0e8011faSEmmanuel Vadot 18*0e8011faSEmmanuel Vadot reg: 19*0e8011faSEmmanuel Vadot maxItems: 1 20*0e8011faSEmmanuel Vadot 21*0e8011faSEmmanuel Vadot clocks: 22*0e8011faSEmmanuel Vadot items: 23*0e8011faSEmmanuel Vadot - description: master clock 24*0e8011faSEmmanuel Vadot 25*0e8011faSEmmanuel Vadot clock-names: 26*0e8011faSEmmanuel Vadot items: 27*0e8011faSEmmanuel Vadot - const: mclk 28*0e8011faSEmmanuel Vadot 29*0e8011faSEmmanuel Vadotrequired: 30*0e8011faSEmmanuel Vadot - compatible 31*0e8011faSEmmanuel Vadot - reg 32*0e8011faSEmmanuel Vadot 33*0e8011faSEmmanuel VadotadditionalProperties: false 34*0e8011faSEmmanuel Vadot 35*0e8011faSEmmanuel Vadotexamples: 36*0e8011faSEmmanuel Vadot - | 37*0e8011faSEmmanuel Vadot i2c { 38*0e8011faSEmmanuel Vadot #address-cells = <1>; 39*0e8011faSEmmanuel Vadot #size-cells = <0>; 40*0e8011faSEmmanuel Vadot 41*0e8011faSEmmanuel Vadot audio-codec@10 { 42*0e8011faSEmmanuel Vadot compatible = "maxim,max98089"; 43*0e8011faSEmmanuel Vadot reg = <0x10>; 44*0e8011faSEmmanuel Vadot clocks = <&clks 0>; 45*0e8011faSEmmanuel Vadot clock-names = "mclk"; 46*0e8011faSEmmanuel Vadot }; 47*0e8011faSEmmanuel Vadot }; 48