audio_evrc.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* evrc 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. static struct miscdevice audio_evrc_misc;
  20. static struct ws_mgr audio_evrc_ws_mgr;
  21. #ifdef CONFIG_DEBUG_FS
  22. static const struct file_operations audio_evrc_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_evrc_" + 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->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  83. audio->miscdevice = &audio_evrc_misc;
  84. audio->wakelock_voted = false;
  85. audio->audio_ws_mgr = &audio_evrc_ws_mgr;
  86. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  87. (void *)audio);
  88. if (!audio->ac) {
  89. pr_err("Could not allocate memory for audio client\n");
  90. kfree(audio);
  91. return -ENOMEM;
  92. }
  93. rc = audio_aio_open(audio, file);
  94. if (rc < 0) {
  95. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  96. __func__, rc);
  97. goto fail;
  98. }
  99. /* open in T/NT mode */
  100. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  101. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  102. FORMAT_EVRC);
  103. if (rc < 0) {
  104. pr_err("NT mode Open failed rc=%d\n", rc);
  105. rc = -ENODEV;
  106. goto fail;
  107. }
  108. audio->feedback = NON_TUNNEL_MODE;
  109. audio->buf_cfg.frames_per_buf = 0x01;
  110. audio->buf_cfg.meta_info_enable = 0x01;
  111. } else if ((file->f_mode & FMODE_WRITE) &&
  112. !(file->f_mode & FMODE_READ)) {
  113. rc = q6asm_open_write(audio->ac, FORMAT_EVRC);
  114. if (rc < 0) {
  115. pr_err("T mode Open failed rc=%d\n", rc);
  116. rc = -ENODEV;
  117. goto fail;
  118. }
  119. audio->feedback = TUNNEL_MODE;
  120. audio->buf_cfg.meta_info_enable = 0x00;
  121. } else {
  122. pr_err("Not supported mode\n");
  123. rc = -EACCES;
  124. goto fail;
  125. }
  126. #ifdef CONFIG_DEBUG_FS
  127. snprintf(name, sizeof(name), "msm_evrc_%04x", audio->ac->session);
  128. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  129. NULL, (void *)audio,
  130. &audio_evrc_debug_fops);
  131. if (IS_ERR(audio->dentry))
  132. pr_debug("debugfs_create_file failed\n");
  133. #endif
  134. pr_info("%s:dec success mode[%d]session[%d]\n", __func__,
  135. audio->feedback,
  136. audio->ac->session);
  137. return rc;
  138. fail:
  139. q6asm_audio_client_free(audio->ac);
  140. kfree(audio);
  141. return rc;
  142. }
  143. static const struct file_operations audio_evrc_fops = {
  144. .owner = THIS_MODULE,
  145. .open = audio_open,
  146. .release = audio_aio_release,
  147. .unlocked_ioctl = audio_ioctl,
  148. .fsync = audio_aio_fsync,
  149. };
  150. static struct miscdevice audio_evrc_misc = {
  151. .minor = MISC_DYNAMIC_MINOR,
  152. .name = "msm_evrc",
  153. .fops = &audio_evrc_fops,
  154. };
  155. int __init audio_evrc_init(void)
  156. {
  157. int ret = misc_register(&audio_evrc_misc);
  158. if (ret == 0)
  159. device_init_wakeup(audio_evrc_misc.this_device, true);
  160. audio_evrc_ws_mgr.ref_cnt = 0;
  161. mutex_init(&audio_evrc_ws_mgr.ws_lock);
  162. return ret;
  163. }
  164. void audio_evrc_exit(void)
  165. {
  166. mutex_destroy(&audio_evrc_ws_mgr.ws_lock);
  167. misc_deregister(&audio_evrc_misc);
  168. }