audio_aac.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* aac audio output device
  3. *
  4. * Copyright (C) 2008 Google, Inc.
  5. * Copyright (C) 2008 HTC Corporation
  6. * Copyright (c) 2010-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_aac.h>
  19. #include <linux/compat.h>
  20. #include "audio_utils_aio.h"
  21. #define AUDIO_AAC_DUAL_MONO_INVALID -1
  22. #define PCM_BUFSZ_MIN_AAC ((8*1024) + sizeof(struct dec_meta_out))
  23. static struct miscdevice audio_aac_misc;
  24. static struct ws_mgr audio_aac_ws_mgr;
  25. #ifdef CONFIG_DEBUG_FS
  26. static const struct file_operations audio_aac_debug_fops = {
  27. .read = audio_aio_debug_read,
  28. .open = audio_aio_debug_open,
  29. };
  30. #endif
  31. static long audio_ioctl_shared(struct file *file, unsigned int cmd,
  32. void *arg)
  33. {
  34. struct q6audio_aio *audio = file->private_data;
  35. int rc = 0;
  36. switch (cmd) {
  37. case AUDIO_START: {
  38. struct asm_aac_cfg aac_cfg;
  39. struct msm_audio_aac_config *aac_config;
  40. uint32_t sbr_ps = 0x00;
  41. pr_debug("%s: AUDIO_START session_id[%d]\n", __func__,
  42. audio->ac->session);
  43. if (audio->feedback == NON_TUNNEL_MODE) {
  44. /* Configure PCM output block */
  45. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  46. audio->pcm_cfg.sample_rate,
  47. audio->pcm_cfg.channel_count);
  48. if (rc < 0) {
  49. pr_err("pcm output block config failed\n");
  50. break;
  51. }
  52. }
  53. /* turn on both sbr and ps */
  54. rc = q6asm_enable_sbrps(audio->ac, sbr_ps);
  55. if (rc < 0)
  56. pr_err("sbr-ps enable failed\n");
  57. aac_config = (struct msm_audio_aac_config *)audio->codec_cfg;
  58. if (aac_config->sbr_ps_on_flag)
  59. aac_cfg.aot = AAC_ENC_MODE_EAAC_P;
  60. else if (aac_config->sbr_on_flag)
  61. aac_cfg.aot = AAC_ENC_MODE_AAC_P;
  62. else
  63. aac_cfg.aot = AAC_ENC_MODE_AAC_LC;
  64. switch (aac_config->format) {
  65. case AUDIO_AAC_FORMAT_ADTS:
  66. aac_cfg.format = 0x00;
  67. break;
  68. case AUDIO_AAC_FORMAT_LOAS:
  69. aac_cfg.format = 0x01;
  70. break;
  71. case AUDIO_AAC_FORMAT_ADIF:
  72. aac_cfg.format = 0x02;
  73. break;
  74. default:
  75. case AUDIO_AAC_FORMAT_RAW:
  76. aac_cfg.format = 0x03;
  77. }
  78. aac_cfg.ep_config = aac_config->ep_config;
  79. aac_cfg.section_data_resilience =
  80. aac_config->aac_section_data_resilience_flag;
  81. aac_cfg.scalefactor_data_resilience =
  82. aac_config->aac_scalefactor_data_resilience_flag;
  83. aac_cfg.spectral_data_resilience =
  84. aac_config->aac_spectral_data_resilience_flag;
  85. aac_cfg.ch_cfg = audio->pcm_cfg.channel_count;
  86. if (audio->feedback == TUNNEL_MODE) {
  87. aac_cfg.sample_rate = aac_config->sample_rate;
  88. aac_cfg.ch_cfg = aac_config->channel_configuration;
  89. } else {
  90. aac_cfg.sample_rate = audio->pcm_cfg.sample_rate;
  91. aac_cfg.ch_cfg = audio->pcm_cfg.channel_count;
  92. }
  93. pr_debug("%s:format=%x aot=%d ch=%d sr=%d\n",
  94. __func__, aac_cfg.format,
  95. aac_cfg.aot, aac_cfg.ch_cfg,
  96. aac_cfg.sample_rate);
  97. /* Configure Media format block */
  98. rc = q6asm_media_format_block_aac(audio->ac, &aac_cfg);
  99. if (rc < 0) {
  100. pr_err("cmd media format block failed\n");
  101. break;
  102. }
  103. rc = audio_aio_enable(audio);
  104. audio->eos_rsp = 0;
  105. audio->eos_flag = 0;
  106. if (!rc) {
  107. rc = enable_volume_ramp(audio);
  108. if (rc < 0) {
  109. pr_err("%s: Failed to enable volume ramp\n",
  110. __func__);
  111. }
  112. audio->enabled = 1;
  113. } else {
  114. audio->enabled = 0;
  115. pr_err("Audio Start procedure failed rc=%d\n", rc);
  116. break;
  117. }
  118. pr_info("%s: AUDIO_START sessionid[%d]enable[%d]\n", __func__,
  119. audio->ac->session,
  120. audio->enabled);
  121. if (audio->stopped == 1)
  122. audio->stopped = 0;
  123. break;
  124. }
  125. case AUDIO_SET_AAC_CONFIG: {
  126. struct msm_audio_aac_config *aac_config;
  127. uint16_t sce_left = 1, sce_right = 2;
  128. pr_debug("%s: AUDIO_SET_AAC_CONFIG\n", __func__);
  129. aac_config = (struct msm_audio_aac_config *)arg;
  130. if (aac_config == NULL) {
  131. pr_err("%s: Invalid config pointer\n", __func__);
  132. rc = -EINVAL;
  133. break;
  134. }
  135. memcpy(audio->codec_cfg, aac_config,
  136. sizeof(struct msm_audio_aac_config));
  137. /* PL_PR is 0 only need to check PL_SR */
  138. if (aac_config->dual_mono_mode >
  139. AUDIO_AAC_DUAL_MONO_PL_SR) {
  140. pr_err("%s:Invalid dual_mono mode =%d\n", __func__,
  141. aac_config->dual_mono_mode);
  142. } else {
  143. /* convert the data from user into sce_left
  144. * and sce_right based on the definitions
  145. */
  146. pr_debug("%s: modify dual_mono mode =%d\n", __func__,
  147. aac_config->dual_mono_mode);
  148. switch (aac_config->dual_mono_mode) {
  149. case AUDIO_AAC_DUAL_MONO_PL_PR:
  150. sce_left = 1;
  151. sce_right = 1;
  152. break;
  153. case AUDIO_AAC_DUAL_MONO_SL_SR:
  154. sce_left = 2;
  155. sce_right = 2;
  156. break;
  157. case AUDIO_AAC_DUAL_MONO_SL_PR:
  158. sce_left = 2;
  159. sce_right = 1;
  160. break;
  161. case AUDIO_AAC_DUAL_MONO_PL_SR:
  162. default:
  163. sce_left = 1;
  164. sce_right = 2;
  165. break;
  166. }
  167. rc = q6asm_cfg_dual_mono_aac(audio->ac,
  168. sce_left, sce_right);
  169. if (rc < 0)
  170. pr_err("%s:asm cmd dualmono failed rc=%d\n",
  171. __func__, rc);
  172. }
  173. break;
  174. }
  175. default:
  176. pr_err("%s: Unknown ioctl cmd = %d", __func__, cmd);
  177. break;
  178. }
  179. return rc;
  180. }
  181. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  182. {
  183. struct q6audio_aio *audio = file->private_data;
  184. int rc = 0;
  185. switch (cmd) {
  186. case AUDIO_START: {
  187. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  188. break;
  189. }
  190. case AUDIO_GET_AAC_CONFIG: {
  191. if (copy_to_user((void *)arg, audio->codec_cfg,
  192. sizeof(struct msm_audio_aac_config))) {
  193. pr_err("%s: copy_to_user for AUDIO_GET_AAC_CONFIG failed\n",
  194. __func__);
  195. rc = -EFAULT;
  196. break;
  197. }
  198. break;
  199. }
  200. case AUDIO_SET_AAC_CONFIG: {
  201. struct msm_audio_aac_config aac_config;
  202. pr_debug("%s: AUDIO_SET_AAC_CONFIG\n", __func__);
  203. if (copy_from_user(&aac_config, (void *)arg,
  204. sizeof(aac_config))) {
  205. pr_err("%s: copy_from_user for AUDIO_SET_AAC_CONFIG failed\n",
  206. __func__);
  207. rc = -EFAULT;
  208. break;
  209. }
  210. rc = audio_ioctl_shared(file, cmd, &aac_config);
  211. if (rc)
  212. pr_err("%s:AUDIO_SET_AAC_CONFIG failed. Rc= %d\n",
  213. __func__, rc);
  214. break;
  215. }
  216. default: {
  217. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  218. rc = audio->codec_ioctl(file, cmd, arg);
  219. if (rc)
  220. pr_err_ratelimited("%s[%pK]:Failed in utils_ioctl: %d\n",
  221. __func__, audio, rc);
  222. }
  223. }
  224. return rc;
  225. }
  226. #ifdef CONFIG_COMPAT
  227. struct msm_audio_aac_config32 {
  228. s16 format;
  229. u16 audio_object;
  230. u16 ep_config; /* 0 ~ 3 useful only obj = ERLC */
  231. u16 aac_section_data_resilience_flag;
  232. u16 aac_scalefactor_data_resilience_flag;
  233. u16 aac_spectral_data_resilience_flag;
  234. u16 sbr_on_flag;
  235. u16 sbr_ps_on_flag;
  236. u16 dual_mono_mode;
  237. u16 channel_configuration;
  238. u16 sample_rate;
  239. };
  240. enum {
  241. AUDIO_SET_AAC_CONFIG_32 = _IOW(AUDIO_IOCTL_MAGIC,
  242. (AUDIO_MAX_COMMON_IOCTL_NUM+0), struct msm_audio_aac_config32),
  243. AUDIO_GET_AAC_CONFIG_32 = _IOR(AUDIO_IOCTL_MAGIC,
  244. (AUDIO_MAX_COMMON_IOCTL_NUM+1), struct msm_audio_aac_config32)
  245. };
  246. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  247. unsigned long arg)
  248. {
  249. struct q6audio_aio *audio = file->private_data;
  250. int rc = 0;
  251. switch (cmd) {
  252. case AUDIO_START: {
  253. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  254. break;
  255. }
  256. case AUDIO_GET_AAC_CONFIG_32: {
  257. struct msm_audio_aac_config *aac_config;
  258. struct msm_audio_aac_config32 aac_config_32;
  259. aac_config = (struct msm_audio_aac_config *)audio->codec_cfg;
  260. aac_config_32.format = aac_config->format;
  261. aac_config_32.audio_object = aac_config->audio_object;
  262. aac_config_32.ep_config = aac_config->ep_config;
  263. aac_config_32.aac_section_data_resilience_flag =
  264. aac_config->aac_section_data_resilience_flag;
  265. aac_config_32.aac_scalefactor_data_resilience_flag =
  266. aac_config->aac_scalefactor_data_resilience_flag;
  267. aac_config_32.aac_spectral_data_resilience_flag =
  268. aac_config->aac_spectral_data_resilience_flag;
  269. aac_config_32.sbr_on_flag = aac_config->sbr_on_flag;
  270. aac_config_32.sbr_ps_on_flag = aac_config->sbr_ps_on_flag;
  271. aac_config_32.dual_mono_mode = aac_config->dual_mono_mode;
  272. aac_config_32.channel_configuration =
  273. aac_config->channel_configuration;
  274. aac_config_32.sample_rate = aac_config->sample_rate;
  275. if (copy_to_user((void *)arg, &aac_config_32,
  276. sizeof(aac_config_32))) {
  277. pr_err("%s: copy_to_user for AUDIO_GET_AAC_CONFIG_32 failed\n",
  278. __func__);
  279. rc = -EFAULT;
  280. break;
  281. }
  282. break;
  283. }
  284. case AUDIO_SET_AAC_CONFIG_32: {
  285. struct msm_audio_aac_config aac_config;
  286. struct msm_audio_aac_config32 aac_config_32;
  287. pr_debug("%s: AUDIO_SET_AAC_CONFIG\n", __func__);
  288. if (copy_from_user(&aac_config_32, (void *)arg,
  289. sizeof(aac_config_32))) {
  290. pr_err("%s: copy_from_user for AUDIO_SET_AAC_CONFIG_32 failed\n",
  291. __func__);
  292. rc = -EFAULT;
  293. break;
  294. }
  295. aac_config.format = aac_config_32.format;
  296. aac_config.audio_object = aac_config_32.audio_object;
  297. aac_config.ep_config = aac_config_32.ep_config;
  298. aac_config.aac_section_data_resilience_flag =
  299. aac_config_32.aac_section_data_resilience_flag;
  300. aac_config.aac_scalefactor_data_resilience_flag =
  301. aac_config_32.aac_scalefactor_data_resilience_flag;
  302. aac_config.aac_spectral_data_resilience_flag =
  303. aac_config_32.aac_spectral_data_resilience_flag;
  304. aac_config.sbr_on_flag = aac_config_32.sbr_on_flag;
  305. aac_config.sbr_ps_on_flag = aac_config_32.sbr_ps_on_flag;
  306. aac_config.dual_mono_mode = aac_config_32.dual_mono_mode;
  307. aac_config.channel_configuration =
  308. aac_config_32.channel_configuration;
  309. aac_config.sample_rate = aac_config_32.sample_rate;
  310. cmd = AUDIO_SET_AAC_CONFIG;
  311. rc = audio_ioctl_shared(file, cmd, &aac_config);
  312. if (rc)
  313. pr_err("%s:AUDIO_SET_AAC_CONFIG failed. Rc= %d\n",
  314. __func__, rc);
  315. break;
  316. }
  317. default: {
  318. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  319. rc = audio->codec_compat_ioctl(file, cmd, arg);
  320. if (rc)
  321. pr_err_ratelimited("%s[%pK]:Failed in utils_ioctl: %d\n",
  322. __func__, audio, rc);
  323. }
  324. }
  325. return rc;
  326. }
  327. #else
  328. #define audio_compat_ioctl NULL
  329. #endif
  330. static int audio_open(struct inode *inode, struct file *file)
  331. {
  332. struct q6audio_aio *audio = NULL;
  333. int rc = 0;
  334. struct msm_audio_aac_config *aac_config = NULL;
  335. #ifdef CONFIG_DEBUG_FS
  336. /* 4 bytes represents decoder number, 1 byte for terminate string */
  337. char name[sizeof "msm_aac_" + 5];
  338. #endif
  339. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  340. if (audio == NULL)
  341. return -ENOMEM;
  342. audio->codec_cfg = kzalloc(sizeof(struct msm_audio_aac_config),
  343. GFP_KERNEL);
  344. if (audio->codec_cfg == NULL) {
  345. kfree(audio);
  346. return -ENOMEM;
  347. }
  348. aac_config = audio->codec_cfg;
  349. /* Settings will be re-config at AUDIO_SET_CONFIG,
  350. * but at least we need to have initial config
  351. */
  352. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN_AAC;
  353. audio->miscdevice = &audio_aac_misc;
  354. audio->wakelock_voted = false;
  355. audio->audio_ws_mgr = &audio_aac_ws_mgr;
  356. aac_config->dual_mono_mode = AUDIO_AAC_DUAL_MONO_INVALID;
  357. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  358. (void *)audio);
  359. if (!audio->ac) {
  360. pr_err("Could not allocate memory for audio client\n");
  361. kfree(audio->codec_cfg);
  362. kfree(audio);
  363. return -ENOMEM;
  364. }
  365. rc = audio_aio_open(audio, file);
  366. if (rc < 0) {
  367. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  368. __func__, rc);
  369. goto fail;
  370. }
  371. /* open in T/NT mode */
  372. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  373. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  374. FORMAT_MPEG4_AAC);
  375. if (rc < 0) {
  376. pr_err("NT mode Open failed rc=%d\n", rc);
  377. rc = -ENODEV;
  378. goto fail;
  379. }
  380. audio->feedback = NON_TUNNEL_MODE;
  381. /* open AAC decoder, expected frames is always 1
  382. * audio->buf_cfg.frames_per_buf = 0x01;
  383. */
  384. audio->buf_cfg.meta_info_enable = 0x01;
  385. } else if ((file->f_mode & FMODE_WRITE) &&
  386. !(file->f_mode & FMODE_READ)) {
  387. rc = q6asm_open_write(audio->ac, FORMAT_MPEG4_AAC);
  388. if (rc < 0) {
  389. pr_err("T mode Open failed rc=%d\n", rc);
  390. rc = -ENODEV;
  391. goto fail;
  392. }
  393. audio->feedback = TUNNEL_MODE;
  394. audio->buf_cfg.meta_info_enable = 0x00;
  395. } else {
  396. pr_err("Not supported mode\n");
  397. rc = -EACCES;
  398. goto fail;
  399. }
  400. #ifdef CONFIG_DEBUG_FS
  401. snprintf(name, sizeof(name), "msm_aac_%04x", audio->ac->session);
  402. audio->dentry = debugfs_create_file(name, S_IFREG | 0444,
  403. NULL, (void *)audio,
  404. &audio_aac_debug_fops);
  405. if (IS_ERR(audio->dentry))
  406. pr_debug("debugfs_create_file failed\n");
  407. #endif
  408. pr_info("%s:aacdec success mode[%d]session[%d]\n", __func__,
  409. audio->feedback,
  410. audio->ac->session);
  411. return rc;
  412. fail:
  413. q6asm_audio_client_free(audio->ac);
  414. kfree(audio->codec_cfg);
  415. kfree(audio);
  416. return rc;
  417. }
  418. static const struct file_operations audio_aac_fops = {
  419. .owner = THIS_MODULE,
  420. .open = audio_open,
  421. .release = audio_aio_release,
  422. .unlocked_ioctl = audio_ioctl,
  423. .fsync = audio_aio_fsync,
  424. .compat_ioctl = audio_compat_ioctl
  425. };
  426. static struct miscdevice audio_aac_misc = {
  427. .minor = MISC_DYNAMIC_MINOR,
  428. .name = "msm_aac",
  429. .fops = &audio_aac_fops,
  430. };
  431. int __init audio_aac_init(void)
  432. {
  433. int ret = misc_register(&audio_aac_misc);
  434. if (ret == 0)
  435. device_init_wakeup(audio_aac_misc.this_device, true);
  436. audio_aac_ws_mgr.ref_cnt = 0;
  437. mutex_init(&audio_aac_ws_mgr.ws_lock);
  438. return ret;
  439. }
  440. void audio_aac_exit(void)
  441. {
  442. mutex_destroy(&audio_aac_ws_mgr.ws_lock);
  443. misc_deregister(&audio_aac_misc);
  444. }