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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DDD62C433FE for ; Thu, 24 Feb 2022 22:59:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235851AbiBXW77 (ORCPT ); Thu, 24 Feb 2022 17:59:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39966 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235853AbiBXW7o (ORCPT ); Thu, 24 Feb 2022 17:59:44 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7AA6018CC4D; Thu, 24 Feb 2022 14:59:13 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1923D61B77; Thu, 24 Feb 2022 22:59:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 580D6C340F1; Thu, 24 Feb 2022 22:59:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645743552; bh=ZWXXupdP+z3mMoHFbYDrLkme/FSZI7hGTF3wCfDqx2A=; h=From:To:In-Reply-To:References:Subject:Date:From; b=lUgCHjGcT5ghuhQ5FB9JeIgBRC0AxcVfo4ZO8RZf4mrGLD7f+ZmLCamAYqXM6eXSt 4LLDUD61kkQeq4kc42PWHLqkGkBYSVt2EZq8S2jnKiLgj3TActUoz7GYvfXX4gMhhD sP13NEyK7EKgd5cuLhaTk/1b263jDSpQ1HOVhu/j1S9S87rwleiuFoNi80O5lmW2yU mvGVhJvLFVqx87L+SILSTFt0ljsmhbEVEr0bvxKGCMeWKVP3TFut/Rtenc49R3HyqO EmoToMsHwQpMIKbacPeBUzLFQoIa78MIuNkiyXY4ElGLA1rGjjsbMrGLCPLjfGftVr pKnY9OSbQTe4w== From: Mark Brown To: agross@kernel.org, linux-arm-msm@vger.kernel.org, alsa-devel@alsa-project.org, perex@perex.cz, quic_plai@quicinc.com, Srinivasa Rao Mandadapu , swboyd@chromium.org, robh+dt@kernel.org, devicetree@vger.kernel.org, srinivas.kandagatla@linaro.org, linux-kernel@vger.kernel.org, bgoswami@codeaurora.org, judyhsiao@chromium.org, tiwai@suse.com, rohitkr@codeaurora.org, lgirdwood@gmail.com, bjorn.andersson@linaro.org In-Reply-To: <1645630745-25051-1-git-send-email-quic_srivasam@quicinc.com> References: <1645630745-25051-1-git-send-email-quic_srivasam@quicinc.com> Subject: Re: (subset) [PATCH v15 00/10] Add support for audio on SC7280 based targets Message-Id: <164574354907.4011497.12699483058167321693.b4-ty@kernel.org> Date: Thu, 24 Feb 2022 22:59:09 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On Wed, 23 Feb 2022 21:08:55 +0530, Srinivasa Rao Mandadapu wrote: > This patch set is to add support for Audio over wcd codec, > digital mics, through digital codecs and without ADSP. > > Changes Since V14: > -- Split common wrapper function to separate wrapper for each handle in platform driver. > -- Update cdc dma buffer handling with memremap with ioremap. > -- Remove redundant error prints. > -- Update irq flag. > Changes Since V13: > -- Change bulk cdc clock voting to individual clock voting. > -- Remove redundant code, conditional check and prints. > -- Fix typo errors. > Changes Since V12: > -- Fix arguments type mismatch. > Changes Since V11: > -- Fix kernel robot issue on arguments type mismatch. > Changes Since V10: > -- Split bulk clock voting to individual clock voting as per use case in cdc-dma driver. > -- Add missing codec dma clocks. > -- Update rxtx lpm buffer size. > Changes Since V9: > -- Change individual clock voting to bulk clock voting of lpass-sc7280 platform driver. > -- Remove redundant clocks in lpass variant structure. > -- Add mclk for MI2S based headset path. > -- Remove unused lpass variant structure members in lpass header. > Changes Since V8: > -- Fix errors in sc7280 lpass cpu dt-bindings. > -- Move to quicinc domain email id's. > Changes Since V7: > -- Fix indentation errors. > -- Bisect patches to avoid interdependency. > Changes Since V6: > -- Split cdc dma regmap config macros. > -- Add write dma reg fields for i2s path. > -- Add helper function to distinguish rxtx and va dma ports. > -- Optimizing clock and reg name in cpu dt-bindings. > -- Update buffer management for cdc dma path. > -- Remove Kconfig fields of machine driver. > Changes Since V5: > -- Include MI2S primary node to snd_soc_dai_driver in lpass-sc7280 platform driver. > -- Move dependency patch list to corresponding patch. > -- Add support for missing cdc-dma ports. > -- Change if/else conditional statements to switch cases. > -- Add missing error handlings. > -- Typo errors fix. > Changes Since V4: > -- Remove unused variable in lpass-sc7280 platform driver. > Changes Since V3: > -- Remove redundant power domain controls. As power domains can be configured from dtsi. > Changes Since V2: > -- Split lpass sc7280 cpu driver patch and create regmap config patch. > -- Create patches based on latest kernel tip. > -- Add helper function to get dma control and lpaif handle. > -- Remove unused variables. > Changes Since V1: > -- Typo errors fix > -- CPU driver readable/writable apis optimization. > -- Add Missing config patch > -- Add Common api for repeated dmactl initialization. > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [02/10] ASoC: qcom: Move lpass_pcm_data structure to lpass header commit: 74190d7cd3e8ab5123206d383dbfe125a4b7bb19 [03/10] ASoC: qcom: lpass: Add dma fields for codec dma lpass interface commit: ddd60045caa59d4b3d4b2a4b48fefd4974198587 [04/10] ASoC: qcom: Add helper function to get dma control and lpaif handle commit: 16413d5c5a2ed81d8fece1c5fe0b85752ecdbdf2 [05/10] ASoC: qcom: Add register definition for codec rddma and wrdma commit: dc8d9766bc03efee4d1b6dd912659858fdf981de [06/10] ASoC: qcom: Add regmap config support for codec dma driver commit: b138706225c9ce9fac7a4955df31d8f68bb1d409 [07/10] ASoC: qcom: Add support for codec dma driver commit: 7d7209557b6712e8aa72ac1ce67a3fe209f5f889 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark