Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 261ba75d authored by Sudheer Papothi's avatar Sudheer Papothi Committed by Gerrit - the friendly Code Review server
Browse files

ASoC: msm: Add 48KHz sample rate support for CPE CPU DAI



Voice recognition engine can support 48KHz sampling rate. Change
enables 48KHz support for CPE(Codec Processing Engine) CPU
DAI(Digital Audio Interface).

CRs-fixed: 1022917
Change-Id: I6e1bd314af1311af73704bdfd9cdc5d2cb849557
Signed-off-by: default avatarSudheer Papothi <spapothi@codeaurora.org>
Signed-off-by: default avatarVidyakumar Athota <vathota@codeaurora.org>
parent 20b1a290
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1935,13 +1935,13 @@ static struct snd_soc_dai_driver msm_fe_dais[] = {
		.capture = {
			.stream_name = "CPE Listen Audio capture",
			.aif_name = "CPE_LSM_UL_HL",
			.rates = SNDRV_PCM_RATE_16000,
			.rates = SNDRV_PCM_RATE_8000_48000,
			.formats = (SNDRV_PCM_FMTBIT_S16_LE |
				    SNDRV_PCM_FMTBIT_S24_LE),
			.channels_min = 1,
			.channels_max = 1,
			.rate_min = 16000,
			.rate_max = 16000,
			.rate_min = 8000,
			.rate_max = 48000,
		},
		.ops = &msm_fe_dai_ops,
		.name = "CPE_LSM_NOHOST",