audio_ape.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/types.h>
  5. #include <linux/msm_audio_ape.h>
  6. #include <linux/compat.h>
  7. #include "audio_utils_aio.h"
  8. static struct miscdevice audio_ape_misc;
  9. static struct ws_mgr audio_ape_ws_mgr;
  10. #ifdef CONFIG_DEBUG_FS
  11. static const struct file_operations audio_ape_debug_fops = {
  12. .read = audio_aio_debug_read,
  13. .open = audio_aio_debug_open,
  14. };
  15. static struct dentry *config_debugfs_create_file(const char *name, void *data)
  16. {
  17. return debugfs_create_file(name, S_IFREG | 0444,
  18. NULL, (void *)data, &audio_ape_debug_fops);
  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_ape_cfg ape_cfg;
  29. struct msm_audio_ape_config *ape_config;
  30. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  31. audio, audio->ac->session);
  32. if (audio->feedback == NON_TUNNEL_MODE) {
  33. /* Configure PCM output block */
  34. rc = q6asm_enc_cfg_blk_pcm(audio->ac,
  35. audio->pcm_cfg.sample_rate,
  36. audio->pcm_cfg.channel_count);
  37. if (rc < 0) {
  38. pr_err("pcm output block config failed\n");
  39. break;
  40. }
  41. }
  42. ape_config = (struct msm_audio_ape_config *)audio->codec_cfg;
  43. ape_cfg.compatible_version = ape_config->compatibleVersion;
  44. ape_cfg.compression_level = ape_config->compressionLevel;
  45. ape_cfg.format_flags = ape_config->formatFlags;
  46. ape_cfg.blocks_per_frame = ape_config->blocksPerFrame;
  47. ape_cfg.final_frame_blocks = ape_config->finalFrameBlocks;
  48. ape_cfg.total_frames = ape_config->totalFrames;
  49. ape_cfg.bits_per_sample = ape_config->bitsPerSample;
  50. ape_cfg.num_channels = ape_config->numChannels;
  51. ape_cfg.sample_rate = ape_config->sampleRate;
  52. ape_cfg.seek_table_present = ape_config->seekTablePresent;
  53. pr_debug("%s: compatibleVersion %d compressionLevel %d formatFlags %d blocksPerFrame %d finalFrameBlocks %d totalFrames %d bitsPerSample %d numChannels %d sampleRate %d seekTablePresent %d\n",
  54. __func__, ape_config->compatibleVersion,
  55. ape_config->compressionLevel,
  56. ape_config->formatFlags,
  57. ape_config->blocksPerFrame,
  58. ape_config->finalFrameBlocks,
  59. ape_config->totalFrames,
  60. ape_config->bitsPerSample,
  61. ape_config->numChannels,
  62. ape_config->sampleRate,
  63. ape_config->seekTablePresent);
  64. /* Configure Media format block */
  65. rc = q6asm_media_format_block_ape(audio->ac, &ape_cfg,
  66. audio->ac->stream_id);
  67. if (rc < 0) {
  68. pr_err("cmd media format block failed\n");
  69. break;
  70. }
  71. rc = audio_aio_enable(audio);
  72. audio->eos_rsp = 0;
  73. audio->eos_flag = 0;
  74. if (!rc) {
  75. audio->enabled = 1;
  76. } else {
  77. audio->enabled = 0;
  78. pr_err("Audio Start procedure failed rc=%d\n", rc);
  79. break;
  80. }
  81. pr_debug("AUDIO_START success enable[%d]\n", audio->enabled);
  82. if (audio->stopped == 1)
  83. audio->stopped = 0;
  84. break;
  85. }
  86. default:
  87. pr_err("%s: Unknown ioctl cmd = %d", __func__, cmd);
  88. break;
  89. }
  90. return rc;
  91. }
  92. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  93. {
  94. struct q6audio_aio *audio = file->private_data;
  95. int rc = 0;
  96. switch (cmd) {
  97. case AUDIO_START: {
  98. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  99. break;
  100. }
  101. case AUDIO_GET_APE_CONFIG: {
  102. if (copy_to_user((void *)arg, audio->codec_cfg,
  103. sizeof(struct msm_audio_ape_config))) {
  104. pr_err("%s:copy_to_user for AUDIO_GET_APE_CONFIG failed\n",
  105. __func__);
  106. rc = -EFAULT;
  107. break;
  108. }
  109. break;
  110. }
  111. case AUDIO_SET_APE_CONFIG: {
  112. if (copy_from_user(audio->codec_cfg, (void *)arg,
  113. sizeof(struct msm_audio_ape_config))) {
  114. pr_err("%s:copy_from_user for AUDIO_SET_APE_CONFIG failed\n",
  115. __func__);
  116. rc = -EFAULT;
  117. break;
  118. }
  119. break;
  120. }
  121. default: {
  122. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  123. rc = audio->codec_ioctl(file, cmd, arg);
  124. if (rc)
  125. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  126. break;
  127. }
  128. }
  129. return rc;
  130. }
  131. #ifdef CONFIG_COMPAT
  132. struct msm_audio_ape_config_32 {
  133. u16 compatibleVersion;
  134. u16 compressionLevel;
  135. u32 formatFlags;
  136. u32 blocksPerFrame;
  137. u32 finalFrameBlocks;
  138. u32 totalFrames;
  139. u16 bitsPerSample;
  140. u16 numChannels;
  141. u32 sampleRate;
  142. u32 seekTablePresent;
  143. };
  144. enum {
  145. AUDIO_GET_APE_CONFIG_32 = _IOR(AUDIO_IOCTL_MAGIC,
  146. (AUDIO_MAX_COMMON_IOCTL_NUM+0), struct msm_audio_ape_config_32),
  147. AUDIO_SET_APE_CONFIG_32 = _IOW(AUDIO_IOCTL_MAGIC,
  148. (AUDIO_MAX_COMMON_IOCTL_NUM+1), struct msm_audio_ape_config_32)
  149. };
  150. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  151. unsigned long arg)
  152. {
  153. struct q6audio_aio *audio = file->private_data;
  154. int rc = 0;
  155. switch (cmd) {
  156. case AUDIO_START: {
  157. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  158. break;
  159. }
  160. case AUDIO_GET_APE_CONFIG_32: {
  161. struct msm_audio_ape_config *ape_config;
  162. struct msm_audio_ape_config_32 ape_config_32;
  163. memset(&ape_config_32, 0, sizeof(ape_config_32));
  164. ape_config = (struct msm_audio_ape_config *)audio->codec_cfg;
  165. ape_config_32.compatibleVersion = ape_config->compatibleVersion;
  166. ape_config_32.compressionLevel =
  167. ape_config->compressionLevel;
  168. ape_config_32.formatFlags = ape_config->formatFlags;
  169. ape_config_32.blocksPerFrame = ape_config->blocksPerFrame;
  170. ape_config_32.finalFrameBlocks = ape_config->finalFrameBlocks;
  171. ape_config_32.totalFrames = ape_config->totalFrames;
  172. ape_config_32.bitsPerSample = ape_config->bitsPerSample;
  173. ape_config_32.numChannels = ape_config->numChannels;
  174. ape_config_32.sampleRate = ape_config->sampleRate;
  175. ape_config_32.seekTablePresent = ape_config->seekTablePresent;
  176. if (copy_to_user((void *)arg, &ape_config_32,
  177. sizeof(ape_config_32))) {
  178. pr_err("%s: copy_to_user for GET_APE_CONFIG_32 failed\n",
  179. __func__);
  180. rc = -EFAULT;
  181. break;
  182. }
  183. break;
  184. }
  185. case AUDIO_SET_APE_CONFIG_32: {
  186. struct msm_audio_ape_config *ape_config;
  187. struct msm_audio_ape_config_32 ape_config_32;
  188. if (copy_from_user(&ape_config_32, (void *)arg,
  189. sizeof(ape_config_32))) {
  190. pr_err("%s: copy_from_user for SET_APE_CONFIG_32 failed\n"
  191. , __func__);
  192. rc = -EFAULT;
  193. break;
  194. }
  195. ape_config = (struct msm_audio_ape_config *)audio->codec_cfg;
  196. ape_config->compatibleVersion = ape_config_32.compatibleVersion;
  197. ape_config->compressionLevel =
  198. ape_config_32.compressionLevel;
  199. ape_config->formatFlags = ape_config_32.formatFlags;
  200. ape_config->blocksPerFrame = ape_config_32.blocksPerFrame;
  201. ape_config->finalFrameBlocks = ape_config_32.finalFrameBlocks;
  202. ape_config->totalFrames = ape_config_32.totalFrames;
  203. ape_config->bitsPerSample = ape_config_32.bitsPerSample;
  204. ape_config->numChannels = ape_config_32.numChannels;
  205. ape_config->sampleRate = ape_config_32.sampleRate;
  206. ape_config->seekTablePresent = ape_config_32.seekTablePresent;
  207. break;
  208. }
  209. default: {
  210. pr_debug("%s[%pK]: Calling utils ioctl\n", __func__, audio);
  211. rc = audio->codec_compat_ioctl(file, cmd, arg);
  212. if (rc)
  213. pr_err_ratelimited("Failed in utils_ioctl: %d\n", rc);
  214. break;
  215. }
  216. }
  217. return rc;
  218. }
  219. #else
  220. #define audio_compat_ioctl NULL
  221. #endif
  222. static int audio_open(struct inode *inode, struct file *file)
  223. {
  224. struct q6audio_aio *audio = NULL;
  225. int rc = 0;
  226. /* 4 bytes represents decoder number, 1 byte for terminate string */
  227. char name[sizeof "msm_ape_" + 5];
  228. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  229. if (!audio)
  230. return -ENOMEM;
  231. audio->codec_cfg = kzalloc(sizeof(struct msm_audio_ape_config),
  232. GFP_KERNEL);
  233. if (!audio->codec_cfg) {
  234. kfree(audio);
  235. return -ENOMEM;
  236. }
  237. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  238. audio->miscdevice = &audio_ape_misc;
  239. audio->wakelock_voted = false;
  240. audio->audio_ws_mgr = &audio_ape_ws_mgr;
  241. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  242. (void *)audio);
  243. if (!audio->ac) {
  244. pr_err("Could not allocate memory for audio client\n");
  245. kfree(audio->codec_cfg);
  246. kfree(audio);
  247. return -ENOMEM;
  248. }
  249. rc = audio_aio_open(audio, file);
  250. if (rc < 0) {
  251. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  252. __func__, rc);
  253. goto fail;
  254. }
  255. /* open in T/NT mode */
  256. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  257. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  258. FORMAT_APE);
  259. if (rc < 0) {
  260. pr_err("NT mode Open failed rc=%d\n", rc);
  261. rc = -ENODEV;
  262. goto fail;
  263. }
  264. audio->feedback = NON_TUNNEL_MODE;
  265. /* open APE decoder, expected frames is always 1*/
  266. audio->buf_cfg.frames_per_buf = 0x01;
  267. audio->buf_cfg.meta_info_enable = 0x01;
  268. } else if ((file->f_mode & FMODE_WRITE) &&
  269. !(file->f_mode & FMODE_READ)) {
  270. rc = q6asm_open_write(audio->ac, FORMAT_APE);
  271. if (rc < 0) {
  272. pr_err("T mode Open failed rc=%d\n", rc);
  273. rc = -ENODEV;
  274. goto fail;
  275. }
  276. audio->feedback = TUNNEL_MODE;
  277. audio->buf_cfg.meta_info_enable = 0x00;
  278. } else {
  279. pr_err("Not supported mode\n");
  280. rc = -EACCES;
  281. goto fail;
  282. }
  283. snprintf(name, sizeof(name), "msm_ape_%04x", audio->ac->session);
  284. #ifdef CONFIG_DEBUG_FS
  285. audio->dentry = config_debugfs_create_file(name, (void *)audio);
  286. if (IS_ERR_OR_NULL(audio->dentry))
  287. pr_debug("debugfs_create_file failed\n");
  288. pr_debug("%s:apedec success mode[%d]session[%d]\n", __func__,
  289. audio->feedback,
  290. audio->ac->session);
  291. #endif
  292. return rc;
  293. fail:
  294. q6asm_audio_client_free(audio->ac);
  295. kfree(audio->codec_cfg);
  296. kfree(audio);
  297. return rc;
  298. }
  299. static const struct file_operations audio_ape_fops = {
  300. .owner = THIS_MODULE,
  301. .open = audio_open,
  302. .release = audio_aio_release,
  303. .unlocked_ioctl = audio_ioctl,
  304. .fsync = audio_aio_fsync,
  305. .compat_ioctl = audio_compat_ioctl
  306. };
  307. static struct miscdevice audio_ape_misc = {
  308. .minor = MISC_DYNAMIC_MINOR,
  309. .name = "msm_ape",
  310. .fops = &audio_ape_fops,
  311. };
  312. int __init audio_ape_init(void)
  313. {
  314. int ret = misc_register(&audio_ape_misc);
  315. if (ret == 0)
  316. device_init_wakeup(audio_ape_misc.this_device, true);
  317. audio_ape_ws_mgr.ref_cnt = 0;
  318. mutex_init(&audio_ape_ws_mgr.ws_lock);
  319. return ret;
  320. }
  321. void audio_ape_exit(void)
  322. {
  323. mutex_destroy(&audio_ape_ws_mgr.ws_lock);
  324. misc_deregister(&audio_ape_misc);
  325. }