From nobody Wed Dec 17 08:55:17 2025 Received: from smtp134-86.sina.com.cn (smtp134-86.sina.com.cn [180.149.134.86]) (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 F16E4251793 for ; Wed, 14 May 2025 09:45:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=180.149.134.86 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747215958; cv=none; b=dzfY2YWr31W4DWZoS0SgGjFZbk2iUM0SY0tvsoi9ff6tWU/qYviP6jFjz5n6pPPs6NMRaXokUD9sODs9l3N2/Q5yrqeCfNz4WYfUG1rAxbaDkHqJG26f3GIArr0W37f/WZwknjS7LrDH8W7EjR1XzKrbxW2VrNV+LWY4bqd3e48= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747215958; c=relaxed/simple; bh=PXbUnxFt7FBOT03i5/ZnmE7HiyjiR44UpKUEak4TapI=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=CkVy5Va9fcYx5pucIeeocU21rEt37f6NgU6Ni9UyO+NfjVQ00PQ7O7Hw8KURgIdAohneLCTNLynMZ8Vll/SWPLWcAMOziLytISJ4ah/Q2u6BUrurUk9g9BUpLQjY9mfXUtRJKwnhtTEYCt0Dp0xzw0XXbOJ8CkmdBuo0cxVd+2M= 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.86 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.172.39.205]) by sina.net (10.185.250.30) with ESMTP id 6824664C000067F7; Wed, 14 May 2025 17:45:51 +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: 9FA1D59BA44C4EA28094645689CAA8E3 X-SMAIL-UIID: 9FA1D59BA44C4EA28094645689CAA8E3-20250514-174551 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 v8 2/2] ASoC: dt-bindings: Add Everest ES8389 audio CODEC Date: Wed, 14 May 2025 17:45:46 +0800 Message-Id: <20250514094546.35508-3-zhangyi@everest-semi.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20250514094546.35508-1-zhangyi@everest-semi.com> References: <20250514094546.35508-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 000000000..a673df485 --- /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