audio_amrnb.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* amrnb 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/types.h>
  9. #include <linux/compat.h>
  10. #include "audio_utils_aio.h"
  11. static struct miscdevice audio_amrnb_misc;
  12. static struct ws_mgr audio_amrnb_ws_mgr;
  13. #ifdef CONFIG_DEBUG_FS
  14. static const struct file_operations audio_amrnb_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("AUDIO_START success enable[%d]\n", audio->enabled);
  48. if (audio->stopped == 1)
  49. audio->stopped = 0;
  50. break;
  51. }
  52. default:
  53. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  54. rc = audio->codec_ioctl(file, cmd, arg);
  55. }
  56. return rc;
  57. }
  58. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  59. unsigned long arg)
  60. {
  61. struct q6audio_aio *audio = file->private_data;
  62. int rc = 0;
  63. switch (cmd) {
  64. case AUDIO_START: {
  65. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  66. audio, audio->ac->session);
  67. if (audio->feedback == NON_TUNNEL_MODE) {
  68. /* Configure PCM output block */
  69. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  70. audio->pcm_cfg.sample_rate,
  71. audio->pcm_cfg.channel_count);
  72. if (rc < 0) {
  73. pr_err("%s: pcm output block config failed rc=%d\n",
  74. __func__, rc);
  75. break;
  76. }
  77. }
  78. rc = audio_aio_enable(audio);
  79. audio->eos_rsp = 0;
  80. audio->eos_flag = 0;
  81. if (!rc) {
  82. audio->enabled = 1;
  83. } else {
  84. audio->enabled = 0;
  85. pr_err("%s: Audio Start procedure failed rc=%d\n",
  86. __func__, rc);
  87. break;
  88. }
  89. pr_debug("AUDIO_START success enable[%d]\n", audio->enabled);
  90. if (audio->stopped == 1)
  91. audio->stopped = 0;
  92. break;
  93. }
  94. default:
  95. pr_debug("%s[%pK]: Calling compat ioctl\n", __func__, audio);
  96. rc = audio->codec_compat_ioctl(file, cmd, arg);
  97. }
  98. return rc;
  99. }
  100. static int audio_open(struct inode *inode, struct file *file)
  101. {
  102. struct q6audio_aio *audio = NULL;
  103. int rc = 0;
  104. #ifdef CONFIG_DEBUG_FS
  105. /* 4 bytes represents decoder number, 1 byte for terminate string */
  106. char name[sizeof "msm_amrnb_" + 5];
  107. #endif
  108. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  109. if (audio == NULL)
  110. return -ENOMEM;
  111. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  112. audio->miscdevice = &audio_amrnb_misc;
  113. audio->wakelock_voted = false;
  114. audio->audio_ws_mgr = &audio_amrnb_ws_mgr;
  115. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  116. (void *)audio);
  117. if (!audio->ac) {
  118. pr_err("Could not allocate memory for audio client\n");
  119. kfree(audio);
  120. return -ENOMEM;
  121. }
  122. rc = audio_aio_open(audio, file);
  123. if (rc < 0) {
  124. pr_err("%s: audio_aio_open rc=%d\n",
  125. __func__, rc);
  126. goto fail;
  127. }
  128. /* open in T/NT mode */
  129. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  130. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  131. FORMAT_AMRNB);
  132. if (rc < 0) {
  133. pr_err("NT mode Open failed rc=%d\n", rc);
  134. rc = -ENODEV;
  135. goto fail;
  136. }
  137. audio->feedback = NON_TUNNEL_MODE;
  138. audio->buf_cfg.frames_per_buf = 0x01;
  139. audio->buf_cfg.meta_info_enable = 0x01;
  140. } else if ((file->f_mode & FMODE_WRITE) &&
  141. !(file->f_mode & FMODE_READ)) {
  142. rc = q6asm_open_write(audio->ac, FORMAT_AMRNB);
  143. if (rc < 0) {
  144. pr_err("T mode Open failed rc=%d\n", rc);
  145. rc = -ENODEV;
  146. goto fail;
  147. }
  148. audio->feedback = TUNNEL_MODE;
  149. audio->buf_cfg.meta_info_enable = 0x00;
  150. } else {
  151. pr_err("Not supported mode\n");
  152. rc = -EACCES;
  153. goto fail;
  154. }
  155. #ifdef CONFIG_DEBUG_FS
  156. snprintf(name, sizeof(name), "msm_amrnb_%04x", audio->ac->session);
  157. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  158. NULL, (void *)audio,
  159. &audio_amrnb_debug_fops);
  160. if (IS_ERR(audio->dentry))
  161. pr_debug("debugfs_create_file failed\n");
  162. #endif
  163. pr_info("%s:amrnb decoder open success, session_id = %d\n", __func__,
  164. audio->ac->session);
  165. return rc;
  166. fail:
  167. q6asm_audio_client_free(audio->ac);
  168. kfree(audio);
  169. return rc;
  170. }
  171. static const struct file_operations audio_amrnb_fops = {
  172. .owner = THIS_MODULE,
  173. .open = audio_open,
  174. .release = audio_aio_release,
  175. .unlocked_ioctl = audio_ioctl,
  176. .fsync = audio_aio_fsync,
  177. .compat_ioctl = audio_compat_ioctl,
  178. };
  179. static struct miscdevice audio_amrnb_misc = {
  180. .minor = MISC_DYNAMIC_MINOR,
  181. .name = "msm_amrnb",
  182. .fops = &audio_amrnb_fops,
  183. };
  184. int __init audio_amrnb_init(void)
  185. {
  186. int ret = misc_register(&audio_amrnb_misc);
  187. if (ret == 0)
  188. device_init_wakeup(audio_amrnb_misc.this_device, true);
  189. audio_amrnb_ws_mgr.ref_cnt = 0;
  190. mutex_init(&audio_amrnb_ws_mgr.ws_lock);
  191. return ret;
  192. }
  193. void audio_amrnb_exit(void)
  194. {
  195. mutex_destroy(&audio_amrnb_ws_mgr.ws_lock);
  196. misc_deregister(&audio_amrnb_misc);
  197. }