sdm855.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  1. /* Copyright (c) 2016-2018, 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/clk.h>
  13. #include <linux/delay.h>
  14. #include <linux/gpio.h>
  15. #include <linux/of_gpio.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/slab.h>
  18. #include <linux/io.h>
  19. #include <linux/module.h>
  20. #include <linux/input.h>
  21. #include <linux/of_device.h>
  22. #include <sound/core.h>
  23. #include <sound/soc.h>
  24. #include <sound/soc-dapm.h>
  25. #include <sound/pcm.h>
  26. #include <sound/pcm_params.h>
  27. #include <sound/info.h>
  28. #include <dsp/audio_notifier.h>
  29. #include <dsp/q6afe-v2.h>
  30. #include <dsp/q6core.h>
  31. #include "device_event.h"
  32. #include "msm-pcm-routing-v2.h"
  33. #include "codecs/wsa881x.h"
  34. #define DRV_NAME "sdm855-asoc-snd"
  35. #define __CHIPSET__ "SDM855 "
  36. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  37. #define DEV_NAME_STR_LEN 32
  38. #define SAMPLING_RATE_8KHZ 8000
  39. #define SAMPLING_RATE_11P025KHZ 11025
  40. #define SAMPLING_RATE_16KHZ 16000
  41. #define SAMPLING_RATE_22P05KHZ 22050
  42. #define SAMPLING_RATE_32KHZ 32000
  43. #define SAMPLING_RATE_44P1KHZ 44100
  44. #define SAMPLING_RATE_48KHZ 48000
  45. #define SAMPLING_RATE_88P2KHZ 88200
  46. #define SAMPLING_RATE_96KHZ 96000
  47. #define SAMPLING_RATE_176P4KHZ 176400
  48. #define SAMPLING_RATE_192KHZ 192000
  49. #define SAMPLING_RATE_352P8KHZ 352800
  50. #define SAMPLING_RATE_384KHZ 384000
  51. struct msm_wsa881x_dev_info {
  52. struct device_node *of_node;
  53. u32 index;
  54. };
  55. struct msm_asoc_mach_data {
  56. u32 mclk_freq;
  57. struct snd_info_entry *codec_root;
  58. };
  59. struct dev_config {
  60. u32 sample_rate;
  61. u32 bit_format;
  62. u32 channels;
  63. };
  64. static struct platform_device *spdev;
  65. static struct snd_soc_aux_dev *msm_aux_dev;
  66. static struct snd_soc_codec_conf *msm_codec_conf;
  67. enum {
  68. SLIM_RX_0 = 0,
  69. SLIM_RX_MAX,
  70. };
  71. enum {
  72. SLIM_TX_0 = 0,
  73. SLIM_TX_MAX,
  74. };
  75. /* Default configuration of slimbus channels */
  76. static struct dev_config slim_rx_cfg[] = {
  77. [SLIM_RX_0] = {SAMPLING_RATE_48KHZ, SNDRV_PCM_FORMAT_S16_LE, 1},
  78. };
  79. static struct dev_config slim_tx_cfg[] = {
  80. [SLIM_TX_0] = {SAMPLING_RATE_48KHZ, SNDRV_PCM_FORMAT_S16_LE, 1},
  81. };
  82. static const char *const slim_rx_ch_text[] = {"One", "Two"};
  83. static const char *const slim_tx_ch_text[] = {"One", "Two", "Three", "Four",
  84. "Five", "Six", "Seven",
  85. "Eight"};
  86. static char const *slim_sample_rate_text[] = {"KHZ_8", "KHZ_16",
  87. "KHZ_32", "KHZ_44P1", "KHZ_48",
  88. "KHZ_88P2", "KHZ_96", "KHZ_176P4",
  89. "KHZ_192", "KHZ_352P8", "KHZ_384"};
  90. static char const *bit_format_text[] = {"S16_LE", "S24_LE", "S24_3LE",
  91. "S32_LE"};
  92. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_rx_chs, slim_rx_ch_text);
  93. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_tx_chs, slim_tx_ch_text);
  94. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_rx_format, bit_format_text);
  95. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_tx_format, bit_format_text);
  96. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_rx_sample_rate, slim_sample_rate_text);
  97. static SOC_ENUM_SINGLE_EXT_DECL(slim_0_tx_sample_rate, slim_sample_rate_text);
  98. static int slim_get_sample_rate_val(int sample_rate)
  99. {
  100. int sample_rate_val = 0;
  101. switch (sample_rate) {
  102. case SAMPLING_RATE_8KHZ:
  103. sample_rate_val = 0;
  104. break;
  105. case SAMPLING_RATE_16KHZ:
  106. sample_rate_val = 1;
  107. break;
  108. case SAMPLING_RATE_32KHZ:
  109. sample_rate_val = 2;
  110. break;
  111. case SAMPLING_RATE_44P1KHZ:
  112. sample_rate_val = 3;
  113. break;
  114. case SAMPLING_RATE_48KHZ:
  115. sample_rate_val = 4;
  116. break;
  117. case SAMPLING_RATE_88P2KHZ:
  118. sample_rate_val = 5;
  119. break;
  120. case SAMPLING_RATE_96KHZ:
  121. sample_rate_val = 6;
  122. break;
  123. case SAMPLING_RATE_176P4KHZ:
  124. sample_rate_val = 7;
  125. break;
  126. case SAMPLING_RATE_192KHZ:
  127. sample_rate_val = 8;
  128. break;
  129. case SAMPLING_RATE_352P8KHZ:
  130. sample_rate_val = 9;
  131. break;
  132. case SAMPLING_RATE_384KHZ:
  133. sample_rate_val = 10;
  134. break;
  135. default:
  136. sample_rate_val = 4;
  137. break;
  138. }
  139. return sample_rate_val;
  140. }
  141. static int slim_get_sample_rate(int value)
  142. {
  143. int sample_rate = 0;
  144. switch (value) {
  145. case 0:
  146. sample_rate = SAMPLING_RATE_8KHZ;
  147. break;
  148. case 1:
  149. sample_rate = SAMPLING_RATE_16KHZ;
  150. break;
  151. case 2:
  152. sample_rate = SAMPLING_RATE_32KHZ;
  153. break;
  154. case 3:
  155. sample_rate = SAMPLING_RATE_44P1KHZ;
  156. break;
  157. case 4:
  158. sample_rate = SAMPLING_RATE_48KHZ;
  159. break;
  160. case 5:
  161. sample_rate = SAMPLING_RATE_88P2KHZ;
  162. break;
  163. case 6:
  164. sample_rate = SAMPLING_RATE_96KHZ;
  165. break;
  166. case 7:
  167. sample_rate = SAMPLING_RATE_176P4KHZ;
  168. break;
  169. case 8:
  170. sample_rate = SAMPLING_RATE_192KHZ;
  171. break;
  172. case 9:
  173. sample_rate = SAMPLING_RATE_352P8KHZ;
  174. break;
  175. case 10:
  176. sample_rate = SAMPLING_RATE_384KHZ;
  177. break;
  178. default:
  179. sample_rate = SAMPLING_RATE_48KHZ;
  180. break;
  181. }
  182. return sample_rate;
  183. }
  184. static int slim_get_bit_format_val(int bit_format)
  185. {
  186. int val = 0;
  187. switch (bit_format) {
  188. case SNDRV_PCM_FORMAT_S32_LE:
  189. val = 3;
  190. break;
  191. case SNDRV_PCM_FORMAT_S24_3LE:
  192. val = 2;
  193. break;
  194. case SNDRV_PCM_FORMAT_S24_LE:
  195. val = 1;
  196. break;
  197. case SNDRV_PCM_FORMAT_S16_LE:
  198. default:
  199. val = 0;
  200. break;
  201. }
  202. return val;
  203. }
  204. static int slim_get_bit_format(int val)
  205. {
  206. int bit_fmt = SNDRV_PCM_FORMAT_S16_LE;
  207. switch (val) {
  208. case 0:
  209. bit_fmt = SNDRV_PCM_FORMAT_S16_LE;
  210. break;
  211. case 1:
  212. bit_fmt = SNDRV_PCM_FORMAT_S24_LE;
  213. break;
  214. case 2:
  215. bit_fmt = SNDRV_PCM_FORMAT_S24_3LE;
  216. break;
  217. case 3:
  218. bit_fmt = SNDRV_PCM_FORMAT_S32_LE;
  219. break;
  220. default:
  221. bit_fmt = SNDRV_PCM_FORMAT_S16_LE;
  222. break;
  223. }
  224. return bit_fmt;
  225. }
  226. static int slim_get_port_idx(struct snd_kcontrol *kcontrol)
  227. {
  228. int port_id = 0;
  229. if (strnstr(kcontrol->id.name, "SLIM_0_RX", sizeof("SLIM_0_RX"))) {
  230. port_id = SLIM_RX_0;
  231. } else if (strnstr(kcontrol->id.name,
  232. "SLIM_0_TX", sizeof("SLIM_0_TX"))) {
  233. port_id = SLIM_TX_0;
  234. } else {
  235. pr_err("%s: unsupported channel: %s",
  236. __func__, kcontrol->id.name);
  237. return -EINVAL;
  238. }
  239. return port_id;
  240. }
  241. static int slim_rx_sample_rate_get(struct snd_kcontrol *kcontrol,
  242. struct snd_ctl_elem_value *ucontrol)
  243. {
  244. int ch_num = slim_get_port_idx(kcontrol);
  245. if (ch_num < 0)
  246. return ch_num;
  247. ucontrol->value.enumerated.item[0] =
  248. slim_get_sample_rate_val(slim_rx_cfg[ch_num].sample_rate);
  249. pr_debug("%s: slim[%d]_rx_sample_rate = %d, item = %d\n", __func__,
  250. ch_num, slim_rx_cfg[ch_num].sample_rate,
  251. ucontrol->value.enumerated.item[0]);
  252. return 0;
  253. }
  254. static int slim_rx_sample_rate_put(struct snd_kcontrol *kcontrol,
  255. struct snd_ctl_elem_value *ucontrol)
  256. {
  257. int ch_num = slim_get_port_idx(kcontrol);
  258. if (ch_num < 0)
  259. return ch_num;
  260. slim_rx_cfg[ch_num].sample_rate =
  261. slim_get_sample_rate(ucontrol->value.enumerated.item[0]);
  262. pr_debug("%s: slim[%d]_rx_sample_rate = %d, item = %d\n", __func__,
  263. ch_num, slim_rx_cfg[ch_num].sample_rate,
  264. ucontrol->value.enumerated.item[0]);
  265. return 0;
  266. }
  267. static int slim_tx_sample_rate_get(struct snd_kcontrol *kcontrol,
  268. struct snd_ctl_elem_value *ucontrol)
  269. {
  270. int ch_num = slim_get_port_idx(kcontrol);
  271. if (ch_num < 0)
  272. return ch_num;
  273. ucontrol->value.enumerated.item[0] =
  274. slim_get_sample_rate_val(slim_tx_cfg[ch_num].sample_rate);
  275. pr_debug("%s: slim[%d]_tx_sample_rate = %d, item = %d\n", __func__,
  276. ch_num, slim_tx_cfg[ch_num].sample_rate,
  277. ucontrol->value.enumerated.item[0]);
  278. return 0;
  279. }
  280. static int slim_tx_sample_rate_put(struct snd_kcontrol *kcontrol,
  281. struct snd_ctl_elem_value *ucontrol)
  282. {
  283. int sample_rate = 0;
  284. int ch_num = slim_get_port_idx(kcontrol);
  285. if (ch_num < 0)
  286. return ch_num;
  287. sample_rate = slim_get_sample_rate(ucontrol->value.enumerated.item[0]);
  288. if (sample_rate == SAMPLING_RATE_44P1KHZ) {
  289. pr_err("%s: Unsupported sample rate %d: for Tx path\n",
  290. __func__, sample_rate);
  291. return -EINVAL;
  292. }
  293. slim_tx_cfg[ch_num].sample_rate = sample_rate;
  294. pr_debug("%s: slim[%d]_tx_sample_rate = %d, value = %d\n", __func__,
  295. ch_num, slim_tx_cfg[ch_num].sample_rate,
  296. ucontrol->value.enumerated.item[0]);
  297. return 0;
  298. }
  299. static int slim_rx_bit_format_get(struct snd_kcontrol *kcontrol,
  300. struct snd_ctl_elem_value *ucontrol)
  301. {
  302. int ch_num = slim_get_port_idx(kcontrol);
  303. if (ch_num < 0)
  304. return ch_num;
  305. ucontrol->value.enumerated.item[0] =
  306. slim_get_bit_format_val(slim_rx_cfg[ch_num].bit_format);
  307. pr_debug("%s: slim[%d]_rx_bit_format = %d, ucontrol value = %d\n",
  308. __func__, ch_num, slim_rx_cfg[ch_num].bit_format,
  309. ucontrol->value.enumerated.item[0]);
  310. return 0;
  311. }
  312. static int slim_rx_bit_format_put(struct snd_kcontrol *kcontrol,
  313. struct snd_ctl_elem_value *ucontrol)
  314. {
  315. int ch_num = slim_get_port_idx(kcontrol);
  316. if (ch_num < 0)
  317. return ch_num;
  318. slim_rx_cfg[ch_num].bit_format =
  319. slim_get_bit_format(ucontrol->value.enumerated.item[0]);
  320. pr_debug("%s: slim[%d]_rx_bit_format = %d, ucontrol value = %d\n",
  321. __func__, ch_num, slim_rx_cfg[ch_num].bit_format,
  322. ucontrol->value.enumerated.item[0]);
  323. return 0;
  324. }
  325. static int slim_tx_bit_format_get(struct snd_kcontrol *kcontrol,
  326. struct snd_ctl_elem_value *ucontrol)
  327. {
  328. int ch_num = slim_get_port_idx(kcontrol);
  329. if (ch_num < 0)
  330. return ch_num;
  331. ucontrol->value.enumerated.item[0] =
  332. slim_get_bit_format_val(slim_tx_cfg[ch_num].bit_format);
  333. pr_debug("%s: slim[%d]_tx_bit_format = %d, ucontrol value = %d\n",
  334. __func__, ch_num, slim_tx_cfg[ch_num].bit_format,
  335. ucontrol->value.enumerated.item[0]);
  336. return 0;
  337. }
  338. static int slim_tx_bit_format_put(struct snd_kcontrol *kcontrol,
  339. struct snd_ctl_elem_value *ucontrol)
  340. {
  341. int ch_num = slim_get_port_idx(kcontrol);
  342. if (ch_num < 0)
  343. return ch_num;
  344. slim_tx_cfg[ch_num].bit_format =
  345. slim_get_bit_format(ucontrol->value.enumerated.item[0]);
  346. pr_debug("%s: slim[%d]_tx_bit_format = %d, ucontrol value = %d\n",
  347. __func__, ch_num, slim_tx_cfg[ch_num].bit_format,
  348. ucontrol->value.enumerated.item[0]);
  349. return 0;
  350. }
  351. static int slim_rx_ch_get(struct snd_kcontrol *kcontrol,
  352. struct snd_ctl_elem_value *ucontrol)
  353. {
  354. int ch_num = slim_get_port_idx(kcontrol);
  355. if (ch_num < 0)
  356. return ch_num;
  357. pr_debug("%s: msm_slim_[%d]_rx_ch = %d\n", __func__,
  358. ch_num, slim_rx_cfg[ch_num].channels);
  359. ucontrol->value.enumerated.item[0] = slim_rx_cfg[ch_num].channels - 1;
  360. return 0;
  361. }
  362. static int slim_rx_ch_put(struct snd_kcontrol *kcontrol,
  363. struct snd_ctl_elem_value *ucontrol)
  364. {
  365. int ch_num = slim_get_port_idx(kcontrol);
  366. if (ch_num < 0)
  367. return ch_num;
  368. slim_rx_cfg[ch_num].channels = ucontrol->value.enumerated.item[0] + 1;
  369. pr_debug("%s: msm_slim_[%d]_rx_ch = %d\n", __func__,
  370. ch_num, slim_rx_cfg[ch_num].channels);
  371. return 1;
  372. }
  373. static int slim_tx_ch_get(struct snd_kcontrol *kcontrol,
  374. struct snd_ctl_elem_value *ucontrol)
  375. {
  376. int ch_num = slim_get_port_idx(kcontrol);
  377. if (ch_num < 0)
  378. return ch_num;
  379. pr_debug("%s: msm_slim_[%d]_tx_ch = %d\n", __func__,
  380. ch_num, slim_tx_cfg[ch_num].channels);
  381. ucontrol->value.enumerated.item[0] = slim_tx_cfg[ch_num].channels - 1;
  382. return 0;
  383. }
  384. static int slim_tx_ch_put(struct snd_kcontrol *kcontrol,
  385. struct snd_ctl_elem_value *ucontrol)
  386. {
  387. int ch_num = slim_get_port_idx(kcontrol);
  388. if (ch_num < 0)
  389. return ch_num;
  390. slim_tx_cfg[ch_num].channels = ucontrol->value.enumerated.item[0] + 1;
  391. pr_debug("%s: msm_slim_[%d]_tx_ch = %d\n", __func__,
  392. ch_num, slim_tx_cfg[ch_num].channels);
  393. return 1;
  394. }
  395. static const struct snd_kcontrol_new msm_snd_controls[] = {
  396. SOC_ENUM_EXT("SLIM_0_RX Channels", slim_0_rx_chs,
  397. slim_rx_ch_get, slim_rx_ch_put),
  398. SOC_ENUM_EXT("SLIM_0_TX Channels", slim_0_tx_chs,
  399. slim_tx_ch_get, slim_tx_ch_put),
  400. SOC_ENUM_EXT("SLIM_0_RX Format", slim_0_rx_format,
  401. slim_rx_bit_format_get, slim_rx_bit_format_put),
  402. SOC_ENUM_EXT("SLIM_0_TX Format", slim_0_tx_format,
  403. slim_tx_bit_format_get, slim_tx_bit_format_put),
  404. SOC_ENUM_EXT("SLIM_0_RX SampleRate", slim_0_rx_sample_rate,
  405. slim_rx_sample_rate_get, slim_rx_sample_rate_put),
  406. SOC_ENUM_EXT("SLIM_0_TX SampleRate", slim_0_tx_sample_rate,
  407. slim_tx_sample_rate_get, slim_tx_sample_rate_put),
  408. };
  409. static inline int param_is_mask(int p)
  410. {
  411. return (p >= SNDRV_PCM_HW_PARAM_FIRST_MASK) &&
  412. (p <= SNDRV_PCM_HW_PARAM_LAST_MASK);
  413. }
  414. static inline struct snd_mask *param_to_mask(struct snd_pcm_hw_params *p,
  415. int n)
  416. {
  417. return &(p->masks[n - SNDRV_PCM_HW_PARAM_FIRST_MASK]);
  418. }
  419. static void param_set_mask(struct snd_pcm_hw_params *p, int n,
  420. unsigned int bit)
  421. {
  422. if (bit >= SNDRV_MASK_MAX)
  423. return;
  424. if (param_is_mask(n)) {
  425. struct snd_mask *m = param_to_mask(p, n);
  426. m->bits[0] = 0;
  427. m->bits[1] = 0;
  428. m->bits[bit >> 5] |= (1 << (bit & 31));
  429. }
  430. }
  431. static int msm_slim_get_ch_from_beid(int32_t be_id)
  432. {
  433. int ch_id = 0;
  434. switch (be_id) {
  435. case MSM_BACKEND_DAI_SLIMBUS_0_RX:
  436. ch_id = SLIM_RX_0;
  437. break;
  438. case MSM_BACKEND_DAI_SLIMBUS_0_TX:
  439. ch_id = SLIM_TX_0;
  440. break;
  441. default:
  442. ch_id = SLIM_RX_0;
  443. break;
  444. }
  445. return ch_id;
  446. }
  447. static int msm_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
  448. struct snd_pcm_hw_params *params)
  449. {
  450. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  451. struct snd_interval *rate = hw_param_interval(params,
  452. SNDRV_PCM_HW_PARAM_RATE);
  453. struct snd_interval *channels = hw_param_interval(params,
  454. SNDRV_PCM_HW_PARAM_CHANNELS);
  455. int rc = 0;
  456. int idx;
  457. pr_debug("%s: format = %d, rate = %d\n",
  458. __func__, params_format(params), params_rate(params));
  459. switch (dai_link->id) {
  460. case MSM_BACKEND_DAI_SLIMBUS_0_RX:
  461. idx = msm_slim_get_ch_from_beid(dai_link->id);
  462. param_set_mask(params, SNDRV_PCM_HW_PARAM_FORMAT,
  463. slim_rx_cfg[idx].bit_format);
  464. rate->min = rate->max = slim_rx_cfg[idx].sample_rate;
  465. channels->min = channels->max = slim_rx_cfg[idx].channels;
  466. break;
  467. case MSM_BACKEND_DAI_SLIMBUS_0_TX:
  468. idx = msm_slim_get_ch_from_beid(dai_link->id);
  469. param_set_mask(params, SNDRV_PCM_HW_PARAM_FORMAT,
  470. slim_tx_cfg[idx].bit_format);
  471. rate->min = rate->max = slim_tx_cfg[idx].sample_rate;
  472. channels->min = channels->max = slim_tx_cfg[idx].channels;
  473. break;
  474. default:
  475. rate->min = rate->max = SAMPLING_RATE_48KHZ;
  476. break;
  477. }
  478. return rc;
  479. }
  480. static int msm_populate_dai_link_component_of_node(
  481. struct snd_soc_card *card)
  482. {
  483. int i, index, ret = 0;
  484. struct device *cdev = card->dev;
  485. struct snd_soc_dai_link *dai_link = card->dai_link;
  486. struct device_node *np;
  487. if (!cdev) {
  488. pr_err("%s: Sound card device memory NULL\n", __func__);
  489. return -ENODEV;
  490. }
  491. for (i = 0; i < card->num_links; i++) {
  492. if (dai_link[i].platform_of_node && dai_link[i].cpu_of_node)
  493. continue;
  494. /* populate platform_of_node for snd card dai links */
  495. if (dai_link[i].platform_name &&
  496. !dai_link[i].platform_of_node) {
  497. index = of_property_match_string(cdev->of_node,
  498. "asoc-platform-names",
  499. dai_link[i].platform_name);
  500. if (index < 0) {
  501. pr_err("%s: No match found for platform name: %s\n",
  502. __func__, dai_link[i].platform_name);
  503. ret = index;
  504. goto err;
  505. }
  506. np = of_parse_phandle(cdev->of_node, "asoc-platform",
  507. index);
  508. if (!np) {
  509. pr_err("%s: retrieving phandle for platform %s, index %d failed\n",
  510. __func__, dai_link[i].platform_name,
  511. index);
  512. ret = -ENODEV;
  513. goto err;
  514. }
  515. dai_link[i].platform_of_node = np;
  516. dai_link[i].platform_name = NULL;
  517. }
  518. /* populate cpu_of_node for snd card dai links */
  519. if (dai_link[i].cpu_dai_name && !dai_link[i].cpu_of_node) {
  520. index = of_property_match_string(cdev->of_node,
  521. "asoc-cpu-names",
  522. dai_link[i].cpu_dai_name);
  523. if (index >= 0) {
  524. np = of_parse_phandle(cdev->of_node, "asoc-cpu",
  525. index);
  526. if (!np) {
  527. pr_err("%s: retrieving phandle for cpu dai %s failed\n",
  528. __func__,
  529. dai_link[i].cpu_dai_name);
  530. ret = -ENODEV;
  531. goto err;
  532. }
  533. dai_link[i].cpu_of_node = np;
  534. dai_link[i].cpu_dai_name = NULL;
  535. }
  536. }
  537. /* populate codec_of_node for snd card dai links */
  538. if (dai_link[i].codec_name && !dai_link[i].codec_of_node) {
  539. index = of_property_match_string(cdev->of_node,
  540. "asoc-codec-names",
  541. dai_link[i].codec_name);
  542. if (index < 0)
  543. continue;
  544. np = of_parse_phandle(cdev->of_node, "asoc-codec",
  545. index);
  546. if (!np) {
  547. pr_err("%s: retrieving phandle for codec %s failed\n",
  548. __func__, dai_link[i].codec_name);
  549. ret = -ENODEV;
  550. goto err;
  551. }
  552. dai_link[i].codec_of_node = np;
  553. dai_link[i].codec_name = NULL;
  554. }
  555. }
  556. err:
  557. return ret;
  558. }
  559. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  560. {
  561. int ret = 0;
  562. struct snd_soc_codec *codec = rtd->codec;
  563. ret = snd_soc_add_codec_controls(codec, msm_snd_controls,
  564. ARRAY_SIZE(msm_snd_controls));
  565. if (ret < 0) {
  566. dev_err(codec->dev,
  567. "%s: add_codec_controls failed, err = %d\n",
  568. __func__, ret);
  569. return ret;
  570. }
  571. return 0;
  572. }
  573. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  574. struct snd_pcm_hw_params *params)
  575. {
  576. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  577. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  578. int ret = 0;
  579. unsigned int rx_ch[] = {144, 145, 146, 147, 148, 149, 150,
  580. 151};
  581. unsigned int tx_ch[] = {128, 129, 130, 131, 132, 133,
  582. 134, 135, 136, 137, 138, 139,
  583. 140, 141, 142, 143};
  584. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  585. ret = snd_soc_dai_set_channel_map(cpu_dai, 0, 0,
  586. slim_rx_cfg[SLIM_RX_0].channels,
  587. rx_ch);
  588. if (ret < 0)
  589. pr_err("%s: RX failed to set cpu chan map error %d\n",
  590. __func__, ret);
  591. } else {
  592. ret = snd_soc_dai_set_channel_map(cpu_dai,
  593. slim_tx_cfg[SLIM_TX_0].channels,
  594. tx_ch, 0, 0);
  595. if (ret < 0)
  596. pr_err("%s: TX failed to set cpu chan map error %d\n",
  597. __func__, ret);
  598. }
  599. return ret;
  600. }
  601. static struct snd_soc_ops msm_stub_be_ops = {
  602. .hw_params = msm_snd_stub_hw_params,
  603. };
  604. static struct snd_soc_dai_link msm_stub_fe_dai_links[] = {
  605. /* FrontEnd DAI Links */
  606. {
  607. .name = "MSMSTUB Media1",
  608. .stream_name = "MultiMedia1",
  609. .cpu_dai_name = "MultiMedia1",
  610. .platform_name = "msm-pcm-dsp.0",
  611. .dynamic = 1,
  612. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  613. .dpcm_playback = 1,
  614. .dpcm_capture = 1,
  615. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  616. SND_SOC_DPCM_TRIGGER_POST},
  617. .codec_dai_name = "snd-soc-dummy-dai",
  618. .codec_name = "snd-soc-dummy",
  619. .ignore_suspend = 1,
  620. /* this dainlink has playback support */
  621. .ignore_pmdown_time = 1,
  622. .id = MSM_FRONTEND_DAI_MULTIMEDIA1
  623. },
  624. };
  625. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  626. /* Backend DAI Links */
  627. {
  628. .name = LPASS_BE_SLIMBUS_0_RX,
  629. .stream_name = "Slimbus Playback",
  630. .cpu_dai_name = "msm-dai-q6-dev.16384",
  631. .platform_name = "msm-pcm-routing",
  632. .codec_name = "msm-stub-codec.1",
  633. .codec_dai_name = "msm-stub-rx",
  634. .no_pcm = 1,
  635. .dpcm_playback = 1,
  636. .id = MSM_BACKEND_DAI_SLIMBUS_0_RX,
  637. .init = &msm_audrx_stub_init,
  638. .be_hw_params_fixup = msm_be_hw_params_fixup,
  639. .ignore_pmdown_time = 1, /* dai link has playback support */
  640. .ignore_suspend = 1,
  641. .ops = &msm_stub_be_ops,
  642. },
  643. {
  644. .name = LPASS_BE_SLIMBUS_0_TX,
  645. .stream_name = "Slimbus Capture",
  646. .cpu_dai_name = "msm-dai-q6-dev.16385",
  647. .platform_name = "msm-pcm-routing",
  648. .codec_name = "msm-stub-codec.1",
  649. .codec_dai_name = "msm-stub-tx",
  650. .no_pcm = 1,
  651. .dpcm_capture = 1,
  652. .id = MSM_BACKEND_DAI_SLIMBUS_0_TX,
  653. .be_hw_params_fixup = msm_be_hw_params_fixup,
  654. .ignore_suspend = 1,
  655. .ops = &msm_stub_be_ops,
  656. },
  657. };
  658. static struct snd_soc_dai_link msm_stub_dai_links[
  659. ARRAY_SIZE(msm_stub_fe_dai_links) +
  660. ARRAY_SIZE(msm_stub_be_dai_links)];
  661. struct snd_soc_card snd_soc_card_stub_msm = {
  662. .name = "sdm855-stub-snd-card",
  663. };
  664. static const struct of_device_id sdm855_asoc_machine_of_match[] = {
  665. { .compatible = "qcom,sdm855-asoc-snd-stub",
  666. .data = "stub_codec"},
  667. {},
  668. };
  669. static int sdm855_notifier_service_cb(struct notifier_block *this,
  670. unsigned long opcode, void *ptr)
  671. {
  672. return NOTIFY_OK;
  673. }
  674. static struct notifier_block service_nb = {
  675. .notifier_call = sdm855_notifier_service_cb,
  676. .priority = -INT_MAX,
  677. };
  678. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
  679. {
  680. struct snd_soc_card *card = NULL;
  681. struct snd_soc_dai_link *dailink;
  682. int len_1, len_2;
  683. int total_links;
  684. const struct of_device_id *match;
  685. match = of_match_node(sdm855_asoc_machine_of_match, dev->of_node);
  686. if (!match) {
  687. dev_err(dev, "%s: No DT match found for sound card\n",
  688. __func__);
  689. return NULL;
  690. }
  691. if (!strcmp(match->data, "stub_codec")) {
  692. card = &snd_soc_card_stub_msm;
  693. len_1 = ARRAY_SIZE(msm_stub_fe_dai_links);
  694. len_2 = len_1 + ARRAY_SIZE(msm_stub_be_dai_links);
  695. memcpy(msm_stub_dai_links,
  696. msm_stub_fe_dai_links,
  697. sizeof(msm_stub_fe_dai_links));
  698. memcpy(msm_stub_dai_links + len_1,
  699. msm_stub_be_dai_links,
  700. sizeof(msm_stub_be_dai_links));
  701. dailink = msm_stub_dai_links;
  702. total_links = len_2;
  703. }
  704. if (card) {
  705. card->dai_link = dailink;
  706. card->num_links = total_links;
  707. }
  708. return card;
  709. }
  710. static int msm_wsa881x_init(struct snd_soc_component *component)
  711. {
  712. u8 spkleft_ports[WSA881X_MAX_SWR_PORTS] = {100, 101, 102, 106};
  713. u8 spkright_ports[WSA881X_MAX_SWR_PORTS] = {103, 104, 105, 107};
  714. unsigned int ch_rate[WSA881X_MAX_SWR_PORTS] = {2400, 600, 300, 1200};
  715. unsigned int ch_mask[WSA881X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  716. struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
  717. struct msm_asoc_mach_data *pdata;
  718. struct snd_soc_dapm_context *dapm;
  719. int ret = 0;
  720. if (!codec) {
  721. pr_err("%s codec is NULL\n", __func__);
  722. return -EINVAL;
  723. }
  724. dapm = snd_soc_codec_get_dapm(codec);
  725. if (!strcmp(component->name_prefix, "SpkrLeft")) {
  726. dev_dbg(codec->dev, "%s: setting left ch map to codec %s\n",
  727. __func__, codec->component.name);
  728. wsa881x_set_channel_map(codec, &spkleft_ports[0],
  729. WSA881X_MAX_SWR_PORTS, &ch_mask[0],
  730. &ch_rate[0]);
  731. if (dapm->component) {
  732. snd_soc_dapm_ignore_suspend(dapm, "SpkrLeft IN");
  733. snd_soc_dapm_ignore_suspend(dapm, "SpkrLeft SPKR");
  734. }
  735. } else if (!strcmp(component->name_prefix, "SpkrRight")) {
  736. dev_dbg(codec->dev, "%s: setting right ch map to codec %s\n",
  737. __func__, codec->component.name);
  738. wsa881x_set_channel_map(codec, &spkright_ports[0],
  739. WSA881X_MAX_SWR_PORTS, &ch_mask[0],
  740. &ch_rate[0]);
  741. if (dapm->component) {
  742. snd_soc_dapm_ignore_suspend(dapm, "SpkrRight IN");
  743. snd_soc_dapm_ignore_suspend(dapm, "SpkrRight SPKR");
  744. }
  745. } else {
  746. dev_err(codec->dev, "%s: wrong codec name %s\n", __func__,
  747. codec->component.name);
  748. ret = -EINVAL;
  749. goto err;
  750. }
  751. pdata = snd_soc_card_get_drvdata(component->card);
  752. if (pdata && pdata->codec_root)
  753. wsa881x_codec_info_create_codec_entry(pdata->codec_root,
  754. codec);
  755. err:
  756. return ret;
  757. }
  758. static int msm_init_wsa_dev(struct platform_device *pdev,
  759. struct snd_soc_card *card)
  760. {
  761. struct device_node *wsa_of_node;
  762. u32 wsa_max_devs;
  763. u32 wsa_dev_cnt;
  764. int i;
  765. struct msm_wsa881x_dev_info *wsa881x_dev_info;
  766. const char *wsa_auxdev_name_prefix[1];
  767. char *dev_name_str = NULL;
  768. int found = 0;
  769. int ret = 0;
  770. /* Get maximum WSA device count for this platform */
  771. ret = of_property_read_u32(pdev->dev.of_node,
  772. "qcom,wsa-max-devs", &wsa_max_devs);
  773. if (ret) {
  774. dev_info(&pdev->dev,
  775. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  776. __func__, pdev->dev.of_node->full_name, ret);
  777. card->num_aux_devs = 0;
  778. return 0;
  779. }
  780. if (wsa_max_devs == 0) {
  781. dev_warn(&pdev->dev,
  782. "%s: Max WSA devices is 0 for this target?\n",
  783. __func__);
  784. card->num_aux_devs = 0;
  785. return 0;
  786. }
  787. /* Get count of WSA device phandles for this platform */
  788. wsa_dev_cnt = of_count_phandle_with_args(pdev->dev.of_node,
  789. "qcom,wsa-devs", NULL);
  790. if (wsa_dev_cnt == -ENOENT) {
  791. dev_warn(&pdev->dev, "%s: No wsa device defined in DT.\n",
  792. __func__);
  793. goto err;
  794. } else if (wsa_dev_cnt <= 0) {
  795. dev_err(&pdev->dev,
  796. "%s: Error reading wsa device from DT. wsa_dev_cnt = %d\n",
  797. __func__, wsa_dev_cnt);
  798. ret = -EINVAL;
  799. goto err;
  800. }
  801. /*
  802. * Expect total phandles count to be NOT less than maximum possible
  803. * WSA count. However, if it is less, then assign same value to
  804. * max count as well.
  805. */
  806. if (wsa_dev_cnt < wsa_max_devs) {
  807. dev_dbg(&pdev->dev,
  808. "%s: wsa_max_devs = %d cannot exceed wsa_dev_cnt = %d\n",
  809. __func__, wsa_max_devs, wsa_dev_cnt);
  810. wsa_max_devs = wsa_dev_cnt;
  811. }
  812. /* Make sure prefix string passed for each WSA device */
  813. ret = of_property_count_strings(pdev->dev.of_node,
  814. "qcom,wsa-aux-dev-prefix");
  815. if (ret != wsa_dev_cnt) {
  816. dev_err(&pdev->dev,
  817. "%s: expecting %d wsa prefix. Defined only %d in DT\n",
  818. __func__, wsa_dev_cnt, ret);
  819. ret = -EINVAL;
  820. goto err;
  821. }
  822. /*
  823. * Alloc mem to store phandle and index info of WSA device, if already
  824. * registered with ALSA core
  825. */
  826. wsa881x_dev_info = devm_kcalloc(&pdev->dev, wsa_max_devs,
  827. sizeof(struct msm_wsa881x_dev_info),
  828. GFP_KERNEL);
  829. if (!wsa881x_dev_info) {
  830. ret = -ENOMEM;
  831. goto err;
  832. }
  833. /*
  834. * search and check whether all WSA devices are already
  835. * registered with ALSA core or not. If found a node, store
  836. * the node and the index in a local array of struct for later
  837. * use.
  838. */
  839. for (i = 0; i < wsa_dev_cnt; i++) {
  840. wsa_of_node = of_parse_phandle(pdev->dev.of_node,
  841. "qcom,wsa-devs", i);
  842. if (unlikely(!wsa_of_node)) {
  843. /* we should not be here */
  844. dev_err(&pdev->dev,
  845. "%s: wsa dev node is not present\n",
  846. __func__);
  847. ret = -EINVAL;
  848. goto err_free_dev_info;
  849. }
  850. if (soc_find_component(wsa_of_node, NULL)) {
  851. /* WSA device registered with ALSA core */
  852. wsa881x_dev_info[found].of_node = wsa_of_node;
  853. wsa881x_dev_info[found].index = i;
  854. found++;
  855. if (found == wsa_max_devs)
  856. break;
  857. }
  858. }
  859. if (found < wsa_max_devs) {
  860. dev_dbg(&pdev->dev,
  861. "%s: failed to find %d components. Found only %d\n",
  862. __func__, wsa_max_devs, found);
  863. return -EPROBE_DEFER;
  864. }
  865. dev_info(&pdev->dev,
  866. "%s: found %d wsa881x devices registered with ALSA core\n",
  867. __func__, found);
  868. card->num_aux_devs = wsa_max_devs;
  869. card->num_configs = wsa_max_devs;
  870. /* Alloc array of AUX devs struct */
  871. msm_aux_dev = devm_kcalloc(&pdev->dev, card->num_aux_devs,
  872. sizeof(struct snd_soc_aux_dev),
  873. GFP_KERNEL);
  874. if (!msm_aux_dev) {
  875. ret = -ENOMEM;
  876. goto err_free_dev_info;
  877. }
  878. /* Alloc array of codec conf struct */
  879. msm_codec_conf = devm_kcalloc(&pdev->dev, card->num_aux_devs,
  880. sizeof(struct snd_soc_codec_conf),
  881. GFP_KERNEL);
  882. if (!msm_codec_conf) {
  883. ret = -ENOMEM;
  884. goto err_free_aux_dev;
  885. }
  886. for (i = 0; i < card->num_aux_devs; i++) {
  887. dev_name_str = devm_kzalloc(&pdev->dev, DEV_NAME_STR_LEN,
  888. GFP_KERNEL);
  889. if (!dev_name_str) {
  890. ret = -ENOMEM;
  891. goto err_free_cdc_conf;
  892. }
  893. ret = of_property_read_string_index(pdev->dev.of_node,
  894. "qcom,wsa-aux-dev-prefix",
  895. wsa881x_dev_info[i].index,
  896. wsa_auxdev_name_prefix);
  897. if (ret) {
  898. dev_err(&pdev->dev,
  899. "%s: failed to read wsa aux dev prefix, ret = %d\n",
  900. __func__, ret);
  901. ret = -EINVAL;
  902. goto err_free_dev_name_str;
  903. }
  904. snprintf(dev_name_str, strlen("wsa881x.%d"), "wsa881x.%d", i);
  905. msm_aux_dev[i].name = dev_name_str;
  906. msm_aux_dev[i].codec_name = NULL;
  907. msm_aux_dev[i].codec_of_node =
  908. wsa881x_dev_info[i].of_node;
  909. msm_aux_dev[i].init = msm_wsa881x_init;
  910. msm_codec_conf[i].dev_name = NULL;
  911. msm_codec_conf[i].name_prefix = wsa_auxdev_name_prefix[0];
  912. msm_codec_conf[i].of_node =
  913. wsa881x_dev_info[i].of_node;
  914. }
  915. card->codec_conf = msm_codec_conf;
  916. card->aux_dev = msm_aux_dev;
  917. return 0;
  918. err_free_dev_name_str:
  919. devm_kfree(&pdev->dev, dev_name_str);
  920. err_free_cdc_conf:
  921. devm_kfree(&pdev->dev, msm_codec_conf);
  922. err_free_aux_dev:
  923. devm_kfree(&pdev->dev, msm_aux_dev);
  924. err_free_dev_info:
  925. devm_kfree(&pdev->dev, wsa881x_dev_info);
  926. err:
  927. return ret;
  928. }
  929. static int msm_asoc_machine_probe(struct platform_device *pdev)
  930. {
  931. struct snd_soc_card *card;
  932. struct msm_asoc_mach_data *pdata;
  933. const struct of_device_id *match;
  934. int ret;
  935. if (!pdev->dev.of_node) {
  936. dev_err(&pdev->dev, "No platform supplied from device tree\n");
  937. return -EINVAL;
  938. }
  939. pdata = devm_kzalloc(&pdev->dev,
  940. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  941. if (!pdata)
  942. return -ENOMEM;
  943. card = populate_snd_card_dailinks(&pdev->dev);
  944. if (!card) {
  945. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  946. ret = -EINVAL;
  947. goto err;
  948. }
  949. card->dev = &pdev->dev;
  950. platform_set_drvdata(pdev, card);
  951. snd_soc_card_set_drvdata(card, pdata);
  952. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  953. if (ret) {
  954. dev_err(&pdev->dev, "parse card name failed, err:%d\n",
  955. ret);
  956. goto err;
  957. }
  958. match = of_match_node(sdm855_asoc_machine_of_match,
  959. pdev->dev.of_node);
  960. if (!match) {
  961. dev_err(&pdev->dev, "%s: no matched codec is found.\n",
  962. __func__);
  963. goto err;
  964. }
  965. ret = msm_populate_dai_link_component_of_node(card);
  966. if (ret) {
  967. ret = -EPROBE_DEFER;
  968. goto err;
  969. }
  970. ret = msm_init_wsa_dev(pdev, card);
  971. if (ret)
  972. goto err;
  973. ret = devm_snd_soc_register_card(&pdev->dev, card);
  974. if (ret) {
  975. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  976. __func__, ret);
  977. goto err;
  978. }
  979. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  980. __func__, card->name);
  981. spdev = pdev;
  982. ret = audio_notifier_register("sdm855", AUDIO_NOTIFIER_ADSP_DOMAIN,
  983. &service_nb);
  984. if (ret < 0)
  985. pr_err("%s: Audio notifier register failed ret = %d\n",
  986. __func__, ret);
  987. return 0;
  988. err:
  989. devm_kfree(&pdev->dev, pdata);
  990. return ret;
  991. }
  992. static int msm_asoc_machine_remove(struct platform_device *pdev)
  993. {
  994. struct snd_soc_card *card = platform_get_drvdata(pdev);
  995. snd_soc_unregister_card(card);
  996. audio_notifier_deregister("sdm855");
  997. return 0;
  998. }
  999. static struct platform_driver sdm855_asoc_machine_driver = {
  1000. .driver = {
  1001. .name = DRV_NAME,
  1002. .owner = THIS_MODULE,
  1003. .pm = &snd_soc_pm_ops,
  1004. .of_match_table = sdm855_asoc_machine_of_match,
  1005. },
  1006. .probe = msm_asoc_machine_probe,
  1007. .remove = msm_asoc_machine_remove,
  1008. };
  1009. module_platform_driver(sdm855_asoc_machine_driver);
  1010. MODULE_DESCRIPTION("ALSA SoC msm");
  1011. MODULE_LICENSE("GPL v2");
  1012. MODULE_ALIAS("platform:" DRV_NAME);
  1013. MODULE_DEVICE_TABLE(of, sdm855_asoc_machine_of_match);