sdm660-ext-dai-links.c 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. /* Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/of.h>
  13. #include <sound/core.h>
  14. #include <sound/soc.h>
  15. #include <sound/soc-dapm.h>
  16. #include <sound/pcm.h>
  17. #include <sound/pcm_params.h>
  18. #include "msm-pcm-routing-v2.h"
  19. #include "sdm660-common.h"
  20. #include "sdm660-external.h"
  21. #include "codecs/core.h"
  22. #include "codecs/wcd9335.h"
  23. #define DEV_NAME_STR_LEN 32
  24. #define __CHIPSET__ "SDM660 "
  25. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  26. #define WCN_CDC_SLIM_RX_CH_MAX 2
  27. #define WCN_CDC_SLIM_TX_CH_MAX 3
  28. static struct snd_soc_card snd_soc_card_msm_card_tavil = {
  29. .name = "sdm670-tavil-snd-card",
  30. .late_probe = msm_snd_card_tavil_late_probe,
  31. };
  32. static struct snd_soc_card snd_soc_card_msm_card_tasha = {
  33. .name = "sdm670-tasha-snd-card",
  34. .late_probe = msm_snd_card_tasha_late_probe,
  35. };
  36. static struct snd_soc_ops msm_ext_slimbus_be_ops = {
  37. .hw_params = msm_snd_hw_params,
  38. };
  39. static struct snd_soc_ops msm_ext_cpe_ops = {
  40. .hw_params = msm_snd_cpe_hw_params,
  41. };
  42. static struct snd_soc_ops msm_ext_slimbus_2_be_ops = {
  43. .hw_params = msm_ext_slimbus_2_hw_params,
  44. };
  45. static struct snd_soc_ops msm_mi2s_be_ops = {
  46. .startup = msm_mi2s_snd_startup,
  47. .shutdown = msm_mi2s_snd_shutdown,
  48. };
  49. static struct snd_soc_ops msm_aux_pcm_be_ops = {
  50. .startup = msm_aux_pcm_snd_startup,
  51. .shutdown = msm_aux_pcm_snd_shutdown,
  52. };
  53. static int msm_wcn_init(struct snd_soc_pcm_runtime *rtd)
  54. {
  55. unsigned int rx_ch[WCN_CDC_SLIM_RX_CH_MAX] = {157, 158};
  56. unsigned int tx_ch[WCN_CDC_SLIM_TX_CH_MAX] = {159, 160, 161};
  57. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  58. return snd_soc_dai_set_channel_map(codec_dai, ARRAY_SIZE(tx_ch),
  59. tx_ch, ARRAY_SIZE(rx_ch), rx_ch);
  60. }
  61. static int msm_wcn_hw_params(struct snd_pcm_substream *substream,
  62. struct snd_pcm_hw_params *params)
  63. {
  64. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  65. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  66. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  67. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  68. u32 rx_ch[WCN_CDC_SLIM_RX_CH_MAX], tx_ch[WCN_CDC_SLIM_TX_CH_MAX];
  69. u32 rx_ch_cnt = 0, tx_ch_cnt = 0;
  70. int ret;
  71. dev_dbg(rtd->dev, "%s: %s_tx_dai_id_%d\n", __func__,
  72. codec_dai->name, codec_dai->id);
  73. ret = snd_soc_dai_get_channel_map(codec_dai,
  74. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  75. if (ret) {
  76. dev_err(rtd->dev,
  77. "%s: failed to get BTFM codec chan map\n, err:%d\n",
  78. __func__, ret);
  79. goto exit;
  80. }
  81. dev_dbg(rtd->dev, "%s: tx_ch_cnt(%d) id %d\n",
  82. __func__, tx_ch_cnt, dai_link->id);
  83. ret = snd_soc_dai_set_channel_map(cpu_dai,
  84. tx_ch_cnt, tx_ch, rx_ch_cnt, rx_ch);
  85. if (ret)
  86. dev_err(rtd->dev, "%s: failed to set cpu chan map, err:%d\n",
  87. __func__, ret);
  88. exit:
  89. return ret;
  90. }
  91. static struct snd_soc_ops msm_wcn_ops = {
  92. .hw_params = msm_wcn_hw_params,
  93. };
  94. /*TDM default offset currently only supporting TDM_RX_0 and TDM_TX_0 */
  95. static unsigned int tdm_slot_offset[TDM_PORT_MAX][TDM_SLOT_OFFSET_MAX] = {
  96. {0, 4, 8, 12, 16, 20, 24, 28},/* TX_0 | RX_0 */
  97. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_1 | RX_1 */
  98. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_2 | RX_2 */
  99. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_3 | RX_3 */
  100. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_4 | RX_4 */
  101. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_5 | RX_5 */
  102. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_6 | RX_6 */
  103. {AFE_SLOT_MAPPING_OFFSET_INVALID},/* TX_7 | RX_7 */
  104. };
  105. static unsigned int tdm_param_set_slot_mask(u16 port_id, int slot_width,
  106. int slots)
  107. {
  108. unsigned int slot_mask = 0;
  109. int i, j;
  110. unsigned int *slot_offset;
  111. for (i = TDM_0; i < TDM_PORT_MAX; i++) {
  112. slot_offset = tdm_slot_offset[i];
  113. for (j = 0; j < TDM_SLOT_OFFSET_MAX; j++) {
  114. if (slot_offset[j] != AFE_SLOT_MAPPING_OFFSET_INVALID)
  115. slot_mask |=
  116. (1 << ((slot_offset[j] * 8) / slot_width));
  117. else
  118. break;
  119. }
  120. }
  121. return slot_mask;
  122. }
  123. static int msm_tdm_snd_hw_params(struct snd_pcm_substream *substream,
  124. struct snd_pcm_hw_params *params)
  125. {
  126. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  127. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  128. int ret = 0;
  129. int channels, slot_width, slots;
  130. unsigned int slot_mask;
  131. unsigned int *slot_offset;
  132. int offset_channels = 0;
  133. int i;
  134. pr_debug("%s: dai id = 0x%x\n", __func__, cpu_dai->id);
  135. channels = params_channels(params);
  136. switch (channels) {
  137. case 1:
  138. case 2:
  139. case 3:
  140. case 4:
  141. case 5:
  142. case 6:
  143. case 7:
  144. case 8:
  145. switch (params_format(params)) {
  146. case SNDRV_PCM_FORMAT_S32_LE:
  147. case SNDRV_PCM_FORMAT_S24_LE:
  148. case SNDRV_PCM_FORMAT_S16_LE:
  149. /*
  150. * up to 8 channels HW config should
  151. * use 32 bit slot width for max support of
  152. * stream bit width. (slot_width > bit_width)
  153. */
  154. slot_width = 32;
  155. break;
  156. default:
  157. pr_err("%s: invalid param format 0x%x\n",
  158. __func__, params_format(params));
  159. return -EINVAL;
  160. }
  161. slots = 8;
  162. slot_mask = tdm_param_set_slot_mask(cpu_dai->id,
  163. slot_width,
  164. slots);
  165. if (!slot_mask) {
  166. pr_err("%s: invalid slot_mask 0x%x\n",
  167. __func__, slot_mask);
  168. return -EINVAL;
  169. }
  170. break;
  171. default:
  172. pr_err("%s: invalid param channels %d\n",
  173. __func__, channels);
  174. return -EINVAL;
  175. }
  176. /* currently only supporting TDM_RX_0 and TDM_TX_0 */
  177. switch (cpu_dai->id) {
  178. case AFE_PORT_ID_PRIMARY_TDM_RX:
  179. case AFE_PORT_ID_SECONDARY_TDM_RX:
  180. case AFE_PORT_ID_TERTIARY_TDM_RX:
  181. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  182. case AFE_PORT_ID_QUINARY_TDM_RX:
  183. case AFE_PORT_ID_PRIMARY_TDM_TX:
  184. case AFE_PORT_ID_SECONDARY_TDM_TX:
  185. case AFE_PORT_ID_TERTIARY_TDM_TX:
  186. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  187. case AFE_PORT_ID_QUINARY_TDM_TX:
  188. slot_offset = tdm_slot_offset[TDM_0];
  189. break;
  190. default:
  191. pr_err("%s: dai id 0x%x not supported\n",
  192. __func__, cpu_dai->id);
  193. return -EINVAL;
  194. }
  195. for (i = 0; i < TDM_SLOT_OFFSET_MAX; i++) {
  196. if (slot_offset[i] != AFE_SLOT_MAPPING_OFFSET_INVALID)
  197. offset_channels++;
  198. else
  199. break;
  200. }
  201. if (offset_channels == 0) {
  202. pr_err("%s: slot offset not supported, offset_channels %d\n",
  203. __func__, offset_channels);
  204. return -EINVAL;
  205. }
  206. if (channels > offset_channels) {
  207. pr_err("%s: channels %d exceed offset_channels %d\n",
  208. __func__, channels, offset_channels);
  209. return -EINVAL;
  210. }
  211. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  212. ret = snd_soc_dai_set_tdm_slot(cpu_dai, 0, slot_mask,
  213. slots, slot_width);
  214. if (ret < 0) {
  215. pr_err("%s: failed to set tdm slot, err:%d\n",
  216. __func__, ret);
  217. goto end;
  218. }
  219. ret = snd_soc_dai_set_channel_map(cpu_dai, 0, NULL,
  220. channels, slot_offset);
  221. if (ret < 0) {
  222. pr_err("%s: failed to set channel map, err:%d\n",
  223. __func__, ret);
  224. goto end;
  225. }
  226. } else {
  227. ret = snd_soc_dai_set_tdm_slot(cpu_dai, slot_mask, 0,
  228. slots, slot_width);
  229. if (ret < 0) {
  230. pr_err("%s: failed to set tdm slot, err:%d\n",
  231. __func__, ret);
  232. goto end;
  233. }
  234. ret = snd_soc_dai_set_channel_map(cpu_dai, channels,
  235. slot_offset, 0, NULL);
  236. if (ret < 0) {
  237. pr_err("%s: failed to set channel map, err:%d\n",
  238. __func__, ret);
  239. goto end;
  240. }
  241. }
  242. end:
  243. return ret;
  244. }
  245. static struct snd_soc_ops msm_tdm_be_ops = {
  246. .hw_params = msm_tdm_snd_hw_params
  247. };
  248. static struct snd_soc_dai_link msm_ext_tasha_fe_dai[] = {
  249. /* tasha_vifeedback for speaker protection */
  250. {
  251. .name = LPASS_BE_SLIMBUS_4_TX,
  252. .stream_name = "Slimbus4 Capture",
  253. .cpu_dai_name = "msm-dai-q6-dev.16393",
  254. .platform_name = "msm-pcm-hostless",
  255. .codec_name = "tasha_codec",
  256. .codec_dai_name = "tasha_vifeedback",
  257. .id = MSM_BACKEND_DAI_SLIMBUS_4_TX,
  258. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  259. .ops = &msm_ext_slimbus_be_ops,
  260. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  261. .ignore_suspend = 1,
  262. },
  263. /* Ultrasound RX DAI Link */
  264. {
  265. .name = "SLIMBUS_2 Hostless Playback",
  266. .stream_name = "SLIMBUS_2 Hostless Playback",
  267. .cpu_dai_name = "msm-dai-q6-dev.16388",
  268. .platform_name = "msm-pcm-hostless",
  269. .codec_name = "tasha_codec",
  270. .codec_dai_name = "tasha_rx2",
  271. .ignore_suspend = 1,
  272. .dpcm_playback = 1,
  273. .dpcm_capture = 1,
  274. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  275. .ops = &msm_ext_slimbus_2_be_ops,
  276. },
  277. /* Ultrasound TX DAI Link */
  278. {
  279. .name = "SLIMBUS_2 Hostless Capture",
  280. .stream_name = "SLIMBUS_2 Hostless Capture",
  281. .cpu_dai_name = "msm-dai-q6-dev.16389",
  282. .platform_name = "msm-pcm-hostless",
  283. .codec_name = "tasha_codec",
  284. .codec_dai_name = "tasha_tx2",
  285. .ignore_suspend = 1,
  286. .dpcm_capture = 1,
  287. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  288. .ops = &msm_ext_slimbus_2_be_ops,
  289. },
  290. /* CPE LSM direct dai-link */
  291. {
  292. .name = "CPE Listen service",
  293. .stream_name = "CPE Listen Audio Service",
  294. .cpu_dai_name = "msm-dai-slim",
  295. .platform_name = "msm-cpe-lsm",
  296. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  297. SND_SOC_DPCM_TRIGGER_POST},
  298. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  299. .ignore_suspend = 1,
  300. .dpcm_capture = 1,
  301. .ignore_pmdown_time = 1,
  302. .codec_dai_name = "tasha_mad1",
  303. .codec_name = "tasha_codec",
  304. .ops = &msm_ext_cpe_ops,
  305. },
  306. {
  307. .name = "SLIMBUS_6 Hostless Playback",
  308. .stream_name = "SLIMBUS_6 Hostless",
  309. .cpu_dai_name = "SLIMBUS6_HOSTLESS",
  310. .platform_name = "msm-pcm-hostless",
  311. .dynamic = 1,
  312. .dpcm_playback = 1,
  313. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  314. SND_SOC_DPCM_TRIGGER_POST},
  315. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  316. .ignore_suspend = 1,
  317. /* this dailink has playback support */
  318. .ignore_pmdown_time = 1,
  319. .codec_dai_name = "snd-soc-dummy-dai",
  320. .codec_name = "snd-soc-dummy",
  321. },
  322. /* CPE LSM EC PP direct dai-link */
  323. {
  324. .name = "CPE Listen service ECPP",
  325. .stream_name = "CPE Listen Audio Service ECPP",
  326. .cpu_dai_name = "CPE_LSM_NOHOST",
  327. .platform_name = "msm-cpe-lsm.3",
  328. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  329. SND_SOC_DPCM_TRIGGER_POST},
  330. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  331. .ignore_suspend = 1,
  332. .ignore_pmdown_time = 1,
  333. .codec_dai_name = "tasha_cpe",
  334. .codec_name = "tasha_codec",
  335. },
  336. };
  337. static struct snd_soc_dai_link msm_ext_tavil_fe_dai[] = {
  338. {
  339. .name = LPASS_BE_SLIMBUS_4_TX,
  340. .stream_name = "Slimbus4 Capture",
  341. .cpu_dai_name = "msm-dai-q6-dev.16393",
  342. .platform_name = "msm-pcm-hostless",
  343. .codec_name = "tavil_codec",
  344. .codec_dai_name = "tavil_vifeedback",
  345. .id = MSM_BACKEND_DAI_SLIMBUS_4_TX,
  346. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  347. .ops = &msm_ext_slimbus_be_ops,
  348. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  349. .ignore_suspend = 1,
  350. },
  351. /* Ultrasound RX DAI Link */
  352. {
  353. .name = "SLIMBUS_2 Hostless Playback",
  354. .stream_name = "SLIMBUS_2 Hostless Playback",
  355. .cpu_dai_name = "msm-dai-q6-dev.16388",
  356. .platform_name = "msm-pcm-hostless",
  357. .codec_name = "tavil_codec",
  358. .codec_dai_name = "tavil_rx2",
  359. .ignore_suspend = 1,
  360. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  361. .ops = &msm_ext_slimbus_2_be_ops,
  362. },
  363. /* Ultrasound TX DAI Link */
  364. {
  365. .name = "SLIMBUS_2 Hostless Capture",
  366. .stream_name = "SLIMBUS_2 Hostless Capture",
  367. .cpu_dai_name = "msm-dai-q6-dev.16389",
  368. .platform_name = "msm-pcm-hostless",
  369. .codec_name = "tavil_codec",
  370. .codec_dai_name = "tavil_tx2",
  371. .ignore_suspend = 1,
  372. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  373. .ops = &msm_ext_slimbus_2_be_ops,
  374. },
  375. };
  376. static struct snd_soc_dai_link msm_ext_tasha_be_dai[] = {
  377. /* Backend DAI Links */
  378. {
  379. .name = LPASS_BE_SLIMBUS_0_RX,
  380. .stream_name = "Slimbus Playback",
  381. .cpu_dai_name = "msm-dai-q6-dev.16384",
  382. .platform_name = "msm-pcm-routing",
  383. .codec_name = "tasha_codec",
  384. .codec_dai_name = "tasha_mix_rx1",
  385. .no_pcm = 1,
  386. .dpcm_playback = 1,
  387. .id = MSM_BACKEND_DAI_SLIMBUS_0_RX,
  388. .init = &msm_audrx_init,
  389. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  390. /* this dainlink has playback support */
  391. .ignore_pmdown_time = 1,
  392. .ignore_suspend = 1,
  393. .ops = &msm_ext_slimbus_be_ops,
  394. },
  395. {
  396. .name = LPASS_BE_SLIMBUS_0_TX,
  397. .stream_name = "Slimbus Capture",
  398. .cpu_dai_name = "msm-dai-q6-dev.16385",
  399. .platform_name = "msm-pcm-routing",
  400. .codec_name = "tasha_codec",
  401. .codec_dai_name = "tasha_tx1",
  402. .no_pcm = 1,
  403. .dpcm_capture = 1,
  404. .id = MSM_BACKEND_DAI_SLIMBUS_0_TX,
  405. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  406. .ignore_suspend = 1,
  407. .ops = &msm_ext_slimbus_be_ops,
  408. },
  409. {
  410. .name = LPASS_BE_SLIMBUS_1_RX,
  411. .stream_name = "Slimbus1 Playback",
  412. .cpu_dai_name = "msm-dai-q6-dev.16386",
  413. .platform_name = "msm-pcm-routing",
  414. .codec_name = "tasha_codec",
  415. .codec_dai_name = "tasha_mix_rx1",
  416. .no_pcm = 1,
  417. .dpcm_playback = 1,
  418. .id = MSM_BACKEND_DAI_SLIMBUS_1_RX,
  419. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  420. .ops = &msm_ext_slimbus_be_ops,
  421. /* dai link has playback support */
  422. .ignore_pmdown_time = 1,
  423. .ignore_suspend = 1,
  424. },
  425. {
  426. .name = LPASS_BE_SLIMBUS_1_TX,
  427. .stream_name = "Slimbus1 Capture",
  428. .cpu_dai_name = "msm-dai-q6-dev.16387",
  429. .platform_name = "msm-pcm-routing",
  430. .codec_name = "tasha_codec",
  431. .codec_dai_name = "tasha_tx3",
  432. .no_pcm = 1,
  433. .dpcm_capture = 1,
  434. .id = MSM_BACKEND_DAI_SLIMBUS_1_TX,
  435. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  436. .ops = &msm_ext_slimbus_be_ops,
  437. .ignore_suspend = 1,
  438. },
  439. {
  440. .name = LPASS_BE_SLIMBUS_3_RX,
  441. .stream_name = "Slimbus3 Playback",
  442. .cpu_dai_name = "msm-dai-q6-dev.16390",
  443. .platform_name = "msm-pcm-routing",
  444. .codec_name = "tasha_codec",
  445. .codec_dai_name = "tasha_mix_rx1",
  446. .no_pcm = 1,
  447. .dpcm_playback = 1,
  448. .id = MSM_BACKEND_DAI_SLIMBUS_3_RX,
  449. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  450. .ops = &msm_ext_slimbus_be_ops,
  451. /* dai link has playback support */
  452. .ignore_pmdown_time = 1,
  453. .ignore_suspend = 1,
  454. },
  455. {
  456. .name = LPASS_BE_SLIMBUS_3_TX,
  457. .stream_name = "Slimbus3 Capture",
  458. .cpu_dai_name = "msm-dai-q6-dev.16391",
  459. .platform_name = "msm-pcm-routing",
  460. .codec_name = "tasha_codec",
  461. .codec_dai_name = "tasha_tx1",
  462. .no_pcm = 1,
  463. .dpcm_capture = 1,
  464. .dpcm_playback = 1,
  465. .id = MSM_BACKEND_DAI_SLIMBUS_3_TX,
  466. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  467. .ops = &msm_ext_slimbus_be_ops,
  468. .ignore_suspend = 1,
  469. },
  470. {
  471. .name = LPASS_BE_SLIMBUS_4_RX,
  472. .stream_name = "Slimbus4 Playback",
  473. .cpu_dai_name = "msm-dai-q6-dev.16392",
  474. .platform_name = "msm-pcm-routing",
  475. .codec_name = "tasha_codec",
  476. .codec_dai_name = "tasha_mix_rx1",
  477. .no_pcm = 1,
  478. .dpcm_playback = 1,
  479. .id = MSM_BACKEND_DAI_SLIMBUS_4_RX,
  480. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  481. .ops = &msm_ext_slimbus_be_ops,
  482. /* dai link has playback support */
  483. .ignore_pmdown_time = 1,
  484. .ignore_suspend = 1,
  485. },
  486. {
  487. .name = LPASS_BE_SLIMBUS_5_RX,
  488. .stream_name = "Slimbus5 Playback",
  489. .cpu_dai_name = "msm-dai-q6-dev.16394",
  490. .platform_name = "msm-pcm-routing",
  491. .codec_name = "tasha_codec",
  492. .codec_dai_name = "tasha_rx3",
  493. .no_pcm = 1,
  494. .dpcm_playback = 1,
  495. .id = MSM_BACKEND_DAI_SLIMBUS_5_RX,
  496. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  497. .ops = &msm_ext_slimbus_be_ops,
  498. /* dai link has playback support */
  499. .ignore_pmdown_time = 1,
  500. .ignore_suspend = 1,
  501. },
  502. /* MAD BE */
  503. {
  504. .name = LPASS_BE_SLIMBUS_5_TX,
  505. .stream_name = "Slimbus5 Capture",
  506. .cpu_dai_name = "msm-dai-q6-dev.16395",
  507. .platform_name = "msm-pcm-routing",
  508. .codec_name = "tasha_codec",
  509. .codec_dai_name = "tasha_mad1",
  510. .no_pcm = 1,
  511. .dpcm_capture = 1,
  512. .id = MSM_BACKEND_DAI_SLIMBUS_5_TX,
  513. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  514. .ops = &msm_ext_slimbus_be_ops,
  515. .ignore_suspend = 1,
  516. },
  517. {
  518. .name = LPASS_BE_SLIMBUS_6_RX,
  519. .stream_name = "Slimbus6 Playback",
  520. .cpu_dai_name = "msm-dai-q6-dev.16396",
  521. .platform_name = "msm-pcm-routing",
  522. .codec_name = "tasha_codec",
  523. .codec_dai_name = "tasha_rx4",
  524. .no_pcm = 1,
  525. .dpcm_playback = 1,
  526. .id = MSM_BACKEND_DAI_SLIMBUS_6_RX,
  527. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  528. .ops = &msm_ext_slimbus_be_ops,
  529. /* dai link has playback support */
  530. .ignore_pmdown_time = 1,
  531. .ignore_suspend = 1,
  532. },
  533. };
  534. static struct snd_soc_dai_link msm_ext_tavil_be_dai[] = {
  535. {
  536. .name = LPASS_BE_SLIMBUS_0_RX,
  537. .stream_name = "Slimbus Playback",
  538. .cpu_dai_name = "msm-dai-q6-dev.16384",
  539. .platform_name = "msm-pcm-routing",
  540. .codec_name = "tavil_codec",
  541. .codec_dai_name = "tavil_rx1",
  542. .no_pcm = 1,
  543. .dpcm_playback = 1,
  544. .id = MSM_BACKEND_DAI_SLIMBUS_0_RX,
  545. .init = &msm_audrx_init,
  546. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  547. /* this dainlink has playback support */
  548. .ignore_pmdown_time = 1,
  549. .ignore_suspend = 1,
  550. .ops = &msm_ext_slimbus_be_ops,
  551. },
  552. {
  553. .name = LPASS_BE_SLIMBUS_0_TX,
  554. .stream_name = "Slimbus Capture",
  555. .cpu_dai_name = "msm-dai-q6-dev.16385",
  556. .platform_name = "msm-pcm-routing",
  557. .codec_name = "tavil_codec",
  558. .codec_dai_name = "tavil_tx1",
  559. .no_pcm = 1,
  560. .dpcm_capture = 1,
  561. .id = MSM_BACKEND_DAI_SLIMBUS_0_TX,
  562. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  563. .ignore_suspend = 1,
  564. .ops = &msm_ext_slimbus_be_ops,
  565. },
  566. {
  567. .name = LPASS_BE_SLIMBUS_1_RX,
  568. .stream_name = "Slimbus1 Playback",
  569. .cpu_dai_name = "msm-dai-q6-dev.16386",
  570. .platform_name = "msm-pcm-routing",
  571. .codec_name = "tavil_codec",
  572. .codec_dai_name = "tavil_rx1",
  573. .no_pcm = 1,
  574. .dpcm_playback = 1,
  575. .id = MSM_BACKEND_DAI_SLIMBUS_1_RX,
  576. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  577. .ops = &msm_ext_slimbus_be_ops,
  578. /* dai link has playback support */
  579. .ignore_pmdown_time = 1,
  580. .ignore_suspend = 1,
  581. },
  582. {
  583. .name = LPASS_BE_SLIMBUS_1_TX,
  584. .stream_name = "Slimbus1 Capture",
  585. .cpu_dai_name = "msm-dai-q6-dev.16387",
  586. .platform_name = "msm-pcm-routing",
  587. .codec_name = "tavil_codec",
  588. .codec_dai_name = "tavil_tx3",
  589. .no_pcm = 1,
  590. .dpcm_capture = 1,
  591. .id = MSM_BACKEND_DAI_SLIMBUS_1_TX,
  592. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  593. .ops = &msm_ext_slimbus_be_ops,
  594. .ignore_suspend = 1,
  595. },
  596. {
  597. .name = LPASS_BE_SLIMBUS_2_RX,
  598. .stream_name = "Slimbus2 Playback",
  599. .cpu_dai_name = "msm-dai-q6-dev.16388",
  600. .platform_name = "msm-pcm-routing",
  601. .codec_name = "tavil_codec",
  602. .codec_dai_name = "tavil_rx2",
  603. .no_pcm = 1,
  604. .dpcm_playback = 1,
  605. .id = MSM_BACKEND_DAI_SLIMBUS_2_RX,
  606. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  607. .ops = &msm_ext_slimbus_be_ops,
  608. .ignore_pmdown_time = 1,
  609. .ignore_suspend = 1,
  610. },
  611. {
  612. .name = LPASS_BE_SLIMBUS_3_RX,
  613. .stream_name = "Slimbus3 Playback",
  614. .cpu_dai_name = "msm-dai-q6-dev.16390",
  615. .platform_name = "msm-pcm-routing",
  616. .codec_name = "tavil_codec",
  617. .codec_dai_name = "tavil_rx1",
  618. .no_pcm = 1,
  619. .dpcm_playback = 1,
  620. .id = MSM_BACKEND_DAI_SLIMBUS_3_RX,
  621. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  622. .ops = &msm_ext_slimbus_be_ops,
  623. /* dai link has playback support */
  624. .ignore_pmdown_time = 1,
  625. .ignore_suspend = 1,
  626. },
  627. {
  628. .name = LPASS_BE_SLIMBUS_3_TX,
  629. .stream_name = "Slimbus3 Capture",
  630. .cpu_dai_name = "msm-dai-q6-dev.16391",
  631. .platform_name = "msm-pcm-routing",
  632. .codec_name = "tavil_codec",
  633. .codec_dai_name = "tavil_tx1",
  634. .no_pcm = 1,
  635. .dpcm_capture = 1,
  636. .id = MSM_BACKEND_DAI_SLIMBUS_3_TX,
  637. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  638. .ops = &msm_ext_slimbus_be_ops,
  639. .ignore_suspend = 1,
  640. },
  641. {
  642. .name = LPASS_BE_SLIMBUS_4_RX,
  643. .stream_name = "Slimbus4 Playback",
  644. .cpu_dai_name = "msm-dai-q6-dev.16392",
  645. .platform_name = "msm-pcm-routing",
  646. .codec_name = "tavil_codec",
  647. .codec_dai_name = "tavil_rx1",
  648. .no_pcm = 1,
  649. .dpcm_playback = 1,
  650. .id = MSM_BACKEND_DAI_SLIMBUS_4_RX,
  651. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  652. .ops = &msm_ext_slimbus_be_ops,
  653. /* dai link has playback support */
  654. .ignore_pmdown_time = 1,
  655. .ignore_suspend = 1,
  656. },
  657. {
  658. .name = LPASS_BE_SLIMBUS_5_RX,
  659. .stream_name = "Slimbus5 Playback",
  660. .cpu_dai_name = "msm-dai-q6-dev.16394",
  661. .platform_name = "msm-pcm-routing",
  662. .codec_name = "tavil_codec",
  663. .codec_dai_name = "tavil_rx3",
  664. .no_pcm = 1,
  665. .dpcm_playback = 1,
  666. .id = MSM_BACKEND_DAI_SLIMBUS_5_RX,
  667. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  668. .ops = &msm_ext_slimbus_be_ops,
  669. /* dai link has playback support */
  670. .ignore_pmdown_time = 1,
  671. .ignore_suspend = 1,
  672. },
  673. /* MAD BE */
  674. {
  675. .name = LPASS_BE_SLIMBUS_5_TX,
  676. .stream_name = "Slimbus5 Capture",
  677. .cpu_dai_name = "msm-dai-q6-dev.16395",
  678. .platform_name = "msm-pcm-routing",
  679. .codec_name = "tavil_codec",
  680. .codec_dai_name = "tavil_mad1",
  681. .no_pcm = 1,
  682. .dpcm_capture = 1,
  683. .id = MSM_BACKEND_DAI_SLIMBUS_5_TX,
  684. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  685. .ops = &msm_ext_slimbus_be_ops,
  686. .ignore_suspend = 1,
  687. },
  688. {
  689. .name = LPASS_BE_SLIMBUS_6_RX,
  690. .stream_name = "Slimbus6 Playback",
  691. .cpu_dai_name = "msm-dai-q6-dev.16396",
  692. .platform_name = "msm-pcm-routing",
  693. .codec_name = "tavil_codec",
  694. .codec_dai_name = "tavil_rx4",
  695. .no_pcm = 1,
  696. .dpcm_playback = 1,
  697. .id = MSM_BACKEND_DAI_SLIMBUS_6_RX,
  698. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  699. .ops = &msm_ext_slimbus_be_ops,
  700. /* dai link has playback support */
  701. .ignore_pmdown_time = 1,
  702. .ignore_suspend = 1,
  703. },
  704. };
  705. static struct snd_soc_dai_link msm_ext_common_fe_dai[] = {
  706. /* FrontEnd DAI Links */
  707. {/* hw:x,0 */
  708. .name = MSM_DAILINK_NAME(Media1),
  709. .stream_name = "MultiMedia1",
  710. .cpu_dai_name = "MultiMedia1",
  711. .platform_name = "msm-pcm-dsp.0",
  712. .dynamic = 1,
  713. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  714. SND_SOC_DPCM_TRIGGER_POST},
  715. .codec_dai_name = "snd-soc-dummy-dai",
  716. .codec_name = "snd-soc-dummy",
  717. .ignore_suspend = 1,
  718. .dpcm_playback = 1,
  719. .dpcm_capture = 1,
  720. /* this dai link has playback support */
  721. .ignore_pmdown_time = 1,
  722. .id = MSM_FRONTEND_DAI_MULTIMEDIA1
  723. },
  724. {/* hw:x,1 */
  725. .name = MSM_DAILINK_NAME(Media2),
  726. .stream_name = "MultiMedia2",
  727. .cpu_dai_name = "MultiMedia2",
  728. .platform_name = "msm-pcm-dsp.0",
  729. .dynamic = 1,
  730. .dpcm_playback = 1,
  731. .dpcm_capture = 1,
  732. .codec_dai_name = "snd-soc-dummy-dai",
  733. .codec_name = "snd-soc-dummy",
  734. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  735. SND_SOC_DPCM_TRIGGER_POST},
  736. .ignore_suspend = 1,
  737. /* this dai link has playback support */
  738. .ignore_pmdown_time = 1,
  739. .id = MSM_FRONTEND_DAI_MULTIMEDIA2,
  740. },
  741. {/* hw:x,2 */
  742. .name = "VoiceMMode1",
  743. .stream_name = "VoiceMMode1",
  744. .cpu_dai_name = "VoiceMMode1",
  745. .platform_name = "msm-pcm-voice",
  746. .dynamic = 1,
  747. .dpcm_capture = 1,
  748. .dpcm_playback = 1,
  749. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  750. SND_SOC_DPCM_TRIGGER_POST},
  751. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  752. .ignore_suspend = 1,
  753. .ignore_pmdown_time = 1,
  754. .codec_dai_name = "snd-soc-dummy-dai",
  755. .codec_name = "snd-soc-dummy",
  756. .id = MSM_FRONTEND_DAI_VOICEMMODE1,
  757. },
  758. {/* hw:x,3 */
  759. .name = "MSM VoIP",
  760. .stream_name = "VoIP",
  761. .cpu_dai_name = "VoIP",
  762. .platform_name = "msm-voip-dsp",
  763. .dynamic = 1,
  764. .dpcm_playback = 1,
  765. .dpcm_capture = 1,
  766. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  767. SND_SOC_DPCM_TRIGGER_POST},
  768. .codec_dai_name = "snd-soc-dummy-dai",
  769. .codec_name = "snd-soc-dummy",
  770. .ignore_suspend = 1,
  771. /* this dai link has playback support */
  772. .ignore_pmdown_time = 1,
  773. .id = MSM_FRONTEND_DAI_VOIP,
  774. },
  775. {/* hw:x,4 */
  776. .name = MSM_DAILINK_NAME(ULL),
  777. .stream_name = "ULL",
  778. .cpu_dai_name = "MultiMedia3",
  779. .platform_name = "msm-pcm-dsp.2",
  780. .dynamic = 1,
  781. .dpcm_playback = 1,
  782. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  783. SND_SOC_DPCM_TRIGGER_POST},
  784. .codec_dai_name = "snd-soc-dummy-dai",
  785. .codec_name = "snd-soc-dummy",
  786. .ignore_suspend = 1,
  787. /* this dai link has playback support */
  788. .ignore_pmdown_time = 1,
  789. .id = MSM_FRONTEND_DAI_MULTIMEDIA3,
  790. },
  791. /* Hostless PCM purpose */
  792. {/* hw:x,5 */
  793. .name = "SLIMBUS_0 Hostless",
  794. .stream_name = "SLIMBUS_0 Hostless",
  795. .cpu_dai_name = "SLIMBUS0_HOSTLESS",
  796. .platform_name = "msm-pcm-hostless",
  797. .dynamic = 1,
  798. .dpcm_capture = 1,
  799. .dpcm_playback = 1,
  800. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  801. SND_SOC_DPCM_TRIGGER_POST},
  802. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  803. .ignore_suspend = 1,
  804. .ignore_pmdown_time = 1,
  805. /* This dai link has MI2S support */
  806. .codec_dai_name = "snd-soc-dummy-dai",
  807. .codec_name = "snd-soc-dummy",
  808. },
  809. {/* hw:x,6 */
  810. .name = "MSM AFE-PCM RX",
  811. .stream_name = "AFE-PROXY RX",
  812. .cpu_dai_name = "msm-dai-q6-dev.241",
  813. .codec_name = "msm-stub-codec.1",
  814. .codec_dai_name = "msm-stub-rx",
  815. .platform_name = "msm-pcm-afe",
  816. .ignore_suspend = 1,
  817. /* this dai link has playback support */
  818. .ignore_pmdown_time = 1,
  819. },
  820. {/* hw:x,7 */
  821. .name = "MSM AFE-PCM TX",
  822. .stream_name = "AFE-PROXY TX",
  823. .cpu_dai_name = "msm-dai-q6-dev.240",
  824. .codec_name = "msm-stub-codec.1",
  825. .codec_dai_name = "msm-stub-tx",
  826. .platform_name = "msm-pcm-afe",
  827. .ignore_suspend = 1,
  828. },
  829. {/* hw:x,8 */
  830. .name = MSM_DAILINK_NAME(Compress1),
  831. .stream_name = "Compress1",
  832. .cpu_dai_name = "MultiMedia4",
  833. .platform_name = "msm-compress-dsp",
  834. .async_ops = ASYNC_DPCM_SND_SOC_HW_PARAMS,
  835. .dynamic = 1,
  836. .dpcm_capture = 1,
  837. .dpcm_playback = 1,
  838. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  839. SND_SOC_DPCM_TRIGGER_POST},
  840. .codec_dai_name = "snd-soc-dummy-dai",
  841. .codec_name = "snd-soc-dummy",
  842. .ignore_suspend = 1,
  843. .ignore_pmdown_time = 1,
  844. /* this dai link has playback support */
  845. .id = MSM_FRONTEND_DAI_MULTIMEDIA4,
  846. },
  847. {/* hw:x,9*/
  848. .name = "AUXPCM Hostless",
  849. .stream_name = "AUXPCM Hostless",
  850. .cpu_dai_name = "AUXPCM_HOSTLESS",
  851. .platform_name = "msm-pcm-hostless",
  852. .dynamic = 1,
  853. .dpcm_capture = 1,
  854. .dpcm_playback = 1,
  855. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  856. SND_SOC_DPCM_TRIGGER_POST},
  857. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  858. .ignore_suspend = 1,
  859. /* this dai link has playback support */
  860. .ignore_pmdown_time = 1,
  861. .codec_dai_name = "snd-soc-dummy-dai",
  862. .codec_name = "snd-soc-dummy",
  863. },
  864. {/* hw:x,10 */
  865. .name = "SLIMBUS_1 Hostless",
  866. .stream_name = "SLIMBUS_1 Hostless",
  867. .cpu_dai_name = "SLIMBUS1_HOSTLESS",
  868. .platform_name = "msm-pcm-hostless",
  869. .dynamic = 1,
  870. .dpcm_capture = 1,
  871. .dpcm_playback = 1,
  872. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  873. SND_SOC_DPCM_TRIGGER_POST},
  874. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  875. .ignore_suspend = 1,
  876. .ignore_pmdown_time = 1, /* dai link has playback support */
  877. .codec_dai_name = "snd-soc-dummy-dai",
  878. .codec_name = "snd-soc-dummy",
  879. },
  880. {/* hw:x,11 */
  881. .name = "SLIMBUS_3 Hostless",
  882. .stream_name = "SLIMBUS_3 Hostless",
  883. .cpu_dai_name = "SLIMBUS3_HOSTLESS",
  884. .platform_name = "msm-pcm-hostless",
  885. .dynamic = 1,
  886. .dpcm_capture = 1,
  887. .dpcm_playback = 1,
  888. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  889. SND_SOC_DPCM_TRIGGER_POST},
  890. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  891. .ignore_suspend = 1,
  892. .ignore_pmdown_time = 1, /* dai link has playback support */
  893. .codec_dai_name = "snd-soc-dummy-dai",
  894. .codec_name = "snd-soc-dummy",
  895. },
  896. {/* hw:x,12 */
  897. .name = "SLIMBUS_4 Hostless",
  898. .stream_name = "SLIMBUS_4 Hostless",
  899. .cpu_dai_name = "SLIMBUS4_HOSTLESS",
  900. .platform_name = "msm-pcm-hostless",
  901. .dynamic = 1,
  902. .dpcm_capture = 1,
  903. .dpcm_playback = 1,
  904. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  905. SND_SOC_DPCM_TRIGGER_POST},
  906. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  907. .ignore_suspend = 1,
  908. .ignore_pmdown_time = 1, /* dai link has playback support */
  909. .codec_dai_name = "snd-soc-dummy-dai",
  910. .codec_name = "snd-soc-dummy",
  911. },
  912. {/* hw:x,13 */
  913. .name = MSM_DAILINK_NAME(LowLatency),
  914. .stream_name = "MultiMedia5",
  915. .cpu_dai_name = "MultiMedia5",
  916. .platform_name = "msm-pcm-dsp.1",
  917. .dynamic = 1,
  918. .dpcm_capture = 1,
  919. .dpcm_playback = 1,
  920. .codec_dai_name = "snd-soc-dummy-dai",
  921. .codec_name = "snd-soc-dummy",
  922. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  923. SND_SOC_DPCM_TRIGGER_POST},
  924. .ignore_suspend = 1,
  925. /* this dai link has playback support */
  926. .ignore_pmdown_time = 1,
  927. .id = MSM_FRONTEND_DAI_MULTIMEDIA5,
  928. },
  929. /* LSM FE */
  930. {/* hw:x,14 */
  931. .name = "Listen 1 Audio Service",
  932. .stream_name = "Listen 1 Audio Service",
  933. .cpu_dai_name = "LSM1",
  934. .platform_name = "msm-lsm-client",
  935. .dynamic = 1,
  936. .dpcm_capture = 1,
  937. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  938. SND_SOC_DPCM_TRIGGER_POST },
  939. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  940. .ignore_suspend = 1,
  941. .ignore_pmdown_time = 1,
  942. .codec_dai_name = "snd-soc-dummy-dai",
  943. .codec_name = "snd-soc-dummy",
  944. .id = MSM_FRONTEND_DAI_LSM1,
  945. },
  946. {/* hw:x,15 */
  947. .name = MSM_DAILINK_NAME(Compress2),
  948. .stream_name = "Compress2",
  949. .cpu_dai_name = "MultiMedia7",
  950. .platform_name = "msm-compress-dsp",
  951. .dynamic = 1,
  952. .dpcm_capture = 1,
  953. .dpcm_playback = 1,
  954. .codec_dai_name = "snd-soc-dummy-dai",
  955. .codec_name = "snd-soc-dummy",
  956. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  957. SND_SOC_DPCM_TRIGGER_POST},
  958. .ignore_suspend = 1,
  959. /* this dai link has playback support */
  960. .ignore_pmdown_time = 1,
  961. .id = MSM_FRONTEND_DAI_MULTIMEDIA7,
  962. },
  963. {/* hw:x,16 */
  964. .name = MSM_DAILINK_NAME(MultiMedia10),
  965. .stream_name = "MultiMedia10",
  966. .cpu_dai_name = "MultiMedia10",
  967. .platform_name = "msm-pcm-dsp.1",
  968. .dynamic = 1,
  969. .dpcm_capture = 1,
  970. .dpcm_playback = 1,
  971. .dpcm_capture = 1,
  972. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  973. SND_SOC_DPCM_TRIGGER_POST},
  974. .codec_dai_name = "snd-soc-dummy-dai",
  975. .codec_name = "snd-soc-dummy",
  976. .ignore_suspend = 1,
  977. .ignore_pmdown_time = 1,
  978. /* this dai link has playback support */
  979. .id = MSM_FRONTEND_DAI_MULTIMEDIA10,
  980. },
  981. {/* hw:x,17 */
  982. .name = MSM_DAILINK_NAME(ULL_NOIRQ),
  983. .stream_name = "MM_NOIRQ",
  984. .cpu_dai_name = "MultiMedia8",
  985. .platform_name = "msm-pcm-dsp-noirq",
  986. .dynamic = 1,
  987. .dpcm_capture = 1,
  988. .dpcm_playback = 1,
  989. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  990. SND_SOC_DPCM_TRIGGER_POST},
  991. .codec_dai_name = "snd-soc-dummy-dai",
  992. .codec_name = "snd-soc-dummy",
  993. .ignore_suspend = 1,
  994. .ignore_pmdown_time = 1,
  995. /* this dai link has playback support */
  996. .id = MSM_FRONTEND_DAI_MULTIMEDIA8,
  997. },
  998. {/* hw:x,18 */
  999. .name = "HDMI_RX_HOSTLESS",
  1000. .stream_name = "HDMI_RX_HOSTLESS",
  1001. .cpu_dai_name = "HDMI_HOSTLESS",
  1002. .platform_name = "msm-pcm-hostless",
  1003. .dynamic = 1,
  1004. .dpcm_playback = 1,
  1005. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1006. SND_SOC_DPCM_TRIGGER_POST},
  1007. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1008. .ignore_suspend = 1,
  1009. .ignore_pmdown_time = 1,
  1010. .codec_dai_name = "snd-soc-dummy-dai",
  1011. .codec_name = "snd-soc-dummy",
  1012. },
  1013. {/* hw:x,19 */
  1014. .name = "VoiceMMode2",
  1015. .stream_name = "VoiceMMode2",
  1016. .cpu_dai_name = "VoiceMMode2",
  1017. .platform_name = "msm-pcm-voice",
  1018. .dynamic = 1,
  1019. .dpcm_capture = 1,
  1020. .dpcm_playback = 1,
  1021. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1022. SND_SOC_DPCM_TRIGGER_POST},
  1023. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1024. .ignore_suspend = 1,
  1025. .ignore_pmdown_time = 1,
  1026. .codec_dai_name = "snd-soc-dummy-dai",
  1027. .codec_name = "snd-soc-dummy",
  1028. .id = MSM_FRONTEND_DAI_VOICEMMODE2,
  1029. },
  1030. {/* hw:x,20 */
  1031. .name = "Listen 2 Audio Service",
  1032. .stream_name = "Listen 2 Audio Service",
  1033. .cpu_dai_name = "LSM2",
  1034. .platform_name = "msm-lsm-client",
  1035. .dynamic = 1,
  1036. .dpcm_capture = 1,
  1037. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1038. SND_SOC_DPCM_TRIGGER_POST },
  1039. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1040. .ignore_suspend = 1,
  1041. .ignore_pmdown_time = 1,
  1042. .codec_dai_name = "snd-soc-dummy-dai",
  1043. .codec_name = "snd-soc-dummy",
  1044. .id = MSM_FRONTEND_DAI_LSM2,
  1045. },
  1046. {/* hw:x,21 */
  1047. .name = "Listen 3 Audio Service",
  1048. .stream_name = "Listen 3 Audio Service",
  1049. .cpu_dai_name = "LSM3",
  1050. .platform_name = "msm-lsm-client",
  1051. .dynamic = 1,
  1052. .dpcm_capture = 1,
  1053. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1054. SND_SOC_DPCM_TRIGGER_POST },
  1055. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1056. .ignore_suspend = 1,
  1057. .ignore_pmdown_time = 1,
  1058. .codec_dai_name = "snd-soc-dummy-dai",
  1059. .codec_name = "snd-soc-dummy",
  1060. .id = MSM_FRONTEND_DAI_LSM3,
  1061. },
  1062. {/* hw:x,22 */
  1063. .name = "Listen 4 Audio Service",
  1064. .stream_name = "Listen 4 Audio Service",
  1065. .cpu_dai_name = "LSM4",
  1066. .platform_name = "msm-lsm-client",
  1067. .dynamic = 1,
  1068. .dpcm_capture = 1,
  1069. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1070. SND_SOC_DPCM_TRIGGER_POST },
  1071. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1072. .ignore_suspend = 1,
  1073. .ignore_pmdown_time = 1,
  1074. .codec_dai_name = "snd-soc-dummy-dai",
  1075. .codec_name = "snd-soc-dummy",
  1076. .id = MSM_FRONTEND_DAI_LSM4,
  1077. },
  1078. {/* hw:x,23 */
  1079. .name = "Listen 5 Audio Service",
  1080. .stream_name = "Listen 5 Audio Service",
  1081. .cpu_dai_name = "LSM5",
  1082. .platform_name = "msm-lsm-client",
  1083. .dynamic = 1,
  1084. .dpcm_capture = 1,
  1085. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1086. SND_SOC_DPCM_TRIGGER_POST },
  1087. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1088. .ignore_suspend = 1,
  1089. .ignore_pmdown_time = 1,
  1090. .codec_dai_name = "snd-soc-dummy-dai",
  1091. .codec_name = "snd-soc-dummy",
  1092. .id = MSM_FRONTEND_DAI_LSM5,
  1093. },
  1094. {/* hw:x,24 */
  1095. .name = "Listen 6 Audio Service",
  1096. .stream_name = "Listen 6 Audio Service",
  1097. .cpu_dai_name = "LSM6",
  1098. .platform_name = "msm-lsm-client",
  1099. .dynamic = 1,
  1100. .dpcm_capture = 1,
  1101. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1102. SND_SOC_DPCM_TRIGGER_POST },
  1103. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1104. .ignore_suspend = 1,
  1105. .ignore_pmdown_time = 1,
  1106. .codec_dai_name = "snd-soc-dummy-dai",
  1107. .codec_name = "snd-soc-dummy",
  1108. .id = MSM_FRONTEND_DAI_LSM6
  1109. },
  1110. {/* hw:x,25 */
  1111. .name = "Listen 7 Audio Service",
  1112. .stream_name = "Listen 7 Audio Service",
  1113. .cpu_dai_name = "LSM7",
  1114. .platform_name = "msm-lsm-client",
  1115. .dynamic = 1,
  1116. .dpcm_capture = 1,
  1117. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1118. SND_SOC_DPCM_TRIGGER_POST },
  1119. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1120. .ignore_suspend = 1,
  1121. .ignore_pmdown_time = 1,
  1122. .codec_dai_name = "snd-soc-dummy-dai",
  1123. .codec_name = "snd-soc-dummy",
  1124. .id = MSM_FRONTEND_DAI_LSM7,
  1125. },
  1126. {/* hw:x,26 */
  1127. .name = "Listen 8 Audio Service",
  1128. .stream_name = "Listen 8 Audio Service",
  1129. .cpu_dai_name = "LSM8",
  1130. .platform_name = "msm-lsm-client",
  1131. .dynamic = 1,
  1132. .dpcm_capture = 1,
  1133. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1134. SND_SOC_DPCM_TRIGGER_POST },
  1135. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1136. .ignore_suspend = 1,
  1137. .ignore_pmdown_time = 1,
  1138. .codec_dai_name = "snd-soc-dummy-dai",
  1139. .codec_name = "snd-soc-dummy",
  1140. .id = MSM_FRONTEND_DAI_LSM8,
  1141. },
  1142. {/* hw:x,27 */
  1143. .name = MSM_DAILINK_NAME(Media9),
  1144. .stream_name = "MultiMedia9",
  1145. .cpu_dai_name = "MultiMedia9",
  1146. .platform_name = "msm-pcm-dsp.0",
  1147. .dynamic = 1,
  1148. .dpcm_capture = 1,
  1149. .dpcm_playback = 1,
  1150. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1151. SND_SOC_DPCM_TRIGGER_POST},
  1152. .codec_dai_name = "snd-soc-dummy-dai",
  1153. .codec_name = "snd-soc-dummy",
  1154. .ignore_suspend = 1,
  1155. .ignore_pmdown_time = 1,
  1156. /* this dai link has playback support */
  1157. .id = MSM_FRONTEND_DAI_MULTIMEDIA9,
  1158. },
  1159. {/* hw:x,28 */
  1160. .name = MSM_DAILINK_NAME(Compress4),
  1161. .stream_name = "Compress4",
  1162. .cpu_dai_name = "MultiMedia11",
  1163. .platform_name = "msm-compress-dsp",
  1164. .dynamic = 1,
  1165. .dpcm_capture = 1,
  1166. .dpcm_playback = 1,
  1167. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1168. SND_SOC_DPCM_TRIGGER_POST},
  1169. .codec_dai_name = "snd-soc-dummy-dai",
  1170. .codec_name = "snd-soc-dummy",
  1171. .ignore_suspend = 1,
  1172. .ignore_pmdown_time = 1,
  1173. /* this dai link has playback support */
  1174. .id = MSM_FRONTEND_DAI_MULTIMEDIA11,
  1175. },
  1176. {/* hw:x,29 */
  1177. .name = MSM_DAILINK_NAME(Compress5),
  1178. .stream_name = "Compress5",
  1179. .cpu_dai_name = "MultiMedia12",
  1180. .platform_name = "msm-compress-dsp",
  1181. .dynamic = 1,
  1182. .dpcm_capture = 1,
  1183. .dpcm_playback = 1,
  1184. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1185. SND_SOC_DPCM_TRIGGER_POST},
  1186. .codec_dai_name = "snd-soc-dummy-dai",
  1187. .codec_name = "snd-soc-dummy",
  1188. .ignore_suspend = 1,
  1189. .ignore_pmdown_time = 1,
  1190. /* this dai link has playback support */
  1191. .id = MSM_FRONTEND_DAI_MULTIMEDIA12,
  1192. },
  1193. {/* hw:x,30 */
  1194. .name = MSM_DAILINK_NAME(Compress6),
  1195. .stream_name = "Compress6",
  1196. .cpu_dai_name = "MultiMedia13",
  1197. .platform_name = "msm-compress-dsp",
  1198. .dynamic = 1,
  1199. .dpcm_capture = 1,
  1200. .dpcm_playback = 1,
  1201. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1202. SND_SOC_DPCM_TRIGGER_POST},
  1203. .codec_dai_name = "snd-soc-dummy-dai",
  1204. .codec_name = "snd-soc-dummy",
  1205. .ignore_suspend = 1,
  1206. .ignore_pmdown_time = 1,
  1207. /* this dai link has playback support */
  1208. .id = MSM_FRONTEND_DAI_MULTIMEDIA13,
  1209. },
  1210. {/* hw:x,31 */
  1211. .name = MSM_DAILINK_NAME(Compress7),
  1212. .stream_name = "Compress7",
  1213. .cpu_dai_name = "MultiMedia14",
  1214. .platform_name = "msm-compress-dsp",
  1215. .dynamic = 1,
  1216. .dpcm_capture = 1,
  1217. .dpcm_playback = 1,
  1218. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1219. SND_SOC_DPCM_TRIGGER_POST},
  1220. .codec_dai_name = "snd-soc-dummy-dai",
  1221. .codec_name = "snd-soc-dummy",
  1222. .ignore_suspend = 1,
  1223. .ignore_pmdown_time = 1,
  1224. /* this dai link has playback support */
  1225. .id = MSM_FRONTEND_DAI_MULTIMEDIA14,
  1226. },
  1227. {/* hw:x,32 */
  1228. .name = MSM_DAILINK_NAME(Compress8),
  1229. .stream_name = "Compress8",
  1230. .cpu_dai_name = "MultiMedia15",
  1231. .platform_name = "msm-compress-dsp",
  1232. .dynamic = 1,
  1233. .dpcm_capture = 1,
  1234. .dpcm_playback = 1,
  1235. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1236. SND_SOC_DPCM_TRIGGER_POST},
  1237. .codec_dai_name = "snd-soc-dummy-dai",
  1238. .codec_name = "snd-soc-dummy",
  1239. .ignore_suspend = 1,
  1240. .ignore_pmdown_time = 1,
  1241. /* this dai link has playback support */
  1242. .id = MSM_FRONTEND_DAI_MULTIMEDIA15,
  1243. },
  1244. {/* hw:x,33 */
  1245. .name = MSM_DAILINK_NAME(ULL_NOIRQ_2),
  1246. .stream_name = "MM_NOIRQ_2",
  1247. .cpu_dai_name = "MultiMedia16",
  1248. .platform_name = "msm-pcm-dsp-noirq",
  1249. .dynamic = 1,
  1250. .dpcm_capture = 1,
  1251. .dpcm_playback = 1,
  1252. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1253. SND_SOC_DPCM_TRIGGER_POST},
  1254. .codec_dai_name = "snd-soc-dummy-dai",
  1255. .codec_name = "snd-soc-dummy",
  1256. .ignore_suspend = 1,
  1257. .ignore_pmdown_time = 1,
  1258. /* this dai link has playback support */
  1259. .id = MSM_FRONTEND_DAI_MULTIMEDIA16,
  1260. },
  1261. {/* hw:x,34 */
  1262. .name = "SLIMBUS_8 Hostless",
  1263. .stream_name = "SLIMBUS8_HOSTLESS Capture",
  1264. .cpu_dai_name = "SLIMBUS8_HOSTLESS",
  1265. .platform_name = "msm-pcm-hostless",
  1266. .dynamic = 1,
  1267. .dpcm_capture = 1,
  1268. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1269. SND_SOC_DPCM_TRIGGER_POST},
  1270. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1271. .ignore_suspend = 1,
  1272. .ignore_pmdown_time = 1,
  1273. .codec_dai_name = "snd-soc-dummy-dai",
  1274. .codec_name = "snd-soc-dummy",
  1275. },
  1276. {/* hw:x,35 */
  1277. .name = "SLIMBUS7 Hostless",
  1278. .stream_name = "SLIMBUS7 Hostless",
  1279. .cpu_dai_name = "SLIMBUS7_HOSTLESS",
  1280. .platform_name = "msm-pcm-hostless",
  1281. .dynamic = 1,
  1282. .dpcm_playback = 1,
  1283. .dpcm_capture = 1,
  1284. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1285. SND_SOC_DPCM_TRIGGER_POST},
  1286. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1287. .ignore_suspend = 1,
  1288. .ignore_pmdown_time = 1,
  1289. .codec_dai_name = "snd-soc-dummy-dai",
  1290. .codec_name = "snd-soc-dummy",
  1291. },
  1292. {/* hw:x,36 */
  1293. .name = "SDM660 HFP TX",
  1294. .stream_name = "MultiMedia6",
  1295. .cpu_dai_name = "MultiMedia6",
  1296. .platform_name = "msm-pcm-loopback",
  1297. .dynamic = 1,
  1298. .dpcm_playback = 1,
  1299. .dpcm_capture = 1,
  1300. .codec_dai_name = "snd-soc-dummy-dai",
  1301. .codec_name = "snd-soc-dummy",
  1302. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1303. SND_SOC_DPCM_TRIGGER_POST},
  1304. .ignore_suspend = 1,
  1305. .no_host_mode = SND_SOC_DAI_LINK_NO_HOST,
  1306. .ignore_pmdown_time = 1,
  1307. .id = MSM_FRONTEND_DAI_MULTIMEDIA6,
  1308. },
  1309. };
  1310. static struct snd_soc_dai_link msm_ext_common_be_dai[] = {
  1311. {
  1312. .name = LPASS_BE_AFE_PCM_RX,
  1313. .stream_name = "AFE Playback",
  1314. .cpu_dai_name = "msm-dai-q6-dev.224",
  1315. .platform_name = "msm-pcm-routing",
  1316. .codec_name = "msm-stub-codec.1",
  1317. .codec_dai_name = "msm-stub-rx",
  1318. .no_pcm = 1,
  1319. .dpcm_playback = 1,
  1320. .id = MSM_BACKEND_DAI_AFE_PCM_RX,
  1321. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1322. /* this dai link has playback support */
  1323. .ignore_pmdown_time = 1,
  1324. .ignore_suspend = 1,
  1325. },
  1326. {
  1327. .name = LPASS_BE_AFE_PCM_TX,
  1328. .stream_name = "AFE Capture",
  1329. .cpu_dai_name = "msm-dai-q6-dev.225",
  1330. .platform_name = "msm-pcm-routing",
  1331. .codec_name = "msm-stub-codec.1",
  1332. .codec_dai_name = "msm-stub-tx",
  1333. .no_pcm = 1,
  1334. .dpcm_capture = 1,
  1335. .id = MSM_BACKEND_DAI_AFE_PCM_TX,
  1336. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1337. .ignore_suspend = 1,
  1338. },
  1339. /* Incall Record Uplink BACK END DAI Link */
  1340. {
  1341. .name = LPASS_BE_INCALL_RECORD_TX,
  1342. .stream_name = "Voice Uplink Capture",
  1343. .cpu_dai_name = "msm-dai-q6-dev.32772",
  1344. .platform_name = "msm-pcm-routing",
  1345. .codec_name = "msm-stub-codec.1",
  1346. .codec_dai_name = "msm-stub-tx",
  1347. .no_pcm = 1,
  1348. .dpcm_capture = 1,
  1349. .id = MSM_BACKEND_DAI_INCALL_RECORD_TX,
  1350. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1351. .ignore_suspend = 1,
  1352. },
  1353. /* Incall Record Downlink BACK END DAI Link */
  1354. {
  1355. .name = LPASS_BE_INCALL_RECORD_RX,
  1356. .stream_name = "Voice Downlink Capture",
  1357. .cpu_dai_name = "msm-dai-q6-dev.32771",
  1358. .platform_name = "msm-pcm-routing",
  1359. .codec_name = "msm-stub-codec.1",
  1360. .codec_dai_name = "msm-stub-tx",
  1361. .no_pcm = 1,
  1362. .dpcm_capture = 1,
  1363. .id = MSM_BACKEND_DAI_INCALL_RECORD_RX,
  1364. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1365. .ignore_suspend = 1,
  1366. },
  1367. /* Incall Music BACK END DAI Link */
  1368. {
  1369. .name = LPASS_BE_VOICE_PLAYBACK_TX,
  1370. .stream_name = "Voice Farend Playback",
  1371. .cpu_dai_name = "msm-dai-q6-dev.32773",
  1372. .platform_name = "msm-pcm-routing",
  1373. .codec_name = "msm-stub-codec.1",
  1374. .codec_dai_name = "msm-stub-rx",
  1375. .no_pcm = 1,
  1376. .dpcm_playback = 1,
  1377. .id = MSM_BACKEND_DAI_VOICE_PLAYBACK_TX,
  1378. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1379. .ignore_suspend = 1,
  1380. },
  1381. /* Incall Music 2 BACK END DAI Link */
  1382. {
  1383. .name = LPASS_BE_VOICE2_PLAYBACK_TX,
  1384. .stream_name = "Voice2 Farend Playback",
  1385. .cpu_dai_name = "msm-dai-q6-dev.32770",
  1386. .platform_name = "msm-pcm-routing",
  1387. .codec_name = "msm-stub-codec.1",
  1388. .codec_dai_name = "msm-stub-rx",
  1389. .no_pcm = 1,
  1390. .dpcm_playback = 1,
  1391. .id = MSM_BACKEND_DAI_VOICE2_PLAYBACK_TX,
  1392. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1393. .ignore_suspend = 1,
  1394. },
  1395. {
  1396. .name = LPASS_BE_USB_AUDIO_RX,
  1397. .stream_name = "USB Audio Playback",
  1398. .cpu_dai_name = "msm-dai-q6-dev.28672",
  1399. .platform_name = "msm-pcm-routing",
  1400. .codec_name = "msm-stub-codec.1",
  1401. .codec_dai_name = "msm-stub-rx",
  1402. .no_pcm = 1,
  1403. .dpcm_playback = 1,
  1404. .id = MSM_BACKEND_DAI_USB_RX,
  1405. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1406. .ignore_pmdown_time = 1,
  1407. .ignore_suspend = 1,
  1408. },
  1409. {
  1410. .name = LPASS_BE_USB_AUDIO_TX,
  1411. .stream_name = "USB Audio Capture",
  1412. .cpu_dai_name = "msm-dai-q6-dev.28673",
  1413. .platform_name = "msm-pcm-routing",
  1414. .codec_name = "msm-stub-codec.1",
  1415. .codec_dai_name = "msm-stub-tx",
  1416. .no_pcm = 1,
  1417. .dpcm_capture = 1,
  1418. .id = MSM_BACKEND_DAI_USB_TX,
  1419. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1420. .ignore_suspend = 1,
  1421. },
  1422. {
  1423. .name = LPASS_BE_PRI_TDM_RX_0,
  1424. .stream_name = "Primary TDM0 Playback",
  1425. .cpu_dai_name = "msm-dai-q6-tdm.36864",
  1426. .platform_name = "msm-pcm-routing",
  1427. .codec_name = "msm-stub-codec.1",
  1428. .codec_dai_name = "msm-stub-rx",
  1429. .no_pcm = 1,
  1430. .dpcm_playback = 1,
  1431. .id = MSM_BACKEND_DAI_PRI_TDM_RX_0,
  1432. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1433. .ops = &msm_tdm_be_ops,
  1434. .ignore_suspend = 1,
  1435. },
  1436. {
  1437. .name = LPASS_BE_PRI_TDM_TX_0,
  1438. .stream_name = "Primary TDM0 Capture",
  1439. .cpu_dai_name = "msm-dai-q6-tdm.36865",
  1440. .platform_name = "msm-pcm-routing",
  1441. .codec_name = "msm-stub-codec.1",
  1442. .codec_dai_name = "msm-stub-tx",
  1443. .no_pcm = 1,
  1444. .dpcm_capture = 1,
  1445. .id = MSM_BACKEND_DAI_PRI_TDM_TX_0,
  1446. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1447. .ops = &msm_tdm_be_ops,
  1448. .ignore_suspend = 1,
  1449. },
  1450. {
  1451. .name = LPASS_BE_SEC_TDM_RX_0,
  1452. .stream_name = "Secondary TDM0 Playback",
  1453. .cpu_dai_name = "msm-dai-q6-tdm.36880",
  1454. .platform_name = "msm-pcm-routing",
  1455. .codec_name = "msm-stub-codec.1",
  1456. .codec_dai_name = "msm-stub-rx",
  1457. .no_pcm = 1,
  1458. .dpcm_playback = 1,
  1459. .id = MSM_BACKEND_DAI_SEC_TDM_RX_0,
  1460. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1461. .ops = &msm_tdm_be_ops,
  1462. .ignore_suspend = 1,
  1463. },
  1464. {
  1465. .name = LPASS_BE_SEC_TDM_TX_0,
  1466. .stream_name = "Secondary TDM0 Capture",
  1467. .cpu_dai_name = "msm-dai-q6-tdm.36881",
  1468. .platform_name = "msm-pcm-routing",
  1469. .codec_name = "msm-stub-codec.1",
  1470. .codec_dai_name = "msm-stub-tx",
  1471. .no_pcm = 1,
  1472. .dpcm_capture = 1,
  1473. .id = MSM_BACKEND_DAI_SEC_TDM_TX_0,
  1474. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1475. .ops = &msm_tdm_be_ops,
  1476. .ignore_suspend = 1,
  1477. },
  1478. {
  1479. .name = LPASS_BE_TERT_TDM_RX_0,
  1480. .stream_name = "Tertiary TDM0 Playback",
  1481. .cpu_dai_name = "msm-dai-q6-tdm.36896",
  1482. .platform_name = "msm-pcm-routing",
  1483. .codec_name = "msm-stub-codec.1",
  1484. .codec_dai_name = "msm-stub-rx",
  1485. .no_pcm = 1,
  1486. .dpcm_playback = 1,
  1487. .id = MSM_BACKEND_DAI_TERT_TDM_RX_0,
  1488. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1489. .ops = &msm_tdm_be_ops,
  1490. .ignore_suspend = 1,
  1491. },
  1492. {
  1493. .name = LPASS_BE_TERT_TDM_TX_0,
  1494. .stream_name = "Tertiary TDM0 Capture",
  1495. .cpu_dai_name = "msm-dai-q6-tdm.36897",
  1496. .platform_name = "msm-pcm-routing",
  1497. .codec_name = "msm-stub-codec.1",
  1498. .codec_dai_name = "msm-stub-tx",
  1499. .no_pcm = 1,
  1500. .dpcm_capture = 1,
  1501. .id = MSM_BACKEND_DAI_TERT_TDM_TX_0,
  1502. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1503. .ops = &msm_tdm_be_ops,
  1504. .ignore_suspend = 1,
  1505. },
  1506. {
  1507. .name = LPASS_BE_QUAT_TDM_RX_0,
  1508. .stream_name = "Quaternary TDM0 Playback",
  1509. .cpu_dai_name = "msm-dai-q6-tdm.36912",
  1510. .platform_name = "msm-pcm-routing",
  1511. .codec_name = "msm-stub-codec.1",
  1512. .codec_dai_name = "msm-stub-rx",
  1513. .no_pcm = 1,
  1514. .dpcm_playback = 1,
  1515. .id = MSM_BACKEND_DAI_QUAT_TDM_RX_0,
  1516. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1517. .ops = &msm_tdm_be_ops,
  1518. .ignore_suspend = 1,
  1519. },
  1520. {
  1521. .name = LPASS_BE_QUAT_TDM_TX_0,
  1522. .stream_name = "Quaternary TDM0 Capture",
  1523. .cpu_dai_name = "msm-dai-q6-tdm.36913",
  1524. .platform_name = "msm-pcm-routing",
  1525. .codec_name = "msm-stub-codec.1",
  1526. .codec_dai_name = "msm-stub-tx",
  1527. .no_pcm = 1,
  1528. .dpcm_capture = 1,
  1529. .id = MSM_BACKEND_DAI_QUAT_TDM_TX_0,
  1530. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1531. .ops = &msm_tdm_be_ops,
  1532. .ignore_suspend = 1,
  1533. },
  1534. {
  1535. .name = LPASS_BE_QUIN_TDM_RX_0,
  1536. .stream_name = "Quinary TDM0 Playback",
  1537. .cpu_dai_name = "msm-dai-q6-tdm.36928",
  1538. .platform_name = "msm-pcm-routing",
  1539. .codec_name = "msm-stub-codec.1",
  1540. .codec_dai_name = "msm-stub-rx",
  1541. .no_pcm = 1,
  1542. .dpcm_playback = 1,
  1543. .id = MSM_BACKEND_DAI_QUIN_TDM_RX_0,
  1544. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1545. .ops = &msm_tdm_be_ops,
  1546. .ignore_suspend = 1,
  1547. },
  1548. {
  1549. .name = LPASS_BE_QUIN_TDM_TX_0,
  1550. .stream_name = "Quinary TDM0 Capture",
  1551. .cpu_dai_name = "msm-dai-q6-tdm.36929",
  1552. .platform_name = "msm-pcm-routing",
  1553. .codec_name = "msm-stub-codec.1",
  1554. .codec_dai_name = "msm-stub-tx",
  1555. .no_pcm = 1,
  1556. .dpcm_capture = 1,
  1557. .id = MSM_BACKEND_DAI_QUIN_TDM_TX_0,
  1558. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1559. .ops = &msm_tdm_be_ops,
  1560. .ignore_suspend = 1,
  1561. },
  1562. };
  1563. static struct snd_soc_dai_link msm_mi2s_be_dai_links[] = {
  1564. {
  1565. .name = LPASS_BE_PRI_MI2S_RX,
  1566. .stream_name = "Primary MI2S Playback",
  1567. .cpu_dai_name = "msm-dai-q6-mi2s.0",
  1568. .platform_name = "msm-pcm-routing",
  1569. .codec_name = "msm-stub-codec.1",
  1570. .codec_dai_name = "msm-stub-rx",
  1571. .no_pcm = 1,
  1572. .dpcm_playback = 1,
  1573. .id = MSM_BACKEND_DAI_PRI_MI2S_RX,
  1574. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1575. .ops = &msm_mi2s_be_ops,
  1576. .ignore_suspend = 1,
  1577. .ignore_pmdown_time = 1,
  1578. },
  1579. {
  1580. .name = LPASS_BE_PRI_MI2S_TX,
  1581. .stream_name = "Primary MI2S Capture",
  1582. .cpu_dai_name = "msm-dai-q6-mi2s.0",
  1583. .platform_name = "msm-pcm-routing",
  1584. .codec_name = "msm-stub-codec.1",
  1585. .codec_dai_name = "msm-stub-tx",
  1586. .no_pcm = 1,
  1587. .dpcm_capture = 1,
  1588. .id = MSM_BACKEND_DAI_PRI_MI2S_TX,
  1589. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1590. .ops = &msm_mi2s_be_ops,
  1591. .ignore_suspend = 1,
  1592. },
  1593. {
  1594. .name = LPASS_BE_SEC_MI2S_RX,
  1595. .stream_name = "Secondary MI2S Playback",
  1596. .cpu_dai_name = "msm-dai-q6-mi2s.1",
  1597. .platform_name = "msm-pcm-routing",
  1598. .codec_name = "msm-stub-codec.1",
  1599. .codec_dai_name = "msm-stub-rx",
  1600. .no_pcm = 1,
  1601. .dpcm_playback = 1,
  1602. .id = MSM_BACKEND_DAI_SECONDARY_MI2S_RX,
  1603. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1604. .ops = &msm_mi2s_be_ops,
  1605. .ignore_suspend = 1,
  1606. .ignore_pmdown_time = 1,
  1607. },
  1608. {
  1609. .name = LPASS_BE_SEC_MI2S_TX,
  1610. .stream_name = "Secondary MI2S Capture",
  1611. .cpu_dai_name = "msm-dai-q6-mi2s.1",
  1612. .platform_name = "msm-pcm-routing",
  1613. .codec_name = "msm-stub-codec.1",
  1614. .codec_dai_name = "msm-stub-tx",
  1615. .no_pcm = 1,
  1616. .dpcm_capture = 1,
  1617. .id = MSM_BACKEND_DAI_SECONDARY_MI2S_TX,
  1618. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1619. .ops = &msm_mi2s_be_ops,
  1620. .ignore_suspend = 1,
  1621. },
  1622. {
  1623. .name = LPASS_BE_TERT_MI2S_RX,
  1624. .stream_name = "Tertiary MI2S Playback",
  1625. .cpu_dai_name = "msm-dai-q6-mi2s.2",
  1626. .platform_name = "msm-pcm-routing",
  1627. .codec_name = "msm-stub-codec.1",
  1628. .codec_dai_name = "msm-stub-rx",
  1629. .no_pcm = 1,
  1630. .dpcm_playback = 1,
  1631. .id = MSM_BACKEND_DAI_TERTIARY_MI2S_RX,
  1632. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1633. .ops = &msm_mi2s_be_ops,
  1634. .ignore_suspend = 1,
  1635. .ignore_pmdown_time = 1,
  1636. },
  1637. {
  1638. .name = LPASS_BE_TERT_MI2S_TX,
  1639. .stream_name = "Tertiary MI2S Capture",
  1640. .cpu_dai_name = "msm-dai-q6-mi2s.2",
  1641. .platform_name = "msm-pcm-routing",
  1642. .codec_name = "msm-stub-codec.1",
  1643. .codec_dai_name = "msm-stub-tx",
  1644. .no_pcm = 1,
  1645. .dpcm_capture = 1,
  1646. .id = MSM_BACKEND_DAI_TERTIARY_MI2S_TX,
  1647. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1648. .ops = &msm_mi2s_be_ops,
  1649. .ignore_suspend = 1,
  1650. },
  1651. {
  1652. .name = LPASS_BE_QUAT_MI2S_RX,
  1653. .stream_name = "Quaternary MI2S Playback",
  1654. .cpu_dai_name = "msm-dai-q6-mi2s.3",
  1655. .platform_name = "msm-pcm-routing",
  1656. .codec_name = "msm-stub-codec.1",
  1657. .codec_dai_name = "msm-stub-rx",
  1658. .no_pcm = 1,
  1659. .dpcm_playback = 1,
  1660. .id = MSM_BACKEND_DAI_QUATERNARY_MI2S_RX,
  1661. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1662. .ops = &msm_mi2s_be_ops,
  1663. .ignore_suspend = 1,
  1664. .ignore_pmdown_time = 1,
  1665. },
  1666. {
  1667. .name = LPASS_BE_QUAT_MI2S_TX,
  1668. .stream_name = "Quaternary MI2S Capture",
  1669. .cpu_dai_name = "msm-dai-q6-mi2s.3",
  1670. .platform_name = "msm-pcm-routing",
  1671. .codec_name = "msm-stub-codec.1",
  1672. .codec_dai_name = "msm-stub-tx",
  1673. .no_pcm = 1,
  1674. .dpcm_capture = 1,
  1675. .id = MSM_BACKEND_DAI_QUATERNARY_MI2S_TX,
  1676. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1677. .ops = &msm_mi2s_be_ops,
  1678. .ignore_suspend = 1,
  1679. },
  1680. {
  1681. .name = LPASS_BE_QUIN_MI2S_RX,
  1682. .stream_name = "Quinary MI2S Playback",
  1683. .cpu_dai_name = "msm-dai-q6-mi2s.4",
  1684. .platform_name = "msm-pcm-routing",
  1685. .codec_name = "msm-stub-codec.1",
  1686. .codec_dai_name = "msm-stub-rx",
  1687. .no_pcm = 1,
  1688. .dpcm_playback = 1,
  1689. .id = MSM_BACKEND_DAI_QUINARY_MI2S_RX,
  1690. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1691. .ops = &msm_mi2s_be_ops,
  1692. .ignore_suspend = 1,
  1693. .ignore_pmdown_time = 1,
  1694. },
  1695. {
  1696. .name = LPASS_BE_QUIN_MI2S_TX,
  1697. .stream_name = "Quinary MI2S Capture",
  1698. .cpu_dai_name = "msm-dai-q6-mi2s.4",
  1699. .platform_name = "msm-pcm-routing",
  1700. .codec_name = "msm-stub-codec.1",
  1701. .codec_dai_name = "msm-stub-tx",
  1702. .no_pcm = 1,
  1703. .dpcm_capture = 1,
  1704. .id = MSM_BACKEND_DAI_QUINARY_MI2S_TX,
  1705. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1706. .ops = &msm_mi2s_be_ops,
  1707. .ignore_suspend = 1,
  1708. },
  1709. };
  1710. static struct snd_soc_dai_link msm_auxpcm_be_dai_links[] = {
  1711. /* Primary AUX PCM Backend DAI Links */
  1712. {
  1713. .name = LPASS_BE_AUXPCM_RX,
  1714. .stream_name = "AUX PCM Playback",
  1715. .cpu_dai_name = "msm-dai-q6-auxpcm.1",
  1716. .platform_name = "msm-pcm-routing",
  1717. .codec_name = "msm-stub-codec.1",
  1718. .codec_dai_name = "msm-stub-rx",
  1719. .no_pcm = 1,
  1720. .dpcm_playback = 1,
  1721. .id = MSM_BACKEND_DAI_AUXPCM_RX,
  1722. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1723. .ignore_pmdown_time = 1,
  1724. .ignore_suspend = 1,
  1725. .ops = &msm_aux_pcm_be_ops,
  1726. },
  1727. {
  1728. .name = LPASS_BE_AUXPCM_TX,
  1729. .stream_name = "AUX PCM Capture",
  1730. .cpu_dai_name = "msm-dai-q6-auxpcm.1",
  1731. .platform_name = "msm-pcm-routing",
  1732. .codec_name = "msm-stub-codec.1",
  1733. .codec_dai_name = "msm-stub-tx",
  1734. .no_pcm = 1,
  1735. .dpcm_capture = 1,
  1736. .id = MSM_BACKEND_DAI_AUXPCM_TX,
  1737. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1738. .ignore_pmdown_time = 1,
  1739. .ignore_suspend = 1,
  1740. .ops = &msm_aux_pcm_be_ops,
  1741. },
  1742. /* Secondary AUX PCM Backend DAI Links */
  1743. {
  1744. .name = LPASS_BE_SEC_AUXPCM_RX,
  1745. .stream_name = "Sec AUX PCM Playback",
  1746. .cpu_dai_name = "msm-dai-q6-auxpcm.2",
  1747. .platform_name = "msm-pcm-routing",
  1748. .codec_name = "msm-stub-codec.1",
  1749. .codec_dai_name = "msm-stub-rx",
  1750. .no_pcm = 1,
  1751. .dpcm_playback = 1,
  1752. .id = MSM_BACKEND_DAI_SEC_AUXPCM_RX,
  1753. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1754. .ignore_pmdown_time = 1,
  1755. .ignore_suspend = 1,
  1756. .ops = &msm_aux_pcm_be_ops,
  1757. },
  1758. {
  1759. .name = LPASS_BE_SEC_AUXPCM_TX,
  1760. .stream_name = "Sec AUX PCM Capture",
  1761. .cpu_dai_name = "msm-dai-q6-auxpcm.2",
  1762. .platform_name = "msm-pcm-routing",
  1763. .codec_name = "msm-stub-codec.1",
  1764. .codec_dai_name = "msm-stub-tx",
  1765. .no_pcm = 1,
  1766. .dpcm_capture = 1,
  1767. .id = MSM_BACKEND_DAI_SEC_AUXPCM_TX,
  1768. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1769. .ignore_suspend = 1,
  1770. .ignore_pmdown_time = 1,
  1771. .ops = &msm_aux_pcm_be_ops,
  1772. },
  1773. /* Tertiary AUX PCM Backend DAI Links */
  1774. {
  1775. .name = LPASS_BE_TERT_AUXPCM_RX,
  1776. .stream_name = "Tert AUX PCM Playback",
  1777. .cpu_dai_name = "msm-dai-q6-auxpcm.3",
  1778. .platform_name = "msm-pcm-routing",
  1779. .codec_name = "msm-stub-codec.1",
  1780. .codec_dai_name = "msm-stub-rx",
  1781. .no_pcm = 1,
  1782. .dpcm_playback = 1,
  1783. .id = MSM_BACKEND_DAI_TERT_AUXPCM_RX,
  1784. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1785. .ignore_pmdown_time = 1,
  1786. .ignore_suspend = 1,
  1787. .ops = &msm_aux_pcm_be_ops,
  1788. },
  1789. {
  1790. .name = LPASS_BE_TERT_AUXPCM_TX,
  1791. .stream_name = "Tert AUX PCM Capture",
  1792. .cpu_dai_name = "msm-dai-q6-auxpcm.3",
  1793. .platform_name = "msm-pcm-routing",
  1794. .codec_name = "msm-stub-codec.1",
  1795. .codec_dai_name = "msm-stub-tx",
  1796. .no_pcm = 1,
  1797. .dpcm_capture = 1,
  1798. .id = MSM_BACKEND_DAI_TERT_AUXPCM_TX,
  1799. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1800. .ignore_suspend = 1,
  1801. .ignore_pmdown_time = 1,
  1802. .ops = &msm_aux_pcm_be_ops,
  1803. },
  1804. /* Quaternary AUX PCM Backend DAI Links */
  1805. {
  1806. .name = LPASS_BE_QUAT_AUXPCM_RX,
  1807. .stream_name = "Quat AUX PCM Playback",
  1808. .cpu_dai_name = "msm-dai-q6-auxpcm.4",
  1809. .platform_name = "msm-pcm-routing",
  1810. .codec_name = "msm-stub-codec.1",
  1811. .codec_dai_name = "msm-stub-rx",
  1812. .no_pcm = 1,
  1813. .dpcm_playback = 1,
  1814. .id = MSM_BACKEND_DAI_QUAT_AUXPCM_RX,
  1815. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1816. .ignore_pmdown_time = 1,
  1817. .ignore_suspend = 1,
  1818. .ops = &msm_aux_pcm_be_ops,
  1819. },
  1820. {
  1821. .name = LPASS_BE_QUAT_AUXPCM_TX,
  1822. .stream_name = "Quat AUX PCM Capture",
  1823. .cpu_dai_name = "msm-dai-q6-auxpcm.4",
  1824. .platform_name = "msm-pcm-routing",
  1825. .codec_name = "msm-stub-codec.1",
  1826. .codec_dai_name = "msm-stub-tx",
  1827. .no_pcm = 1,
  1828. .dpcm_capture = 1,
  1829. .id = MSM_BACKEND_DAI_QUAT_AUXPCM_TX,
  1830. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1831. .ignore_suspend = 1,
  1832. .ignore_pmdown_time = 1,
  1833. .ops = &msm_aux_pcm_be_ops,
  1834. },
  1835. /* Quinary AUX PCM Backend DAI Links */
  1836. {
  1837. .name = LPASS_BE_QUIN_AUXPCM_RX,
  1838. .stream_name = "Quin AUX PCM Playback",
  1839. .cpu_dai_name = "msm-dai-q6-auxpcm.5",
  1840. .platform_name = "msm-pcm-routing",
  1841. .codec_name = "msm-stub-codec.1",
  1842. .codec_dai_name = "msm-stub-rx",
  1843. .no_pcm = 1,
  1844. .dpcm_playback = 1,
  1845. .id = MSM_BACKEND_DAI_QUIN_AUXPCM_RX,
  1846. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1847. .ignore_pmdown_time = 1,
  1848. .ignore_suspend = 1,
  1849. .ops = &msm_aux_pcm_be_ops,
  1850. },
  1851. {
  1852. .name = LPASS_BE_QUIN_AUXPCM_TX,
  1853. .stream_name = "Quin AUX PCM Capture",
  1854. .cpu_dai_name = "msm-dai-q6-auxpcm.5",
  1855. .platform_name = "msm-pcm-routing",
  1856. .codec_name = "msm-stub-codec.1",
  1857. .codec_dai_name = "msm-stub-tx",
  1858. .no_pcm = 1,
  1859. .dpcm_capture = 1,
  1860. .id = MSM_BACKEND_DAI_QUIN_AUXPCM_TX,
  1861. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1862. .ignore_suspend = 1,
  1863. .ignore_pmdown_time = 1,
  1864. .ops = &msm_aux_pcm_be_ops,
  1865. },
  1866. };
  1867. static struct snd_soc_dai_link msm_wcn_be_dai_links[] = {
  1868. {
  1869. .name = LPASS_BE_SLIMBUS_7_RX,
  1870. .stream_name = "Slimbus7 Playback",
  1871. .cpu_dai_name = "msm-dai-q6-dev.16398",
  1872. .platform_name = "msm-pcm-routing",
  1873. .codec_name = "btfmslim_slave",
  1874. /* BT codec driver determines capabilities based on
  1875. * dai name, bt codecdai name should always contains
  1876. * supported usecase information
  1877. */
  1878. .codec_dai_name = "btfm_bt_sco_a2dp_slim_rx",
  1879. .no_pcm = 1,
  1880. .dpcm_playback = 1,
  1881. .id = MSM_BACKEND_DAI_SLIMBUS_7_RX,
  1882. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1883. .ops = &msm_wcn_ops,
  1884. /* dai link has playback support */
  1885. .ignore_pmdown_time = 1,
  1886. .ignore_suspend = 1,
  1887. },
  1888. {
  1889. .name = LPASS_BE_SLIMBUS_7_TX,
  1890. .stream_name = "Slimbus7 Capture",
  1891. .cpu_dai_name = "msm-dai-q6-dev.16399",
  1892. .platform_name = "msm-pcm-routing",
  1893. .codec_name = "btfmslim_slave",
  1894. .codec_dai_name = "btfm_bt_sco_slim_tx",
  1895. .no_pcm = 1,
  1896. .dpcm_capture = 1,
  1897. .id = MSM_BACKEND_DAI_SLIMBUS_7_TX,
  1898. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1899. .ops = &msm_wcn_ops,
  1900. .ignore_suspend = 1,
  1901. },
  1902. {
  1903. .name = LPASS_BE_SLIMBUS_8_TX,
  1904. .stream_name = "Slimbus8 Capture",
  1905. .cpu_dai_name = "msm-dai-q6-dev.16401",
  1906. .platform_name = "msm-pcm-routing",
  1907. .codec_name = "btfmslim_slave",
  1908. .codec_dai_name = "btfm_fm_slim_tx",
  1909. .no_pcm = 1,
  1910. .dpcm_capture = 1,
  1911. .id = MSM_BACKEND_DAI_SLIMBUS_8_TX,
  1912. .be_hw_params_fixup = msm_ext_be_hw_params_fixup,
  1913. .init = &msm_wcn_init,
  1914. .ops = &msm_wcn_ops,
  1915. .ignore_suspend = 1,
  1916. },
  1917. };
  1918. static struct snd_soc_dai_link ext_disp_be_dai_link[] = {
  1919. /* DISP PORT BACK END DAI Link */
  1920. {
  1921. .name = LPASS_BE_DISPLAY_PORT,
  1922. .stream_name = "Display Port Playback",
  1923. .cpu_dai_name = "msm-dai-q6-dp.24608",
  1924. .platform_name = "msm-pcm-routing",
  1925. .codec_name = "msm-ext-disp-audio-codec-rx",
  1926. .codec_dai_name = "msm_dp_audio_codec_rx_dai",
  1927. .no_pcm = 1,
  1928. .dpcm_playback = 1,
  1929. .id = MSM_BACKEND_DAI_DISPLAY_PORT_RX,
  1930. .be_hw_params_fixup = msm_common_be_hw_params_fixup,
  1931. .ignore_pmdown_time = 1,
  1932. .ignore_suspend = 1,
  1933. },
  1934. };
  1935. static struct snd_soc_dai_link msm_ext_tasha_dai_links[
  1936. ARRAY_SIZE(msm_ext_common_fe_dai) +
  1937. ARRAY_SIZE(msm_ext_tasha_fe_dai) +
  1938. ARRAY_SIZE(msm_ext_common_be_dai) +
  1939. ARRAY_SIZE(msm_ext_tasha_be_dai) +
  1940. ARRAY_SIZE(msm_mi2s_be_dai_links) +
  1941. ARRAY_SIZE(msm_auxpcm_be_dai_links) +
  1942. ARRAY_SIZE(msm_wcn_be_dai_links) +
  1943. ARRAY_SIZE(ext_disp_be_dai_link)];
  1944. static struct snd_soc_dai_link msm_ext_tavil_dai_links[
  1945. ARRAY_SIZE(msm_ext_common_fe_dai) +
  1946. ARRAY_SIZE(msm_ext_tavil_fe_dai) +
  1947. ARRAY_SIZE(msm_ext_common_be_dai) +
  1948. ARRAY_SIZE(msm_ext_tavil_be_dai) +
  1949. ARRAY_SIZE(msm_mi2s_be_dai_links) +
  1950. ARRAY_SIZE(msm_auxpcm_be_dai_links) +
  1951. ARRAY_SIZE(msm_wcn_be_dai_links) +
  1952. ARRAY_SIZE(ext_disp_be_dai_link)];
  1953. /**
  1954. * populate_snd_card_dailinks - prepares dailink array and initializes card.
  1955. *
  1956. * @dev: device handle
  1957. *
  1958. * Returns card on success or NULL on failure.
  1959. */
  1960. struct snd_soc_card *populate_snd_card_dailinks(struct device *dev,
  1961. int snd_card_val)
  1962. {
  1963. struct snd_soc_card *card;
  1964. struct snd_soc_dai_link *msm_ext_dai_links = NULL;
  1965. int ret, len1, len2, len3, len4;
  1966. enum codec_variant codec_ver = 0;
  1967. if (snd_card_val == EXT_SND_CARD_TASHA) {
  1968. card = &snd_soc_card_msm_card_tasha;
  1969. } else if (snd_card_val == EXT_SND_CARD_TAVIL) {
  1970. card = &snd_soc_card_msm_card_tavil;
  1971. } else {
  1972. dev_err(dev, "%s: failing as no matching card name\n",
  1973. __func__);
  1974. return NULL;
  1975. }
  1976. card->dev = dev;
  1977. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1978. if (ret) {
  1979. dev_err(dev, "%s: parse card name failed, err:%d\n",
  1980. __func__, ret);
  1981. return NULL;
  1982. }
  1983. if (strnstr(card->name, "tasha", strlen(card->name))) {
  1984. codec_ver = tasha_codec_ver();
  1985. if (codec_ver == WCD9326)
  1986. card->name = "sdm660-tashalite-snd-card";
  1987. len1 = ARRAY_SIZE(msm_ext_common_fe_dai);
  1988. len2 = len1 + ARRAY_SIZE(msm_ext_tasha_fe_dai);
  1989. len3 = len2 + ARRAY_SIZE(msm_ext_common_be_dai);
  1990. memcpy(msm_ext_tasha_dai_links, msm_ext_common_fe_dai,
  1991. sizeof(msm_ext_common_fe_dai));
  1992. memcpy(msm_ext_tasha_dai_links + len1,
  1993. msm_ext_tasha_fe_dai, sizeof(msm_ext_tasha_fe_dai));
  1994. memcpy(msm_ext_tasha_dai_links + len2,
  1995. msm_ext_common_be_dai, sizeof(msm_ext_common_be_dai));
  1996. memcpy(msm_ext_tasha_dai_links + len3,
  1997. msm_ext_tasha_be_dai, sizeof(msm_ext_tasha_be_dai));
  1998. len4 = len3 + ARRAY_SIZE(msm_ext_tasha_be_dai);
  1999. if (of_property_read_bool(dev->of_node,
  2000. "qcom,mi2s-audio-intf")) {
  2001. memcpy(msm_ext_tasha_dai_links + len4,
  2002. msm_mi2s_be_dai_links,
  2003. sizeof(msm_mi2s_be_dai_links));
  2004. len4 += ARRAY_SIZE(msm_mi2s_be_dai_links);
  2005. }
  2006. if (of_property_read_bool(dev->of_node,
  2007. "qcom,auxpcm-audio-intf")) {
  2008. memcpy(msm_ext_tasha_dai_links + len4,
  2009. msm_auxpcm_be_dai_links,
  2010. sizeof(msm_auxpcm_be_dai_links));
  2011. len4 += ARRAY_SIZE(msm_auxpcm_be_dai_links);
  2012. }
  2013. if (of_property_read_bool(dev->of_node, "qcom,wcn-btfm")) {
  2014. dev_dbg(dev, "%s(): WCN BTFM support present\n",
  2015. __func__);
  2016. memcpy(msm_ext_tasha_dai_links + len4,
  2017. msm_wcn_be_dai_links,
  2018. sizeof(msm_wcn_be_dai_links));
  2019. len4 += ARRAY_SIZE(msm_wcn_be_dai_links);
  2020. }
  2021. if (of_property_read_bool(dev->of_node,
  2022. "qcom,ext-disp-audio-rx")) {
  2023. dev_dbg(dev, "%s(): ext disp audio support present\n",
  2024. __func__);
  2025. memcpy(msm_ext_tasha_dai_links + len4,
  2026. ext_disp_be_dai_link,
  2027. sizeof(ext_disp_be_dai_link));
  2028. len4 += ARRAY_SIZE(ext_disp_be_dai_link);
  2029. }
  2030. msm_ext_dai_links = msm_ext_tasha_dai_links;
  2031. } else if (strnstr(card->name, "tavil", strlen(card->name))) {
  2032. len1 = ARRAY_SIZE(msm_ext_common_fe_dai);
  2033. len2 = len1 + ARRAY_SIZE(msm_ext_tavil_fe_dai);
  2034. len3 = len2 + ARRAY_SIZE(msm_ext_common_be_dai);
  2035. memcpy(msm_ext_tavil_dai_links, msm_ext_common_fe_dai,
  2036. sizeof(msm_ext_common_fe_dai));
  2037. memcpy(msm_ext_tavil_dai_links + len1,
  2038. msm_ext_tavil_fe_dai, sizeof(msm_ext_tavil_fe_dai));
  2039. memcpy(msm_ext_tavil_dai_links + len2,
  2040. msm_ext_common_be_dai, sizeof(msm_ext_common_be_dai));
  2041. memcpy(msm_ext_tavil_dai_links + len3,
  2042. msm_ext_tavil_be_dai, sizeof(msm_ext_tavil_be_dai));
  2043. len4 = len3 + ARRAY_SIZE(msm_ext_tavil_be_dai);
  2044. if (of_property_read_bool(dev->of_node,
  2045. "qcom,mi2s-audio-intf")) {
  2046. memcpy(msm_ext_tavil_dai_links + len4,
  2047. msm_mi2s_be_dai_links,
  2048. sizeof(msm_mi2s_be_dai_links));
  2049. len4 += ARRAY_SIZE(msm_mi2s_be_dai_links);
  2050. }
  2051. if (of_property_read_bool(dev->of_node,
  2052. "qcom,auxpcm-audio-intf")) {
  2053. memcpy(msm_ext_tavil_dai_links + len4,
  2054. msm_auxpcm_be_dai_links,
  2055. sizeof(msm_auxpcm_be_dai_links));
  2056. len4 += ARRAY_SIZE(msm_auxpcm_be_dai_links);
  2057. }
  2058. if (of_property_read_bool(dev->of_node, "qcom,wcn-btfm")) {
  2059. dev_dbg(dev, "%s(): WCN BTFM support present\n",
  2060. __func__);
  2061. memcpy(msm_ext_tavil_dai_links + len4,
  2062. msm_wcn_be_dai_links,
  2063. sizeof(msm_wcn_be_dai_links));
  2064. len4 += ARRAY_SIZE(msm_wcn_be_dai_links);
  2065. }
  2066. if (of_property_read_bool(dev->of_node,
  2067. "qcom,ext-disp-audio-rx")) {
  2068. dev_dbg(dev, "%s(): ext disp audio support present\n",
  2069. __func__);
  2070. memcpy(msm_ext_tavil_dai_links + len4,
  2071. ext_disp_be_dai_link,
  2072. sizeof(ext_disp_be_dai_link));
  2073. len4 += ARRAY_SIZE(ext_disp_be_dai_link);
  2074. }
  2075. msm_ext_dai_links = msm_ext_tavil_dai_links;
  2076. } else {
  2077. dev_err(dev, "%s: failing as no matching card name\n",
  2078. __func__);
  2079. return NULL;
  2080. }
  2081. card->dai_link = msm_ext_dai_links;
  2082. card->num_links = len4;
  2083. return card;
  2084. }
  2085. EXPORT_SYMBOL(populate_snd_card_dailinks);