All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>
To: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>,
	vkoul@kernel.org, perex@perex.cz, tiwai@suse.com,
	lgirdwood@gmail.com, broonie@kernel.org,
	srinivas.kandagatla@oss.qualcomm.com
Cc: linux-sound@vger.kernel.org, kai.vehmanen@linux.intel.com,
	yung-chuan.liao@linux.intel.com, daniel.baluta@nxp.com
Subject: Re: [PATCH v2 07/24] ASoC: SOF: compress: Rename compress ops with ipc3 prefix
Date: Wed, 9 Sep 2026 14:34:20 +0200	[thread overview]
Message-ID: <c54a3b84-cf8d-4336-b39d-eddbfd3de181@linux.dev> (raw)
In-Reply-To: <20260909090949.7503-8-peter.ujfalusi@linux.intel.com>

On 9/9/26 11:09, Peter Ujfalusi wrote:
> From: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
> 
> In preparation for adding support for compressed offload support for
> IPC4, rename the current compress implementation with the IPC3 prefix.
> Introduce a new field in struct sof_ipc_pcm_ops to save the
> IPC-specific compressed ops pointer. This should be set when the
> component driver ops are assigned during SOF device probe. Expose a couple
> of common functions that will be used by both IPC-specific implementations
> and rename the compress.c file to ipc3-compress.c
> 
> Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
> Reviewed-by: Liam Girdwood <liam.r.girdwood@intel.com>
> ---
>  sound/soc/sof/Makefile                        |   2 +-
>  sound/soc/sof/core.c                          |  10 +-
>  sound/soc/sof/{compress.c => ipc3-compress.c} | 145 ++++--------------
>  sound/soc/sof/ipc3-pcm.c                      |   3 +
>  sound/soc/sof/ipc3-priv.h                     |   3 +
>  sound/soc/sof/pcm.c                           |   5 +-
>  sound/soc/sof/sof-audio.c                     |  81 ++++++++++
>  sound/soc/sof/sof-audio.h                     |   5 +
>  8 files changed, 137 insertions(+), 117 deletions(-)
>  rename sound/soc/sof/{compress.c => ipc3-compress.c} (66%)
> 

this looks like a trivial code move:

> -static void sof_set_transferred_bytes(struct sof_compr_stream *sstream,
> -				      u64 host_pos, u64 buffer_size)
> -{
> -	u64 prev_pos;
> -	unsigned int copied;
> -
> -	div64_u64_rem(sstream->copied_total, buffer_size, &prev_pos);
> -
> -	if (host_pos < prev_pos)
> -		copied = (buffer_size - prev_pos) + host_pos;
> -	else
> -		copied = host_pos - prev_pos;
> -
> -	sstream->copied_total += copied;
> -}
> -
> -static void snd_sof_compr_fragment_elapsed_work(struct work_struct *work)
> -{
> -	struct snd_sof_pcm_stream *sps =
> -		container_of(work, struct snd_sof_pcm_stream,
> -			     period_elapsed_work);
> -
> -	snd_compr_fragment_elapsed(sps->cstream);
> -}
> -
> -void snd_sof_compr_init_elapsed_work(struct work_struct *work)
> -{
> -	INIT_WORK(work, snd_sof_compr_fragment_elapsed_work);
> -}
> -
> -/*
> - * sof compr fragment elapse, this could be called in irq thread context
> - */
> -void snd_sof_compr_fragment_elapsed(struct snd_compr_stream *cstream)
> -{
> -	struct snd_soc_pcm_runtime *rtd;
> -	struct snd_compr_runtime *crtd;
> -	struct snd_soc_component *component;
> -	struct sof_compr_stream *sstream;
> -	struct snd_sof_pcm *spcm;
> -
> -	if (!cstream)
> -		return;
> -
> -	rtd = cstream->private_data;
> -	crtd = cstream->runtime;
> -	sstream = crtd->private_data;
> -	component = snd_soc_rtdcom_lookup(rtd, SOF_AUDIO_PCM_DRV_NAME);
> -
> -	spcm = snd_sof_find_spcm_dai(component, rtd);
> -	if (!spcm) {
> -		dev_err(component->dev,
> -			"fragment elapsed called for unknown stream!\n");
> -		return;
> -	}
> -
> -	sof_set_transferred_bytes(sstream, spcm->stream[cstream->direction].posn.host_posn,
> -				  crtd->buffer_size);
> -
> -	/* use the same workqueue-based solution as for PCM, cf. snd_sof_pcm_elapsed */
> -	schedule_work(&spcm->stream[cstream->direction].period_elapsed_work);
> -}
> -
> -static int create_page_table(struct snd_soc_component *component,
> -			     struct snd_compr_stream *cstream,
> -			     unsigned char *dma_area, size_t size)
> -{
> -	struct snd_dma_buffer *dmab = cstream->runtime->dma_buffer_p;
> -	struct snd_soc_pcm_runtime *rtd = cstream->private_data;
> -	int dir = cstream->direction;
> -	struct snd_sof_pcm *spcm;
> -
> -	spcm = snd_sof_find_spcm_dai(component, rtd);
> -	if (!spcm)
> -		return -EINVAL;
> -
> -	return snd_sof_create_page_table(component->dev, dmab,
> -					 spcm->stream[dir].page_table.area, size);
> -}

...

> +#if IS_ENABLED(CONFIG_SND_SOC_SOF_COMPRESS)
> +static void sof_set_transferred_bytes(struct sof_compr_stream *sstream,
> +				      u64 host_pos, u64 buffer_size)
> +{
> +	u64 prev_pos;
> +	unsigned int copied;
> +
> +	div64_u64_rem(sstream->copied_total, buffer_size, &prev_pos);
> +
> +	if (host_pos < prev_pos)
> +		copied = (buffer_size - prev_pos) + host_pos;
> +	else
> +		copied = host_pos - prev_pos;
> +
> +	sstream->copied_total += copied;
> +}
> +
> +static void snd_sof_compr_fragment_elapsed_work(struct work_struct *work)
> +{
> +	struct snd_sof_pcm_stream *sps = container_of(work, struct snd_sof_pcm_stream,
> +						      period_elapsed_work);
> +
> +	snd_compr_fragment_elapsed(sps->cstream);
> +}
> +
> +void snd_sof_compr_init_elapsed_work(struct work_struct *work)
> +{
> +	INIT_WORK(work, snd_sof_compr_fragment_elapsed_work);
> +}
> +
> +/*
> + * sof compr fragment elapse, this could be called in irq thread context
> + */
> +void snd_sof_compr_fragment_elapsed(struct snd_compr_stream *cstream)
> +{
> +	struct snd_soc_pcm_runtime *rtd;
> +	struct snd_compr_runtime *crtd;
> +	struct snd_soc_component *component;
> +	struct sof_compr_stream *sstream;
> +	struct snd_sof_pcm *spcm;
> +
> +	if (!cstream)
> +		return;
> +
> +	rtd = cstream->private_data;
> +	crtd = cstream->runtime;
> +	sstream = crtd->private_data;
> +	component = snd_soc_rtdcom_lookup(rtd, SOF_AUDIO_PCM_DRV_NAME);
> +
> +	spcm = snd_sof_find_spcm_dai(component, rtd);
> +	if (!spcm) {
> +		dev_err(component->dev, "fragment elapsed called for unknown stream!\n");
> +		return;
> +	}
> +
> +	sof_set_transferred_bytes(sstream, spcm->stream[cstream->direction].posn.host_posn,
> +				  crtd->buffer_size);
> +
> +	/* use the same workqueue-based solution as for PCM, cf. snd_sof_pcm_elapsed */
> +	schedule_work(&spcm->stream[cstream->direction].period_elapsed_work);
> +}
> +
> +int snd_sof_compr_create_page_table(struct snd_soc_component *component,
> +				    struct snd_compr_stream *cstream,
> +				    unsigned char *dma_area, size_t size)
> +{
> +	struct snd_dma_buffer *dmab = cstream->runtime->dma_buffer_p;
> +	struct snd_soc_pcm_runtime *rtd = cstream->private_data;
> +	int dir = cstream->direction;
> +	struct snd_sof_pcm *spcm;
> +
> +	spcm = snd_sof_find_spcm_dai(component, rtd);
> +	if (!spcm)
> +		return -EINVAL;
> +
> +	return snd_sof_create_page_table(component->dev, dmab,
> +					 spcm->stream[dir].page_table.area, size);
> +}
> +#endif

but then there is also the addition of new ops and renames.

This patch does a lot of things, most of them trivial but overall it's a
lot to review.

maybe split this patch in two with the code move in a first patch, then
the file rename and introduction of new ops?



  reply	other threads:[~2026-09-09 14:23 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-09  9:09 [PATCH v2 00/24] ALSA compress / ASoC compress / SOF: Compressed audio support with IPC4 Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 01/24] ALSA: compress: pin card module while stream is open Peter Ujfalusi
2026-09-09 15:12   ` Takashi Iwai
2026-09-09  9:09 ` [PATCH v2 02/24] ALSA: compress: register the open file with the card Peter Ujfalusi
2026-09-09 15:12   ` Takashi Iwai
2026-09-09  9:09 ` [PATCH v2 03/24] ALSA: compress: stop active streams on disconnect Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 04/24] ASoC: soc-compress: Provide a runtime for the compressed FE substream Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 05/24] ASoC: soc-compress: Implement trigger FE-BE sequencing as with normal PCMs Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 06/24] ASoC: soc-compress: Stop running dpcm on free Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 07/24] ASoC: SOF: compress: Rename compress ops with ipc3 prefix Peter Ujfalusi
2026-09-09 12:34   ` Pierre-Louis Bossart [this message]
2026-09-10 14:13     ` Péter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 08/24] ASoC: SOF: ipc4-pcm: harden pipeline teardown races Peter Ujfalusi
2026-09-09 12:37   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 09/24] ASoC: SOF: sof-audio: do not dereference swidget->spipe unconditionally on free Peter Ujfalusi
2026-09-09 12:39   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 10/24] ASoC: SOF: sof-audio: Expose a couple of functions Peter Ujfalusi
2026-09-09 12:41   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 11/24] ASoC: SOF: pcm: Modify the signature of a couple of PCM IPC ops Peter Ujfalusi
2026-09-09 12:43   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 12/24] ASoC: SOF: intel: hda-stream: Clear the current position when releasing stream Peter Ujfalusi
2026-09-09 12:45   ` Pierre-Louis Bossart
2026-09-11  6:31     ` Péter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 13/24] ASoC: SOF: ops: Add new platform-specific ops for compress Peter Ujfalusi
2026-09-09 14:23   ` Pierre-Louis Bossart
2026-09-10 14:25     ` Péter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 14/24] ASoC: SOF: ipc4: Add definition of module data in init_ext object type Peter Ujfalusi
2026-09-09 12:49   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 15/24] ASoC: SOF: ipc4-topology: Support init_ext_module_data for process modules Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 16/24] ASoC: SOF: ipc4-pcm: Make the timestamp info usable outside of ipc4-pcm.c Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 17/24] ASoC: SOF: ipc4/ipc4-loader: Add SOF_INFO and CODEC_INFO to fw_config_params Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 18/24] ASoC: SOF: ipc4-pcm: Handle COMPR DRAIN triggers as EOS pipeline state Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 19/24] ASoC: SOF: ipc4-topology: Set FAST_MODE for host copier in compr mode Peter Ujfalusi
2026-09-09 13:21   ` Pierre-Louis Bossart
2026-09-10 14:49     ` Péter Ujfalusi
2026-09-11 19:08       ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 20/24] ASoC: SOF: Add support for IPC4 compressed Peter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 21/24] ASoC: SOF: ipc4: Handle compressed drain done notification from firmware Peter Ujfalusi
2026-09-09 13:28   ` Pierre-Louis Bossart
2026-09-10 15:08     ` Péter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 22/24] ASoC: SOF: Intel: Kconfig: Remove redundant IPC version selects Peter Ujfalusi
2026-09-09 13:29   ` Pierre-Louis Bossart
2026-09-09  9:09 ` [PATCH v2 23/24] ASoC: SOF: Intel: Kconfig: Select compress support for TGL+ platforms Peter Ujfalusi
2026-09-09 13:37   ` Pierre-Louis Bossart
2026-09-10 14:57     ` Péter Ujfalusi
2026-09-09  9:09 ` [PATCH v2 24/24] ASoC: SOF: topology: Add support for decoder and encoder widgets Peter Ujfalusi
2026-09-09 13:42 ` [PATCH v2 00/24] ALSA compress / ASoC compress / SOF: Compressed audio support with IPC4 Pierre-Louis Bossart

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=c54a3b84-cf8d-4336-b39d-eddbfd3de181@linux.dev \
    --to=pierre-louis.bossart@linux.dev \
    --cc=broonie@kernel.org \
    --cc=daniel.baluta@nxp.com \
    --cc=kai.vehmanen@linux.intel.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-sound@vger.kernel.org \
    --cc=perex@perex.cz \
    --cc=peter.ujfalusi@linux.intel.com \
    --cc=srinivas.kandagatla@oss.qualcomm.com \
    --cc=tiwai@suse.com \
    --cc=vkoul@kernel.org \
    --cc=yung-chuan.liao@linux.intel.com \
    /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.