audio_wmapro.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* wmapro audio output device
  3. *
  4. * Copyright (C) 2008 Google, Inc.
  5. * Copyright (C) 2008 HTC Corporation
  6. * Copyright (c) 2009-2019, The Linux Foundation. All rights reserved.
  7. *
  8. * This software is licensed under the terms of the GNU General Public
  9. * License version 2, as published by the Free Software Foundation, and
  10. * may be copied, distributed, and modified under those terms.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. */
  18. #include <linux/types.h>
  19. #include <linux/msm_audio_wmapro.h>
  20. #include <linux/compat.h>
  21. #include "audio_utils_aio.h"
  22. static struct miscdevice audio_wmapro_misc;
  23. static struct ws_mgr audio_wmapro_ws_mgr;
  24. #ifdef CONFIG_DEBUG_FS
  25. static const struct file_operations audio_wmapro_debug_fops = {
  26. .read = audio_aio_debug_read,
  27. .open = audio_aio_debug_open,
  28. };
  29. #endif
  30. static long audio_ioctl_shared(struct file *file, unsigned int cmd,
  31. void *arg)
  32. {
  33. struct q6audio_aio *audio = file->private_data;
  34. int rc = 0;
  35. switch (cmd) {
  36. case AUDIO_START: {
  37. struct asm_wmapro_cfg wmapro_cfg;
  38. struct msm_audio_wmapro_config *wmapro_config;
  39. pr_debug("%s: AUDIO_START session_id[%d]\n", __func__,
  40. audio->ac->session);
  41. if (audio->feedback == NON_TUNNEL_MODE) {
  42. /* Configure PCM output block */
  43. rc = q6asm_enc_cfg_blk_pcm_v2(audio->ac,
  44. audio->pcm_cfg.sample_rate,
  45. audio->pcm_cfg.channel_count,
  46. 16, /* bits per sample */
  47. true, /* use default channel map */
  48. true, /* use back channel map flavor */
  49. NULL);
  50. if (rc < 0) {
  51. pr_err("pcm output block config failed\n");
  52. break;
  53. }
  54. }
  55. wmapro_config = (struct msm_audio_wmapro_config *)
  56. audio->codec_cfg;
  57. if ((wmapro_config->formattag == 0x162) ||
  58. (wmapro_config->formattag == 0x163) ||
  59. (wmapro_config->formattag == 0x166) ||
  60. (wmapro_config->formattag == 0x167)) {
  61. wmapro_cfg.format_tag = wmapro_config->formattag;
  62. } else {
  63. pr_err("%s:AUDIO_START failed: formattag = %d\n",
  64. __func__, wmapro_config->formattag);
  65. rc = -EINVAL;
  66. break;
  67. }
  68. if (wmapro_config->numchannels > 0) {
  69. wmapro_cfg.ch_cfg = wmapro_config->numchannels;
  70. } else {
  71. pr_err("%s:AUDIO_START failed: channels = %d\n",
  72. __func__, wmapro_config->numchannels);
  73. rc = -EINVAL;
  74. break;
  75. }
  76. if (wmapro_config->samplingrate > 0) {
  77. wmapro_cfg.sample_rate = wmapro_config->samplingrate;
  78. } else {
  79. pr_err("%s:AUDIO_START failed: sample_rate = %d\n",
  80. __func__, wmapro_config->samplingrate);
  81. rc = -EINVAL;
  82. break;
  83. }
  84. wmapro_cfg.avg_bytes_per_sec =
  85. wmapro_config->avgbytespersecond;
  86. if ((wmapro_config->asfpacketlength <= 13376) ||
  87. (wmapro_config->asfpacketlength > 0)) {
  88. wmapro_cfg.block_align =
  89. wmapro_config->asfpacketlength;
  90. } else {
  91. pr_err("%s:AUDIO_START failed: block_align = %d\n",
  92. __func__, wmapro_config->asfpacketlength);
  93. rc = -EINVAL;
  94. break;
  95. }
  96. if ((wmapro_config->validbitspersample == 16) ||
  97. (wmapro_config->validbitspersample == 24)) {
  98. wmapro_cfg.valid_bits_per_sample =
  99. wmapro_config->validbitspersample;
  100. } else {
  101. pr_err("%s:AUDIO_START failed: bitspersample = %d\n",
  102. __func__, wmapro_config->validbitspersample);
  103. rc = -EINVAL;
  104. break;
  105. }
  106. wmapro_cfg.ch_mask = wmapro_config->channelmask;
  107. wmapro_cfg.encode_opt = wmapro_config->encodeopt;
  108. wmapro_cfg.adv_encode_opt =
  109. wmapro_config->advancedencodeopt;
  110. wmapro_cfg.adv_encode_opt2 =
  111. wmapro_config->advancedencodeopt2;
  112. /* Configure Media format block */
  113. rc = q6asm_media_format_block_wmapro(audio->ac, &wmapro_cfg,
  114. audio->ac->stream_id);
  115. if (rc < 0) {
  116. pr_err("cmd media format block failed\n");
  117. break;
  118. }
  119. rc = audio_aio_enable(audio);
  120. audio->eos_rsp = 0;
  121. audio->eos_flag = 0;
  122. if (!rc) {
  123. audio->enabled = 1;
  124. } else {
  125. audio->enabled = 0;
  126. pr_err("Audio Start procedure failed rc=%d\n", rc);
  127. break;
  128. }
  129. pr_debug("AUDIO_START success enable[%d]\n", audio->enabled);
  130. if (audio->stopped == 1)
  131. audio->stopped = 0;
  132. break;
  133. }
  134. default:
  135. pr_err("%s: Unknown ioctl cmd %d\n", __func__, cmd);
  136. rc = -EINVAL;
  137. break;
  138. }
  139. return rc;
  140. }
  141. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  142. {
  143. struct q6audio_aio *audio = file->private_data;
  144. int rc = 0;
  145. switch (cmd) {
  146. case AUDIO_GET_WMAPRO_CONFIG: {
  147. if (copy_to_user((void *)arg, audio->codec_cfg,
  148. sizeof(struct msm_audio_wmapro_config))) {
  149. pr_err("%s: copy_to_user for AUDIO_GET_WMAPRO_CONFIG failed\n",
  150. __func__);
  151. rc = -EFAULT;
  152. }
  153. break;
  154. }
  155. case AUDIO_SET_WMAPRO_CONFIG: {
  156. if (copy_from_user(audio->codec_cfg, (void *)arg,
  157. sizeof(struct msm_audio_wmapro_config))) {
  158. pr_err("%s: copy_from_user for AUDIO_SET_WMAPRO_CONFIG_V2 failed\n",
  159. __func__);
  160. rc = -EFAULT;
  161. break;
  162. }
  163. break;
  164. }
  165. case AUDIO_START: {
  166. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  167. break;
  168. }
  169. default: {
  170. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  171. rc = audio->codec_ioctl(file, cmd, arg);
  172. if (rc)
  173. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  174. break;
  175. }
  176. }
  177. return rc;
  178. }
  179. #ifdef CONFIG_COMPAT
  180. struct msm_audio_wmapro_config32 {
  181. u16 armdatareqthr;
  182. u8 validbitspersample;
  183. u8 numchannels;
  184. u16 formattag;
  185. u32 samplingrate;
  186. u32 avgbytespersecond;
  187. u16 asfpacketlength;
  188. u32 channelmask;
  189. u16 encodeopt;
  190. u16 advancedencodeopt;
  191. u32 advancedencodeopt2;
  192. };
  193. enum {
  194. AUDIO_GET_WMAPRO_CONFIG_32 = _IOR(AUDIO_IOCTL_MAGIC,
  195. (AUDIO_MAX_COMMON_IOCTL_NUM+0), struct msm_audio_wmapro_config32),
  196. AUDIO_SET_WMAPRO_CONFIG_32 = _IOW(AUDIO_IOCTL_MAGIC,
  197. (AUDIO_MAX_COMMON_IOCTL_NUM+1), struct msm_audio_wmapro_config32)
  198. };
  199. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  200. unsigned long arg)
  201. {
  202. struct q6audio_aio *audio = file->private_data;
  203. int rc = 0;
  204. switch (cmd) {
  205. case AUDIO_GET_WMAPRO_CONFIG_32: {
  206. struct msm_audio_wmapro_config *wmapro_config;
  207. struct msm_audio_wmapro_config32 wmapro_config_32;
  208. memset(&wmapro_config_32, 0, sizeof(wmapro_config_32));
  209. wmapro_config =
  210. (struct msm_audio_wmapro_config *)audio->codec_cfg;
  211. wmapro_config_32.armdatareqthr = wmapro_config->armdatareqthr;
  212. wmapro_config_32.validbitspersample =
  213. wmapro_config->validbitspersample;
  214. wmapro_config_32.numchannels = wmapro_config->numchannels;
  215. wmapro_config_32.formattag = wmapro_config->formattag;
  216. wmapro_config_32.samplingrate = wmapro_config->samplingrate;
  217. wmapro_config_32.avgbytespersecond =
  218. wmapro_config->avgbytespersecond;
  219. wmapro_config_32.asfpacketlength =
  220. wmapro_config->asfpacketlength;
  221. wmapro_config_32.channelmask = wmapro_config->channelmask;
  222. wmapro_config_32.encodeopt = wmapro_config->encodeopt;
  223. wmapro_config_32.advancedencodeopt =
  224. wmapro_config->advancedencodeopt;
  225. wmapro_config_32.advancedencodeopt2 =
  226. wmapro_config->advancedencodeopt2;
  227. if (copy_to_user((void *)arg, &wmapro_config_32,
  228. sizeof(struct msm_audio_wmapro_config32))) {
  229. pr_err("%s: copy_to_user for AUDIO_GET_WMAPRO_CONFIG_V2_32 failed\n",
  230. __func__);
  231. rc = -EFAULT;
  232. }
  233. break;
  234. }
  235. case AUDIO_SET_WMAPRO_CONFIG_32: {
  236. struct msm_audio_wmapro_config *wmapro_config;
  237. struct msm_audio_wmapro_config32 wmapro_config_32;
  238. if (copy_from_user(&wmapro_config_32, (void *)arg,
  239. sizeof(struct msm_audio_wmapro_config32))) {
  240. pr_err(
  241. "%s: copy_from_user for AUDIO_SET_WMAPRO_CONFG_V2_32 failed\n",
  242. __func__);
  243. rc = -EFAULT;
  244. break;
  245. }
  246. wmapro_config =
  247. (struct msm_audio_wmapro_config *)audio->codec_cfg;
  248. wmapro_config->armdatareqthr = wmapro_config_32.armdatareqthr;
  249. wmapro_config->validbitspersample =
  250. wmapro_config_32.validbitspersample;
  251. wmapro_config->numchannels = wmapro_config_32.numchannels;
  252. wmapro_config->formattag = wmapro_config_32.formattag;
  253. wmapro_config->samplingrate = wmapro_config_32.samplingrate;
  254. wmapro_config->avgbytespersecond =
  255. wmapro_config_32.avgbytespersecond;
  256. wmapro_config->asfpacketlength =
  257. wmapro_config_32.asfpacketlength;
  258. wmapro_config->channelmask = wmapro_config_32.channelmask;
  259. wmapro_config->encodeopt = wmapro_config_32.encodeopt;
  260. wmapro_config->advancedencodeopt =
  261. wmapro_config_32.advancedencodeopt;
  262. wmapro_config->advancedencodeopt2 =
  263. wmapro_config_32.advancedencodeopt2;
  264. break;
  265. }
  266. case AUDIO_START: {
  267. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  268. break;
  269. }
  270. default: {
  271. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  272. rc = audio->codec_compat_ioctl(file, cmd, arg);
  273. if (rc)
  274. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  275. break;
  276. }
  277. }
  278. return rc;
  279. }
  280. #else
  281. #define audio_compat_ioctl NULL
  282. #endif
  283. static int audio_open(struct inode *inode, struct file *file)
  284. {
  285. struct q6audio_aio *audio = NULL;
  286. int rc = 0;
  287. #ifdef CONFIG_DEBUG_FS
  288. /* 4 bytes represents decoder number, 1 byte for terminate string */
  289. char name[sizeof "msm_wmapro_" + 5];
  290. #endif
  291. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  292. if (audio == NULL)
  293. return -ENOMEM;
  294. audio->codec_cfg = kzalloc(sizeof(struct msm_audio_wmapro_config),
  295. GFP_KERNEL);
  296. if (audio->codec_cfg == NULL) {
  297. kfree(audio);
  298. return -ENOMEM;
  299. }
  300. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  301. audio->miscdevice = &audio_wmapro_misc;
  302. audio->wakelock_voted = false;
  303. audio->audio_ws_mgr = &audio_wmapro_ws_mgr;
  304. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  305. (void *)audio);
  306. if (!audio->ac) {
  307. pr_err("Could not allocate memory for audio client\n");
  308. kfree(audio->codec_cfg);
  309. kfree(audio);
  310. return -ENOMEM;
  311. }
  312. rc = audio_aio_open(audio, file);
  313. if (rc < 0) {
  314. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  315. __func__, rc);
  316. goto fail;
  317. }
  318. /* open in T/NT mode */
  319. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  320. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  321. FORMAT_WMA_V10PRO);
  322. if (rc < 0) {
  323. pr_err("NT mode Open failed rc=%d\n", rc);
  324. rc = -ENODEV;
  325. goto fail;
  326. }
  327. audio->feedback = NON_TUNNEL_MODE;
  328. /* open WMA decoder, expected frames is always 1*/
  329. audio->buf_cfg.frames_per_buf = 0x01;
  330. audio->buf_cfg.meta_info_enable = 0x01;
  331. } else if ((file->f_mode & FMODE_WRITE) &&
  332. !(file->f_mode & FMODE_READ)) {
  333. rc = q6asm_open_write(audio->ac, FORMAT_WMA_V10PRO);
  334. if (rc < 0) {
  335. pr_err("T mode Open failed rc=%d\n", rc);
  336. rc = -ENODEV;
  337. goto fail;
  338. }
  339. audio->feedback = TUNNEL_MODE;
  340. audio->buf_cfg.meta_info_enable = 0x00;
  341. } else {
  342. pr_err("Not supported mode\n");
  343. rc = -EACCES;
  344. goto fail;
  345. }
  346. #ifdef CONFIG_DEBUG_FS
  347. snprintf(name, sizeof(name), "msm_wmapro_%04x", audio->ac->session);
  348. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  349. NULL, (void *)audio,
  350. &audio_wmapro_debug_fops);
  351. if (IS_ERR(audio->dentry))
  352. pr_debug("debugfs_create_file failed\n");
  353. #endif
  354. pr_info("%s:wmapro decoder open success, session_id = %d\n", __func__,
  355. audio->ac->session);
  356. return rc;
  357. fail:
  358. q6asm_audio_client_free(audio->ac);
  359. kfree(audio->codec_cfg);
  360. kfree(audio);
  361. return rc;
  362. }
  363. static const struct file_operations audio_wmapro_fops = {
  364. .owner = THIS_MODULE,
  365. .open = audio_open,
  366. .release = audio_aio_release,
  367. .unlocked_ioctl = audio_ioctl,
  368. .fsync = audio_aio_fsync,
  369. .compat_ioctl = audio_compat_ioctl
  370. };
  371. static struct miscdevice audio_wmapro_misc = {
  372. .minor = MISC_DYNAMIC_MINOR,
  373. .name = "msm_wmapro",
  374. .fops = &audio_wmapro_fops,
  375. };
  376. int __init audio_wmapro_init(void)
  377. {
  378. int ret = misc_register(&audio_wmapro_misc);
  379. if (ret == 0)
  380. device_init_wakeup(audio_wmapro_misc.this_device, true);
  381. audio_wmapro_ws_mgr.ref_cnt = 0;
  382. mutex_init(&audio_wmapro_ws_mgr.ws_lock);
  383. return ret;
  384. }
  385. void audio_wmapro_exit(void)
  386. {
  387. mutex_destroy(&audio_wmapro_ws_mgr.ws_lock);
  388. misc_deregister(&audio_wmapro_misc);
  389. }