From nobody Wed Dec 17 09:20:01 2025 Received: from smtp134-84.sina.com.cn (smtp134-84.sina.com.cn [180.149.134.84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 557E91FFC54 for ; Thu, 27 Mar 2025 08:14:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=180.149.134.84 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743063302; cv=none; b=iNQEUqVBixOcZn24A7c6wMIJSJmzfXhY/gZnxyjl7oRp7ANLH9PdxJC/wl9DCQUBqsfQXi6a0/8Ou7fqM4Mgdv/Oq1XwgNo7RsnPK7PjgWh7A07cp0e8+lzY2ZUB7mwVIMYgUwA9cB9ICSnHVzhwg3lsLGj9f5I49zhOTrf5BIA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743063302; c=relaxed/simple; bh=mqJ2zpr0rM1SozvZK0nLMqNWqEKb6AcbZ6KjfpKuxrc=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=ml+WIyEeAgaPm3Bc5OWZyOjhpObH7IaCkg1lWCvpuufVJ7c6dDlkBcbFW792xw3HoZyf8+m7xAha/X/i54CMjBm518X2qfI4cnDf8TolLZUa7j1hqZOmwCMZaenJRRQ3WSMGLR39jBHQOI5s2N3RKAcwdasoLD2pwXrRhuDgA8s= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=everest-semi.com; spf=pass smtp.mailfrom=everest-semi.com; arc=none smtp.client-ip=180.149.134.84 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=everest-semi.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=everest-semi.com Received: from unknown (HELO zy-virtual-machine.localdomain)([180.159.108.242]) by sina.net (10.185.250.29) with ESMTP id 67E508FB00003D6D; Thu, 27 Mar 2025 16:14:54 +0800 (CST) X-Sender: zhangyi@everest-semi.com X-Auth-ID: zhangyi@everest-semi.com Authentication-Results: sina.net; spf=none smtp.mailfrom=zhangyi@everest-semi.com; dkim=none header.i=none; dmarc=none action=none header.from=zhangyi@everest-semi.com X-SMAIL-MID: 3E6F532D54F649C3A54263EF24D8E850 X-SMAIL-UIID: 3E6F532D54F649C3A54263EF24D8E850-20250327-161454 From: Zhang Yi To: broonie@kernel.org, robh@kernel.org, tiwai@suse.com, devicetree@vger.kernel.org, conor+dt@kernel.org, lgirdwood@gmail.com, linux-kernel@vger.kernel.org, linux-sound@vger.kernel.org, perex@perex.cz, krzk+dt@kernel.org Cc: amadeuszx.slawinski@linux.intel.com, krzk@kernel.org, Zhang Yi Subject: [PATCH v6 2/2] ASoC: dt-bindings: Add Everest ES8389 audio CODEC Date: Thu, 27 Mar 2025 16:14:50 +0800 Message-Id: <20250327081450.47690-3-zhangyi@everest-semi.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20250327081450.47690-1-zhangyi@everest-semi.com> References: <20250327081450.47690-1-zhangyi@everest-semi.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Add device tree binding documentation for Everest ES8389 which is different from ES8388 Signed-off-by: Zhang Yi Reviewed-by: Krzysztof Kozlowski --- .../bindings/sound/everest,es8389.yaml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/everest,es8389.= yaml diff --git a/Documentation/devicetree/bindings/sound/everest,es8389.yaml b/= Documentation/devicetree/bindings/sound/everest,es8389.yaml new file mode 100644 index 000000000000..a673df485ab3 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/everest,es8389.yaml @@ -0,0 +1,50 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/sound/everest,es8389.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Everest ES8389 audio CODEC + +maintainers: + - Michael Zhang + +allOf: + - $ref: dai-common.yaml# + +properties: + compatible: + const: everest,es8389 + + reg: + maxItems: 1 + + clocks: + items: + - description: clock for master clock (MCLK) + + clock-names: + items: + - const: mclk + + "#sound-dai-cells": + const: 0 + +required: + - compatible + - reg + - "#sound-dai-cells" + +additionalProperties: false + +examples: + - | + i2c { + #address-cells =3D <1>; + #size-cells =3D <0>; + es8389: codec@10 { + compatible =3D "everest,es8389"; + reg =3D <0x10>; + #sound-dai-cells =3D <0>; + }; + }; --=20 2.17.1