audio_multi_aac.c 14 KB

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