Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6DEE2C636CC for ; Wed, 8 Feb 2023 14:18:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231359AbjBHOSy (ORCPT ); Wed, 8 Feb 2023 09:18:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36288 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231317AbjBHOSq (ORCPT ); Wed, 8 Feb 2023 09:18:46 -0500 Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AB5FC4617C; Wed, 8 Feb 2023 06:18:45 -0800 (PST) Received: from cryzen.lan (cpc87451-finc19-2-0-cust61.4-2.cable.virginm.net [82.11.51.62]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: tanureal) by madras.collabora.co.uk (Postfix) with ESMTPSA id 29AB466020F0; Wed, 8 Feb 2023 14:18:44 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1675865924; bh=IRarZelYPmBHrTv8mYRAQ2aRcwLzEdk+ohpigPdbaOQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kX27tt2A0op5ijS6BRs55dT7wGT/5eGHN6IWw3UIu6yBLbyw9YrqcjBS4hXZom//S 7/5LiPYoWhS1tRL8ANOpq4RcxF7ghiKh5DZFITEU5PdqmSdctWqCRZYcs6C92yDQ0H 5E1EhMGvDCVBa2ZCcZunSQgb0R48xAbaqnEMrmHeTWQJfbjEud9g/5mmFQ4KEs7NpL GmFsaSDNe46hJxSI8Ivp0qjbfazwjEgtNW6akBcF6PBQDfx6k8UM2o6KUbpx2+hxPu WXW2uil13hPcEoxctJswaE/HoWIm/+DIzj4R/grdU4lhVmlLttkaVEJ2NMjLTYweaO VQoCWMY89SlFw== From: Lucas Tanure To: David Rhodes , Charles Keepax , Liam Girdwood , Krzysztof Kozlowski , Mark Brown , Rob Herring , Jaroslav Kysela , Takashi Iwai Cc: alsa-devel@alsa-project.org, devicetree@vger.kernel.org, patches@opensource.cirrus.com, linux-kernel@vger.kernel.org, kernel@collabora.com, Lucas Tanure Subject: [PATCH v3 4/4] ASoC: cs35l41: Document CS35l41 shared boost Date: Wed, 8 Feb 2023 14:18:39 +0000 Message-Id: <20230208141839.1097377-5-lucas.tanure@collabora.com> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230208141839.1097377-1-lucas.tanure@collabora.com> References: <20230208141839.1097377-1-lucas.tanure@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Describe the properties used for shared boost configuration. Based on David Rhodes shared boost patches. Signed-off-by: Lucas Tanure --- .../devicetree/bindings/sound/cirrus,cs35l41.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml b/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml index 51d815d0c696..74f08a6cf95c 100644 --- a/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml +++ b/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml @@ -82,11 +82,19 @@ properties: boost-cap-microfarad. External Boost must have GPIO1 as GPIO output. GPIO1 will be set high to enable boost voltage. + Shared boost allows two amplifiers to share a single boost circuit by + communicating on the MDSYNC bus. The passive amplifier does not control + the boost and receives data from the active amplifier. GPIO1 should be + configured for Sync when shared boost is used. Shared boost is not + compatible with External boost. Active amplifier requires + boost-peak-milliamp, boost-ind-nanohenry and boost-cap-microfarad. 0 = Internal Boost 1 = External Boost + 2 = Shared Boost Active + 3 = Shared Boost Passive $ref: "/schemas/types.yaml#/definitions/uint32" minimum: 0 - maximum: 1 + maximum: 3 cirrus,gpio1-polarity-invert: description: -- 2.39.1