msm-pcm-host-voice-v2.c 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546
  1. /* Copyright (c) 2013-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/init.h>
  13. #include <linux/err.h>
  14. #include <linux/module.h>
  15. #include <linux/time.h>
  16. #include <linux/wait.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/slab.h>
  19. #include <linux/dma-mapping.h>
  20. #include <sound/core.h>
  21. #include <sound/soc.h>
  22. #include <sound/soc-dapm.h>
  23. #include <sound/pcm.h>
  24. #include <sound/initval.h>
  25. #include <sound/control.h>
  26. #include <asm/dma.h>
  27. #include <dsp/msm_audio_ion.h>
  28. #include <dsp/q6voice.h>
  29. #define HPCM_MAX_Q_LEN 2
  30. #define HPCM_MIN_VOC_PKT_SIZE 320
  31. #define HPCM_MAX_VOC_PKT_SIZE 640
  32. #define VHPCM_BLOCK_SIZE 4096
  33. #define CACHE_ALIGNMENT_SIZE 128
  34. #define CACHE_ALIGNMENT_MASK 0xFFFFFF80
  35. #define VOICE_TX_CAPTURE_DAI_ID "CS-VOICE HOST TX CAPTURE"
  36. #define VOICE_TX_PLAYBACK_DAI_ID "CS-VOICE HOST TX PLAYBACK"
  37. #define VOICE_RX_CAPTURE_DAI_ID "CS-VOICE HOST RX CAPTURE"
  38. #define VOICE_RX_PLAYBACK_DAI_ID "CS-VOICE HOST RX PLAYBACK"
  39. #define VOLTE_TX_CAPTURE_DAI_ID "VOLTE HOST TX CAPTURE"
  40. #define VOLTE_TX_PLAYBACK_DAI_ID "VOLTE HOST TX PLAYBACK"
  41. #define VOLTE_RX_CAPTURE_DAI_ID "VOLTE HOST RX CAPTURE"
  42. #define VOLTE_RX_PLAYBACK_DAI_ID "VOLTE HOST RX PLAYBACK"
  43. #define VoMMode1_TX_CAPTURE_DAI_ID "VoiceMMode1 HOST TX CAPTURE"
  44. #define VoMMode1_TX_PLAYBACK_DAI_ID "VoiceMMode1 HOST TX PLAYBACK"
  45. #define VoMMode1_RX_CAPTURE_DAI_ID "VoiceMMode1 HOST RX CAPTURE"
  46. #define VoMMode1_RX_PLAYBACK_DAI_ID "VoiceMMode1 HOST RX PLAYBACK"
  47. #define VoMMode2_TX_CAPTURE_DAI_ID "VoiceMMode2 HOST TX CAPTURE"
  48. #define VoMMode2_TX_PLAYBACK_DAI_ID "VoiceMMode2 HOST TX PLAYBACK"
  49. #define VoMMode2_RX_CAPTURE_DAI_ID "VoiceMMode2 HOST RX CAPTURE"
  50. #define VoMMode2_RX_PLAYBACK_DAI_ID "VoiceMMode2 HOST RX PLAYBACK"
  51. enum {
  52. RX = 1,
  53. TX,
  54. };
  55. enum {
  56. VOICE_INDEX = 0,
  57. VOLTE_INDEX,
  58. VOMMODE1_INDEX,
  59. VOMMODE2_INDEX,
  60. MAX_SESSION
  61. };
  62. enum hpcm_state {
  63. HPCM_STOPPED = 1,
  64. HPCM_CLOSED,
  65. HPCM_PREPARED,
  66. HPCM_STARTED,
  67. };
  68. struct hpcm_frame {
  69. uint32_t len;
  70. uint8_t voc_pkt[HPCM_MAX_VOC_PKT_SIZE];
  71. };
  72. struct hpcm_buf_node {
  73. struct list_head list;
  74. struct hpcm_frame frame;
  75. };
  76. struct vocpcm_ion_buffer {
  77. /* Physical address */
  78. phys_addr_t paddr;
  79. /* Kernel virtual address */
  80. void *kvaddr;
  81. };
  82. struct dai_data {
  83. enum hpcm_state state;
  84. struct snd_pcm_substream *substream;
  85. struct list_head filled_queue;
  86. struct list_head free_queue;
  87. wait_queue_head_t queue_wait;
  88. spinlock_t dsp_lock;
  89. uint32_t pcm_size;
  90. uint32_t pcm_count;
  91. /* IRQ position */
  92. uint32_t pcm_irq_pos;
  93. /* Position in buffer */
  94. uint32_t pcm_buf_pos;
  95. struct vocpcm_ion_buffer vocpcm_ion_buffer;
  96. };
  97. struct tap_point {
  98. struct dai_data playback_dai_data;
  99. struct dai_data capture_dai_data;
  100. };
  101. struct session {
  102. struct tap_point tx_tap_point;
  103. struct tap_point rx_tap_point;
  104. phys_addr_t sess_paddr;
  105. void *sess_kvaddr;
  106. struct ion_handle *ion_handle;
  107. struct mem_map_table tp_mem_table;
  108. };
  109. struct tappnt_mxr_data {
  110. bool enable;
  111. uint16_t direction;
  112. uint16_t sample_rate;
  113. };
  114. /* Values from mixer ctl are cached in this structure */
  115. struct mixer_conf {
  116. int8_t sess_indx;
  117. struct tappnt_mxr_data rx;
  118. struct tappnt_mxr_data tx;
  119. };
  120. struct start_cmd {
  121. struct vss_ivpcm_tap_point tap_pnt[2];
  122. uint32_t no_of_tapoints;
  123. };
  124. struct hpcm_drv {
  125. struct mutex lock;
  126. struct session session[MAX_SESSION];
  127. struct mixer_conf mixer_conf;
  128. struct ion_client *ion_client;
  129. struct start_cmd start_cmd;
  130. };
  131. static struct hpcm_drv hpcm_drv;
  132. static struct snd_pcm_hardware msm_pcm_hardware = {
  133. .info = (SNDRV_PCM_INFO_MMAP |
  134. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  135. SNDRV_PCM_INFO_MMAP_VALID |
  136. SNDRV_PCM_INFO_INTERLEAVED),
  137. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  138. SNDRV_PCM_FMTBIT_SPECIAL,
  139. .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000,
  140. .rate_min = 8000,
  141. .rate_max = 16000,
  142. .channels_min = 1,
  143. .channels_max = 1,
  144. .buffer_bytes_max = sizeof(struct hpcm_buf_node) * HPCM_MAX_Q_LEN,
  145. .period_bytes_min = HPCM_MIN_VOC_PKT_SIZE,
  146. .period_bytes_max = HPCM_MAX_VOC_PKT_SIZE,
  147. .periods_min = HPCM_MAX_Q_LEN,
  148. .periods_max = HPCM_MAX_Q_LEN,
  149. .fifo_size = 0,
  150. };
  151. static char *hpcm_get_sess_name(int sess_indx)
  152. {
  153. char *sess_name = NULL;
  154. if (sess_indx == VOICE_INDEX)
  155. sess_name = VOICE_SESSION_NAME;
  156. else if (sess_indx == VOLTE_INDEX)
  157. sess_name = VOLTE_SESSION_NAME;
  158. else if (sess_indx == VOMMODE1_INDEX)
  159. sess_name = VOICEMMODE1_NAME;
  160. else if (sess_indx == VOMMODE2_INDEX)
  161. sess_name = VOICEMMODE2_NAME;
  162. else
  163. pr_err("%s:, Invalid sess_index\n", __func__);
  164. return sess_name;
  165. }
  166. static void hpcm_reset_mixer_config(struct hpcm_drv *prtd)
  167. {
  168. prtd->mixer_conf.sess_indx = -1;
  169. prtd->mixer_conf.rx.enable = false;
  170. prtd->mixer_conf.rx.direction = -1;
  171. prtd->mixer_conf.rx.sample_rate = 0;
  172. prtd->mixer_conf.tx.enable = false;
  173. prtd->mixer_conf.tx.direction = -1;
  174. prtd->mixer_conf.tx.sample_rate = 0;
  175. }
  176. /* Check for valid mixer control values */
  177. static bool hpcm_is_valid_config(int sess_indx, int tap_point,
  178. uint16_t direction, uint16_t samplerate)
  179. {
  180. if (sess_indx < VOICE_INDEX || sess_indx > VOMMODE2_INDEX) {
  181. pr_err("%s: invalid sess_indx :%d\n", __func__, sess_indx);
  182. goto error;
  183. }
  184. if (samplerate != VSS_IVPCM_SAMPLING_RATE_8K &&
  185. samplerate != VSS_IVPCM_SAMPLING_RATE_16K) {
  186. pr_err("%s: invalid sample rate :%d\n", __func__, samplerate);
  187. goto error;
  188. }
  189. if ((tap_point != RX) && (tap_point != TX)) {
  190. pr_err("%s: invalid tappoint :%d\n", __func__, tap_point);
  191. goto error;
  192. }
  193. if ((direction != VSS_IVPCM_TAP_POINT_DIR_IN) &&
  194. (direction != VSS_IVPCM_TAP_POINT_DIR_OUT) &&
  195. (direction != VSS_IVPCM_TAP_POINT_DIR_OUT_IN)) {
  196. pr_err("%s: invalid direction :%d\n", __func__, direction);
  197. goto error;
  198. }
  199. return true;
  200. error:
  201. return false;
  202. }
  203. static struct dai_data *hpcm_get_dai_data(char *pcm_id, struct hpcm_drv *prtd)
  204. {
  205. struct dai_data *dai_data = NULL;
  206. size_t size = 0;
  207. if (pcm_id) {
  208. size = strlen(pcm_id);
  209. /* Check for Voice DAI */
  210. if (strnstr(pcm_id, VOICE_TX_CAPTURE_DAI_ID, size)) {
  211. dai_data =
  212. &prtd->session[VOICE_INDEX].tx_tap_point.capture_dai_data;
  213. } else if (strnstr(pcm_id, VOICE_TX_PLAYBACK_DAI_ID, size)) {
  214. dai_data =
  215. &prtd->session[VOICE_INDEX].tx_tap_point.playback_dai_data;
  216. } else if (strnstr(pcm_id, VOICE_RX_CAPTURE_DAI_ID, size)) {
  217. dai_data =
  218. &prtd->session[VOICE_INDEX].rx_tap_point.capture_dai_data;
  219. } else if (strnstr(pcm_id, VOICE_RX_PLAYBACK_DAI_ID, size)) {
  220. dai_data =
  221. &prtd->session[VOICE_INDEX].rx_tap_point.playback_dai_data;
  222. /* Check for VoLTE DAI */
  223. } else if (strnstr(pcm_id, VOLTE_TX_CAPTURE_DAI_ID, size)) {
  224. dai_data =
  225. &prtd->session[VOLTE_INDEX].tx_tap_point.capture_dai_data;
  226. } else if (strnstr(pcm_id, VOLTE_TX_PLAYBACK_DAI_ID, size)) {
  227. dai_data =
  228. &prtd->session[VOLTE_INDEX].tx_tap_point.playback_dai_data;
  229. } else if (strnstr(pcm_id, VOLTE_RX_CAPTURE_DAI_ID, size)) {
  230. dai_data =
  231. &prtd->session[VOLTE_INDEX].rx_tap_point.capture_dai_data;
  232. } else if (strnstr(pcm_id, VOLTE_RX_PLAYBACK_DAI_ID, size)) {
  233. dai_data =
  234. &prtd->session[VOLTE_INDEX].rx_tap_point.playback_dai_data;
  235. /* check for VoiceMMode1 DAI */
  236. } else if (strnstr(pcm_id, VoMMode1_TX_CAPTURE_DAI_ID, size)) {
  237. dai_data =
  238. &prtd->session[VOMMODE1_INDEX].tx_tap_point.capture_dai_data;
  239. } else if (strnstr(pcm_id, VoMMode1_TX_PLAYBACK_DAI_ID, size)) {
  240. dai_data =
  241. &prtd->session[VOMMODE1_INDEX].tx_tap_point.playback_dai_data;
  242. } else if (strnstr(pcm_id, VoMMode1_RX_CAPTURE_DAI_ID, size)) {
  243. dai_data =
  244. &prtd->session[VOMMODE1_INDEX].rx_tap_point.capture_dai_data;
  245. } else if (strnstr(pcm_id, VoMMode1_RX_PLAYBACK_DAI_ID, size)) {
  246. dai_data =
  247. &prtd->session[VOMMODE1_INDEX].rx_tap_point.playback_dai_data;
  248. /* check for VOiceMMode2 DAI */
  249. } else if (strnstr(pcm_id, VoMMode2_TX_CAPTURE_DAI_ID, size)) {
  250. dai_data =
  251. &prtd->session[VOMMODE2_INDEX].tx_tap_point.capture_dai_data;
  252. } else if (strnstr(pcm_id, VoMMode2_TX_PLAYBACK_DAI_ID, size)) {
  253. dai_data =
  254. &prtd->session[VOMMODE2_INDEX].tx_tap_point.playback_dai_data;
  255. } else if (strnstr(pcm_id, VoMMode2_RX_CAPTURE_DAI_ID, size)) {
  256. dai_data =
  257. &prtd->session[VOMMODE2_INDEX].rx_tap_point.capture_dai_data;
  258. } else if (strnstr(pcm_id, VoMMode2_RX_PLAYBACK_DAI_ID, size)) {
  259. dai_data =
  260. &prtd->session[VOMMODE2_INDEX].rx_tap_point.playback_dai_data;
  261. } else {
  262. pr_err("%s: Wrong dai id\n", __func__);
  263. }
  264. }
  265. return dai_data;
  266. }
  267. static struct tap_point *hpcm_get_tappoint_data(char *pcm_id,
  268. struct hpcm_drv *prtd)
  269. {
  270. struct tap_point *tp = NULL;
  271. size_t size = 0;
  272. if (pcm_id) {
  273. size = strlen(pcm_id);
  274. /* Check for Voice DAI */
  275. if (strnstr(pcm_id, VOICE_TX_CAPTURE_DAI_ID, size)) {
  276. tp = &prtd->session[VOICE_INDEX].tx_tap_point;
  277. } else if (strnstr(pcm_id, VOICE_TX_PLAYBACK_DAI_ID, size)) {
  278. tp = &prtd->session[VOICE_INDEX].tx_tap_point;
  279. } else if (strnstr(pcm_id, VOICE_RX_CAPTURE_DAI_ID, size)) {
  280. tp = &prtd->session[VOICE_INDEX].rx_tap_point;
  281. } else if (strnstr(pcm_id, VOICE_RX_PLAYBACK_DAI_ID, size)) {
  282. tp = &prtd->session[VOICE_INDEX].rx_tap_point;
  283. /* Check for VoLTE DAI */
  284. } else if (strnstr(pcm_id, VOLTE_TX_CAPTURE_DAI_ID, size)) {
  285. tp = &prtd->session[VOLTE_INDEX].tx_tap_point;
  286. } else if (strnstr(pcm_id, VOLTE_TX_PLAYBACK_DAI_ID, size)) {
  287. tp = &prtd->session[VOLTE_INDEX].tx_tap_point;
  288. } else if (strnstr(pcm_id, VOLTE_RX_CAPTURE_DAI_ID, size)) {
  289. tp = &prtd->session[VOLTE_INDEX].rx_tap_point;
  290. } else if (strnstr(pcm_id, VOLTE_RX_PLAYBACK_DAI_ID, size)) {
  291. tp = &prtd->session[VOLTE_INDEX].rx_tap_point;
  292. /* check for VoiceMMode1 */
  293. } else if (strnstr(pcm_id, VoMMode1_TX_CAPTURE_DAI_ID, size)) {
  294. tp = &prtd->session[VOMMODE1_INDEX].tx_tap_point;
  295. } else if (strnstr(pcm_id, VoMMode1_TX_PLAYBACK_DAI_ID, size)) {
  296. tp = &prtd->session[VOMMODE1_INDEX].tx_tap_point;
  297. } else if (strnstr(pcm_id, VoMMode1_RX_CAPTURE_DAI_ID, size)) {
  298. tp = &prtd->session[VOMMODE1_INDEX].rx_tap_point;
  299. } else if (strnstr(pcm_id, VoMMode1_RX_PLAYBACK_DAI_ID, size)) {
  300. tp = &prtd->session[VOMMODE1_INDEX].rx_tap_point;
  301. /* check for VoiceMMode2 */
  302. } else if (strnstr(pcm_id, VoMMode2_TX_CAPTURE_DAI_ID, size)) {
  303. tp = &prtd->session[VOMMODE2_INDEX].tx_tap_point;
  304. } else if (strnstr(pcm_id, VoMMode2_TX_PLAYBACK_DAI_ID, size)) {
  305. tp = &prtd->session[VOMMODE2_INDEX].tx_tap_point;
  306. } else if (strnstr(pcm_id, VoMMode2_RX_CAPTURE_DAI_ID, size)) {
  307. tp = &prtd->session[VOMMODE2_INDEX].rx_tap_point;
  308. } else if (strnstr(pcm_id, VoMMode2_RX_PLAYBACK_DAI_ID, size)) {
  309. tp = &prtd->session[VOMMODE2_INDEX].rx_tap_point;
  310. } else {
  311. pr_err("%s: wrong dai id\n", __func__);
  312. }
  313. }
  314. return tp;
  315. }
  316. static struct tappnt_mxr_data *hpcm_get_tappnt_mixer_data(char *pcm_id,
  317. struct hpcm_drv *prtd)
  318. {
  319. if (strnstr(pcm_id, VOICE_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  320. strnstr(pcm_id, VOICE_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  321. strnstr(pcm_id, VOLTE_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  322. strnstr(pcm_id, VOLTE_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  323. strnstr(pcm_id, VoMMode1_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  324. strnstr(pcm_id, VoMMode1_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  325. strnstr(pcm_id, VoMMode2_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  326. strnstr(pcm_id, VoMMode2_TX_PLAYBACK_DAI_ID, strlen(pcm_id))) {
  327. return &prtd->mixer_conf.tx;
  328. } else {
  329. return &prtd->mixer_conf.rx;
  330. }
  331. }
  332. static int get_tappnt_value(char *pcm_id)
  333. {
  334. if (strnstr(pcm_id, VOICE_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  335. strnstr(pcm_id, VOICE_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  336. strnstr(pcm_id, VOLTE_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  337. strnstr(pcm_id, VOLTE_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  338. strnstr(pcm_id, VoMMode1_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  339. strnstr(pcm_id, VoMMode1_TX_PLAYBACK_DAI_ID, strlen(pcm_id)) ||
  340. strnstr(pcm_id, VoMMode2_TX_CAPTURE_DAI_ID, strlen(pcm_id)) ||
  341. strnstr(pcm_id, VoMMode2_TX_PLAYBACK_DAI_ID, strlen(pcm_id))) {
  342. return TX;
  343. } else {
  344. return RX;
  345. }
  346. }
  347. static bool hpcm_all_dais_are_ready(uint16_t direction, struct tap_point *tp,
  348. enum hpcm_state state)
  349. {
  350. bool dais_started = false;
  351. /*
  352. * Based on the direction set per tap point in the mixer control,
  353. * all the dais per tap point should meet the required state for the
  354. * commands such as vpcm_map_memory/vpcm_start to be executed.
  355. */
  356. switch (direction) {
  357. case VSS_IVPCM_TAP_POINT_DIR_OUT_IN:
  358. if ((tp->playback_dai_data.state >= state) &&
  359. (tp->capture_dai_data.state >= state)) {
  360. dais_started = true;
  361. }
  362. break;
  363. case VSS_IVPCM_TAP_POINT_DIR_IN:
  364. if (tp->playback_dai_data.state >= state)
  365. dais_started = true;
  366. break;
  367. case VSS_IVPCM_TAP_POINT_DIR_OUT:
  368. if (tp->capture_dai_data.state >= state)
  369. dais_started = true;
  370. break;
  371. default:
  372. pr_err("invalid direction\n");
  373. }
  374. return dais_started;
  375. }
  376. static void hpcm_create_free_queue(struct snd_dma_buffer *dma_buf,
  377. struct dai_data *dai_data)
  378. {
  379. struct hpcm_buf_node *buf_node = NULL;
  380. int i = 0, offset = 0;
  381. for (i = 0; i < HPCM_MAX_Q_LEN; i++) {
  382. buf_node = (void *)dma_buf->area + offset;
  383. list_add_tail(&buf_node->list,
  384. &dai_data->free_queue);
  385. offset = offset + sizeof(struct hpcm_buf_node);
  386. }
  387. }
  388. static void hpcm_free_allocated_mem(struct hpcm_drv *prtd)
  389. {
  390. phys_addr_t paddr = 0;
  391. struct tap_point *txtp = NULL;
  392. struct tap_point *rxtp = NULL;
  393. struct session *sess = NULL;
  394. sess = &prtd->session[prtd->mixer_conf.sess_indx];
  395. txtp = &sess->tx_tap_point;
  396. rxtp = &sess->rx_tap_point;
  397. paddr = sess->sess_paddr;
  398. if (paddr) {
  399. msm_audio_ion_free(prtd->ion_client, sess->ion_handle);
  400. prtd->ion_client = NULL;
  401. sess->ion_handle = NULL;
  402. msm_audio_ion_free(sess->tp_mem_table.client,
  403. sess->tp_mem_table.handle);
  404. sess->tp_mem_table.client = NULL;
  405. sess->tp_mem_table.handle = NULL;
  406. sess->sess_paddr = 0;
  407. sess->sess_kvaddr = 0;
  408. sess->ion_handle = 0;
  409. prtd->ion_client = 0;
  410. sess->tp_mem_table.client = 0;
  411. sess->tp_mem_table.handle = 0;
  412. txtp->capture_dai_data.vocpcm_ion_buffer.paddr = 0;
  413. txtp->capture_dai_data.vocpcm_ion_buffer.kvaddr = 0;
  414. txtp->playback_dai_data.vocpcm_ion_buffer.paddr = 0;
  415. txtp->playback_dai_data.vocpcm_ion_buffer.kvaddr = 0;
  416. rxtp->capture_dai_data.vocpcm_ion_buffer.paddr = 0;
  417. rxtp->capture_dai_data.vocpcm_ion_buffer.kvaddr = 0;
  418. rxtp->playback_dai_data.vocpcm_ion_buffer.paddr = 0;
  419. rxtp->playback_dai_data.vocpcm_ion_buffer.kvaddr = 0;
  420. } else {
  421. pr_debug("%s, paddr = 0, nothing to free\n", __func__);
  422. }
  423. }
  424. static void hpcm_unmap_and_free_shared_memory(struct hpcm_drv *prtd)
  425. {
  426. phys_addr_t paddr = 0;
  427. char *sess_name = hpcm_get_sess_name(prtd->mixer_conf.sess_indx);
  428. if (prtd->mixer_conf.sess_indx >= 0)
  429. paddr = prtd->session[prtd->mixer_conf.sess_indx].sess_paddr;
  430. else
  431. paddr = 0;
  432. if (paddr) {
  433. voc_send_cvp_unmap_vocpcm_memory(voc_get_session_id(sess_name));
  434. hpcm_free_allocated_mem(prtd);
  435. } else {
  436. pr_debug("%s, paddr = 0, nothing to unmap/free\n", __func__);
  437. }
  438. }
  439. static int hpcm_map_vocpcm_memory(struct hpcm_drv *prtd)
  440. {
  441. int ret = 0;
  442. char *sess_name = hpcm_get_sess_name(prtd->mixer_conf.sess_indx);
  443. struct session *sess = NULL;
  444. sess = &prtd->session[prtd->mixer_conf.sess_indx];
  445. ret = voc_send_cvp_map_vocpcm_memory(voc_get_session_id(sess_name),
  446. &sess->tp_mem_table,
  447. sess->sess_paddr,
  448. VHPCM_BLOCK_SIZE);
  449. return ret;
  450. }
  451. static int hpcm_allocate_shared_memory(struct hpcm_drv *prtd)
  452. {
  453. int result;
  454. int ret = 0;
  455. size_t mem_len;
  456. size_t len;
  457. struct tap_point *txtp = NULL;
  458. struct tap_point *rxtp = NULL;
  459. struct session *sess = NULL;
  460. sess = &prtd->session[prtd->mixer_conf.sess_indx];
  461. txtp = &sess->tx_tap_point;
  462. rxtp = &sess->rx_tap_point;
  463. result = msm_audio_ion_alloc("host_pcm_buffer",
  464. &prtd->ion_client,
  465. &sess->ion_handle,
  466. VHPCM_BLOCK_SIZE,
  467. &sess->sess_paddr,
  468. &mem_len,
  469. &sess->sess_kvaddr);
  470. if (result) {
  471. pr_err("%s: msm_audio_ion_alloc error, rc = %d\n",
  472. __func__, result);
  473. sess->sess_paddr = 0;
  474. sess->sess_kvaddr = 0;
  475. ret = -ENOMEM;
  476. goto done;
  477. }
  478. pr_debug("%s: Host PCM memory block allocated\n", __func__);
  479. /* Allocate mem_map_table for tap point */
  480. result = msm_audio_ion_alloc("host_pcm_table",
  481. &sess->tp_mem_table.client,
  482. &sess->tp_mem_table.handle,
  483. sizeof(struct vss_imemory_table_t),
  484. &sess->tp_mem_table.phys,
  485. &len,
  486. &sess->tp_mem_table.data);
  487. if (result) {
  488. pr_err("%s: msm_audio_ion_alloc error, rc = %d\n",
  489. __func__, result);
  490. msm_audio_ion_free(prtd->ion_client, sess->ion_handle);
  491. prtd->ion_client = NULL;
  492. sess->ion_handle = NULL;
  493. sess->sess_paddr = 0;
  494. sess->sess_kvaddr = 0;
  495. ret = -ENOMEM;
  496. goto done;
  497. }
  498. pr_debug("%s: Host PCM memory table allocated\n", __func__);
  499. memset(sess->tp_mem_table.data, 0,
  500. sizeof(struct vss_imemory_table_t));
  501. sess->tp_mem_table.size = sizeof(struct vss_imemory_table_t);
  502. pr_debug("%s: data %pK phys %pK\n", __func__,
  503. sess->tp_mem_table.data, &sess->tp_mem_table.phys);
  504. /* Split 4096 block into four 1024 byte blocks for each dai */
  505. txtp->capture_dai_data.vocpcm_ion_buffer.paddr =
  506. sess->sess_paddr;
  507. txtp->capture_dai_data.vocpcm_ion_buffer.kvaddr =
  508. sess->sess_kvaddr;
  509. txtp->playback_dai_data.vocpcm_ion_buffer.paddr =
  510. sess->sess_paddr + VHPCM_BLOCK_SIZE/4;
  511. txtp->playback_dai_data.vocpcm_ion_buffer.kvaddr =
  512. sess->sess_kvaddr + VHPCM_BLOCK_SIZE/4;
  513. rxtp->capture_dai_data.vocpcm_ion_buffer.paddr =
  514. sess->sess_paddr + (VHPCM_BLOCK_SIZE/4) * 2;
  515. rxtp->capture_dai_data.vocpcm_ion_buffer.kvaddr =
  516. sess->sess_kvaddr + (VHPCM_BLOCK_SIZE/4) * 2;
  517. rxtp->playback_dai_data.vocpcm_ion_buffer.paddr =
  518. sess->sess_paddr + (VHPCM_BLOCK_SIZE/4) * 3;
  519. rxtp->playback_dai_data.vocpcm_ion_buffer.kvaddr =
  520. sess->sess_kvaddr + (VHPCM_BLOCK_SIZE/4) * 3;
  521. done:
  522. return ret;
  523. }
  524. static int hpcm_start_vocpcm(char *pcm_id, struct hpcm_drv *prtd,
  525. struct tap_point *tp)
  526. {
  527. int indx = prtd->mixer_conf.sess_indx;
  528. uint32_t *no_of_tp = &prtd->start_cmd.no_of_tapoints;
  529. struct vss_ivpcm_tap_point *tap_pnt = &prtd->start_cmd.tap_pnt[0];
  530. uint32_t no_of_tp_req = 0;
  531. char *sess_name = hpcm_get_sess_name(indx);
  532. if (prtd->mixer_conf.rx.enable)
  533. no_of_tp_req++;
  534. if (prtd->mixer_conf.tx.enable)
  535. no_of_tp_req++;
  536. if (prtd->mixer_conf.rx.enable && (get_tappnt_value(pcm_id) == RX)) {
  537. if (hpcm_all_dais_are_ready(prtd->mixer_conf.rx.direction,
  538. tp, HPCM_PREPARED)) {
  539. pr_debug("%s: RX conditions met\n", __func__);
  540. tap_pnt[*no_of_tp].tap_point =
  541. VSS_IVPCM_TAP_POINT_RX_DEFAULT;
  542. tap_pnt[*no_of_tp].direction =
  543. prtd->mixer_conf.rx.direction;
  544. tap_pnt[*no_of_tp].sampling_rate =
  545. prtd->mixer_conf.rx.sample_rate;
  546. (*no_of_tp)++;
  547. }
  548. }
  549. if (prtd->mixer_conf.tx.enable && (get_tappnt_value(pcm_id) == TX)) {
  550. if (hpcm_all_dais_are_ready(prtd->mixer_conf.tx.direction,
  551. tp, HPCM_PREPARED)) {
  552. pr_debug("%s: TX conditions met\n", __func__);
  553. tap_pnt[*no_of_tp].tap_point =
  554. VSS_IVPCM_TAP_POINT_TX_DEFAULT;
  555. tap_pnt[*no_of_tp].direction =
  556. prtd->mixer_conf.tx.direction;
  557. tap_pnt[*no_of_tp].sampling_rate =
  558. prtd->mixer_conf.tx.sample_rate;
  559. (*no_of_tp)++;
  560. }
  561. }
  562. if ((prtd->mixer_conf.tx.enable || prtd->mixer_conf.rx.enable) &&
  563. *no_of_tp == no_of_tp_req) {
  564. voc_send_cvp_start_vocpcm(voc_get_session_id(sess_name),
  565. tap_pnt, *no_of_tp);
  566. /* Reset the start command so that it is not called twice */
  567. memset(&prtd->start_cmd, 0, sizeof(struct start_cmd));
  568. } else {
  569. pr_debug("%s: required pcm handles not opened yet\n", __func__);
  570. }
  571. return 0;
  572. }
  573. /* Playback path*/
  574. static void hpcm_copy_playback_data_from_queue(struct dai_data *dai_data,
  575. uint32_t *len)
  576. {
  577. struct hpcm_buf_node *buf_node = NULL;
  578. unsigned long dsp_flags;
  579. if (dai_data->substream == NULL)
  580. return;
  581. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  582. if (!list_empty(&dai_data->filled_queue)) {
  583. buf_node = list_first_entry(&dai_data->filled_queue,
  584. struct hpcm_buf_node, list);
  585. list_del(&buf_node->list);
  586. *len = buf_node->frame.len;
  587. memcpy((u8 *)dai_data->vocpcm_ion_buffer.kvaddr,
  588. &buf_node->frame.voc_pkt[0],
  589. buf_node->frame.len);
  590. list_add_tail(&buf_node->list, &dai_data->free_queue);
  591. dai_data->pcm_irq_pos += dai_data->pcm_count;
  592. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  593. snd_pcm_period_elapsed(dai_data->substream);
  594. } else {
  595. *len = 0;
  596. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  597. pr_err("IN data not available\n");
  598. }
  599. wake_up(&dai_data->queue_wait);
  600. }
  601. /* Capture path*/
  602. static void hpcm_copy_capture_data_to_queue(struct dai_data *dai_data,
  603. uint32_t len)
  604. {
  605. struct hpcm_buf_node *buf_node = NULL;
  606. unsigned long dsp_flags;
  607. if (dai_data->substream == NULL)
  608. return;
  609. /* Copy out buffer packet into free_queue */
  610. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  611. if (!list_empty(&dai_data->free_queue)) {
  612. buf_node = list_first_entry(&dai_data->free_queue,
  613. struct hpcm_buf_node, list);
  614. list_del(&buf_node->list);
  615. buf_node->frame.len = len;
  616. memcpy(&buf_node->frame.voc_pkt[0],
  617. (uint8_t *)dai_data->vocpcm_ion_buffer.kvaddr,
  618. buf_node->frame.len);
  619. list_add_tail(&buf_node->list, &dai_data->filled_queue);
  620. dai_data->pcm_irq_pos += dai_data->pcm_count;
  621. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  622. snd_pcm_period_elapsed(dai_data->substream);
  623. } else {
  624. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  625. pr_err("OUTPUT data dropped\n");
  626. }
  627. wake_up(&dai_data->queue_wait);
  628. }
  629. void hpcm_notify_evt_processing(uint8_t *data, char *session,
  630. void *private_data)
  631. {
  632. struct hpcm_drv *prtd = (struct hpcm_drv *)private_data;
  633. struct vss_ivpcm_evt_notify_v2_t *notify_evt =
  634. (struct vss_ivpcm_evt_notify_v2_t *)data;
  635. struct vss_ivpcm_evt_push_buffer_v2_t push_buff_event;
  636. struct tap_point *tp = NULL;
  637. int in_buf_len = 0;
  638. struct tappnt_mxr_data *tmd = NULL;
  639. char *sess_name = hpcm_get_sess_name(prtd->mixer_conf.sess_indx);
  640. /* If it's not a timetick, it's a error notification, drop the event */
  641. if ((notify_evt->notify_mask & VSS_IVPCM_NOTIFY_MASK_TIMETICK) == 0) {
  642. pr_err("%s: Error notification. mask=%d\n", __func__,
  643. notify_evt->notify_mask);
  644. return;
  645. }
  646. if (notify_evt->tap_point == VSS_IVPCM_TAP_POINT_TX_DEFAULT) {
  647. tp = &prtd->session[prtd->mixer_conf.sess_indx].tx_tap_point;
  648. tmd = &prtd->mixer_conf.tx;
  649. } else if (notify_evt->tap_point == VSS_IVPCM_TAP_POINT_RX_DEFAULT) {
  650. tp = &prtd->session[prtd->mixer_conf.sess_indx].rx_tap_point;
  651. tmd = &prtd->mixer_conf.rx;
  652. }
  653. if (tp == NULL || tmd == NULL) {
  654. pr_err("%s: tp = %pK or tmd = %pK is null\n", __func__,
  655. tp, tmd);
  656. return;
  657. }
  658. if (notify_evt->notify_mask & VSS_IVPCM_NOTIFY_MASK_OUTPUT_BUFFER) {
  659. hpcm_copy_capture_data_to_queue(&tp->capture_dai_data,
  660. notify_evt->filled_out_size);
  661. }
  662. if (notify_evt->notify_mask & VSS_IVPCM_NOTIFY_MASK_INPUT_BUFFER) {
  663. hpcm_copy_playback_data_from_queue(&tp->playback_dai_data,
  664. &in_buf_len);
  665. }
  666. switch (tmd->direction) {
  667. /*
  668. * When the dir is OUT_IN, for the first notify mask, pushbuf mask
  669. * should be set to VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER since we
  670. * atleast need one buffer's worth data before we can send IN buffer.
  671. * For the consecutive notify evts, the push buf mask will set for both
  672. * VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER and
  673. * VSS_IVPCM_PUSH_BUFFER_MASK_IN_BUFFER.
  674. */
  675. case VSS_IVPCM_TAP_POINT_DIR_OUT_IN:
  676. if (notify_evt->notify_mask ==
  677. VSS_IVPCM_NOTIFY_MASK_TIMETICK) {
  678. push_buff_event.push_buf_mask =
  679. VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER;
  680. } else {
  681. push_buff_event.push_buf_mask =
  682. VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER |
  683. VSS_IVPCM_PUSH_BUFFER_MASK_INPUT_BUFFER;
  684. }
  685. break;
  686. case VSS_IVPCM_TAP_POINT_DIR_IN:
  687. push_buff_event.push_buf_mask =
  688. VSS_IVPCM_PUSH_BUFFER_MASK_INPUT_BUFFER;
  689. break;
  690. case VSS_IVPCM_TAP_POINT_DIR_OUT:
  691. push_buff_event.push_buf_mask =
  692. VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER;
  693. break;
  694. }
  695. push_buff_event.tap_point = notify_evt->tap_point;
  696. push_buff_event.out_buf_mem_address =
  697. tp->capture_dai_data.vocpcm_ion_buffer.paddr;
  698. push_buff_event.in_buf_mem_address =
  699. tp->playback_dai_data.vocpcm_ion_buffer.paddr;
  700. push_buff_event.sampling_rate = notify_evt->sampling_rate;
  701. push_buff_event.num_in_channels = 1;
  702. /*
  703. * ADSP must read and write from a cache aligned (128 byte) location,
  704. * and in blocks of the cache alignment size. The 128 byte cache
  705. * alignment requirement is guaranteed due to 4096 byte memory
  706. * alignment requirement during memory allocation/mapping. The output
  707. * buffer (ADSP write) size mask ensures that a 128 byte multiple
  708. * worth of will be written. Internally, the input buffer (ADSP read)
  709. * size will also be a multiple of 128 bytes. However it is the
  710. * application's responsibility to ensure no other data is written in
  711. * the specified length of memory.
  712. */
  713. push_buff_event.out_buf_mem_size = ((notify_evt->request_buf_size) +
  714. CACHE_ALIGNMENT_SIZE) & CACHE_ALIGNMENT_MASK;
  715. push_buff_event.in_buf_mem_size = in_buf_len;
  716. voc_send_cvp_vocpcm_push_buf_evt(voc_get_session_id(sess_name),
  717. &push_buff_event);
  718. }
  719. static int msm_hpcm_configure_voice_put(struct snd_kcontrol *kcontrol,
  720. struct snd_ctl_elem_value *ucontrol)
  721. {
  722. int tap_point = ucontrol->value.integer.value[0];
  723. uint16_t direction = ucontrol->value.integer.value[1];
  724. uint16_t sample_rate = ucontrol->value.integer.value[2];
  725. struct tappnt_mxr_data *tmd = NULL;
  726. int ret = 0;
  727. mutex_lock(&hpcm_drv.lock);
  728. pr_debug("%s: tap_point = %d direction = %d sample_rate = %d\n",
  729. __func__, tap_point, direction, sample_rate);
  730. if (!hpcm_is_valid_config(VOICE_INDEX, tap_point, direction,
  731. sample_rate)) {
  732. pr_err("Invalid vpcm mixer control voice values\n");
  733. ret = -EINVAL;
  734. goto done;
  735. }
  736. if (tap_point == RX)
  737. tmd = &hpcm_drv.mixer_conf.rx;
  738. else
  739. tmd = &hpcm_drv.mixer_conf.tx;
  740. tmd->enable = true;
  741. tmd->direction = direction;
  742. tmd->sample_rate = sample_rate;
  743. hpcm_drv.mixer_conf.sess_indx = VOICE_INDEX;
  744. done:
  745. mutex_unlock(&hpcm_drv.lock);
  746. return ret;
  747. }
  748. static int msm_hpcm_configure_vmmode1_put(struct snd_kcontrol *kcontrol,
  749. struct snd_ctl_elem_value *ucontrol)
  750. {
  751. int tap_point = ucontrol->value.integer.value[0];
  752. uint16_t direction = ucontrol->value.integer.value[1];
  753. uint16_t sample_rate = ucontrol->value.integer.value[2];
  754. struct tappnt_mxr_data *tmd = NULL;
  755. int ret = 0;
  756. mutex_lock(&hpcm_drv.lock);
  757. pr_debug("%s: tap_point = %d direction = %d sample_rate = %d\n",
  758. __func__, tap_point, direction, sample_rate);
  759. if (!hpcm_is_valid_config(VOMMODE1_INDEX, tap_point, direction,
  760. sample_rate)) {
  761. pr_err("Invalid vpcm mixer control voice values\n");
  762. ret = -EINVAL;
  763. goto done;
  764. }
  765. if (tap_point == RX)
  766. tmd = &hpcm_drv.mixer_conf.rx;
  767. else
  768. tmd = &hpcm_drv.mixer_conf.tx;
  769. tmd->enable = true;
  770. tmd->direction = direction;
  771. tmd->sample_rate = sample_rate;
  772. hpcm_drv.mixer_conf.sess_indx = VOMMODE1_INDEX;
  773. done:
  774. mutex_unlock(&hpcm_drv.lock);
  775. return ret;
  776. }
  777. static int msm_hpcm_configure_vmmode2_put(struct snd_kcontrol *kcontrol,
  778. struct snd_ctl_elem_value *ucontrol)
  779. {
  780. int tap_point = ucontrol->value.integer.value[0];
  781. uint16_t direction = ucontrol->value.integer.value[1];
  782. uint16_t sample_rate = ucontrol->value.integer.value[2];
  783. struct tappnt_mxr_data *tmd = NULL;
  784. int ret = 0;
  785. mutex_lock(&hpcm_drv.lock);
  786. pr_debug("%s: tap_point = %d direction = %d sample_rate = %d\n",
  787. __func__, tap_point, direction, sample_rate);
  788. if (!hpcm_is_valid_config(VOMMODE2_INDEX, tap_point, direction,
  789. sample_rate)) {
  790. pr_err("Invalid vpcm mixer control voice values\n");
  791. ret = -EINVAL;
  792. goto done;
  793. }
  794. if (tap_point == RX)
  795. tmd = &hpcm_drv.mixer_conf.rx;
  796. else
  797. tmd = &hpcm_drv.mixer_conf.tx;
  798. tmd->enable = true;
  799. tmd->direction = direction;
  800. tmd->sample_rate = sample_rate;
  801. hpcm_drv.mixer_conf.sess_indx = VOMMODE2_INDEX;
  802. done:
  803. mutex_unlock(&hpcm_drv.lock);
  804. return ret;
  805. }
  806. static int msm_hpcm_configure_volte_put(struct snd_kcontrol *kcontrol,
  807. struct snd_ctl_elem_value *ucontrol)
  808. {
  809. int tap_point = ucontrol->value.integer.value[0];
  810. uint16_t direction = ucontrol->value.integer.value[1];
  811. uint16_t sample_rate = ucontrol->value.integer.value[2];
  812. struct tappnt_mxr_data *tmd = NULL;
  813. int ret = 0;
  814. mutex_lock(&hpcm_drv.lock);
  815. pr_debug("%s: tap_point=%d direction=%d sample_rate=%d\n",
  816. __func__, tap_point, direction, sample_rate);
  817. if (!hpcm_is_valid_config(VOLTE_INDEX, tap_point, direction,
  818. sample_rate)) {
  819. pr_err("Invalid vpcm mixer control volte values\n");
  820. ret = -EINVAL;
  821. goto done;
  822. }
  823. if (tap_point == RX)
  824. tmd = &hpcm_drv.mixer_conf.rx;
  825. else
  826. tmd = &hpcm_drv.mixer_conf.tx;
  827. tmd->enable = true;
  828. tmd->direction = direction;
  829. tmd->sample_rate = sample_rate;
  830. hpcm_drv.mixer_conf.sess_indx = VOLTE_INDEX;
  831. done:
  832. mutex_unlock(&hpcm_drv.lock);
  833. return ret;
  834. }
  835. static struct snd_kcontrol_new msm_hpcm_controls[] = {
  836. SOC_SINGLE_MULTI_EXT("HPCM_Voice tappoint direction samplerate",
  837. SND_SOC_NOPM, 0, 16000, 0, 3,
  838. NULL, msm_hpcm_configure_voice_put),
  839. SOC_SINGLE_MULTI_EXT("HPCM_VoLTE tappoint direction samplerate",
  840. SND_SOC_NOPM, 0, 16000, 0, 3,
  841. NULL, msm_hpcm_configure_volte_put),
  842. SOC_SINGLE_MULTI_EXT("HPCM_VMMode1 tappoint direction samplerate",
  843. SND_SOC_NOPM, 0, 16000, 0, 3,
  844. NULL, msm_hpcm_configure_vmmode1_put),
  845. SOC_SINGLE_MULTI_EXT("HPCM_VMMode2 tappoint direction samplerate",
  846. SND_SOC_NOPM, 0, 16000, 0, 3,
  847. NULL, msm_hpcm_configure_vmmode2_put),
  848. };
  849. /* Sample rates supported */
  850. static unsigned int supported_sample_rates[] = {8000, 16000};
  851. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  852. .count = ARRAY_SIZE(supported_sample_rates),
  853. .list = supported_sample_rates,
  854. .mask = 0,
  855. };
  856. static int msm_pcm_close(struct snd_pcm_substream *substream)
  857. {
  858. int ret = 0;
  859. struct list_head *ptr = NULL;
  860. struct list_head *next = NULL;
  861. struct hpcm_buf_node *buf_node = NULL;
  862. struct snd_dma_buffer *dma_buf;
  863. struct snd_pcm_runtime *runtime;
  864. struct hpcm_drv *prtd;
  865. unsigned long dsp_flags;
  866. struct dai_data *dai_data = NULL;
  867. struct tap_point *tp = NULL;
  868. struct tappnt_mxr_data *tmd = NULL;
  869. char *sess_name = NULL;
  870. if (substream == NULL) {
  871. pr_err("substream is NULL\n");
  872. return -EINVAL;
  873. }
  874. pr_debug("%s, %s\n", __func__, substream->pcm->id);
  875. runtime = substream->runtime;
  876. prtd = runtime->private_data;
  877. sess_name = hpcm_get_sess_name(prtd->mixer_conf.sess_indx);
  878. dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  879. if (dai_data == NULL) {
  880. pr_err("%s, dai_data is NULL\n", __func__);
  881. ret = -EINVAL;
  882. goto done;
  883. }
  884. wake_up(&dai_data->queue_wait);
  885. mutex_lock(&prtd->lock);
  886. tmd = hpcm_get_tappnt_mixer_data(substream->pcm->id, prtd);
  887. tp = hpcm_get_tappoint_data(substream->pcm->id, prtd);
  888. /* Send stop command */
  889. voc_send_cvp_stop_vocpcm(voc_get_session_id(sess_name));
  890. /* Memory unmap/free takes place only when called the first time */
  891. hpcm_unmap_and_free_shared_memory(prtd);
  892. /* Unregister host PCM event callback function */
  893. voc_deregister_hpcm_evt_cb();
  894. /* Reset the cached start cmd */
  895. memset(&prtd->start_cmd, 0, sizeof(struct start_cmd));
  896. /* Release all buffer */
  897. pr_debug("%s: Release all buffer\n", __func__);
  898. substream = dai_data->substream;
  899. if (substream == NULL) {
  900. pr_debug("%s: substream is NULL\n", __func__);
  901. goto done;
  902. }
  903. dma_buf = &substream->dma_buffer;
  904. if (dma_buf == NULL) {
  905. pr_debug("%s: dma_buf is NULL\n", __func__);
  906. goto done;
  907. }
  908. if (dma_buf->area != NULL) {
  909. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  910. list_for_each_safe(ptr, next, &dai_data->filled_queue) {
  911. buf_node = list_entry(ptr,
  912. struct hpcm_buf_node, list);
  913. list_del(&buf_node->list);
  914. }
  915. list_for_each_safe(ptr, next, &dai_data->free_queue) {
  916. buf_node = list_entry(ptr,
  917. struct hpcm_buf_node, list);
  918. list_del(&buf_node->list);
  919. }
  920. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  921. dma_free_coherent(substream->pcm->card->dev,
  922. runtime->hw.buffer_bytes_max, dma_buf->area,
  923. dma_buf->addr);
  924. dma_buf->area = NULL;
  925. }
  926. dai_data->substream = NULL;
  927. dai_data->pcm_buf_pos = 0;
  928. dai_data->pcm_count = 0;
  929. dai_data->pcm_irq_pos = 0;
  930. dai_data->pcm_size = 0;
  931. dai_data->state = HPCM_CLOSED;
  932. hpcm_reset_mixer_config(prtd);
  933. done:
  934. mutex_unlock(&prtd->lock);
  935. return ret;
  936. }
  937. static int msm_pcm_playback_copy(struct snd_pcm_substream *substream, int a,
  938. unsigned long hwoff, void __user *buf,
  939. unsigned long fbytes)
  940. {
  941. int ret = 0;
  942. struct hpcm_buf_node *buf_node = NULL;
  943. struct snd_pcm_runtime *runtime = substream->runtime;
  944. struct hpcm_drv *prtd = runtime->private_data;
  945. struct dai_data *dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  946. unsigned long dsp_flags;
  947. if (dai_data == NULL) {
  948. pr_err("%s, dai_data is null\n", __func__);
  949. ret = -EINVAL;
  950. goto done;
  951. }
  952. ret = wait_event_interruptible_timeout(dai_data->queue_wait,
  953. (!list_empty(&dai_data->free_queue) ||
  954. dai_data->state == HPCM_STOPPED),
  955. 1 * HZ);
  956. if (ret > 0) {
  957. if (fbytes <= HPCM_MAX_VOC_PKT_SIZE) {
  958. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  959. buf_node =
  960. list_first_entry(&dai_data->free_queue,
  961. struct hpcm_buf_node, list);
  962. list_del(&buf_node->list);
  963. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  964. ret = copy_from_user(&buf_node->frame.voc_pkt, buf,
  965. fbytes);
  966. buf_node->frame.len = fbytes;
  967. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  968. list_add_tail(&buf_node->list, &dai_data->filled_queue);
  969. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  970. } else {
  971. pr_err("%s: Write cnt %lu is > HPCM_MAX_VOC_PKT_SIZE\n",
  972. __func__, fbytes);
  973. ret = -ENOMEM;
  974. }
  975. } else if (ret == 0) {
  976. pr_err("%s: No free Playback buffer\n", __func__);
  977. ret = -ETIMEDOUT;
  978. } else {
  979. pr_err("%s: playback copy was interrupted\n", __func__);
  980. }
  981. done:
  982. return ret;
  983. }
  984. static int msm_pcm_capture_copy(struct snd_pcm_substream *substream,
  985. int channel, unsigned long hwoff,
  986. void __user *buf, unsigned long fbytes)
  987. {
  988. int ret = 0;
  989. struct hpcm_buf_node *buf_node = NULL;
  990. struct snd_pcm_runtime *runtime = substream->runtime;
  991. struct hpcm_drv *prtd = runtime->private_data;
  992. struct dai_data *dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  993. unsigned long dsp_flags;
  994. if (dai_data == NULL) {
  995. pr_err("%s, dai_data is null\n", __func__);
  996. ret = -EINVAL;
  997. goto done;
  998. }
  999. ret = wait_event_interruptible_timeout(dai_data->queue_wait,
  1000. (!list_empty(&dai_data->filled_queue) ||
  1001. dai_data->state == HPCM_STOPPED),
  1002. 1 * HZ);
  1003. if (ret > 0) {
  1004. if (fbytes <= HPCM_MAX_VOC_PKT_SIZE) {
  1005. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  1006. buf_node = list_first_entry(&dai_data->filled_queue,
  1007. struct hpcm_buf_node, list);
  1008. list_del(&buf_node->list);
  1009. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  1010. ret = copy_to_user(buf, &buf_node->frame.voc_pkt,
  1011. buf_node->frame.len);
  1012. if (ret) {
  1013. pr_err("%s: Copy to user returned %d\n",
  1014. __func__, ret);
  1015. ret = -EFAULT;
  1016. }
  1017. spin_lock_irqsave(&dai_data->dsp_lock, dsp_flags);
  1018. list_add_tail(&buf_node->list, &dai_data->free_queue);
  1019. spin_unlock_irqrestore(&dai_data->dsp_lock, dsp_flags);
  1020. } else {
  1021. pr_err("%s: Read count %lu > HPCM_MAX_VOC_PKT_SIZE\n",
  1022. __func__, fbytes);
  1023. ret = -ENOMEM;
  1024. }
  1025. } else if (ret == 0) {
  1026. pr_err("%s: No Caputre data available\n", __func__);
  1027. ret = -ETIMEDOUT;
  1028. } else {
  1029. pr_err("%s: Read was interrupted\n", __func__);
  1030. ret = -ERESTARTSYS;
  1031. }
  1032. done:
  1033. return ret;
  1034. }
  1035. static int msm_pcm_copy(struct snd_pcm_substream *substream, int channel,
  1036. unsigned long hwoff, void __user *buf,
  1037. unsigned long fbytes)
  1038. {
  1039. int ret = 0;
  1040. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  1041. ret = msm_pcm_playback_copy(substream, channel,
  1042. hwoff, buf, fbytes);
  1043. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  1044. ret = msm_pcm_capture_copy(substream, channel,
  1045. hwoff, buf, fbytes);
  1046. return ret;
  1047. }
  1048. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  1049. {
  1050. struct dai_data *dai_data = NULL;
  1051. struct snd_pcm_runtime *runtime = substream->runtime;
  1052. struct hpcm_drv *prtd = runtime->private_data;
  1053. snd_pcm_uframes_t ret;
  1054. dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  1055. if (dai_data == NULL) {
  1056. pr_err("%s, dai_data is null\n", __func__);
  1057. ret = 0;
  1058. goto done;
  1059. }
  1060. if (dai_data->pcm_irq_pos >= dai_data->pcm_size)
  1061. dai_data->pcm_irq_pos = 0;
  1062. ret = bytes_to_frames(runtime, (dai_data->pcm_irq_pos));
  1063. done:
  1064. return ret;
  1065. }
  1066. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  1067. {
  1068. int ret = 0;
  1069. struct snd_pcm_runtime *runtime = substream->runtime;
  1070. struct hpcm_drv *prtd = runtime->private_data;
  1071. struct dai_data *dai_data =
  1072. hpcm_get_dai_data(substream->pcm->id, prtd);
  1073. if (dai_data == NULL) {
  1074. pr_err("%s, dai_data is null\n", __func__);
  1075. ret = -EINVAL;
  1076. goto done;
  1077. }
  1078. pr_debug("%s, %s\n", __func__, substream->pcm->id);
  1079. switch (cmd) {
  1080. case SNDRV_PCM_TRIGGER_START:
  1081. pr_debug("SNDRV_PCM_TRIGGER_START\n");
  1082. dai_data->state = HPCM_STARTED;
  1083. break;
  1084. case SNDRV_PCM_TRIGGER_STOP:
  1085. pr_debug("SNDRV_PCM_TRIGGER_STOP\n");
  1086. dai_data->state = HPCM_STOPPED;
  1087. break;
  1088. default:
  1089. ret = -EINVAL;
  1090. break;
  1091. }
  1092. done:
  1093. return ret;
  1094. }
  1095. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  1096. {
  1097. int ret = 0;
  1098. struct snd_pcm_runtime *runtime = substream->runtime;
  1099. struct hpcm_drv *prtd = runtime->private_data;
  1100. struct dai_data *dai_data = NULL;
  1101. struct tap_point *tp = NULL;
  1102. pr_debug("%s, %s\n", __func__, substream->pcm->id);
  1103. mutex_lock(&prtd->lock);
  1104. dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  1105. if (dai_data == NULL) {
  1106. pr_err("%s, dai_data is null\n", __func__);
  1107. ret = -EINVAL;
  1108. goto done;
  1109. }
  1110. dai_data->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  1111. dai_data->pcm_count = snd_pcm_lib_period_bytes(substream);
  1112. dai_data->pcm_irq_pos = 0;
  1113. dai_data->pcm_buf_pos = 0;
  1114. dai_data->state = HPCM_PREPARED;
  1115. /* Register event notify processing callback in prepare instead of
  1116. * init() as q6voice module's init() can be called at a later point
  1117. */
  1118. voc_register_hpcm_evt_cb(hpcm_notify_evt_processing, &hpcm_drv);
  1119. tp = hpcm_get_tappoint_data(substream->pcm->id, prtd);
  1120. if (tp != NULL) {
  1121. ret = hpcm_start_vocpcm(substream->pcm->id, prtd, tp);
  1122. if (ret) {
  1123. pr_err("error sending start cmd err=%d\n", ret);
  1124. goto done;
  1125. }
  1126. } else {
  1127. pr_err("%s tp is NULL\n", __func__);
  1128. }
  1129. done:
  1130. mutex_unlock(&prtd->lock);
  1131. return ret;
  1132. }
  1133. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  1134. struct snd_pcm_hw_params *params)
  1135. {
  1136. struct snd_pcm_runtime *runtime = substream->runtime;
  1137. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  1138. struct hpcm_drv *prtd = (struct hpcm_drv *)runtime->private_data;
  1139. int ret = 0;
  1140. pr_debug("%s: %s\n", __func__, substream->pcm->id);
  1141. mutex_lock(&prtd->lock);
  1142. /* Allocate and map voice host PCM ion buffer */
  1143. if (prtd->session[prtd->mixer_conf.sess_indx].sess_paddr == 0) {
  1144. ret = hpcm_allocate_shared_memory(prtd);
  1145. if (ret) {
  1146. pr_err("error creating shared memory err=%d\n", ret);
  1147. goto done;
  1148. }
  1149. ret = hpcm_map_vocpcm_memory(prtd);
  1150. if (ret) {
  1151. pr_err("error mapping shared memory err=%d\n", ret);
  1152. hpcm_free_allocated_mem(prtd);
  1153. goto done;
  1154. }
  1155. } else {
  1156. pr_debug("%s, VHPCM memory allocation/mapping not performed\n"
  1157. , __func__);
  1158. }
  1159. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  1160. dma_buf->dev.dev = substream->pcm->card->dev;
  1161. dma_buf->private_data = NULL;
  1162. dma_buf->area = dma_alloc_coherent(substream->pcm->card->dev,
  1163. runtime->hw.buffer_bytes_max,
  1164. &dma_buf->addr, GFP_KERNEL);
  1165. if (!dma_buf->area) {
  1166. pr_err("%s:MSM dma_alloc failed\n", __func__);
  1167. ret = -ENOMEM;
  1168. goto done;
  1169. }
  1170. dma_buf->bytes = runtime->hw.buffer_bytes_max;
  1171. memset(dma_buf->area, 0, runtime->hw.buffer_bytes_max);
  1172. hpcm_create_free_queue(dma_buf,
  1173. hpcm_get_dai_data(substream->pcm->id, prtd));
  1174. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  1175. done:
  1176. mutex_unlock(&prtd->lock);
  1177. return ret;
  1178. }
  1179. static int msm_pcm_open(struct snd_pcm_substream *substream)
  1180. {
  1181. struct snd_pcm_runtime *runtime = substream->runtime;
  1182. struct hpcm_drv *prtd = &hpcm_drv;
  1183. struct tappnt_mxr_data *tmd = NULL;
  1184. struct dai_data *dai_data = NULL;
  1185. int ret = 0;
  1186. int tp_val = 0;
  1187. pr_debug("%s, %s\n", __func__, substream->pcm->id);
  1188. mutex_lock(&prtd->lock);
  1189. dai_data = hpcm_get_dai_data(substream->pcm->id, prtd);
  1190. if (dai_data == NULL) {
  1191. pr_err("%s, dai_data is null\n", __func__);
  1192. ret = -EINVAL;
  1193. goto done;
  1194. }
  1195. runtime->hw = msm_pcm_hardware;
  1196. ret = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
  1197. &constraints_sample_rates);
  1198. if (ret < 0)
  1199. pr_debug("snd_pcm_hw_constraint_list failed\n");
  1200. ret = snd_pcm_hw_constraint_integer(runtime,
  1201. SNDRV_PCM_HW_PARAM_PERIODS);
  1202. if (ret < 0) {
  1203. pr_debug("snd_pcm_hw_constraint_integer failed\n");
  1204. goto done;
  1205. }
  1206. tp_val = get_tappnt_value(substream->pcm->id);
  1207. tmd = hpcm_get_tappnt_mixer_data(substream->pcm->id, prtd);
  1208. /* Check wheather the kcontrol values set are valid */
  1209. if (!tmd ||
  1210. !(tmd->enable) ||
  1211. !hpcm_is_valid_config(prtd->mixer_conf.sess_indx,
  1212. tp_val, tmd->direction,
  1213. tmd->sample_rate)) {
  1214. ret = -EINVAL;
  1215. goto done;
  1216. }
  1217. dai_data->substream = substream;
  1218. runtime->private_data = prtd;
  1219. done:
  1220. mutex_unlock(&prtd->lock);
  1221. return ret;
  1222. }
  1223. static const struct snd_pcm_ops msm_pcm_ops = {
  1224. .open = msm_pcm_open,
  1225. .hw_params = msm_pcm_hw_params,
  1226. .prepare = msm_pcm_prepare,
  1227. .trigger = msm_pcm_trigger,
  1228. .pointer = msm_pcm_pointer,
  1229. .copy_user = msm_pcm_copy,
  1230. .close = msm_pcm_close,
  1231. };
  1232. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1233. {
  1234. struct snd_card *card = rtd->card->snd_card;
  1235. pr_debug("%s:\n", __func__);
  1236. if (!card->dev->coherent_dma_mask)
  1237. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1238. return 0;
  1239. }
  1240. static int msm_pcm_hpcm_probe(struct snd_soc_platform *platform)
  1241. {
  1242. snd_soc_add_platform_controls(platform, msm_hpcm_controls,
  1243. ARRAY_SIZE(msm_hpcm_controls));
  1244. return 0;
  1245. }
  1246. static struct snd_soc_platform_driver msm_soc_platform = {
  1247. .ops = &msm_pcm_ops,
  1248. .pcm_new = msm_asoc_pcm_new,
  1249. .probe = msm_pcm_hpcm_probe,
  1250. };
  1251. static int msm_pcm_probe(struct platform_device *pdev)
  1252. {
  1253. pr_info("%s: dev name %s\n", __func__, dev_name(&pdev->dev));
  1254. return snd_soc_register_platform(&pdev->dev, &msm_soc_platform);
  1255. }
  1256. static int msm_pcm_remove(struct platform_device *pdev)
  1257. {
  1258. snd_soc_unregister_platform(&pdev->dev);
  1259. return 0;
  1260. }
  1261. static const struct of_device_id msm_voice_host_pcm_dt_match[] = {
  1262. {.compatible = "qcom,msm-voice-host-pcm"},
  1263. {}
  1264. };
  1265. MODULE_DEVICE_TABLE(of, msm_voice_host_pcm_dt_match);
  1266. static struct platform_driver msm_pcm_driver = {
  1267. .driver = {
  1268. .name = "msm-voice-host-pcm",
  1269. .owner = THIS_MODULE,
  1270. .of_match_table = msm_voice_host_pcm_dt_match,
  1271. },
  1272. .probe = msm_pcm_probe,
  1273. .remove = msm_pcm_remove,
  1274. };
  1275. int __init msm_voice_host_init(void)
  1276. {
  1277. int i = 0;
  1278. struct session *s = NULL;
  1279. memset(&hpcm_drv, 0, sizeof(hpcm_drv));
  1280. mutex_init(&hpcm_drv.lock);
  1281. for (i = 0; i < MAX_SESSION; i++) {
  1282. s = &hpcm_drv.session[i];
  1283. spin_lock_init(&s->rx_tap_point.capture_dai_data.dsp_lock);
  1284. spin_lock_init(&s->rx_tap_point.playback_dai_data.dsp_lock);
  1285. spin_lock_init(&s->tx_tap_point.capture_dai_data.dsp_lock);
  1286. spin_lock_init(&s->tx_tap_point.playback_dai_data.dsp_lock);
  1287. init_waitqueue_head(
  1288. &s->rx_tap_point.capture_dai_data.queue_wait);
  1289. init_waitqueue_head(
  1290. &s->rx_tap_point.playback_dai_data.queue_wait);
  1291. init_waitqueue_head(
  1292. &s->tx_tap_point.capture_dai_data.queue_wait);
  1293. init_waitqueue_head(
  1294. &s->tx_tap_point.playback_dai_data.queue_wait);
  1295. INIT_LIST_HEAD(&s->rx_tap_point.capture_dai_data.filled_queue);
  1296. INIT_LIST_HEAD(&s->rx_tap_point.capture_dai_data.free_queue);
  1297. INIT_LIST_HEAD(&s->rx_tap_point.playback_dai_data.filled_queue);
  1298. INIT_LIST_HEAD(&s->rx_tap_point.playback_dai_data.free_queue);
  1299. INIT_LIST_HEAD(&s->tx_tap_point.capture_dai_data.filled_queue);
  1300. INIT_LIST_HEAD(&s->tx_tap_point.capture_dai_data.free_queue);
  1301. INIT_LIST_HEAD(&s->tx_tap_point.playback_dai_data.filled_queue);
  1302. INIT_LIST_HEAD(&s->tx_tap_point.playback_dai_data.free_queue);
  1303. }
  1304. return platform_driver_register(&msm_pcm_driver);
  1305. }
  1306. void msm_voice_host_exit(void)
  1307. {
  1308. platform_driver_unregister(&msm_pcm_driver);
  1309. }
  1310. MODULE_DESCRIPTION("PCM module platform driver");
  1311. MODULE_LICENSE("GPL v2");