audio_amrnb.c 5.8 KB

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