msm-pcm-q6-noirq.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/err.h>
  6. #include <linux/module.h>
  7. #include <linux/moduleparam.h>
  8. #include <linux/time.h>
  9. #include <linux/wait.h>
  10. #include <linux/platform_device.h>
  11. #include <linux/slab.h>
  12. #include <linux/of_device.h>
  13. #include <linux/dma-mapping.h>
  14. #include <linux/dma-buf.h>
  15. #include <sound/core.h>
  16. #include <sound/soc.h>
  17. #include <sound/soc-dapm.h>
  18. #include <sound/pcm.h>
  19. #include <sound/initval.h>
  20. #include <sound/control.h>
  21. #include <sound/timer.h>
  22. #include <sound/hwdep.h>
  23. #include <asm/dma.h>
  24. #include <sound/tlv.h>
  25. #include <sound/pcm_params.h>
  26. #include <sound/devdep_params.h>
  27. #include <dsp/msm_audio_ion.h>
  28. #include <dsp/q6audio-v2.h>
  29. #include "msm-pcm-q6-v2.h"
  30. #include "msm-pcm-routing-v2.h"
  31. #define PCM_MASTER_VOL_MAX_STEPS 0x2000
  32. static const DECLARE_TLV_DB_LINEAR(msm_pcm_vol_gain, 0,
  33. PCM_MASTER_VOL_MAX_STEPS);
  34. struct snd_msm {
  35. struct snd_card *card;
  36. struct snd_pcm *pcm;
  37. };
  38. #define CMD_EOS_MIN_TIMEOUT_LENGTH 50
  39. #define CMD_EOS_TIMEOUT_MULTIPLIER (HZ * 50)
  40. #define ATRACE_END() \
  41. trace_printk("tracing_mark_write: E\n")
  42. #define ATRACE_BEGIN(name) \
  43. trace_printk("tracing_mark_write: B|%d|%s\n", current->tgid, name)
  44. #define ATRACE_FUNC() ATRACE_BEGIN(__func__)
  45. #define ATRACE_INT(name, value) \
  46. trace_printk("tracing_mark_write: C|%d|%s|%d\n", \
  47. current->tgid, name, (int)(value))
  48. #define SIO_PLAYBACK_MAX_PERIOD_SIZE PLAYBACK_MAX_PERIOD_SIZE
  49. #define SIO_PLAYBACK_MIN_PERIOD_SIZE 48
  50. #define SIO_PLAYBACK_MAX_NUM_PERIODS 512
  51. #define SIO_PLAYBACK_MIN_NUM_PERIODS PLAYBACK_MIN_NUM_PERIODS
  52. #define SIO_PLAYBACK_MIN_BYTES (SIO_PLAYBACK_MIN_NUM_PERIODS * \
  53. SIO_PLAYBACK_MIN_PERIOD_SIZE)
  54. #define SIO_PLAYBACK_MAX_BYTES ((SIO_PLAYBACK_MAX_NUM_PERIODS) * \
  55. (SIO_PLAYBACK_MAX_PERIOD_SIZE))
  56. #define SIO_CAPTURE_MAX_PERIOD_SIZE CAPTURE_MAX_PERIOD_SIZE
  57. #define SIO_CAPTURE_MIN_PERIOD_SIZE 48
  58. #define SIO_CAPTURE_MAX_NUM_PERIODS 512
  59. #define SIO_CAPTURE_MIN_NUM_PERIODS CAPTURE_MIN_NUM_PERIODS
  60. #define SIO_CAPTURE_MIN_BYTES (SIO_CAPTURE_MIN_NUM_PERIODS * \
  61. SIO_CAPTURE_MIN_PERIOD_SIZE)
  62. #define SIO_CAPTURE_MAX_BYTES (SIO_CAPTURE_MAX_NUM_PERIODS * \
  63. SIO_CAPTURE_MAX_PERIOD_SIZE)
  64. static struct snd_pcm_hardware msm_pcm_hardware_playback = {
  65. .info = (SNDRV_PCM_INFO_MMAP |
  66. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  67. SNDRV_PCM_INFO_MMAP_VALID |
  68. SNDRV_PCM_INFO_INTERLEAVED |
  69. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP |
  70. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  71. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  72. SNDRV_PCM_FMTBIT_S24_LE |
  73. SNDRV_PCM_FMTBIT_S24_3LE),
  74. .rates = SNDRV_PCM_RATE_8000_192000,
  75. .rate_min = 8000,
  76. .rate_max = 192000,
  77. .channels_min = 1,
  78. .channels_max = 8,
  79. .buffer_bytes_max = SIO_PLAYBACK_MAX_NUM_PERIODS *
  80. SIO_PLAYBACK_MAX_PERIOD_SIZE,
  81. .period_bytes_min = SIO_PLAYBACK_MIN_PERIOD_SIZE,
  82. .period_bytes_max = SIO_PLAYBACK_MAX_PERIOD_SIZE,
  83. .periods_min = SIO_PLAYBACK_MIN_NUM_PERIODS,
  84. .periods_max = SIO_PLAYBACK_MAX_NUM_PERIODS,
  85. .fifo_size = 0,
  86. };
  87. static struct snd_pcm_hardware msm_pcm_hardware_capture = {
  88. .info = (SNDRV_PCM_INFO_MMAP |
  89. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  90. SNDRV_PCM_INFO_MMAP_VALID |
  91. SNDRV_PCM_INFO_INTERLEAVED |
  92. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP |
  93. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  94. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  95. SNDRV_PCM_FMTBIT_S24_LE |
  96. SNDRV_PCM_FMTBIT_S24_3LE),
  97. .rates = SNDRV_PCM_RATE_8000_48000,
  98. .rate_min = 8000,
  99. .rate_max = 48000,
  100. .channels_min = 1,
  101. .channels_max = 4,
  102. .buffer_bytes_max = SIO_CAPTURE_MAX_NUM_PERIODS *
  103. SIO_CAPTURE_MAX_PERIOD_SIZE,
  104. .period_bytes_min = SIO_CAPTURE_MIN_PERIOD_SIZE,
  105. .period_bytes_max = SIO_CAPTURE_MAX_PERIOD_SIZE,
  106. .periods_min = SIO_CAPTURE_MIN_NUM_PERIODS,
  107. .periods_max = SIO_CAPTURE_MAX_NUM_PERIODS,
  108. .fifo_size = 0,
  109. };
  110. /* Conventional and unconventional sample rate supported */
  111. static unsigned int supported_sample_rates[] = {
  112. 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
  113. 88200, 96000, 176400, 192000
  114. };
  115. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  116. .count = ARRAY_SIZE(supported_sample_rates),
  117. .list = supported_sample_rates,
  118. .mask = 0,
  119. };
  120. static unsigned long msm_pcm_fe_topology[MSM_FRONTEND_DAI_MAX];
  121. /* default value is DTS (i.e read from device tree) */
  122. static char const *msm_pcm_fe_topology_text[] = {
  123. "DTS", "ULL", "ULL_PP", "LL" };
  124. static const struct soc_enum msm_pcm_fe_topology_enum[] = {
  125. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(msm_pcm_fe_topology_text),
  126. msm_pcm_fe_topology_text),
  127. };
  128. static void event_handler(uint32_t opcode,
  129. uint32_t token, uint32_t *payload, void *priv)
  130. {
  131. uint32_t *ptrmem = (uint32_t *)payload;
  132. switch (opcode) {
  133. case ASM_DATA_EVENT_WATERMARK:
  134. pr_debug("%s: Watermark level = 0x%08x\n", __func__, *ptrmem);
  135. break;
  136. case APR_BASIC_RSP_RESULT:
  137. pr_debug("%s: Payload = [0x%x]stat[0x%x]\n",
  138. __func__, payload[0], payload[1]);
  139. switch (payload[0]) {
  140. case ASM_SESSION_CMD_RUN_V2:
  141. case ASM_SESSION_CMD_PAUSE:
  142. case ASM_STREAM_CMD_FLUSH:
  143. break;
  144. default:
  145. break;
  146. }
  147. break;
  148. default:
  149. pr_debug("Not Supported Event opcode[0x%x]\n", opcode);
  150. break;
  151. }
  152. }
  153. static int msm_pcm_open(struct snd_pcm_substream *substream)
  154. {
  155. struct snd_pcm_runtime *runtime = substream->runtime;
  156. struct msm_audio *prtd;
  157. int ret = 0;
  158. prtd = kzalloc(sizeof(struct msm_audio), GFP_KERNEL);
  159. if (prtd == NULL)
  160. return -ENOMEM;
  161. prtd->substream = substream;
  162. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  163. runtime->hw = msm_pcm_hardware_playback;
  164. else
  165. runtime->hw = msm_pcm_hardware_capture;
  166. ret = snd_pcm_hw_constraint_list(runtime, 0,
  167. SNDRV_PCM_HW_PARAM_RATE,
  168. &constraints_sample_rates);
  169. if (ret)
  170. pr_info("snd_pcm_hw_constraint_list failed\n");
  171. ret = snd_pcm_hw_constraint_integer(runtime,
  172. SNDRV_PCM_HW_PARAM_PERIODS);
  173. if (ret)
  174. pr_info("snd_pcm_hw_constraint_integer failed\n");
  175. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  176. ret = snd_pcm_hw_constraint_minmax(runtime,
  177. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  178. SIO_PLAYBACK_MIN_BYTES,
  179. SIO_PLAYBACK_MAX_BYTES);
  180. if (ret) {
  181. pr_info("%s: P buffer bytes minmax constraint ret %d\n",
  182. __func__, ret);
  183. }
  184. } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  185. ret = snd_pcm_hw_constraint_minmax(runtime,
  186. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  187. SIO_CAPTURE_MIN_BYTES,
  188. SIO_CAPTURE_MAX_BYTES);
  189. if (ret) {
  190. pr_info("%s: C buffer bytes minmax constraint ret %d\n",
  191. __func__, ret);
  192. }
  193. }
  194. ret = snd_pcm_hw_constraint_step(runtime, 0,
  195. SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
  196. if (ret) {
  197. pr_err("%s: Constraint for period bytes step ret = %d\n",
  198. __func__, ret);
  199. }
  200. ret = snd_pcm_hw_constraint_step(runtime, 0,
  201. SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 32);
  202. if (ret) {
  203. pr_err("%s: Constraint for buffer bytes step ret = %d\n",
  204. __func__, ret);
  205. }
  206. prtd->audio_client = q6asm_audio_client_alloc(
  207. (app_cb)event_handler, prtd);
  208. if (!prtd->audio_client) {
  209. pr_err("%s: client alloc failed\n", __func__);
  210. ret = -ENOMEM;
  211. goto fail_cmd;
  212. }
  213. prtd->dsp_cnt = 0;
  214. prtd->set_channel_map = false;
  215. runtime->private_data = prtd;
  216. return 0;
  217. fail_cmd:
  218. kfree(prtd);
  219. return ret;
  220. }
  221. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  222. struct snd_pcm_hw_params *params)
  223. {
  224. struct snd_pcm_runtime *runtime = substream->runtime;
  225. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  226. struct msm_audio *prtd = runtime->private_data;
  227. struct msm_plat_data *pdata;
  228. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  229. struct audio_buffer *buf;
  230. struct shared_io_config config;
  231. uint16_t sample_word_size;
  232. uint16_t bits_per_sample;
  233. int ret;
  234. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? IN : OUT;
  235. unsigned long topology;
  236. int perf_mode;
  237. bool use_default_chmap = true;
  238. char *chmap = NULL;
  239. pdata = (struct msm_plat_data *)
  240. dev_get_drvdata(soc_prtd->platform->dev);
  241. if (!pdata) {
  242. ret = -EINVAL;
  243. pr_err("%s: platform data not populated ret: %d\n", __func__,
  244. ret);
  245. return ret;
  246. }
  247. topology = msm_pcm_fe_topology[soc_prtd->dai_link->id];
  248. if (!strcmp(msm_pcm_fe_topology_text[topology], "ULL_PP"))
  249. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  250. else if (!strcmp(msm_pcm_fe_topology_text[topology], "ULL"))
  251. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  252. else if (!strcmp(msm_pcm_fe_topology_text[topology], "LL"))
  253. perf_mode = LOW_LATENCY_PCM_MODE;
  254. else
  255. /* use the default from the device tree */
  256. perf_mode = pdata->perf_mode;
  257. /* need to set LOW_LATENCY_PCM_MODE for capture since
  258. * push mode does not support ULL
  259. */
  260. prtd->audio_client->perf_mode = (dir == IN) ?
  261. perf_mode :
  262. LOW_LATENCY_PCM_MODE;
  263. /* rate and channels are sent to audio driver */
  264. prtd->samp_rate = params_rate(params);
  265. prtd->channel_mode = params_channels(params);
  266. if (prtd->enabled)
  267. return 0;
  268. if (pdata->ch_map[soc_prtd->dai_link->id]) {
  269. use_default_chmap =
  270. !(pdata->ch_map[soc_prtd->dai_link->id]->set_ch_map);
  271. chmap =
  272. pdata->ch_map[soc_prtd->dai_link->id]->channel_map;
  273. }
  274. switch (runtime->format) {
  275. case SNDRV_PCM_FORMAT_S24_LE:
  276. bits_per_sample = 24;
  277. sample_word_size = 32;
  278. break;
  279. case SNDRV_PCM_FORMAT_S24_3LE:
  280. bits_per_sample = 24;
  281. sample_word_size = 24;
  282. break;
  283. case SNDRV_PCM_FORMAT_S16_LE:
  284. default:
  285. bits_per_sample = 16;
  286. sample_word_size = 16;
  287. break;
  288. }
  289. config.format = FORMAT_LINEAR_PCM;
  290. config.bits_per_sample = bits_per_sample;
  291. config.rate = params_rate(params);
  292. config.channels = params_channels(params);
  293. config.sample_word_size = sample_word_size;
  294. config.bufsz = params_buffer_bytes(params) / params_periods(params);
  295. config.bufcnt = params_periods(params);
  296. ret = q6asm_open_shared_io(prtd->audio_client, &config, dir,
  297. use_default_chmap, chmap);
  298. if (ret) {
  299. pr_err("%s: q6asm_open_write_shared_io failed ret: %d\n",
  300. __func__, ret);
  301. return ret;
  302. }
  303. prtd->pcm_size = params_buffer_bytes(params);
  304. prtd->pcm_count = params_buffer_bytes(params);
  305. prtd->pcm_irq_pos = 0;
  306. buf = prtd->audio_client->port[dir].buf;
  307. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  308. dma_buf->dev.dev = substream->pcm->card->dev;
  309. dma_buf->private_data = NULL;
  310. dma_buf->area = buf->data;
  311. dma_buf->addr = buf->phys;
  312. dma_buf->bytes = prtd->pcm_size;
  313. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  314. pr_debug("%s: session ID %d, perf %d\n", __func__,
  315. prtd->audio_client->session,
  316. prtd->audio_client->perf_mode);
  317. prtd->session_id = prtd->audio_client->session;
  318. pr_debug("msm_pcm_routing_reg_phy_stream w/ id %d\n",
  319. soc_prtd->dai_link->id);
  320. ret = msm_pcm_routing_reg_phy_stream(soc_prtd->dai_link->id,
  321. prtd->audio_client->perf_mode,
  322. prtd->session_id, substream->stream);
  323. if (ret) {
  324. pr_err("%s: stream reg failed ret:%d\n", __func__, ret);
  325. return ret;
  326. }
  327. atomic_set(&prtd->out_count, runtime->periods);
  328. prtd->enabled = 1;
  329. prtd->cmd_pending = 0;
  330. prtd->cmd_interrupt = 0;
  331. return 0;
  332. }
  333. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  334. {
  335. int ret = 0;
  336. struct snd_pcm_runtime *runtime = substream->runtime;
  337. struct msm_audio *prtd = runtime->private_data;
  338. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1;
  339. struct audio_buffer *buf;
  340. switch (cmd) {
  341. case SNDRV_PCM_TRIGGER_START:
  342. case SNDRV_PCM_TRIGGER_RESUME:
  343. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  344. pr_debug("%s: %s Trigger start\n", __func__,
  345. dir == 0 ? "P" : "C");
  346. ret = q6asm_run(prtd->audio_client, 0, 0, 0);
  347. if (ret)
  348. break;
  349. atomic_set(&prtd->start, 1);
  350. break;
  351. case SNDRV_PCM_TRIGGER_STOP:
  352. pr_debug("%s: SNDRV_PCM_TRIGGER_STOP\n", __func__);
  353. atomic_set(&prtd->start, 0);
  354. q6asm_cmd(prtd->audio_client, CMD_PAUSE);
  355. q6asm_cmd(prtd->audio_client, CMD_FLUSH);
  356. buf = q6asm_shared_io_buf(prtd->audio_client, dir);
  357. if (buf == NULL) {
  358. pr_err("%s: shared IO buffer is null\n", __func__);
  359. ret = -EINVAL;
  360. break;
  361. }
  362. memset(buf->data, 0, buf->actual_size);
  363. break;
  364. case SNDRV_PCM_TRIGGER_SUSPEND:
  365. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  366. pr_debug("%s: SNDRV_PCM_TRIGGER_PAUSE\n", __func__);
  367. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  368. atomic_set(&prtd->start, 0);
  369. break;
  370. default:
  371. ret = -EINVAL;
  372. break;
  373. }
  374. return ret;
  375. }
  376. static int msm_pcm_mmap_fd(struct snd_pcm_substream *substream,
  377. struct snd_pcm_mmap_fd *mmap_fd)
  378. {
  379. struct msm_audio *prtd;
  380. struct audio_port_data *apd;
  381. struct audio_buffer *ab;
  382. int dir = -1;
  383. if (!substream->runtime) {
  384. pr_err("%s substream runtime not found\n", __func__);
  385. return -EFAULT;
  386. }
  387. prtd = substream->runtime->private_data;
  388. if (!prtd || !prtd->audio_client || !prtd->mmap_flag) {
  389. pr_err("%s no audio client or not an mmap session\n", __func__);
  390. return -EINVAL;
  391. }
  392. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  393. dir = IN;
  394. else
  395. dir = OUT;
  396. apd = prtd->audio_client->port;
  397. ab = &(apd[dir].buf[0]);
  398. /*
  399. * Passing O_CLOEXEC as flag passed to fd, to be in sync with
  400. * previous implimentation.
  401. * This was the flag used by previous internal wrapper API, which
  402. * used to call dma_buf_fd internally.
  403. */
  404. mmap_fd->fd = dma_buf_fd(ab->dma_buf, O_CLOEXEC);
  405. if (mmap_fd->fd >= 0) {
  406. mmap_fd->dir = dir;
  407. mmap_fd->actual_size = ab->actual_size;
  408. mmap_fd->size = ab->size;
  409. }
  410. return mmap_fd->fd < 0 ? -EFAULT : 0;
  411. }
  412. static int msm_pcm_ioctl(struct snd_pcm_substream *substream,
  413. unsigned int cmd, void *arg)
  414. {
  415. struct snd_pcm_runtime *runtime = substream->runtime;
  416. struct msm_audio *prtd = runtime->private_data;
  417. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1;
  418. struct audio_buffer *buf;
  419. switch (cmd) {
  420. case SNDRV_PCM_IOCTL1_RESET:
  421. pr_debug("%s: %s SNDRV_PCM_IOCTL1_RESET\n", __func__,
  422. dir == 0 ? "P" : "C");
  423. buf = q6asm_shared_io_buf(prtd->audio_client, dir);
  424. if (buf && buf->data)
  425. memset(buf->data, 0, buf->actual_size);
  426. break;
  427. default:
  428. break;
  429. }
  430. return snd_pcm_lib_ioctl(substream, cmd, arg);
  431. }
  432. #ifdef CONFIG_COMPAT
  433. static int msm_pcm_compat_ioctl(struct snd_pcm_substream *substream,
  434. unsigned int cmd, void *arg)
  435. {
  436. /* we only handle RESET which is common for both modes */
  437. return msm_pcm_ioctl(substream, cmd, arg);
  438. }
  439. #endif
  440. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  441. {
  442. struct snd_pcm_runtime *runtime = substream->runtime;
  443. uint32_t read_index, wall_clk_msw, wall_clk_lsw;
  444. /*these are offsets, unlike ASoC's full values*/
  445. snd_pcm_sframes_t hw_ptr;
  446. snd_pcm_sframes_t period_size;
  447. int ret;
  448. int retries = 10;
  449. struct msm_audio *prtd = runtime->private_data;
  450. period_size = runtime->period_size;
  451. do {
  452. ret = q6asm_get_shared_pos(prtd->audio_client,
  453. &read_index, &wall_clk_msw,
  454. &wall_clk_lsw);
  455. } while (ret == -EAGAIN && --retries);
  456. if (ret || !period_size) {
  457. pr_err("get_shared_pos error or zero period size\n");
  458. return 0;
  459. }
  460. hw_ptr = bytes_to_frames(substream->runtime,
  461. read_index);
  462. if (runtime->control->appl_ptr == 0) {
  463. pr_debug("ptr(%s): appl(0), hw = %lu read_index = %u\n",
  464. prtd->substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
  465. "P" : "C",
  466. hw_ptr, read_index);
  467. }
  468. return (hw_ptr/period_size) * period_size;
  469. }
  470. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  471. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  472. {
  473. return -EINVAL;
  474. }
  475. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  476. struct vm_area_struct *vma)
  477. {
  478. struct snd_pcm_runtime *runtime = substream->runtime;
  479. struct msm_audio *prtd = runtime->private_data;
  480. struct audio_client *ac = prtd->audio_client;
  481. struct audio_port_data *apd = ac->port;
  482. struct audio_buffer *ab;
  483. int dir = -1;
  484. int ret;
  485. pr_debug("%s: mmap begin\n", __func__);
  486. prtd->mmap_flag = 1;
  487. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  488. dir = IN;
  489. else
  490. dir = OUT;
  491. ab = &(apd[dir].buf[0]);
  492. ret = msm_audio_ion_mmap(ab, vma);
  493. if (ret)
  494. prtd->mmap_flag = 0;
  495. return ret;
  496. }
  497. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  498. {
  499. struct snd_pcm_runtime *runtime = substream->runtime;
  500. struct msm_audio *prtd = runtime->private_data;
  501. if (!prtd || !prtd->mmap_flag)
  502. return -EIO;
  503. return 0;
  504. }
  505. static int msm_pcm_close(struct snd_pcm_substream *substream)
  506. {
  507. struct snd_pcm_runtime *runtime = substream->runtime;
  508. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  509. struct msm_audio *prtd = runtime->private_data;
  510. struct audio_client *ac = prtd->audio_client;
  511. uint32_t timeout;
  512. int dir = 0;
  513. int ret = 0;
  514. if (ac) {
  515. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  516. dir = IN;
  517. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  518. dir = OUT;
  519. /* determine timeout length */
  520. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  521. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  522. } else {
  523. timeout = (runtime->period_size *
  524. CMD_EOS_TIMEOUT_MULTIPLIER) /
  525. ((runtime->frame_bits / 8) *
  526. runtime->rate);
  527. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  528. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  529. }
  530. q6asm_cmd(ac, CMD_CLOSE);
  531. ret = q6asm_shared_io_free(ac, dir);
  532. if (ret) {
  533. pr_err("%s: Failed to close pull mode, ret %d\n",
  534. __func__, ret);
  535. }
  536. q6asm_audio_client_free(ac);
  537. }
  538. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  539. dir == IN ?
  540. SNDRV_PCM_STREAM_PLAYBACK :
  541. SNDRV_PCM_STREAM_CAPTURE);
  542. kfree(prtd);
  543. runtime->private_data = NULL;
  544. return 0;
  545. }
  546. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  547. {
  548. int rc = 0;
  549. if (prtd && prtd->audio_client) {
  550. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  551. prtd->channel_mode, volume);
  552. rc = q6asm_set_volume(prtd->audio_client, volume);
  553. if (rc < 0) {
  554. pr_err("%s: Send Volume command failed rc=%d\n",
  555. __func__, rc);
  556. }
  557. }
  558. return rc;
  559. }
  560. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  561. struct snd_ctl_elem_value *ucontrol)
  562. {
  563. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  564. struct snd_pcm_substream *substream =
  565. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  566. struct msm_audio *prtd;
  567. pr_debug("%s\n", __func__);
  568. if (!substream) {
  569. pr_err("%s substream not found\n", __func__);
  570. return -ENODEV;
  571. }
  572. if (!substream->runtime) {
  573. pr_debug("%s substream runtime not found\n", __func__);
  574. return 0;
  575. }
  576. prtd = substream->runtime->private_data;
  577. if (prtd)
  578. ucontrol->value.integer.value[0] = prtd->volume;
  579. return 0;
  580. }
  581. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  582. struct snd_ctl_elem_value *ucontrol)
  583. {
  584. int rc = 0;
  585. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  586. struct snd_pcm_substream *substream =
  587. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  588. struct msm_audio *prtd;
  589. int volume = ucontrol->value.integer.value[0];
  590. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  591. if (!substream) {
  592. pr_err("%s substream not found\n", __func__);
  593. return -ENODEV;
  594. }
  595. if (!substream->runtime) {
  596. pr_err("%s substream runtime not found\n", __func__);
  597. return 0;
  598. }
  599. prtd = substream->runtime->private_data;
  600. if (prtd) {
  601. rc = msm_pcm_set_volume(prtd, volume);
  602. prtd->volume = volume;
  603. }
  604. return rc;
  605. }
  606. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd)
  607. {
  608. int ret = 0;
  609. struct snd_pcm *pcm = rtd->pcm;
  610. struct snd_pcm_volume *volume_info;
  611. struct snd_kcontrol *kctl;
  612. dev_dbg(rtd->dev, "%s, Volume control add\n", __func__);
  613. ret = snd_pcm_add_volume_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  614. NULL, 1, rtd->dai_link->id,
  615. &volume_info);
  616. if (ret < 0) {
  617. pr_err("%s volume control failed ret %d\n", __func__, ret);
  618. return ret;
  619. }
  620. kctl = volume_info->kctl;
  621. kctl->put = msm_pcm_volume_ctl_put;
  622. kctl->get = msm_pcm_volume_ctl_get;
  623. kctl->tlv.p = msm_pcm_vol_gain;
  624. return 0;
  625. }
  626. static int msm_pcm_channel_map_put(struct snd_kcontrol *kcontrol,
  627. struct snd_ctl_elem_value *ucontrol)
  628. {
  629. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  630. u64 fe_id = kcontrol->private_value;
  631. struct msm_plat_data *pdata = (struct msm_plat_data *)
  632. snd_soc_component_get_drvdata(pcm);
  633. int rc = 0, i = 0;
  634. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  635. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  636. pr_err("%s Received out of bounds fe_id %llu\n",
  637. __func__, fe_id);
  638. rc = -EINVAL;
  639. goto end;
  640. }
  641. if (pdata->ch_map[fe_id]) {
  642. pdata->ch_map[fe_id]->set_ch_map = true;
  643. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  644. pdata->ch_map[fe_id]->channel_map[i] =
  645. (char)(ucontrol->value.integer.value[i]);
  646. } else {
  647. pr_debug("%s: no memory for ch_map, default will be set\n",
  648. __func__);
  649. }
  650. end:
  651. pr_debug("%s: ret %d\n", __func__, rc);
  652. return rc;
  653. }
  654. static int msm_pcm_channel_map_info(struct snd_kcontrol *kcontrol,
  655. struct snd_ctl_elem_info *uinfo)
  656. {
  657. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  658. uinfo->count = 8;
  659. uinfo->value.integer.min = 0;
  660. uinfo->value.integer.max = 0xFFFFFFFF;
  661. return 0;
  662. }
  663. static int msm_pcm_channel_map_get(struct snd_kcontrol *kcontrol,
  664. struct snd_ctl_elem_value *ucontrol)
  665. {
  666. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  667. u64 fe_id = kcontrol->private_value;
  668. struct msm_plat_data *pdata = (struct msm_plat_data *)
  669. snd_soc_component_get_drvdata(pcm);
  670. int rc = 0, i = 0;
  671. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  672. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  673. pr_err("%s: Received out of bounds fe_id %llu\n",
  674. __func__, fe_id);
  675. rc = -EINVAL;
  676. goto end;
  677. }
  678. if (pdata->ch_map[fe_id]) {
  679. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  680. ucontrol->value.integer.value[i] =
  681. pdata->ch_map[fe_id]->channel_map[i];
  682. }
  683. end:
  684. pr_debug("%s: ret %d\n", __func__, rc);
  685. return rc;
  686. }
  687. static int msm_pcm_add_channel_map_control(struct snd_soc_pcm_runtime *rtd)
  688. {
  689. const char *mixer_ctl_name = "Playback Channel Map";
  690. const char *deviceNo = "NN";
  691. char *mixer_str = NULL;
  692. struct msm_plat_data *pdata = NULL;
  693. int ctl_len = 0;
  694. struct snd_kcontrol_new fe_channel_map_control[1] = {
  695. {
  696. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  697. .name = "?",
  698. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  699. .info = msm_pcm_channel_map_info,
  700. .get = msm_pcm_channel_map_get,
  701. .put = msm_pcm_channel_map_put,
  702. .private_value = 0,
  703. }
  704. };
  705. if (!rtd) {
  706. pr_err("%s: NULL rtd\n", __func__);
  707. return -EINVAL;
  708. }
  709. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  710. __func__, rtd->dai_link->name, rtd->dai_link->id,
  711. rtd->dai_link->cpu_dai_name, rtd->pcm->device);
  712. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) + 1;
  713. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  714. if (!mixer_str)
  715. return -ENOMEM;
  716. snprintf(mixer_str, ctl_len, "%s%d", mixer_ctl_name, rtd->pcm->device);
  717. fe_channel_map_control[0].name = mixer_str;
  718. fe_channel_map_control[0].private_value = rtd->dai_link->id;
  719. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  720. snd_soc_add_platform_controls(rtd->platform,
  721. fe_channel_map_control,
  722. ARRAY_SIZE(fe_channel_map_control));
  723. pdata = snd_soc_platform_get_drvdata(rtd->platform);
  724. pdata->ch_map[rtd->dai_link->id] =
  725. kzalloc(sizeof(struct msm_pcm_ch_map), GFP_KERNEL);
  726. if (!pdata->ch_map[rtd->dai_link->id]) {
  727. pr_err("%s: Could not allocate memory for channel map\n",
  728. __func__);
  729. kfree(mixer_str);
  730. return -ENOMEM;
  731. }
  732. kfree(mixer_str);
  733. return 0;
  734. }
  735. static int msm_pcm_fe_topology_info(struct snd_kcontrol *kcontrol,
  736. struct snd_ctl_elem_info *uinfo)
  737. {
  738. const struct soc_enum *e = &msm_pcm_fe_topology_enum[0];
  739. return snd_ctl_enum_info(uinfo, 1, e->items, e->texts);
  740. }
  741. static int msm_pcm_fe_topology_get(struct snd_kcontrol *kcontrol,
  742. struct snd_ctl_elem_value *ucontrol)
  743. {
  744. unsigned long fe_id = kcontrol->private_value;
  745. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  746. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  747. return -EINVAL;
  748. }
  749. pr_debug("%s: %lu topology %s\n", __func__, fe_id,
  750. msm_pcm_fe_topology_text[msm_pcm_fe_topology[fe_id]]);
  751. ucontrol->value.enumerated.item[0] = msm_pcm_fe_topology[fe_id];
  752. return 0;
  753. }
  754. static int msm_pcm_fe_topology_put(struct snd_kcontrol *kcontrol,
  755. struct snd_ctl_elem_value *ucontrol)
  756. {
  757. unsigned long fe_id = kcontrol->private_value;
  758. unsigned int item;
  759. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  760. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  761. return -EINVAL;
  762. }
  763. item = ucontrol->value.enumerated.item[0];
  764. if (item >= ARRAY_SIZE(msm_pcm_fe_topology_text)) {
  765. pr_err("%s Received out of bound topology %lu\n", __func__,
  766. fe_id);
  767. return -EINVAL;
  768. }
  769. pr_debug("%s: %lu new topology %s\n", __func__, fe_id,
  770. msm_pcm_fe_topology_text[item]);
  771. msm_pcm_fe_topology[fe_id] = item;
  772. return 0;
  773. }
  774. static int msm_pcm_add_fe_topology_control(struct snd_soc_pcm_runtime *rtd)
  775. {
  776. const char *mixer_ctl_name = "PCM_Dev";
  777. const char *deviceNo = "NN";
  778. const char *topo_text = "Topology";
  779. char *mixer_str = NULL;
  780. int ctl_len;
  781. int ret;
  782. struct snd_kcontrol_new topology_control[1] = {
  783. {
  784. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  785. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  786. .name = "?",
  787. .info = msm_pcm_fe_topology_info,
  788. .get = msm_pcm_fe_topology_get,
  789. .put = msm_pcm_fe_topology_put,
  790. .private_value = 0,
  791. },
  792. };
  793. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1 +
  794. strlen(topo_text) + 1;
  795. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  796. if (!mixer_str)
  797. return -ENOMEM;
  798. snprintf(mixer_str, ctl_len, "%s %d %s", mixer_ctl_name,
  799. rtd->pcm->device, topo_text);
  800. topology_control[0].name = mixer_str;
  801. topology_control[0].private_value = rtd->dai_link->id;
  802. ret = snd_soc_add_platform_controls(rtd->platform, topology_control,
  803. ARRAY_SIZE(topology_control));
  804. msm_pcm_fe_topology[rtd->dai_link->id] = 0;
  805. kfree(mixer_str);
  806. return ret;
  807. }
  808. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  809. struct snd_ctl_elem_value *ucontrol)
  810. {
  811. u64 fe_id = kcontrol->private_value;
  812. int session_type = SESSION_TYPE_RX;
  813. int be_id = ucontrol->value.integer.value[3];
  814. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  815. int ret = 0;
  816. cfg_data.app_type = ucontrol->value.integer.value[0];
  817. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  818. if (ucontrol->value.integer.value[2] != 0)
  819. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  820. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  821. __func__, fe_id, session_type, be_id,
  822. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  823. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  824. be_id, &cfg_data);
  825. if (ret < 0)
  826. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  827. __func__, ret);
  828. return ret;
  829. }
  830. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  831. struct snd_ctl_elem_value *ucontrol)
  832. {
  833. u64 fe_id = kcontrol->private_value;
  834. int session_type = SESSION_TYPE_RX;
  835. int be_id = 0;
  836. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  837. int ret = 0;
  838. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  839. &be_id, &cfg_data);
  840. if (ret < 0) {
  841. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  842. __func__, ret);
  843. goto done;
  844. }
  845. ucontrol->value.integer.value[0] = cfg_data.app_type;
  846. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  847. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  848. ucontrol->value.integer.value[3] = be_id;
  849. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  850. __func__, fe_id, session_type, be_id,
  851. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  852. done:
  853. return ret;
  854. }
  855. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  856. struct snd_ctl_elem_value *ucontrol)
  857. {
  858. u64 fe_id = kcontrol->private_value;
  859. int session_type = SESSION_TYPE_TX;
  860. int be_id = ucontrol->value.integer.value[3];
  861. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  862. int ret = 0;
  863. cfg_data.app_type = ucontrol->value.integer.value[0];
  864. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  865. if (ucontrol->value.integer.value[2] != 0)
  866. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  867. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  868. __func__, fe_id, session_type, be_id,
  869. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  870. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  871. be_id, &cfg_data);
  872. if (ret < 0)
  873. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  874. __func__, ret);
  875. return ret;
  876. }
  877. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  878. struct snd_ctl_elem_value *ucontrol)
  879. {
  880. u64 fe_id = kcontrol->private_value;
  881. int session_type = SESSION_TYPE_TX;
  882. int be_id = 0;
  883. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  884. int ret = 0;
  885. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  886. &be_id, &cfg_data);
  887. if (ret < 0) {
  888. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  889. __func__, ret);
  890. goto done;
  891. }
  892. ucontrol->value.integer.value[0] = cfg_data.app_type;
  893. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  894. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  895. ucontrol->value.integer.value[3] = be_id;
  896. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  897. __func__, fe_id, session_type, be_id,
  898. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  899. done:
  900. return ret;
  901. }
  902. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  903. {
  904. struct snd_pcm *pcm = rtd->pcm;
  905. struct snd_pcm_usr *app_type_info;
  906. struct snd_kcontrol *kctl;
  907. const char *playback_mixer_ctl_name = "Audio Stream";
  908. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  909. const char *deviceNo = "NN";
  910. const char *suffix = "App Type Cfg";
  911. int ctl_len, ret = 0;
  912. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  913. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  914. strlen(deviceNo) + 1 +
  915. strlen(suffix) + 1;
  916. pr_debug("%s: Playback app type cntrl add\n", __func__);
  917. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  918. NULL, 1, ctl_len, rtd->dai_link->id,
  919. &app_type_info);
  920. if (ret < 0) {
  921. pr_err("%s: playback app type cntrl add failed, err: %d\n",
  922. __func__, ret);
  923. return ret;
  924. }
  925. kctl = app_type_info->kctl;
  926. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  927. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  928. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  929. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  930. }
  931. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  932. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  933. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  934. pr_debug("%s: Capture app type cntrl add\n", __func__);
  935. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  936. NULL, 1, ctl_len, rtd->dai_link->id,
  937. &app_type_info);
  938. if (ret < 0) {
  939. pr_err("%s: capture app type cntrl add failed, err: %d\n",
  940. __func__, ret);
  941. return ret;
  942. }
  943. kctl = app_type_info->kctl;
  944. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  945. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  946. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  947. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  948. }
  949. return 0;
  950. }
  951. static int msm_pcm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  952. unsigned int cmd, unsigned long arg)
  953. {
  954. int ret = 0;
  955. struct snd_pcm *pcm = hw->private_data;
  956. struct snd_pcm_mmap_fd __user *_mmap_fd = NULL;
  957. struct snd_pcm_mmap_fd mmap_fd;
  958. struct snd_pcm_substream *substream = NULL;
  959. int32_t dir = -1;
  960. switch (cmd) {
  961. case SNDRV_PCM_IOCTL_MMAP_DATA_FD:
  962. _mmap_fd = (struct snd_pcm_mmap_fd __user *)arg;
  963. if (get_user(dir, (int32_t __user *)&(_mmap_fd->dir))) {
  964. pr_err("%s: error copying mmap_fd from user\n",
  965. __func__);
  966. ret = -EFAULT;
  967. break;
  968. }
  969. if (dir != OUT && dir != IN) {
  970. pr_err("%s invalid stream dir\n", __func__);
  971. ret = -EINVAL;
  972. break;
  973. }
  974. substream = pcm->streams[dir].substream;
  975. if (!substream) {
  976. pr_err("%s substream not found\n", __func__);
  977. ret = -ENODEV;
  978. break;
  979. }
  980. pr_debug("%s : %s MMAP Data fd\n", __func__,
  981. dir == 0 ? "P" : "C");
  982. if (msm_pcm_mmap_fd(substream, &mmap_fd) < 0) {
  983. pr_err("%s: error getting fd\n",
  984. __func__);
  985. ret = -EFAULT;
  986. break;
  987. }
  988. if (put_user(mmap_fd.fd, &_mmap_fd->fd) ||
  989. put_user(mmap_fd.size, &_mmap_fd->size) ||
  990. put_user(mmap_fd.actual_size, &_mmap_fd->actual_size)) {
  991. pr_err("%s: error copying fd\n", __func__);
  992. return -EFAULT;
  993. }
  994. break;
  995. default:
  996. ret = -EINVAL;
  997. break;
  998. }
  999. return ret;
  1000. }
  1001. #ifdef CONFIG_COMPAT
  1002. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1003. struct file *file,
  1004. unsigned int cmd,
  1005. unsigned long arg)
  1006. {
  1007. /* we only support mmap fd. Handling is common in both modes */
  1008. return msm_pcm_hwdep_ioctl(hw, file, cmd, arg);
  1009. }
  1010. #else
  1011. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1012. struct file *file,
  1013. unsigned int cmd,
  1014. unsigned long arg)
  1015. {
  1016. return -EINVAL;
  1017. }
  1018. #endif
  1019. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1020. {
  1021. struct snd_hwdep *hwdep;
  1022. int rc;
  1023. char id[] = "NOIRQ_NN";
  1024. snprintf(id, sizeof(id), "NOIRQ_%d", runtime->pcm->device);
  1025. pr_debug("%s: pcm dev %d\n", __func__, runtime->pcm->device);
  1026. rc = snd_hwdep_new(runtime->card->snd_card,
  1027. &id[0],
  1028. HWDEP_FE_BASE + runtime->pcm->device,
  1029. &hwdep);
  1030. if (!hwdep || rc < 0) {
  1031. pr_err("%s: hwdep intf failed to create %s - hwdep\n", __func__,
  1032. id);
  1033. return rc;
  1034. }
  1035. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE; /* for lack of a FE iface */
  1036. hwdep->private_data = runtime->pcm; /* of type struct snd_pcm */
  1037. hwdep->ops.ioctl = msm_pcm_hwdep_ioctl;
  1038. hwdep->ops.ioctl_compat = msm_pcm_hwdep_compat_ioctl;
  1039. return 0;
  1040. }
  1041. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1042. {
  1043. struct snd_card *card = rtd->card->snd_card;
  1044. struct snd_pcm *pcm = rtd->pcm;
  1045. int ret;
  1046. pr_debug("%s , register new control\n", __func__);
  1047. if (!card->dev->coherent_dma_mask)
  1048. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1049. ret = msm_pcm_add_channel_map_control(rtd);
  1050. if (ret)
  1051. pr_err("%s: Could not add pcm Channel Map Control\n",
  1052. __func__);
  1053. ret = msm_pcm_add_volume_control(rtd);
  1054. if (ret) {
  1055. pr_err("%s: Could not add pcm Volume Control %d\n",
  1056. __func__, ret);
  1057. }
  1058. ret = msm_pcm_add_fe_topology_control(rtd);
  1059. if (ret) {
  1060. pr_err("%s: Could not add pcm topology control %d\n",
  1061. __func__, ret);
  1062. }
  1063. ret = msm_pcm_add_app_type_controls(rtd);
  1064. if (ret) {
  1065. pr_err("%s: Could not add app type controls failed %d\n",
  1066. __func__, ret);
  1067. }
  1068. ret = msm_pcm_add_hwdep_dev(rtd);
  1069. if (ret)
  1070. pr_err("%s: Could not add hw dep node\n", __func__);
  1071. pcm->nonatomic = true;
  1072. return ret;
  1073. }
  1074. static const struct snd_pcm_ops msm_pcm_ops = {
  1075. .open = msm_pcm_open,
  1076. .prepare = msm_pcm_prepare,
  1077. .copy_user = msm_pcm_copy,
  1078. .hw_params = msm_pcm_hw_params,
  1079. .ioctl = msm_pcm_ioctl,
  1080. #ifdef CONFIG_COMPAT
  1081. .compat_ioctl = msm_pcm_compat_ioctl,
  1082. #endif
  1083. .trigger = msm_pcm_trigger,
  1084. .pointer = msm_pcm_pointer,
  1085. .mmap = msm_pcm_mmap,
  1086. .close = msm_pcm_close,
  1087. };
  1088. static struct snd_soc_platform_driver msm_soc_platform = {
  1089. .ops = &msm_pcm_ops,
  1090. .pcm_new = msm_asoc_pcm_new,
  1091. };
  1092. static int msm_pcm_probe(struct platform_device *pdev)
  1093. {
  1094. int rc;
  1095. struct msm_plat_data *pdata;
  1096. const char *latency_level;
  1097. int perf_mode = LOW_LATENCY_PCM_MODE;
  1098. dev_dbg(&pdev->dev, "Pull mode driver probe\n");
  1099. if (of_property_read_bool(pdev->dev.of_node,
  1100. "qcom,msm-pcm-low-latency")) {
  1101. rc = of_property_read_string(pdev->dev.of_node,
  1102. "qcom,latency-level", &latency_level);
  1103. if (!rc) {
  1104. if (!strcmp(latency_level, "ultra"))
  1105. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1106. else if (!strcmp(latency_level, "ull-pp"))
  1107. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  1108. }
  1109. }
  1110. pdata = devm_kzalloc(&pdev->dev,
  1111. sizeof(struct msm_plat_data), GFP_KERNEL);
  1112. if (!pdata)
  1113. return -ENOMEM;
  1114. pdata->perf_mode = perf_mode;
  1115. dev_set_drvdata(&pdev->dev, pdata);
  1116. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1117. __func__, dev_name(&pdev->dev));
  1118. dev_dbg(&pdev->dev, "Pull mode driver register\n");
  1119. rc = snd_soc_register_platform(&pdev->dev,
  1120. &msm_soc_platform);
  1121. if (rc)
  1122. dev_err(&pdev->dev, "Failed to register pull mode driver\n");
  1123. return rc;
  1124. }
  1125. static int msm_pcm_remove(struct platform_device *pdev)
  1126. {
  1127. struct msm_plat_data *pdata;
  1128. dev_dbg(&pdev->dev, "Pull mode remove\n");
  1129. pdata = dev_get_drvdata(&pdev->dev);
  1130. devm_kfree(&pdev->dev, pdata);
  1131. snd_soc_unregister_platform(&pdev->dev);
  1132. return 0;
  1133. }
  1134. static const struct of_device_id msm_pcm_noirq_dt_match[] = {
  1135. {.compatible = "qcom,msm-pcm-dsp-noirq"},
  1136. {}
  1137. };
  1138. MODULE_DEVICE_TABLE(of, msm_pcm_noirq_dt_match);
  1139. static struct platform_driver msm_pcm_driver_noirq = {
  1140. .driver = {
  1141. .name = "msm-pcm-dsp-noirq",
  1142. .owner = THIS_MODULE,
  1143. .of_match_table = msm_pcm_noirq_dt_match,
  1144. },
  1145. .probe = msm_pcm_probe,
  1146. .remove = msm_pcm_remove,
  1147. };
  1148. int __init msm_pcm_noirq_init(void)
  1149. {
  1150. return platform_driver_register(&msm_pcm_driver_noirq);
  1151. }
  1152. void msm_pcm_noirq_exit(void)
  1153. {
  1154. platform_driver_unregister(&msm_pcm_driver_noirq);
  1155. }
  1156. MODULE_DESCRIPTION("PCM NOIRQ module platform driver");
  1157. MODULE_LICENSE("GPL v2");