audio_qcelp.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /* qcelp(v13k) audio output device
  2. *
  3. * Copyright (C) 2008 Google, Inc.
  4. * Copyright (C) 2008 HTC Corporation
  5. * Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
  6. *
  7. * This software is licensed under the terms of the GNU General Public
  8. * License version 2, as published by the Free Software Foundation, and
  9. * may be copied, distributed, and modified under those terms.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #include "audio_utils_aio.h"
  18. #define FRAME_SIZE_DEC_QCELP ((32) + sizeof(struct dec_meta_in))
  19. static struct miscdevice audio_qcelp_misc;
  20. static struct ws_mgr audio_qcelp_ws_mgr;
  21. #ifdef CONFIG_DEBUG_FS
  22. static const struct file_operations audio_qcelp_debug_fops = {
  23. .read = audio_aio_debug_read,
  24. .open = audio_aio_debug_open,
  25. };
  26. #endif
  27. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  28. {
  29. struct q6audio_aio *audio = file->private_data;
  30. int rc = 0;
  31. switch (cmd) {
  32. case AUDIO_START: {
  33. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  34. audio, audio->ac->session);
  35. if (audio->feedback == NON_TUNNEL_MODE) {
  36. /* Configure PCM output block */
  37. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  38. audio->pcm_cfg.sample_rate,
  39. audio->pcm_cfg.channel_count);
  40. if (rc < 0) {
  41. pr_err("pcm output block config failed\n");
  42. break;
  43. }
  44. }
  45. rc = audio_aio_enable(audio);
  46. audio->eos_rsp = 0;
  47. audio->eos_flag = 0;
  48. if (!rc) {
  49. audio->enabled = 1;
  50. } else {
  51. audio->enabled = 0;
  52. pr_err("Audio Start procedure failed rc=%d\n", rc);
  53. break;
  54. }
  55. pr_debug("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  56. audio->ac->session,
  57. 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 int audio_open(struct inode *inode, struct file *file)
  69. {
  70. struct q6audio_aio *audio = NULL;
  71. int rc = 0;
  72. #ifdef CONFIG_DEBUG_FS
  73. /* 4 bytes represents decoder number, 1 byte for terminate string */
  74. char name[sizeof "msm_qcelp_" + 5];
  75. #endif
  76. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  77. if (audio == NULL)
  78. return -ENOMEM;
  79. /* Settings will be re-config at AUDIO_SET_CONFIG,
  80. * but at least we need to have initial config
  81. */
  82. audio->str_cfg.buffer_size = FRAME_SIZE_DEC_QCELP;
  83. audio->str_cfg.buffer_count = FRAME_NUM;
  84. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  85. audio->pcm_cfg.buffer_count = PCM_BUF_COUNT;
  86. audio->pcm_cfg.sample_rate = 8000;
  87. audio->pcm_cfg.channel_count = 1;
  88. audio->miscdevice = &audio_qcelp_misc;
  89. audio->wakelock_voted = false;
  90. audio->audio_ws_mgr = &audio_qcelp_ws_mgr;
  91. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  92. (void *)audio);
  93. if (!audio->ac) {
  94. pr_err("Could not allocate memory for audio client\n");
  95. kfree(audio);
  96. return -ENOMEM;
  97. }
  98. rc = audio_aio_open(audio, file);
  99. if (rc < 0) {
  100. pr_err("%s: audio_aio_open rc=%d\n",
  101. __func__, rc);
  102. goto fail;
  103. }
  104. /* open in T/NT mode */
  105. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  106. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  107. FORMAT_V13K);
  108. if (rc < 0) {
  109. pr_err("NT mode Open failed rc=%d\n", rc);
  110. rc = -ENODEV;
  111. goto fail;
  112. }
  113. audio->feedback = NON_TUNNEL_MODE;
  114. audio->buf_cfg.frames_per_buf = 0x01;
  115. audio->buf_cfg.meta_info_enable = 0x01;
  116. } else if ((file->f_mode & FMODE_WRITE) &&
  117. !(file->f_mode & FMODE_READ)) {
  118. rc = q6asm_open_write(audio->ac, FORMAT_V13K);
  119. if (rc < 0) {
  120. pr_err("T mode Open failed rc=%d\n", rc);
  121. rc = -ENODEV;
  122. goto fail;
  123. }
  124. audio->feedback = TUNNEL_MODE;
  125. audio->buf_cfg.meta_info_enable = 0x00;
  126. } else {
  127. pr_err("Not supported mode\n");
  128. rc = -EACCES;
  129. goto fail;
  130. }
  131. #ifdef CONFIG_DEBUG_FS
  132. snprintf(name, sizeof(name), "msm_qcelp_%04x", audio->ac->session);
  133. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  134. NULL, (void *)audio,
  135. &audio_qcelp_debug_fops);
  136. if (IS_ERR(audio->dentry))
  137. pr_debug("debugfs_create_file failed\n");
  138. #endif
  139. pr_info("%s:dec success mode[%d]session[%d]\n", __func__,
  140. audio->feedback,
  141. audio->ac->session);
  142. return 0;
  143. fail:
  144. q6asm_audio_client_free(audio->ac);
  145. kfree(audio);
  146. return rc;
  147. }
  148. static const struct file_operations audio_qcelp_fops = {
  149. .owner = THIS_MODULE,
  150. .open = audio_open,
  151. .release = audio_aio_release,
  152. .unlocked_ioctl = audio_ioctl,
  153. .fsync = audio_aio_fsync,
  154. };
  155. static struct miscdevice audio_qcelp_misc = {
  156. .minor = MISC_DYNAMIC_MINOR,
  157. .name = "msm_qcelp",
  158. .fops = &audio_qcelp_fops,
  159. };
  160. static int __init audio_qcelp_init(void)
  161. {
  162. int ret = misc_register(&audio_qcelp_misc);
  163. if (ret == 0)
  164. device_init_wakeup(audio_qcelp_misc.this_device, true);
  165. audio_qcelp_ws_mgr.ref_cnt = 0;
  166. mutex_init(&audio_qcelp_ws_mgr.ws_lock);
  167. return ret;
  168. }
  169. device_initcall(audio_qcelp_init);