Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: dt-bindings: Add Everest ES8389 audio CODEC

Add device tree binding documentation for Everest ES8389 which
is different from ES8388

Signed-off-by: Zhang Yi <zhangyi@everest-semi.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://patch.msgid.link/20250514094546.35508-3-zhangyi@everest-semi.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Zhang Yi and committed by
Mark Brown
c8e7d528 0319c268

+50
+50
Documentation/devicetree/bindings/sound/everest,es8389.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/sound/everest,es8389.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Everest ES8389 audio CODEC 8 + 9 + maintainers: 10 + - Michael Zhang <zhangyi@everest-semi.com> 11 + 12 + allOf: 13 + - $ref: dai-common.yaml# 14 + 15 + properties: 16 + compatible: 17 + const: everest,es8389 18 + 19 + reg: 20 + maxItems: 1 21 + 22 + clocks: 23 + items: 24 + - description: clock for master clock (MCLK) 25 + 26 + clock-names: 27 + items: 28 + - const: mclk 29 + 30 + "#sound-dai-cells": 31 + const: 0 32 + 33 + required: 34 + - compatible 35 + - reg 36 + - "#sound-dai-cells" 37 + 38 + additionalProperties: false 39 + 40 + examples: 41 + - | 42 + i2c { 43 + #address-cells = <1>; 44 + #size-cells = <0>; 45 + es8389: codec@10 { 46 + compatible = "everest,es8389"; 47 + reg = <0x10>; 48 + #sound-dai-cells = <0>; 49 + }; 50 + };