From patchwork Wed Jan 4 14:04:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Francesco Dolcini X-Patchwork-Id: 639528 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 CBAC6C4332F for ; Wed, 4 Jan 2023 14:04:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233421AbjADOEz (ORCPT ); Wed, 4 Jan 2023 09:04:55 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58548 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239508AbjADOEm (ORCPT ); Wed, 4 Jan 2023 09:04:42 -0500 Received: from smtp-out-08.comm2000.it (smtp-out-08.comm2000.it [212.97.32.78]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4CD7C1B1ED for ; Wed, 4 Jan 2023 06:04:37 -0800 (PST) Received: from francesco-nb.toradex.int (31-10-206-125.static.upc.ch [31.10.206.125]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: francesco@dolcini.it) by smtp-out-08.comm2000.it (Postfix) with ESMTPSA id B154F4233B5; Wed, 4 Jan 2023 15:04:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mailserver.it; s=mailsrv; t=1672841074; bh=rQbyRGIOjye6XpK3VIW9faCnu3RpMayfvgYRrYPUabw=; h=From:To:Cc:Subject:Date; b=u0BlObqy+vqP7z9a1KVtY+kUuYCsKBinxLvXBDKDAiwDOeny5d898e6PmfyB+ldNx tyS+pfm60c3682PGIq2qzaXrQAbC+akwJBp/UR1WSOd0wD1vmU3oLgPMoskm6hlE3z LUS+V8q2UWLO6JVHIwbSISOddi3GLf5KhJQG/ZsrUHkyP9xqmEFMW4NVNvyHJihm2u MZKClDWVgsgBFo9nEkwxVNSNItwcrDYDzOf0QUjqSC1Xc9KHJrzReAirMCQrvUpy2q ZZFOvu72L933TOqdLn2S3Q8rwWWxoW7xhh/bbzhb4jJfwAVKh56PB+mP1d092I1dGh ixmNBGxvj9aQw== From: Francesco Dolcini To: alsa-devel@alsa-project.org, devicetree@vger.kernel.org Cc: Francesco Dolcini , Liam Girdwood , Mark Brown , Rob Herring , Krzysztof Kozlowski , Jaroslav Kysela , Takashi Iwai , Benjamin Marty , kchsu0@nuvoton.com, wtli@nuvoton.com Subject: [PATCH v2 0/3] ASoC: nau8822: add speaker Bridge Tied Output Date: Wed, 4 Jan 2023 15:04:09 +0100 Message-Id: <20230104140412.35575-1-francesco@dolcini.it> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: Francesco Dolcini Add support for BTL (Bridge Tied Load) configuration to NAU8822 audio codec, since this requires adding a new property to the binding convert it from txt to yaml first. v2: - added Krzysztof reviewed-by and acked-by - removed non-relevant information about SPI not being supported from binding document Emanuele Ghidoli (3): ASoC: dt-bindings: nau8822: convert to the dtschema ASoC: dt-bindings: nau8822: add nuvoton,spk-btl property to dtschema ASoC: nau8822: add speaker Bridge Tied Output configuration .../devicetree/bindings/sound/nau8822.txt | 16 ------- .../bindings/sound/nuvoton,nau8822.yaml | 46 +++++++++++++++++++ sound/soc/codecs/nau8822.c | 10 ++++ sound/soc/codecs/nau8822.h | 9 ++++ 4 files changed, 65 insertions(+), 16 deletions(-) delete mode 100644 Documentation/devicetree/bindings/sound/nau8822.txt create mode 100644 Documentation/devicetree/bindings/sound/nuvoton,nau8822.yaml