From nobody Fri Dec 19 17:02:21 2025 Received: from smtp134-89.sina.com.cn (smtp134-89.sina.com.cn [180.149.134.89]) (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 36E6C1DD0F6 for ; Fri, 28 Mar 2025 08:05:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=180.149.134.89 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743149157; cv=none; b=Og0q58wUecnJFff/DDmIt0fCs0yJkNleKNpGr8a/9AfpDCji6NuwPqdeS6C2NpUI2sUvrv6uO+L7Gdd0AxoQoq3ubWeHDH9RT3JzSOfvzPlNkB+EZ2oTpm0uFGCwurXDjM/SA0KkqOV84SOngvLIAVEeKF2kRTEEx1II4wESNew= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743149157; c=relaxed/simple; bh=mqJ2zpr0rM1SozvZK0nLMqNWqEKb6AcbZ6KjfpKuxrc=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=DIi0ArxY48uOcdyrQmepJwJ0T1BZS07kZ/eCbrDen1JACcQf0AbEkfmkK3eUjSTmVbT/Prd9SSoZI7PnxM5tW0x+ps8guPbcAHGSDongoFPvTcY+7732yHa2JTyH8Vtr1kQpsAwdMjn4zj3n8hoEj7MJd6uerrFazrEwhyJgnhE= 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.89 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.31) with ESMTP id 67E657C900005D88; Fri, 28 Mar 2025 16:03:25 +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: BED9987213CB4A87A672A76789139BDB X-SMAIL-UIID: BED9987213CB4A87A672A76789139BDB-20250328-160325 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 v7 2/2] ASoC: dt-bindings: Add Everest ES8389 audio CODEC Date: Fri, 28 Mar 2025 16:03:19 +0800 Message-Id: <20250328080319.53734-3-zhangyi@everest-semi.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20250328080319.53734-1-zhangyi@everest-semi.com> References: <20250328080319.53734-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