audio_wma.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* wma audio output device
  3. *
  4. * Copyright (C) 2008 Google, Inc.
  5. * Copyright (C) 2008 HTC Corporation
  6. * Copyright (c) 2009-2020, 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 <audio/linux/msm_audio_wma.h>
  20. #include <linux/compat.h>
  21. #include "audio_utils_aio.h"
  22. static struct miscdevice audio_wma_misc;
  23. static struct ws_mgr audio_wma_ws_mgr;
  24. #ifdef CONFIG_DEBUG_FS
  25. static const struct file_operations audio_wma_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_wma_cfg wma_cfg;
  38. struct msm_audio_wma_config_v2 *wma_config;
  39. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  40. audio, audio->ac->session);
  41. if (audio->feedback == NON_TUNNEL_MODE) {
  42. /* Configure PCM output block */
  43. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  44. audio->pcm_cfg.sample_rate,
  45. audio->pcm_cfg.channel_count);
  46. if (rc < 0) {
  47. pr_err("pcm output block config failed\n");
  48. break;
  49. }
  50. }
  51. wma_config = (struct msm_audio_wma_config_v2 *)audio->codec_cfg;
  52. wma_cfg.format_tag = wma_config->format_tag;
  53. wma_cfg.ch_cfg = wma_config->numchannels;
  54. wma_cfg.sample_rate = wma_config->samplingrate;
  55. wma_cfg.avg_bytes_per_sec = wma_config->avgbytespersecond;
  56. wma_cfg.block_align = wma_config->block_align;
  57. wma_cfg.valid_bits_per_sample =
  58. wma_config->validbitspersample;
  59. wma_cfg.ch_mask = wma_config->channelmask;
  60. wma_cfg.encode_opt = wma_config->encodeopt;
  61. /* Configure Media format block */
  62. rc = q6asm_media_format_block_wma(audio->ac, &wma_cfg,
  63. audio->ac->stream_id);
  64. if (rc < 0) {
  65. pr_err("cmd media format block failed\n");
  66. break;
  67. }
  68. rc = audio_aio_enable(audio);
  69. audio->eos_rsp = 0;
  70. audio->eos_flag = 0;
  71. if (!rc) {
  72. audio->enabled = 1;
  73. } else {
  74. audio->enabled = 0;
  75. pr_err("Audio Start procedure failed rc=%d\n", rc);
  76. break;
  77. }
  78. pr_debug("AUDIO_START success enable[%d]\n", audio->enabled);
  79. if (audio->stopped == 1)
  80. audio->stopped = 0;
  81. break;
  82. }
  83. default:
  84. pr_err("%s: Unknown ioctl cmd = %d", __func__, cmd);
  85. break;
  86. }
  87. return rc;
  88. }
  89. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  90. {
  91. struct q6audio_aio *audio = file->private_data;
  92. int rc = 0;
  93. switch (cmd) {
  94. case AUDIO_START: {
  95. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  96. break;
  97. }
  98. case AUDIO_GET_WMA_CONFIG_V2: {
  99. if (copy_to_user((void *)arg, audio->codec_cfg,
  100. sizeof(struct msm_audio_wma_config_v2))) {
  101. pr_err("%s:copy_to_user for AUDIO_SET_WMA_CONFIG_V2 failed\n",
  102. __func__);
  103. rc = -EFAULT;
  104. break;
  105. }
  106. break;
  107. }
  108. case AUDIO_SET_WMA_CONFIG_V2: {
  109. if (copy_from_user(audio->codec_cfg, (void *)arg,
  110. sizeof(struct msm_audio_wma_config_v2))) {
  111. pr_err("%s:copy_from_user for AUDIO_SET_WMA_CONFIG_V2 failed\n",
  112. __func__);
  113. rc = -EFAULT;
  114. break;
  115. }
  116. break;
  117. }
  118. default: {
  119. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  120. rc = audio->codec_ioctl(file, cmd, arg);
  121. if (rc)
  122. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  123. break;
  124. }
  125. }
  126. return rc;
  127. }
  128. #ifdef CONFIG_COMPAT
  129. struct msm_audio_wma_config_v2_32 {
  130. u16 format_tag;
  131. u16 numchannels;
  132. u32 samplingrate;
  133. u32 avgbytespersecond;
  134. u16 block_align;
  135. u16 validbitspersample;
  136. u32 channelmask;
  137. u16 encodeopt;
  138. };
  139. enum {
  140. AUDIO_GET_WMA_CONFIG_V2_32 = _IOR(AUDIO_IOCTL_MAGIC,
  141. (AUDIO_MAX_COMMON_IOCTL_NUM+2), struct msm_audio_wma_config_v2_32),
  142. AUDIO_SET_WMA_CONFIG_V2_32 = _IOW(AUDIO_IOCTL_MAGIC,
  143. (AUDIO_MAX_COMMON_IOCTL_NUM+3), struct msm_audio_wma_config_v2_32)
  144. };
  145. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  146. unsigned long arg)
  147. {
  148. struct q6audio_aio *audio = file->private_data;
  149. int rc = 0;
  150. switch (cmd) {
  151. case AUDIO_START: {
  152. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  153. break;
  154. }
  155. case AUDIO_GET_WMA_CONFIG_V2_32: {
  156. struct msm_audio_wma_config_v2 *wma_config;
  157. struct msm_audio_wma_config_v2_32 wma_config_32;
  158. memset(&wma_config_32, 0, sizeof(wma_config_32));
  159. wma_config = (struct msm_audio_wma_config_v2 *)audio->codec_cfg;
  160. wma_config_32.format_tag = wma_config->format_tag;
  161. wma_config_32.numchannels = wma_config->numchannels;
  162. wma_config_32.samplingrate = wma_config->samplingrate;
  163. wma_config_32.avgbytespersecond = wma_config->avgbytespersecond;
  164. wma_config_32.block_align = wma_config->block_align;
  165. wma_config_32.validbitspersample =
  166. wma_config->validbitspersample;
  167. wma_config_32.channelmask = wma_config->channelmask;
  168. wma_config_32.encodeopt = wma_config->encodeopt;
  169. if (copy_to_user((void *)arg, &wma_config_32,
  170. sizeof(wma_config_32))) {
  171. pr_err("%s: copy_to_user for GET_WMA_CONFIG_V2_32 failed\n",
  172. __func__);
  173. rc = -EFAULT;
  174. break;
  175. }
  176. break;
  177. }
  178. case AUDIO_SET_WMA_CONFIG_V2_32: {
  179. struct msm_audio_wma_config_v2 *wma_config;
  180. struct msm_audio_wma_config_v2_32 wma_config_32;
  181. if (copy_from_user(&wma_config_32, (void *)arg,
  182. sizeof(wma_config_32))) {
  183. pr_err("%s: copy_from_user for SET_WMA_CONFIG_V2_32 failed\n"
  184. , __func__);
  185. rc = -EFAULT;
  186. break;
  187. }
  188. wma_config = (struct msm_audio_wma_config_v2 *)audio->codec_cfg;
  189. wma_config->format_tag = wma_config_32.format_tag;
  190. wma_config->numchannels = wma_config_32.numchannels;
  191. wma_config->samplingrate = wma_config_32.samplingrate;
  192. wma_config->avgbytespersecond = wma_config_32.avgbytespersecond;
  193. wma_config->block_align = wma_config_32.block_align;
  194. wma_config->validbitspersample =
  195. wma_config_32.validbitspersample;
  196. wma_config->channelmask = wma_config_32.channelmask;
  197. wma_config->encodeopt = wma_config_32.encodeopt;
  198. break;
  199. }
  200. default: {
  201. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  202. rc = audio->codec_compat_ioctl(file, cmd, arg);
  203. if (rc)
  204. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  205. break;
  206. }
  207. }
  208. return rc;
  209. }
  210. #else
  211. #define audio_compat_ioctl NULL
  212. #endif
  213. static int audio_open(struct inode *inode, struct file *file)
  214. {
  215. struct q6audio_aio *audio = NULL;
  216. int rc = 0;
  217. #ifdef CONFIG_DEBUG_FS
  218. /* 4 bytes represents decoder number, 1 byte for terminate string */
  219. char name[sizeof "msm_wma_" + 5];
  220. #endif
  221. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  222. if (audio == NULL)
  223. return -ENOMEM;
  224. audio->codec_cfg = kzalloc(sizeof(struct msm_audio_wma_config_v2),
  225. GFP_KERNEL);
  226. if (audio->codec_cfg == NULL) {
  227. kfree(audio);
  228. return -ENOMEM;
  229. }
  230. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  231. audio->miscdevice = &audio_wma_misc;
  232. audio->wakelock_voted = false;
  233. audio->audio_ws_mgr = &audio_wma_ws_mgr;
  234. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  235. (void *)audio);
  236. if (!audio->ac) {
  237. pr_err("Could not allocate memory for audio client\n");
  238. kfree(audio->codec_cfg);
  239. kfree(audio);
  240. return -ENOMEM;
  241. }
  242. rc = audio_aio_open(audio, file);
  243. if (rc < 0) {
  244. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  245. __func__, rc);
  246. goto fail;
  247. }
  248. /* open in T/NT mode */
  249. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  250. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  251. FORMAT_WMA_V9);
  252. if (rc < 0) {
  253. pr_err("NT mode Open failed rc=%d\n", rc);
  254. rc = -ENODEV;
  255. goto fail;
  256. }
  257. audio->feedback = NON_TUNNEL_MODE;
  258. /* open WMA decoder, expected frames is always 1*/
  259. audio->buf_cfg.frames_per_buf = 0x01;
  260. audio->buf_cfg.meta_info_enable = 0x01;
  261. } else if ((file->f_mode & FMODE_WRITE) &&
  262. !(file->f_mode & FMODE_READ)) {
  263. rc = q6asm_open_write(audio->ac, FORMAT_WMA_V9);
  264. if (rc < 0) {
  265. pr_err("T mode Open failed rc=%d\n", rc);
  266. rc = -ENODEV;
  267. goto fail;
  268. }
  269. audio->feedback = TUNNEL_MODE;
  270. audio->buf_cfg.meta_info_enable = 0x00;
  271. } else {
  272. pr_err("Not supported mode\n");
  273. rc = -EACCES;
  274. goto fail;
  275. }
  276. #ifdef CONFIG_DEBUG_FS
  277. snprintf(name, sizeof(name), "msm_wma_%04x", audio->ac->session);
  278. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  279. NULL, (void *)audio,
  280. &audio_wma_debug_fops);
  281. if (IS_ERR(audio->dentry))
  282. pr_debug("debugfs_create_file failed\n");
  283. #endif
  284. pr_info("%s:wmadec success mode[%d]session[%d]\n", __func__,
  285. audio->feedback,
  286. audio->ac->session);
  287. return rc;
  288. fail:
  289. q6asm_audio_client_free(audio->ac);
  290. kfree(audio->codec_cfg);
  291. kfree(audio);
  292. return rc;
  293. }
  294. static const struct file_operations audio_wma_fops = {
  295. .owner = THIS_MODULE,
  296. .open = audio_open,
  297. .release = audio_aio_release,
  298. .unlocked_ioctl = audio_ioctl,
  299. .fsync = audio_aio_fsync,
  300. .compat_ioctl = audio_compat_ioctl
  301. };
  302. static struct miscdevice audio_wma_misc = {
  303. .minor = MISC_DYNAMIC_MINOR,
  304. .name = "msm_wma",
  305. .fops = &audio_wma_fops,
  306. };
  307. int __init audio_wma_init(void)
  308. {
  309. int ret = misc_register(&audio_wma_misc);
  310. if (ret == 0)
  311. device_init_wakeup(audio_wma_misc.this_device, true);
  312. audio_wma_ws_mgr.ref_cnt = 0;
  313. mutex_init(&audio_wma_ws_mgr.ws_lock);
  314. return ret;
  315. }
  316. void audio_wma_exit(void)
  317. {
  318. mutex_destroy(&audio_wma_ws_mgr.ws_lock);
  319. misc_deregister(&audio_wma_misc);
  320. }