Browse Source

asoc: use upstream definition of snd_codec

Update drivers to use upstream definition of snd_codec
as compr_passthr and flags variables are no longer supported
on kernel 5.4.

Change-Id: I5b0fc43af9cdae0a40e9e4f086fcecdb4be85f76
Signed-off-by: Meng Wang <[email protected]>
Signed-off-by: Vignesh Kulothungan <[email protected]>
Meng Wang 5 years ago
parent
commit
7ecd3d4fed
1 changed files with 16 additions and 9 deletions
  1. 16 9
      asoc/msm-compress-q6-v2.c

+ 16 - 9
asoc/msm-compress-q6-v2.c

@@ -548,7 +548,8 @@ static int msm_compr_read_buffer(struct msm_compr_audio *prtd)
 						prtd->ts_header_offset;
 	param.len = buffer_length;
 	param.uid = buffer_length;
-	param.flags = prtd->codec_param.codec.flags;
+	/* reserved[1] is for flags */
+	param.flags = prtd->codec_param.codec.reserved[1];
 
 	pr_debug("%s: reading %d bytes from DSP byte_offset = %llu\n",
 			__func__, buffer_length, prtd->bytes_read);
@@ -1488,7 +1489,8 @@ static int msm_compr_configure_dsp_for_playback
 	prtd->buffer_size  = runtime->fragments * runtime->fragment_size;
 
 	/* Bit-0 of flags represent timestamp mode */
-	if (prtd->codec_param.codec.flags & COMPRESSED_TIMESTAMP_FLAG)
+	/* reserved[1] is for flags */
+	if (prtd->codec_param.codec.reserved[1] & COMPRESSED_TIMESTAMP_FLAG)
 		prtd->ts_header_offset = sizeof(struct snd_codec_metadata);
 	else
 		prtd->ts_header_offset = 0;
@@ -1561,7 +1563,9 @@ static int msm_compr_configure_dsp_for_capture(struct snd_compr_stream *cstream)
 			return ret;
 		}
 	} else {
-		if (prtd->codec_param.codec.flags & COMPRESSED_TIMESTAMP_FLAG)
+		/* reserved[1] is for flags */
+		if (prtd->codec_param.codec.reserved[1]
+			& COMPRESSED_TIMESTAMP_FLAG)
 			compress_ts = true;
 
 		if (q6core_get_avcs_api_version_per_service(
@@ -1626,7 +1630,8 @@ static int msm_compr_configure_dsp_for_capture(struct snd_compr_stream *cstream)
 	prtd->buffer_size    = runtime->fragments * runtime->fragment_size;
 
 	/* Bit-0 of flags represent timestamp mode */
-	if (prtd->codec_param.codec.flags & COMPRESSED_TIMESTAMP_FLAG)
+	/* reserved[1] is for flags */
+	if (prtd->codec_param.codec.reserved[1] & COMPRESSED_TIMESTAMP_FLAG)
 		prtd->ts_header_offset = sizeof(struct snd_codec_metadata);
 	else
 		prtd->ts_header_offset = 0;
@@ -2091,12 +2096,13 @@ static int msm_compr_set_params(struct snd_compr_stream *cstream,
 	prtd->sample_rate = prtd->codec_param.codec.sample_rate;
 	pr_debug("%s: sample_rate %d\n", __func__, prtd->sample_rate);
 
-	if ((prtd->codec_param.codec.compr_passthr >= LEGACY_PCM &&
+	/* prtd->codec_param.codec.reserved[0] is for compr_passthr */
+	if ((prtd->codec_param.codec.reserved[0] >= LEGACY_PCM &&
 	    prtd->codec_param.
-	    codec.compr_passthr <= COMPRESSED_PASSTHROUGH_DSD) ||
+	    codec.reserved[0] <= COMPRESSED_PASSTHROUGH_DSD) ||
 	    (prtd->codec_param.
-	    codec.compr_passthr == COMPRESSED_PASSTHROUGH_IEC61937))
-		prtd->compr_passthr = prtd->codec_param.codec.compr_passthr;
+	    codec.reserved[0] == COMPRESSED_PASSTHROUGH_IEC61937))
+		prtd->compr_passthr = prtd->codec_param.codec.reserved[0];
 	else
 		prtd->compr_passthr = LEGACY_PCM;
 	pr_debug("%s: compr_passthr = %d", __func__, prtd->compr_passthr);
@@ -2111,7 +2117,8 @@ static int msm_compr_set_params(struct snd_compr_stream *cstream,
 		}
 	}
 
-	if (params->codec.flags & COMPRESSED_PERF_MODE_FLAG) {
+	/* reserved[1] is for flags */
+	if (params->codec.reserved[1] & COMPRESSED_PERF_MODE_FLAG) {
 		pr_debug("%s: setting perf mode = %d", __func__, LOW_LATENCY_PCM_MODE);
 		prtd->audio_client->perf_mode = LOW_LATENCY_PCM_MODE;
 	}