diff options
| author | Shashi Kant Maurya <smaury@codeaurora.org> | 2020-11-01 22:18:08 +0530 |
|---|---|---|
| committer | Shashi Kant Maurya <smaury@codeaurora.org> | 2020-11-01 22:30:17 +0530 |
| commit | 31369983e1e91218c2d3d000f920388d149efed2 (patch) | |
| tree | 906b832256890a8636f6687d6a1dacb3d7b7a293 | |
| parent | ab3a4115ae4c4c95fee9a731f3f310bb71f29cf3 (diff) | |
soc: add proxy ports for call screening in machine driver
add machine driver changes for proxy port changes.
Change-Id: Ic784bc7334ae5e4fca6a0ca7cbade4c35c48b302
Signed-off-by: Shashi Kant Maurya <smaury@codeaurora.org>
| -rw-r--r-- | sound/soc/msm/msm8998.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sound/soc/msm/msm8998.c b/sound/soc/msm/msm8998.c index 8b3da6d7dd64..e48b23dffe61 100644 --- a/sound/soc/msm/msm8998.c +++ b/sound/soc/msm/msm8998.c @@ -7516,6 +7516,33 @@ static struct snd_soc_dai_link msm_common_be_dai_links[] = { .be_hw_params_fixup = msm_be_hw_params_fixup, .ignore_suspend = 1, }, + /* Proxy Tx BACK END DAI Link */ + { + .name = LPASS_BE_PROXY_TX, + .stream_name = "Proxy Capture", + .cpu_dai_name = "msm-dai-q6-dev.8195", + .platform_name = "msm-pcm-routing", + .codec_name = "msm-stub-codec.1", + .codec_dai_name = "msm-stub-tx", + .no_pcm = 1, + .dpcm_capture = 1, + .be_id = MSM_BACKEND_DAI_PROXY_TX, + .ignore_suspend = 1, + }, + /* Proxy Rx BACK END DAI Link */ + { + .name = LPASS_BE_PROXY_RX, + .stream_name = "Proxy Playback", + .cpu_dai_name = "msm-dai-q6-dev.8194", + .platform_name = "msm-pcm-routing", + .codec_name = "msm-stub-codec.1", + .codec_dai_name = "msm-stub-rx", + .no_pcm = 1, + .dpcm_playback = 1, + .be_id = MSM_BACKEND_DAI_PROXY_RX, + .ignore_pmdown_time = 1, + .ignore_suspend = 1, + }, { .name = LPASS_BE_USB_AUDIO_RX, .stream_name = "USB Audio Playback", |
