1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/richtek,rt9123p.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Richtek RT9123P Audio Amplifier 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - ChiYuan Huang <cy_huang@richtek.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotdescription: 13*ae5de77eSEmmanuel Vadot RT9123P is a RT9123 variant which does not support I2C control. 14*ae5de77eSEmmanuel Vadot 15*ae5de77eSEmmanuel VadotallOf: 16*ae5de77eSEmmanuel Vadot - $ref: dai-common.yaml# 17*ae5de77eSEmmanuel Vadot 18*ae5de77eSEmmanuel Vadotproperties: 19*ae5de77eSEmmanuel Vadot compatible: 20*ae5de77eSEmmanuel Vadot enum: 21*ae5de77eSEmmanuel Vadot - richtek,rt9123p 22*ae5de77eSEmmanuel Vadot 23*ae5de77eSEmmanuel Vadot '#sound-dai-cells': 24*ae5de77eSEmmanuel Vadot const: 0 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot enable-gpios: 27*ae5de77eSEmmanuel Vadot maxItems: 1 28*ae5de77eSEmmanuel Vadot 29*ae5de77eSEmmanuel Vadot enable-delay-ms: 30*ae5de77eSEmmanuel Vadot description: 31*ae5de77eSEmmanuel Vadot Delay time for 'ENABLE' pin changes intended to make I2S clocks ready to 32*ae5de77eSEmmanuel Vadot prevent speaker pop noise. The unit is in millisecond. 33*ae5de77eSEmmanuel Vadot 34*ae5de77eSEmmanuel Vadotrequired: 35*ae5de77eSEmmanuel Vadot - compatible 36*ae5de77eSEmmanuel Vadot - '#sound-dai-cells' 37*ae5de77eSEmmanuel Vadot 38*ae5de77eSEmmanuel VadotunevaluatedProperties: false 39*ae5de77eSEmmanuel Vadot 40*ae5de77eSEmmanuel Vadotexamples: 41*ae5de77eSEmmanuel Vadot - | 42*ae5de77eSEmmanuel Vadot #include <dt-bindings/gpio/gpio.h> 43*ae5de77eSEmmanuel Vadot 44*ae5de77eSEmmanuel Vadot amplifier { 45*ae5de77eSEmmanuel Vadot compatible = "richtek,rt9123p"; 46*ae5de77eSEmmanuel Vadot enable-gpios = <&gpio 26 GPIO_ACTIVE_HIGH>; 47*ae5de77eSEmmanuel Vadot #sound-dai-cells = <0>; 48*ae5de77eSEmmanuel Vadot }; 49