All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Liao, Bard" <yung-chuan.liao@linux.intel.com>
To: Charles Keepax <ckeepax@opensource.cirrus.com>, broonie@kernel.org
Cc: vkoul@kernel.org, pierre-louis.bossart@linux.dev,
	peter.ujfalusi@linux.intel.com, shumingf@realtek.com,
	lgirdwood@gmail.com, linux-sound@vger.kernel.org,
	patches@opensource.cirrus.com
Subject: Re: [PATCH v3 00/13] Add SDCA class driver
Date: Mon, 17 Nov 2025 14:13:49 +0800	[thread overview]
Message-ID: <a77a5e35-9766-4375-8fba-bf2c9ab24023@linux.intel.com> (raw)
In-Reply-To: <20251106114422.906370-1-ckeepax@opensource.cirrus.com>



On 11/6/2025 7:44 PM, Charles Keepax wrote:
> This series adds an initial SDCA class driver, this consists of a
> primary driver attached to the SoundWire device, and auxiliary drivers
> representing each of the functions of the SDCA device. These drivers all
> use the APIs added over the past series's to provide the class
> functionality, as such these final drivers themselves are quite thin.
> 
> Also a few fix ups at the start of the series that have gathered up
> whilst the last SDCA series was in review.
> 
> Thanks,
> Charles
> 
> Changes since v2:
>  - Updated the locking in sdca_fdl_process
>  - Correct some spelling in comments
>  - Renamed suspend/resume functions to be a little short
> 
> Changes since v1:
>  - Add a bunch of bug fix patches
>  - Change some prints to dbgs
>  - Add some additional comments
>  - Flip order on regcache operations in resume
> 
> 
> Charles Keepax (12):
>   ASoC: SDCA: Remove duplicated module macros
>   ASoC: SDCA: Fix missing dash in HIDE DisCo property
>   ASoC: SDCA: Add missing forward declaration in header
>   ASoC: SDCA: Correct FDL locking in sdca_fdl_process()
>   ASoC: SDCA: Add comment for function reset polling
>   ASoC: SDCA: Move most of the messages from info to debug
>   ASoC: SDCA: Use helper macros for control identification
>   ASoC: SDCA: Factor out helper to process Control defaults
>   ASoC: SDCA: Populate regmap cache for readable Controls
>   ASoC: SDCA: Add helper to write initialization writes
>   ASoC: SDCA: Add basic SDCA class driver
>   ASoC: SDCA: Add basic SDCA function driver
> 
> Pierre-Louis Bossart (1):
>   ASoC: SDCA: add function devices
> 
>  include/linux/soundwire/sdw_registers.h |   2 +
>  include/sound/sdca.h                    |  14 +
>  include/sound/sdca_regmap.h             |   2 +
>  sound/soc/sdca/Kconfig                  |  18 +
>  sound/soc/sdca/Makefile                 |  10 +-
>  sound/soc/sdca/sdca_class.c             | 304 ++++++++++++++++
>  sound/soc/sdca/sdca_class.h             |  37 ++
>  sound/soc/sdca/sdca_class_function.c    | 460 ++++++++++++++++++++++++
>  sound/soc/sdca/sdca_fdl.c               |   8 +-
>  sound/soc/sdca/sdca_function_device.c   | 117 ++++++
>  sound/soc/sdca/sdca_function_device.h   |  15 +
>  sound/soc/sdca/sdca_functions.c         |  52 ++-
>  sound/soc/sdca/sdca_hid.c               |   3 -
>  sound/soc/sdca/sdca_interrupts.c        |  39 +-
>  sound/soc/sdca/sdca_regmap.c            |  89 +++--
>  15 files changed, 1089 insertions(+), 81 deletions(-)
>  create mode 100644 sound/soc/sdca/sdca_class.c
>  create mode 100644 sound/soc/sdca/sdca_class.h
>  create mode 100644 sound/soc/sdca/sdca_class_function.c
>  create mode 100644 sound/soc/sdca/sdca_function_device.c
>  create mode 100644 sound/soc/sdca/sdca_function_device.h
> 

For this series: Tested-by: Bard Liao <yung-chuan.liao@linux.intel.com>


  parent reply	other threads:[~2025-11-17  6:13 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-06 11:44 [PATCH v3 00/13] Add SDCA class driver Charles Keepax
2025-11-06 11:44 ` [PATCH v3 01/13] ASoC: SDCA: Remove duplicated module macros Charles Keepax
2025-11-06 11:44 ` [PATCH v3 02/13] ASoC: SDCA: Fix missing dash in HIDE DisCo property Charles Keepax
2025-11-06 11:44 ` [PATCH v3 03/13] ASoC: SDCA: Add missing forward declaration in header Charles Keepax
2025-11-06 11:44 ` [PATCH v3 04/13] ASoC: SDCA: Correct FDL locking in sdca_fdl_process() Charles Keepax
2025-11-06 11:44 ` [PATCH v3 05/13] ASoC: SDCA: Add comment for function reset polling Charles Keepax
2025-11-06 11:44 ` [PATCH v3 06/13] ASoC: SDCA: Move most of the messages from info to debug Charles Keepax
2025-11-06 11:44 ` [PATCH v3 07/13] ASoC: SDCA: Use helper macros for control identification Charles Keepax
2025-11-06 11:44 ` [PATCH v3 08/13] ASoC: SDCA: Factor out helper to process Control defaults Charles Keepax
2025-11-06 11:44 ` [PATCH v3 09/13] ASoC: SDCA: Populate regmap cache for readable Controls Charles Keepax
2025-11-06 11:44 ` [PATCH v3 10/13] ASoC: SDCA: Add helper to write initialization writes Charles Keepax
2025-11-06 11:44 ` [PATCH v3 11/13] ASoC: SDCA: add function devices Charles Keepax
2025-11-06 11:44 ` [PATCH v3 12/13] ASoC: SDCA: Add basic SDCA class driver Charles Keepax
2025-11-06 11:44 ` [PATCH v3 13/13] ASoC: SDCA: Add basic SDCA function driver Charles Keepax
2025-11-17  6:13 ` Liao, Bard [this message]
2025-11-19 11:53 ` [PATCH v3 00/13] Add SDCA class driver Maciej Strozek
2025-11-19 13:59 ` Péter Ujfalusi
2025-11-19 15:02 ` Richard Fitzgerald
2025-11-21 22:11 ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a77a5e35-9766-4375-8fba-bf2c9ab24023@linux.intel.com \
    --to=yung-chuan.liao@linux.intel.com \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.cirrus.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-sound@vger.kernel.org \
    --cc=patches@opensource.cirrus.com \
    --cc=peter.ujfalusi@linux.intel.com \
    --cc=pierre-louis.bossart@linux.dev \
    --cc=shumingf@realtek.com \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.