audio_wmapro.c 11 KB

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