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=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS 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 84402C4338F for ; Thu, 12 Aug 2021 11:47:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5CE9C6056C for ; Thu, 12 Aug 2021 11:47:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236975AbhHLLsQ (ORCPT ); Thu, 12 Aug 2021 07:48:16 -0400 Received: from smtp-out2.suse.de ([195.135.220.29]:58638 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235664AbhHLLsP (ORCPT ); Thu, 12 Aug 2021 07:48:15 -0400 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id 6025D1FF38; Thu, 12 Aug 2021 11:47:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1628768869; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=UsnGN8G6MbJhWNJtgd31YPMCzs62W5YWWfIm0pXOrbU=; b=VrudGW0oJ+TBUCeEvUMhreCvashh+/6TubEqnieCxUXQLPbmVcvh/lfi0jMyuHxW16B2zm uxJ+BC2Tg9A5Cvvy1X76F1mzVh7GTM+Bd44VYWz6Jvhu4cNYJGNWVCpDjDyD2Pb+Kw8ML+ luWdZjLmUq3gBDogiR8Lh+eDQLIIzDE= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1628768869; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=UsnGN8G6MbJhWNJtgd31YPMCzs62W5YWWfIm0pXOrbU=; b=kjGv5ndPGpcGN82ZM03CXYzsW8IpEKeGxQsG7uaYIC4ilRI96VDOrWuv47dy/0HKe0psX0 QwiewyPSIUO8alDQ== Received: from alsa1.suse.de (alsa1.suse.de [10.160.4.42]) by relay2.suse.de (Postfix) with ESMTP id 581B2A3EF7; Thu, 12 Aug 2021 11:47:49 +0000 (UTC) Date: Thu, 12 Aug 2021 13:47:49 +0200 Message-ID: From: Takashi Iwai To: Vitaly Rodionov Cc: Jaroslav Kysela , Takashi Iwai , , , Subject: Re: [PATCH v4 00/27] ALSA: hda/cirrus: Split generic cirrus HDA codecs and CS8490 bridge into separate modules. In-Reply-To: <20210811185654.6837-1-vitalyr@opensource.cirrus.com> References: <20210811185654.6837-1-vitalyr@opensource.cirrus.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 11 Aug 2021 20:56:27 +0200, Vitaly Rodionov wrote: > > This series of patches splits generic cirrus HDA codecs and CS8490 bridge > into separate modules, adds support for multiple companion codecs connected to > CS8409, and also adds support for new DELL HW platform. > > CS8409 part is not really a HDA codec, it is a HDA bridge where companion codecs > (up to 16) can be attached. With growing number of supported configurations and > platforms, patch_cirrus is getting less and less transparent and maintainable. > So, the logical step is to separate generic Cirrus HDA codecs support > and Cirrus HDA bridge support. > > Lots of improvements to existing functionality, code clean-up and refactoring, > remove duplicated/redundant code, improve I2C functions etc. > > Add support for new DELL HW platform with 2 CS42L42 codecs for front and rear jacks. > > Lucas Tanure (12): > ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module > ALSA: hda/cs8409: Move arrays of configuration to a new file > ALSA: hda/cs8409: Disable unsolicited response for the first boot > ALSA: hda/cs8409: Prevent I2C access during suspend time > ALSA: hda/cs8409: Generalize volume controls > ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses > ALSA: hda/cs8409: Avoid setting the same I2C address for every access > ALSA: hda/cs8409: Avoid re-setting the same page as the last access > ALSA: hda/cs8409: Support i2c bulk read/write functions > ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions > ALSA: hda/cs8409: Move codec properties to its own struct > ALSA: hda/cs8409: Add support for dolphin > > Stefan Binding (15): > ALSA: hda/cs8409: Use enums for register names and coefficients > ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization > ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg > ALSA: hda/cs8409: Disable unnecessary Ring Sense for > Cyborg/Warlock/Bullseye > ALSA: hda/cs8409: Disable unsolicited responses during suspend > ALSA: hda/cs8409: Mask CS42L42 wake events > ALSA: hda/cs8409: Simplify CS42L42 jack detect. > ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol > events > ALSA: hda/cs8409: Add Support to disable jack type detection for > CS42L42 > ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on > Dolphin > ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 > ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction > waits > ALSA: hda/cs8409: Remove unnecessary delays > ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for > suspend > ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops Thanks, applied now all 27 patches to for-next branch. Takashi