audio_aac.c 13 KB

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