msm-pcm-q6-noirq.c 41 KB

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