audio_aac.c 13 KB

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