audio_mp3.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* mp3 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_mp3_misc;
  20. static struct ws_mgr audio_mp3_ws_mgr;
  21. #ifdef CONFIG_DEBUG_FS
  22. static const struct file_operations audio_mp3_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. rc = enable_volume_ramp(audio);
  50. if (rc < 0) {
  51. pr_err("%s: Failed to enable volume ramp\n",
  52. __func__);
  53. }
  54. audio->enabled = 1;
  55. } else {
  56. audio->enabled = 0;
  57. pr_err("Audio Start procedure failed rc=%d\n", rc);
  58. break;
  59. }
  60. pr_info("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  61. audio->ac->session,
  62. audio->enabled);
  63. if (audio->stopped == 1)
  64. audio->stopped = 0;
  65. break;
  66. }
  67. default:
  68. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  69. rc = audio->codec_ioctl(file, cmd, arg);
  70. }
  71. return rc;
  72. }
  73. static int audio_open(struct inode *inode, struct file *file)
  74. {
  75. struct q6audio_aio *audio = NULL;
  76. int rc = 0;
  77. #ifdef CONFIG_DEBUG_FS
  78. /* 4 bytes represents decoder number, 1 byte for terminate string */
  79. char name[sizeof "msm_mp3_" + 5];
  80. #endif
  81. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  82. if (audio == NULL)
  83. return -ENOMEM;
  84. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  85. audio->miscdevice = &audio_mp3_misc;
  86. audio->wakelock_voted = false;
  87. audio->audio_ws_mgr = &audio_mp3_ws_mgr;
  88. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  89. (void *)audio);
  90. if (!audio->ac) {
  91. pr_err("Could not allocate memory for audio client\n");
  92. kfree(audio);
  93. return -ENOMEM;
  94. }
  95. rc = audio_aio_open(audio, file);
  96. if (rc < 0) {
  97. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  98. __func__, rc);
  99. goto fail;
  100. }
  101. /* open in T/NT mode */
  102. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  103. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  104. FORMAT_MP3);
  105. if (rc < 0) {
  106. pr_err("NT mode Open failed rc=%d\n", rc);
  107. rc = -ENODEV;
  108. goto fail;
  109. }
  110. audio->feedback = NON_TUNNEL_MODE;
  111. /* open MP3 decoder, expected frames is always 1
  112. * audio->buf_cfg.frames_per_buf = 0x01;
  113. */
  114. audio->buf_cfg.meta_info_enable = 0x01;
  115. } else if ((file->f_mode & FMODE_WRITE) &&
  116. !(file->f_mode & FMODE_READ)) {
  117. rc = q6asm_open_write(audio->ac, FORMAT_MP3);
  118. if (rc < 0) {
  119. pr_err("T mode Open failed rc=%d\n", rc);
  120. rc = -ENODEV;
  121. goto fail;
  122. }
  123. audio->feedback = TUNNEL_MODE;
  124. audio->buf_cfg.meta_info_enable = 0x00;
  125. } else {
  126. pr_err("Not supported mode\n");
  127. rc = -EACCES;
  128. goto fail;
  129. }
  130. #ifdef CONFIG_DEBUG_FS
  131. snprintf(name, sizeof(name), "msm_mp3_%04x", audio->ac->session);
  132. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  133. NULL, (void *)audio,
  134. &audio_mp3_debug_fops);
  135. if (IS_ERR(audio->dentry))
  136. pr_debug("debugfs_create_file failed\n");
  137. #endif
  138. pr_info("%s:mp3dec success mode[%d]session[%d]\n", __func__,
  139. audio->feedback,
  140. audio->ac->session);
  141. return rc;
  142. fail:
  143. q6asm_audio_client_free(audio->ac);
  144. kfree(audio);
  145. return rc;
  146. }
  147. static const struct file_operations audio_mp3_fops = {
  148. .owner = THIS_MODULE,
  149. .open = audio_open,
  150. .release = audio_aio_release,
  151. .unlocked_ioctl = audio_ioctl,
  152. .fsync = audio_aio_fsync,
  153. };
  154. static struct miscdevice audio_mp3_misc = {
  155. .minor = MISC_DYNAMIC_MINOR,
  156. .name = "msm_mp3",
  157. .fops = &audio_mp3_fops,
  158. };
  159. int __init audio_mp3_init(void)
  160. {
  161. int ret = misc_register(&audio_mp3_misc);
  162. if (ret == 0)
  163. device_init_wakeup(audio_mp3_misc.this_device, true);
  164. audio_mp3_ws_mgr.ref_cnt = 0;
  165. mutex_init(&audio_mp3_ws_mgr.ws_lock);
  166. return ret;
  167. }
  168. void audio_mp3_exit(void)
  169. {
  170. mutex_destroy(&audio_mp3_ws_mgr.ws_lock);
  171. misc_deregister(&audio_mp3_misc);
  172. }