audio_qcelp.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* qcelp(v13k) 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 "audio_utils_aio.h"
  19. #define FRAME_SIZE_DEC_QCELP ((32) + sizeof(struct dec_meta_in))
  20. static struct miscdevice audio_qcelp_misc;
  21. static struct ws_mgr audio_qcelp_ws_mgr;
  22. #ifdef CONFIG_DEBUG_FS
  23. static const struct file_operations audio_qcelp_debug_fops = {
  24. .read = audio_aio_debug_read,
  25. .open = audio_aio_debug_open,
  26. };
  27. #endif
  28. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  29. {
  30. struct q6audio_aio *audio = file->private_data;
  31. int rc = 0;
  32. switch (cmd) {
  33. case AUDIO_START: {
  34. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  35. audio, audio->ac->session);
  36. if (audio->feedback == NON_TUNNEL_MODE) {
  37. /* Configure PCM output block */
  38. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  39. audio->pcm_cfg.sample_rate,
  40. audio->pcm_cfg.channel_count);
  41. if (rc < 0) {
  42. pr_err("pcm output block config failed\n");
  43. break;
  44. }
  45. }
  46. rc = audio_aio_enable(audio);
  47. audio->eos_rsp = 0;
  48. audio->eos_flag = 0;
  49. if (!rc) {
  50. audio->enabled = 1;
  51. } else {
  52. audio->enabled = 0;
  53. pr_err("Audio Start procedure failed rc=%d\n", rc);
  54. break;
  55. }
  56. pr_debug("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  57. audio->ac->session,
  58. audio->enabled);
  59. if (audio->stopped == 1)
  60. audio->stopped = 0;
  61. break;
  62. }
  63. default:
  64. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  65. rc = audio->codec_ioctl(file, cmd, arg);
  66. }
  67. return rc;
  68. }
  69. static int audio_open(struct inode *inode, struct file *file)
  70. {
  71. struct q6audio_aio *audio = NULL;
  72. int rc = 0;
  73. #ifdef CONFIG_DEBUG_FS
  74. /* 4 bytes represents decoder number, 1 byte for terminate string */
  75. char name[sizeof "msm_qcelp_" + 5];
  76. #endif
  77. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  78. if (audio == NULL)
  79. return -ENOMEM;
  80. /* Settings will be re-config at AUDIO_SET_CONFIG,
  81. * but at least we need to have initial config
  82. */
  83. audio->str_cfg.buffer_size = FRAME_SIZE_DEC_QCELP;
  84. audio->str_cfg.buffer_count = FRAME_NUM;
  85. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  86. audio->pcm_cfg.buffer_count = PCM_BUF_COUNT;
  87. audio->pcm_cfg.sample_rate = 8000;
  88. audio->pcm_cfg.channel_count = 1;
  89. audio->miscdevice = &audio_qcelp_misc;
  90. audio->wakelock_voted = false;
  91. audio->audio_ws_mgr = &audio_qcelp_ws_mgr;
  92. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  93. (void *)audio);
  94. if (!audio->ac) {
  95. pr_err("Could not allocate memory for audio client\n");
  96. kfree(audio);
  97. return -ENOMEM;
  98. }
  99. rc = audio_aio_open(audio, file);
  100. if (rc < 0) {
  101. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  102. __func__, rc);
  103. goto fail;
  104. }
  105. /* open in T/NT mode */
  106. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  107. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  108. FORMAT_V13K);
  109. if (rc < 0) {
  110. pr_err("NT mode Open failed rc=%d\n", rc);
  111. rc = -ENODEV;
  112. goto fail;
  113. }
  114. audio->feedback = NON_TUNNEL_MODE;
  115. audio->buf_cfg.frames_per_buf = 0x01;
  116. audio->buf_cfg.meta_info_enable = 0x01;
  117. } else if ((file->f_mode & FMODE_WRITE) &&
  118. !(file->f_mode & FMODE_READ)) {
  119. rc = q6asm_open_write(audio->ac, FORMAT_V13K);
  120. if (rc < 0) {
  121. pr_err("T mode Open failed rc=%d\n", rc);
  122. rc = -ENODEV;
  123. goto fail;
  124. }
  125. audio->feedback = TUNNEL_MODE;
  126. audio->buf_cfg.meta_info_enable = 0x00;
  127. } else {
  128. pr_err("Not supported mode\n");
  129. rc = -EACCES;
  130. goto fail;
  131. }
  132. #ifdef CONFIG_DEBUG_FS
  133. snprintf(name, sizeof(name), "msm_qcelp_%04x", audio->ac->session);
  134. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  135. NULL, (void *)audio,
  136. &audio_qcelp_debug_fops);
  137. if (IS_ERR(audio->dentry))
  138. pr_debug("debugfs_create_file failed\n");
  139. #endif
  140. pr_info("%s:dec success mode[%d]session[%d]\n", __func__,
  141. audio->feedback,
  142. audio->ac->session);
  143. return 0;
  144. fail:
  145. q6asm_audio_client_free(audio->ac);
  146. kfree(audio);
  147. return rc;
  148. }
  149. static const struct file_operations audio_qcelp_fops = {
  150. .owner = THIS_MODULE,
  151. .open = audio_open,
  152. .release = audio_aio_release,
  153. .unlocked_ioctl = audio_ioctl,
  154. .fsync = audio_aio_fsync,
  155. };
  156. static struct miscdevice audio_qcelp_misc = {
  157. .minor = MISC_DYNAMIC_MINOR,
  158. .name = "msm_qcelp",
  159. .fops = &audio_qcelp_fops,
  160. };
  161. int audio_qcelp_init(void)
  162. {
  163. int ret = misc_register(&audio_qcelp_misc);
  164. if (ret == 0)
  165. device_init_wakeup(audio_qcelp_misc.this_device, true);
  166. audio_qcelp_ws_mgr.ref_cnt = 0;
  167. mutex_init(&audio_qcelp_ws_mgr.ws_lock);
  168. return ret;
  169. }
  170. void audio_qcelp_exit(void)
  171. {
  172. mutex_destroy(&audio_qcelp_ws_mgr.ws_lock);
  173. misc_deregister(&audio_qcelp_misc);
  174. }