audio_multi_aac.c 14 KB

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