audio_qcelp.c 4.6 KB

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