From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id ECE16C433FF for ; Tue, 30 Jul 2019 15:27:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BD94D206E0 for ; Tue, 30 Jul 2019 15:27:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732404AbfG3P1i (ORCPT ); Tue, 30 Jul 2019 11:27:38 -0400 Received: from imap1.codethink.co.uk ([176.9.8.82]:50946 "EHLO imap1.codethink.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731767AbfG3P1i (ORCPT ); Tue, 30 Jul 2019 11:27:38 -0400 Received: from [167.98.27.226] (helo=[10.35.6.253]) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1hsU2H-0000v2-8c; Tue, 30 Jul 2019 16:27:33 +0100 Subject: Re: [alsa-devel] [PATCH v2 3/3] ASoC: TDA7802: Add turn-on diagnostic routine To: Mark Brown Cc: Mark Rutland , devicetree@vger.kernel.org, alsa-devel@alsa-project.org, Charles Keepax , Kuninori Morimoto , Kirill Marinushkin , Liam Girdwood , Takashi Iwai , Marco Felsch , Annaliese McDermond , linux-kernel@vger.kernel.org, Paul Cercueil , Vinod Koul , Rob Herring , Srinivas Kandagatla , Jerome Brunet , Cheng-Yi Chiang References: <20190730120937.16271-1-thomas.preston@codethink.co.uk> <20190730120937.16271-4-thomas.preston@codethink.co.uk> <20190730124158.GH54126@ediswmail.ad.cirrus.com> <20190730142010.GG4264@sirena.org.uk> From: Thomas Preston Message-ID: <99b80b21-fdb4-085f-3380-7df4700bb0ff@codethink.co.uk> Date: Tue, 30 Jul 2019 16:27:32 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20190730142010.GG4264@sirena.org.uk> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 30/07/2019 15:20, Mark Brown wrote: > On Tue, Jul 30, 2019 at 03:04:19PM +0100, Thomas Preston wrote: >> On 30/07/2019 13:41, Charles Keepax wrote: > >>> This could probably be removed using regmap_multi_reg_write. > >> The problem is that I want to retain the state of the other bits in those >> registers. Maybe I should make a copy of the backed up state, set the bits >> I want to off-device, then either: > >> 1. Write the changes with regmap_multi_reg_write >> 2. Write all six regs again (if my device doesn't support the multi_reg) > > Or make this a regmap function, there's nothing device specific about > it. > I did wonder why regmap didn't have an multi-update function. If appropriate, I will add this in.