audio_amrwb.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* amrwb audio output device
  3. *
  4. * Copyright (C) 2008 Google, Inc.
  5. * Copyright (C) 2008 HTC Corporation
  6. * Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
  7. */
  8. #include <linux/compat.h>
  9. #include <linux/types.h>
  10. #include "audio_utils_aio.h"
  11. static struct miscdevice audio_amrwb_misc;
  12. static struct ws_mgr audio_amrwb_ws_mgr;
  13. #ifdef CONFIG_DEBUG_FS
  14. static const struct file_operations audio_amrwb_debug_fops = {
  15. .read = audio_aio_debug_read,
  16. .open = audio_aio_debug_open,
  17. };
  18. #endif
  19. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  20. {
  21. struct q6audio_aio *audio = file->private_data;
  22. int rc = 0;
  23. switch (cmd) {
  24. case AUDIO_START: {
  25. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  26. audio, audio->ac->session);
  27. if (audio->feedback == NON_TUNNEL_MODE) {
  28. /* Configure PCM output block */
  29. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  30. audio->pcm_cfg.sample_rate,
  31. audio->pcm_cfg.channel_count);
  32. if (rc < 0) {
  33. pr_err("pcm output block config failed\n");
  34. break;
  35. }
  36. }
  37. rc = audio_aio_enable(audio);
  38. audio->eos_rsp = 0;
  39. audio->eos_flag = 0;
  40. if (!rc) {
  41. audio->enabled = 1;
  42. } else {
  43. audio->enabled = 0;
  44. pr_err("Audio Start procedure failed rc=%d\n", rc);
  45. break;
  46. }
  47. pr_debug("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  48. audio->ac->session,
  49. audio->enabled);
  50. if (audio->stopped == 1)
  51. audio->stopped = 0;
  52. break;
  53. }
  54. default:
  55. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  56. rc = audio->codec_ioctl(file, cmd, arg);
  57. }
  58. return rc;
  59. }
  60. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  61. unsigned long arg)
  62. {
  63. struct q6audio_aio *audio = file->private_data;
  64. int rc = 0;
  65. switch (cmd) {
  66. case AUDIO_START: {
  67. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  68. audio, audio->ac->session);
  69. if (audio->feedback == NON_TUNNEL_MODE) {
  70. /* Configure PCM output block */
  71. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  72. audio->pcm_cfg.sample_rate,
  73. audio->pcm_cfg.channel_count);
  74. if (rc < 0) {
  75. pr_err("%s: pcm output block config failed rc=%d\n",
  76. __func__, rc);
  77. break;
  78. }
  79. }
  80. rc = audio_aio_enable(audio);
  81. audio->eos_rsp = 0;
  82. audio->eos_flag = 0;
  83. if (!rc) {
  84. audio->enabled = 1;
  85. } else {
  86. audio->enabled = 0;
  87. pr_err("%s: Audio Start procedure failed rc=%d\n",
  88. __func__, rc);
  89. break;
  90. }
  91. pr_debug("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  92. audio->ac->session,
  93. audio->enabled);
  94. if (audio->stopped == 1)
  95. audio->stopped = 0;
  96. break;
  97. }
  98. default:
  99. pr_debug("%s[%pK]: Calling compat ioctl\n", __func__, audio);
  100. rc = audio->codec_compat_ioctl(file, cmd, arg);
  101. }
  102. return rc;
  103. }
  104. static int audio_open(struct inode *inode, struct file *file)
  105. {
  106. struct q6audio_aio *audio = NULL;
  107. int rc = 0;
  108. #ifdef CONFIG_DEBUG_FS
  109. /* 4 bytes represents decoder number, 1 byte for terminate string */
  110. char name[sizeof "msm_amrwb_" + 5];
  111. #endif
  112. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  113. if (audio == NULL)
  114. return -ENOMEM;
  115. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  116. audio->miscdevice = &audio_amrwb_misc;
  117. audio->wakelock_voted = false;
  118. audio->audio_ws_mgr = &audio_amrwb_ws_mgr;
  119. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  120. (void *)audio);
  121. if (!audio->ac) {
  122. pr_err("Could not allocate memory for audio client\n");
  123. kfree(audio);
  124. return -ENOMEM;
  125. }
  126. rc = audio_aio_open(audio, file);
  127. if (rc < 0) {
  128. pr_err("%s: audio_aio_open rc=%d\n",
  129. __func__, rc);
  130. goto fail;
  131. }
  132. /* open in T/NT mode */
  133. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  134. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  135. FORMAT_AMRWB);
  136. if (rc < 0) {
  137. pr_err("NT mode Open failed rc=%d\n", rc);
  138. rc = -ENODEV;
  139. goto fail;
  140. }
  141. audio->feedback = NON_TUNNEL_MODE;
  142. audio->buf_cfg.frames_per_buf = 0x01;
  143. audio->buf_cfg.meta_info_enable = 0x01;
  144. } else if ((file->f_mode & FMODE_WRITE) &&
  145. !(file->f_mode & FMODE_READ)) {
  146. rc = q6asm_open_write(audio->ac, FORMAT_AMRWB);
  147. if (rc < 0) {
  148. pr_err("T mode Open failed rc=%d\n", rc);
  149. rc = -ENODEV;
  150. goto fail;
  151. }
  152. audio->feedback = TUNNEL_MODE;
  153. audio->buf_cfg.meta_info_enable = 0x00;
  154. } else {
  155. pr_err("Not supported mode\n");
  156. rc = -EACCES;
  157. goto fail;
  158. }
  159. #ifdef CONFIG_DEBUG_FS
  160. snprintf(name, sizeof(name), "msm_amrwb_%04x", audio->ac->session);
  161. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  162. NULL, (void *)audio,
  163. &audio_amrwb_debug_fops);
  164. if (IS_ERR(audio->dentry))
  165. pr_debug("debugfs_create_file failed\n");
  166. #endif
  167. pr_info("%s: AMRWB dec success mode[%d]session[%d]\n", __func__,
  168. audio->feedback,
  169. audio->ac->session);
  170. return 0;
  171. fail:
  172. q6asm_audio_client_free(audio->ac);
  173. kfree(audio);
  174. return rc;
  175. }
  176. static const struct file_operations audio_amrwb_fops = {
  177. .owner = THIS_MODULE,
  178. .open = audio_open,
  179. .release = audio_aio_release,
  180. .unlocked_ioctl = audio_ioctl,
  181. .fsync = audio_aio_fsync,
  182. .compat_ioctl = audio_compat_ioctl,
  183. };
  184. static struct miscdevice audio_amrwb_misc = {
  185. .minor = MISC_DYNAMIC_MINOR,
  186. .name = "msm_amrwb",
  187. .fops = &audio_amrwb_fops,
  188. };
  189. int __init audio_amrwb_init(void)
  190. {
  191. int ret = misc_register(&audio_amrwb_misc);
  192. if (ret == 0)
  193. device_init_wakeup(audio_amrwb_misc.this_device, true);
  194. audio_amrwb_ws_mgr.ref_cnt = 0;
  195. mutex_init(&audio_amrwb_ws_mgr.ws_lock);
  196. return ret;
  197. }
  198. void audio_amrwb_exit(void)
  199. {
  200. mutex_destroy(&audio_amrwb_ws_mgr.ws_lock);
  201. misc_deregister(&audio_amrwb_misc);
  202. }