]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ASoC: q6asm: use flags directly from q6asm-dai
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Mon, 27 Jul 2020 09:37:59 +0000 (10:37 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 17 Aug 2020 17:29:32 +0000 (18:29 +0100)
use flags set by q6asm-dais directly!

This will be useful gapless case where write needs a special flag to indicate
that last buffer.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Tested-by: Vinod Koul <vkoul@kernel.org>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20200727093806.17089-4-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/qcom/qdsp6/q6asm-dai.c
sound/soc/qcom/qdsp6/q6asm.c
sound/soc/qcom/qdsp6/q6asm.h

index 0f157f118a3f759aefc17c087967914e475a4ede..0df2fde9b2f36da47e35c59e2d722547246c5b9c 100644 (file)
@@ -183,7 +183,7 @@ static void event_handler(uint32_t opcode, uint32_t token,
        case ASM_CLIENT_EVENT_CMD_RUN_DONE:
                if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
                        q6asm_write_async(prtd->audio_client, prtd->stream_id,
-                                  prtd->pcm_count, 0, 0, NO_TIMESTAMP);
+                                  prtd->pcm_count, 0, 0, 0);
                break;
        case ASM_CLIENT_EVENT_CMD_EOS_DONE:
                prtd->state = Q6ASM_STREAM_STOPPED;
@@ -193,7 +193,7 @@ static void event_handler(uint32_t opcode, uint32_t token,
                snd_pcm_period_elapsed(substream);
                if (prtd->state == Q6ASM_STREAM_RUNNING)
                        q6asm_write_async(prtd->audio_client, prtd->stream_id,
-                                          prtd->pcm_count, 0, 0, NO_TIMESTAMP);
+                                          prtd->pcm_count, 0, 0, 0);
 
                break;
                }
@@ -512,7 +512,7 @@ static void compress_event_handler(uint32_t opcode, uint32_t token,
                spin_lock_irqsave(&prtd->lock, flags);
                if (!prtd->bytes_sent) {
                        q6asm_write_async(prtd->audio_client, prtd->stream_id,
-                                         prtd->pcm_count, 0, 0, NO_TIMESTAMP);
+                                         prtd->pcm_count, 0, 0, 0);
                        prtd->bytes_sent += prtd->pcm_count;
                }
 
@@ -538,7 +538,7 @@ static void compress_event_handler(uint32_t opcode, uint32_t token,
 
                if (avail >= prtd->pcm_count) {
                        q6asm_write_async(prtd->audio_client, prtd->stream_id,
-                                          prtd->pcm_count, 0, 0, NO_TIMESTAMP);
+                                          prtd->pcm_count, 0, 0, 0);
                        prtd->bytes_sent += prtd->pcm_count;
                }
 
index 97f448bc7972b3fcb34c0c49c3af5dcf0ee6eb2a..f7a94cd53c738a615dcfd33fac9ef35845a02879 100644 (file)
@@ -1546,10 +1546,7 @@ int q6asm_write_async(struct audio_client *ac, uint32_t stream_id, uint32_t len,
        write->mem_map_handle =
            ac->port[SNDRV_PCM_STREAM_PLAYBACK].mem_map_handle;
 
-       if (wflags == NO_TIMESTAMP)
-               write->flags = (wflags & 0x800000FF);
-       else
-               write->flags = (0x80000000 | wflags);
+       write->flags = wflags;
 
        port->dsp_buf++;
 
index ceece124dd3d197373bba49b67214bd107a23def..9ac020c609c6418c53d12c28f05be284a6a07433 100644 (file)
@@ -29,7 +29,6 @@ enum {
 };
 
 #define MAX_SESSIONS   8
-#define NO_TIMESTAMP    0xFF00
 #define FORMAT_LINEAR_PCM   0x0000
 
 struct q6asm_flac_cfg {