audio_amrwbplus.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* amr-wbplus audio output device
  3. *
  4. * Copyright (C) 2008 Google, Inc.
  5. * Copyright (C) 2008 HTC Corporation
  6. * Copyright (c) 2010-2017, 2019-2020 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/linux/msm_audio_amrwbplus.h>
  19. #include <linux/compat.h>
  20. #include "audio_utils_aio.h"
  21. static struct miscdevice audio_amrwbplus_misc;
  22. static struct ws_mgr audio_amrwbplus_ws_mgr;
  23. #ifdef CONFIG_DEBUG_FS
  24. static const struct file_operations audio_amrwbplus_debug_fops = {
  25. .read = audio_aio_debug_read,
  26. .open = audio_aio_debug_open,
  27. };
  28. static void config_debug_fs(struct q6audio_aio *audio)
  29. {
  30. if (audio != NULL) {
  31. char name[sizeof("msm_amrwbplus_") + 5];
  32. snprintf(name, sizeof(name), "msm_amrwbplus_%04x",
  33. audio->ac->session);
  34. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  35. NULL, (void *)audio,
  36. &audio_amrwbplus_debug_fops);
  37. if (IS_ERR(audio->dentry))
  38. pr_debug("debugfs_create_file failed\n");
  39. }
  40. }
  41. #else
  42. static void config_debug_fs(struct q6audio_aio *audio)
  43. {
  44. }
  45. #endif
  46. static long audio_ioctl_shared(struct file *file, unsigned int cmd,
  47. void *arg)
  48. {
  49. struct asm_amrwbplus_cfg q6_amrwbplus_cfg;
  50. struct msm_audio_amrwbplus_config_v2 *amrwbplus_drv_config;
  51. struct q6audio_aio *audio = file->private_data;
  52. int rc = 0;
  53. switch (cmd) {
  54. case AUDIO_START:
  55. pr_err("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  56. audio, audio->ac->session);
  57. if (audio->feedback == NON_TUNNEL_MODE) {
  58. /* Configure PCM output block */
  59. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  60. audio->pcm_cfg.sample_rate,
  61. audio->pcm_cfg.channel_count);
  62. if (rc < 0) {
  63. pr_err("pcm output block config failed\n");
  64. break;
  65. }
  66. }
  67. amrwbplus_drv_config =
  68. (struct msm_audio_amrwbplus_config_v2 *)audio->codec_cfg;
  69. q6_amrwbplus_cfg.size_bytes =
  70. amrwbplus_drv_config->size_bytes;
  71. q6_amrwbplus_cfg.version =
  72. amrwbplus_drv_config->version;
  73. q6_amrwbplus_cfg.num_channels =
  74. amrwbplus_drv_config->num_channels;
  75. q6_amrwbplus_cfg.amr_band_mode =
  76. amrwbplus_drv_config->amr_band_mode;
  77. q6_amrwbplus_cfg.amr_dtx_mode =
  78. amrwbplus_drv_config->amr_dtx_mode;
  79. q6_amrwbplus_cfg.amr_frame_fmt =
  80. amrwbplus_drv_config->amr_frame_fmt;
  81. q6_amrwbplus_cfg.amr_lsf_idx =
  82. amrwbplus_drv_config->amr_lsf_idx;
  83. rc = q6asm_media_format_block_amrwbplus(audio->ac,
  84. &q6_amrwbplus_cfg);
  85. if (rc < 0) {
  86. pr_err("q6asm_media_format_block_amrwb+ failed...\n");
  87. break;
  88. }
  89. rc = audio_aio_enable(audio);
  90. audio->eos_rsp = 0;
  91. audio->eos_flag = 0;
  92. if (!rc) {
  93. audio->enabled = 1;
  94. } else {
  95. audio->enabled = 0;
  96. pr_err("Audio Start procedure failed rc=%d\n", rc);
  97. break;
  98. }
  99. pr_debug("%s:AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  100. audio->ac->session,
  101. audio->enabled);
  102. if (audio->stopped == 1)
  103. audio->stopped = 0;
  104. break;
  105. default:
  106. pr_err("%s: Unknown ioctl cmd = %d", __func__, cmd);
  107. rc = -EINVAL;
  108. break;
  109. }
  110. return rc;
  111. }
  112. static long audio_ioctl(struct file *file, unsigned int cmd,
  113. unsigned long arg)
  114. {
  115. struct q6audio_aio *audio = file->private_data;
  116. int rc = 0;
  117. switch (cmd) {
  118. case AUDIO_START: {
  119. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  120. break;
  121. }
  122. case AUDIO_GET_AMRWBPLUS_CONFIG_V2: {
  123. if ((audio) && (arg) && (audio->codec_cfg)) {
  124. if (copy_to_user((void *)arg, audio->codec_cfg,
  125. sizeof(struct msm_audio_amrwbplus_config_v2))) {
  126. rc = -EFAULT;
  127. pr_err("%s: copy_to_user for AUDIO_GET_AMRWBPLUS_CONFIG_V2 failed\n",
  128. __func__);
  129. break;
  130. }
  131. } else {
  132. pr_err("%s: wb+ config v2 invalid parameters\n"
  133. , __func__);
  134. rc = -EFAULT;
  135. break;
  136. }
  137. break;
  138. }
  139. case AUDIO_SET_AMRWBPLUS_CONFIG_V2: {
  140. if ((audio) && (arg) && (audio->codec_cfg)) {
  141. if (copy_from_user(audio->codec_cfg, (void *)arg,
  142. sizeof(struct msm_audio_amrwbplus_config_v2))) {
  143. rc = -EFAULT;
  144. pr_err("%s: copy_from_user for AUDIO_SET_AMRWBPLUS_CONFIG_V2 failed\n",
  145. __func__);
  146. break;
  147. }
  148. } else {
  149. pr_err("%s: wb+ config invalid parameters\n",
  150. __func__);
  151. rc = -EFAULT;
  152. break;
  153. }
  154. break;
  155. }
  156. default: {
  157. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  158. rc = audio->codec_ioctl(file, cmd, arg);
  159. break;
  160. }
  161. }
  162. return rc;
  163. }
  164. #ifdef CONFIG_COMPAT
  165. struct msm_audio_amrwbplus_config_v2_32 {
  166. u32 size_bytes;
  167. u32 version;
  168. u32 num_channels;
  169. u32 amr_band_mode;
  170. u32 amr_dtx_mode;
  171. u32 amr_frame_fmt;
  172. u32 amr_lsf_idx;
  173. };
  174. enum {
  175. AUDIO_GET_AMRWBPLUS_CONFIG_V2_32 = _IOR(AUDIO_IOCTL_MAGIC,
  176. (AUDIO_MAX_COMMON_IOCTL_NUM+2),
  177. struct msm_audio_amrwbplus_config_v2_32),
  178. AUDIO_SET_AMRWBPLUS_CONFIG_V2_32 = _IOW(AUDIO_IOCTL_MAGIC,
  179. (AUDIO_MAX_COMMON_IOCTL_NUM+3),
  180. struct msm_audio_amrwbplus_config_v2_32)
  181. };
  182. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  183. unsigned long arg)
  184. {
  185. struct q6audio_aio *audio = file->private_data;
  186. int rc = 0;
  187. switch (cmd) {
  188. case AUDIO_START: {
  189. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  190. break;
  191. }
  192. case AUDIO_GET_AMRWBPLUS_CONFIG_V2_32: {
  193. if (audio && arg && (audio->codec_cfg)) {
  194. struct msm_audio_amrwbplus_config_v2 *amrwbplus_config;
  195. struct msm_audio_amrwbplus_config_v2_32
  196. amrwbplus_config_32;
  197. memset(&amrwbplus_config_32, 0,
  198. sizeof(amrwbplus_config_32));
  199. amrwbplus_config =
  200. (struct msm_audio_amrwbplus_config_v2 *)
  201. audio->codec_cfg;
  202. amrwbplus_config_32.size_bytes =
  203. amrwbplus_config->size_bytes;
  204. amrwbplus_config_32.version =
  205. amrwbplus_config->version;
  206. amrwbplus_config_32.num_channels =
  207. amrwbplus_config->num_channels;
  208. amrwbplus_config_32.amr_band_mode =
  209. amrwbplus_config->amr_band_mode;
  210. amrwbplus_config_32.amr_dtx_mode =
  211. amrwbplus_config->amr_dtx_mode;
  212. amrwbplus_config_32.amr_frame_fmt =
  213. amrwbplus_config->amr_frame_fmt;
  214. amrwbplus_config_32.amr_lsf_idx =
  215. amrwbplus_config->amr_lsf_idx;
  216. if (copy_to_user((void *)arg, &amrwbplus_config_32,
  217. sizeof(amrwbplus_config_32))) {
  218. rc = -EFAULT;
  219. pr_err("%s: copy_to_user for AUDIO_GET_AMRWBPLUS_CONFIG_V2_32 failed\n"
  220. , __func__);
  221. }
  222. } else {
  223. pr_err("%s: wb+ Get config v2 invalid parameters\n"
  224. , __func__);
  225. rc = -EFAULT;
  226. }
  227. break;
  228. }
  229. case AUDIO_SET_AMRWBPLUS_CONFIG_V2_32: {
  230. if ((audio) && (arg) && (audio->codec_cfg)) {
  231. struct msm_audio_amrwbplus_config_v2 *amrwbplus_config;
  232. struct msm_audio_amrwbplus_config_v2_32
  233. amrwbplus_config_32;
  234. if (copy_from_user(&amrwbplus_config_32, (void *)arg,
  235. sizeof(struct msm_audio_amrwbplus_config_v2_32))) {
  236. rc = -EFAULT;
  237. pr_err("%s: copy_from_user for AUDIO_SET_AMRWBPLUS_CONFIG_V2_32 failed\n"
  238. , __func__);
  239. break;
  240. }
  241. amrwbplus_config =
  242. (struct msm_audio_amrwbplus_config_v2 *)
  243. audio->codec_cfg;
  244. amrwbplus_config->size_bytes =
  245. amrwbplus_config_32.size_bytes;
  246. amrwbplus_config->version =
  247. amrwbplus_config_32.version;
  248. amrwbplus_config->num_channels =
  249. amrwbplus_config_32.num_channels;
  250. amrwbplus_config->amr_band_mode =
  251. amrwbplus_config_32.amr_band_mode;
  252. amrwbplus_config->amr_dtx_mode =
  253. amrwbplus_config_32.amr_dtx_mode;
  254. amrwbplus_config->amr_frame_fmt =
  255. amrwbplus_config_32.amr_frame_fmt;
  256. amrwbplus_config->amr_lsf_idx =
  257. amrwbplus_config_32.amr_lsf_idx;
  258. } else {
  259. pr_err("%s: wb+ config invalid parameters\n",
  260. __func__);
  261. rc = -EFAULT;
  262. }
  263. break;
  264. }
  265. default: {
  266. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  267. rc = audio->codec_compat_ioctl(file, cmd, arg);
  268. break;
  269. }
  270. }
  271. return rc;
  272. }
  273. #else
  274. #define audio_compat_ioctl NULL
  275. #endif
  276. static int audio_open(struct inode *inode, struct file *file)
  277. {
  278. struct q6audio_aio *audio = NULL;
  279. int rc = 0;
  280. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  281. if (audio == NULL)
  282. return -ENOMEM;
  283. audio->codec_cfg =
  284. kzalloc(sizeof(struct msm_audio_amrwbplus_config_v2), GFP_KERNEL);
  285. if (audio->codec_cfg == NULL) {
  286. kfree(audio);
  287. return -ENOMEM;
  288. }
  289. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  290. audio->miscdevice = &audio_amrwbplus_misc;
  291. audio->wakelock_voted = false;
  292. audio->audio_ws_mgr = &audio_amrwbplus_ws_mgr;
  293. audio->ac =
  294. q6asm_audio_client_alloc((app_cb) q6_audio_cb, (void *)audio);
  295. if (!audio->ac) {
  296. pr_err("Could not allocate memory for audio client\n");
  297. kfree(audio->codec_cfg);
  298. kfree(audio);
  299. return -ENOMEM;
  300. }
  301. rc = audio_aio_open(audio, file);
  302. if (rc < 0) {
  303. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  304. __func__, rc);
  305. goto fail;
  306. }
  307. /* open in T/NT mode */
  308. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  309. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  310. FORMAT_AMR_WB_PLUS);
  311. if (rc < 0) {
  312. pr_err("amrwbplus NT mode Open failed rc=%d\n", rc);
  313. rc = -ENODEV;
  314. goto fail;
  315. }
  316. audio->feedback = NON_TUNNEL_MODE;
  317. audio->buf_cfg.frames_per_buf = 0x01;
  318. audio->buf_cfg.meta_info_enable = 0x01;
  319. } else if ((file->f_mode & FMODE_WRITE) &&
  320. !(file->f_mode & FMODE_READ)) {
  321. rc = q6asm_open_write(audio->ac, FORMAT_AMR_WB_PLUS);
  322. if (rc < 0) {
  323. pr_err("wb+ T mode Open failed rc=%d\n", rc);
  324. rc = -ENODEV;
  325. goto fail;
  326. }
  327. audio->feedback = TUNNEL_MODE;
  328. audio->buf_cfg.meta_info_enable = 0x00;
  329. } else {
  330. pr_err("audio_amrwbplus Not supported mode\n");
  331. rc = -EACCES;
  332. goto fail;
  333. }
  334. config_debug_fs(audio);
  335. pr_debug("%s: AMRWBPLUS dec success mode[%d]session[%d]\n", __func__,
  336. audio->feedback,
  337. audio->ac->session);
  338. return 0;
  339. fail:
  340. q6asm_audio_client_free(audio->ac);
  341. kfree(audio->codec_cfg);
  342. kfree(audio);
  343. return rc;
  344. }
  345. static const struct file_operations audio_amrwbplus_fops = {
  346. .owner = THIS_MODULE,
  347. .open = audio_open,
  348. .release = audio_aio_release,
  349. .unlocked_ioctl = audio_ioctl,
  350. .fsync = audio_aio_fsync,
  351. .compat_ioctl = audio_compat_ioctl
  352. };
  353. static struct miscdevice audio_amrwbplus_misc = {
  354. .minor = MISC_DYNAMIC_MINOR,
  355. .name = "msm_amrwbplus",
  356. .fops = &audio_amrwbplus_fops,
  357. };
  358. int __init audio_amrwbplus_init(void)
  359. {
  360. int ret = misc_register(&audio_amrwbplus_misc);
  361. if (ret == 0)
  362. device_init_wakeup(audio_amrwbplus_misc.this_device, true);
  363. audio_amrwbplus_ws_mgr.ref_cnt = 0;
  364. mutex_init(&audio_amrwbplus_ws_mgr.ws_lock);
  365. return ret;
  366. }
  367. void audio_amrwbplus_exit(void)
  368. {
  369. mutex_destroy(&audio_amrwbplus_ws_mgr.ws_lock);
  370. misc_deregister(&audio_amrwbplus_misc);
  371. }