audio_evrc.c 4.3 KB

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