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/realtek,rt5514.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: RT5514 audio CODEC 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Animesh Agarwal <animeshagarwal28@gmail.com> 11*0e8011faSEmmanuel Vadot 12*0e8011faSEmmanuel Vadotdescription: | 13*0e8011faSEmmanuel Vadot This device supports both I2C and SPI. 14*0e8011faSEmmanuel Vadot 15*0e8011faSEmmanuel Vadot Pins on the device (for linking into audio routes) for I2C: 16*0e8011faSEmmanuel Vadot * DMIC1L 17*0e8011faSEmmanuel Vadot * DMIC1R 18*0e8011faSEmmanuel Vadot * DMIC2L 19*0e8011faSEmmanuel Vadot * DMIC2R 20*0e8011faSEmmanuel Vadot * AMICL 21*0e8011faSEmmanuel Vadot * AMICR 22*0e8011faSEmmanuel Vadot 23*0e8011faSEmmanuel VadotallOf: 24*0e8011faSEmmanuel Vadot - $ref: /schemas/spi/spi-peripheral-props.yaml# 25*0e8011faSEmmanuel Vadot - $ref: dai-common.yaml# 26*0e8011faSEmmanuel Vadot 27*0e8011faSEmmanuel Vadotproperties: 28*0e8011faSEmmanuel Vadot compatible: 29*0e8011faSEmmanuel Vadot const: realtek,rt5514 30*0e8011faSEmmanuel Vadot 31*0e8011faSEmmanuel Vadot reg: 32*0e8011faSEmmanuel Vadot maxItems: 1 33*0e8011faSEmmanuel Vadot 34*0e8011faSEmmanuel Vadot clocks: 35*0e8011faSEmmanuel Vadot items: 36*0e8011faSEmmanuel Vadot - description: Master clock to the CODEC 37*0e8011faSEmmanuel Vadot 38*0e8011faSEmmanuel Vadot clock-names: 39*0e8011faSEmmanuel Vadot items: 40*0e8011faSEmmanuel Vadot - const: mclk 41*0e8011faSEmmanuel Vadot 42*0e8011faSEmmanuel Vadot interrupts: 43*0e8011faSEmmanuel Vadot maxItems: 1 44*0e8011faSEmmanuel Vadot description: The interrupt number to the cpu. 45*0e8011faSEmmanuel Vadot 46*0e8011faSEmmanuel Vadot realtek,dmic-init-delay-ms: 47*0e8011faSEmmanuel Vadot description: Set the DMIC initial delay (ms) to wait it ready for I2C. 48*0e8011faSEmmanuel Vadot 49*0e8011faSEmmanuel Vadot spi-max-frequency: true 50*0e8011faSEmmanuel Vadot 51*0e8011faSEmmanuel Vadot wakeup-source: 52*0e8011faSEmmanuel Vadot type: boolean 53*0e8011faSEmmanuel Vadot description: Flag to indicate this device can wake system (suspend/resume). 54*0e8011faSEmmanuel Vadot 55*0e8011faSEmmanuel Vadotrequired: 56*0e8011faSEmmanuel Vadot - compatible 57*0e8011faSEmmanuel Vadot - reg 58*0e8011faSEmmanuel Vadot 59*0e8011faSEmmanuel VadotunevaluatedProperties: false 60*0e8011faSEmmanuel Vadot 61*0e8011faSEmmanuel Vadotexamples: 62*0e8011faSEmmanuel Vadot - | 63*0e8011faSEmmanuel Vadot i2c { 64*0e8011faSEmmanuel Vadot #address-cells = <1>; 65*0e8011faSEmmanuel Vadot #size-cells = <0>; 66*0e8011faSEmmanuel Vadot codec@57 { 67*0e8011faSEmmanuel Vadot compatible = "realtek,rt5514"; 68*0e8011faSEmmanuel Vadot reg = <0x57>; 69*0e8011faSEmmanuel Vadot }; 70*0e8011faSEmmanuel Vadot }; 71