audio_g711alaw.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2016-2017, 2019 The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/types.h>
  5. #include <linux/msm_audio_g711_dec.h>
  6. #include <linux/compat.h>
  7. #include "audio_utils_aio.h"
  8. static struct miscdevice audio_g711alaw_misc;
  9. static struct ws_mgr audio_g711_ws_mgr;
  10. #ifdef CONFIG_DEBUG_FS
  11. static const struct file_operations audio_g711_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_g711_debug_fops);
  19. }
  20. #endif
  21. static int g711_channel_map(u8 *channel_mapping, uint32_t channels);
  22. static long audio_ioctl_shared(struct file *file, unsigned int cmd,
  23. void *arg)
  24. {
  25. struct q6audio_aio *audio = file->private_data;
  26. int rc = 0;
  27. switch (cmd) {
  28. case AUDIO_START: {
  29. struct asm_g711_dec_cfg g711_dec_cfg;
  30. struct msm_audio_g711_dec_config *g711_dec_config;
  31. u8 channel_mapping[PCM_FORMAT_MAX_NUM_CHANNEL];
  32. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  33. memset(&g711_dec_cfg, 0, sizeof(g711_dec_cfg));
  34. if (g711_channel_map(channel_mapping,
  35. audio->pcm_cfg.channel_count)) {
  36. pr_err("%s: setting channel map failed %d\n",
  37. __func__, audio->pcm_cfg.channel_count);
  38. }
  39. pr_debug("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
  40. audio, audio->ac->session);
  41. if (audio->feedback == NON_TUNNEL_MODE) {
  42. /* Configure PCM output block */
  43. rc = q6asm_enc_cfg_blk_pcm_v2(audio->ac,
  44. audio->pcm_cfg.sample_rate,
  45. audio->pcm_cfg.channel_count,
  46. 16, /*bits per sample*/
  47. false, false, channel_mapping);
  48. if (rc < 0) {
  49. pr_err("%s: pcm output block config failed rc=%d\n",
  50. __func__, rc);
  51. break;
  52. }
  53. }
  54. g711_dec_config =
  55. (struct msm_audio_g711_dec_config *)audio->codec_cfg;
  56. g711_dec_cfg.sample_rate = g711_dec_config->sample_rate;
  57. /* Configure Media format block */
  58. rc = q6asm_media_format_block_g711(audio->ac, &g711_dec_cfg,
  59. audio->ac->stream_id);
  60. if (rc < 0) {
  61. pr_err("%s: cmd media format block failed rc=%d\n",
  62. __func__, rc);
  63. break;
  64. }
  65. rc = audio_aio_enable(audio);
  66. audio->eos_rsp = 0;
  67. audio->eos_flag = 0;
  68. if (!rc) {
  69. audio->enabled = 1;
  70. } else {
  71. audio->enabled = 0;
  72. pr_err("%s: Audio Start procedure failed rc=%d\n",
  73. __func__, rc);
  74. break;
  75. }
  76. pr_debug("%s: AUDIO_START success enable[%d]\n",
  77. __func__, audio->enabled);
  78. if (audio->stopped == 1)
  79. audio->stopped = 0;
  80. break;
  81. }
  82. default:
  83. pr_debug("%s: Unknown ioctl cmd = %d", __func__, cmd);
  84. break;
  85. }
  86. return rc;
  87. }
  88. static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  89. {
  90. struct q6audio_aio *audio = file->private_data;
  91. int rc = 0;
  92. switch (cmd) {
  93. case AUDIO_START: {
  94. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  95. break;
  96. }
  97. case AUDIO_GET_G711_DEC_CONFIG: {
  98. if (copy_to_user((void *)arg, audio->codec_cfg,
  99. sizeof(struct msm_audio_g711_dec_config))) {
  100. pr_err("%s: copy_to_user for AUDIO_GET_G711_DEC_CONFIG failed\n",
  101. __func__);
  102. rc = -EFAULT;
  103. }
  104. break;
  105. }
  106. case AUDIO_SET_G711_DEC_CONFIG: {
  107. if (copy_from_user(audio->codec_cfg, (void *)arg,
  108. sizeof(struct msm_audio_g711_dec_config))) {
  109. pr_err("%s: copy_from_user for AUDIO_SET_G711_DEC_CONFIG failed\n",
  110. __func__);
  111. rc = -EFAULT;
  112. }
  113. break;
  114. }
  115. default: {
  116. rc = audio->codec_ioctl(file, cmd, arg);
  117. if (rc)
  118. pr_err("%s: Failed in audio_aio_ioctl: %d cmd=%d\n",
  119. __func__, rc, cmd);
  120. break;
  121. }
  122. }
  123. return rc;
  124. }
  125. #ifdef CONFIG_COMPAT
  126. struct msm_audio_g711_dec_config_32 {
  127. u32 sample_rate;
  128. };
  129. enum {
  130. AUDIO_SET_G711_DEC_CONFIG_32 = _IOW(AUDIO_IOCTL_MAGIC,
  131. (AUDIO_MAX_COMMON_IOCTL_NUM+0), struct msm_audio_g711_dec_config_32),
  132. AUDIO_GET_G711_DEC_CONFIG_32 = _IOR(AUDIO_IOCTL_MAGIC,
  133. (AUDIO_MAX_COMMON_IOCTL_NUM+1), struct msm_audio_g711_dec_config_32)
  134. };
  135. static long audio_compat_ioctl(struct file *file, unsigned int cmd,
  136. unsigned long arg)
  137. {
  138. struct q6audio_aio *audio = file->private_data;
  139. int rc = 0;
  140. switch (cmd) {
  141. case AUDIO_START: {
  142. rc = audio_ioctl_shared(file, cmd, (void *)arg);
  143. break;
  144. }
  145. case AUDIO_GET_G711_DEC_CONFIG_32: {
  146. struct msm_audio_g711_dec_config *g711_dec_config;
  147. struct msm_audio_g711_dec_config_32 g711_dec_config_32;
  148. memset(&g711_dec_config_32, 0, sizeof(g711_dec_config_32));
  149. g711_dec_config =
  150. (struct msm_audio_g711_dec_config *)audio->codec_cfg;
  151. g711_dec_config_32.sample_rate = g711_dec_config->sample_rate;
  152. if (copy_to_user((void *)arg, &g711_dec_config_32,
  153. sizeof(g711_dec_config_32))) {
  154. pr_err("%s: copy_to_user for AUDIO_GET_G711_DEC_CONFIG_32 failed\n",
  155. __func__);
  156. rc = -EFAULT;
  157. }
  158. break;
  159. }
  160. case AUDIO_SET_G711_DEC_CONFIG_32: {
  161. struct msm_audio_g711_dec_config *g711_dec_config;
  162. struct msm_audio_g711_dec_config_32 g711_dec_config_32;
  163. memset(&g711_dec_config_32, 0, sizeof(g711_dec_config_32));
  164. if (copy_from_user(&g711_dec_config_32, (void *)arg,
  165. sizeof(g711_dec_config_32))) {
  166. pr_err("%s: copy_from_user for AUDIO_SET_G711_DEC_CONFIG_32 failed\n",
  167. __func__);
  168. rc = -EFAULT;
  169. break;
  170. }
  171. g711_dec_config =
  172. (struct msm_audio_g711_dec_config *)audio->codec_cfg;
  173. g711_dec_config->sample_rate = g711_dec_config_32.sample_rate;
  174. break;
  175. }
  176. default: {
  177. rc = audio->codec_compat_ioctl(file, cmd, arg);
  178. if (rc)
  179. pr_err("%s: Failed in audio_aio_compat_ioctl: %d cmd=%d\n",
  180. __func__, rc, cmd);
  181. break;
  182. }
  183. }
  184. return rc;
  185. }
  186. #else
  187. #define audio_compat_ioctl NULL
  188. #endif
  189. static int audio_open(struct inode *inode, struct file *file)
  190. {
  191. struct q6audio_aio *audio = NULL;
  192. int rc = 0;
  193. /* 4 bytes represents decoder number, 1 byte for terminate string */
  194. char name[sizeof "msm_g711_" + 5];
  195. audio = kzalloc(sizeof(struct q6audio_aio), GFP_KERNEL);
  196. if (!audio)
  197. return -ENOMEM;
  198. audio->codec_cfg = kzalloc(sizeof(struct msm_audio_g711_dec_config),
  199. GFP_KERNEL);
  200. if (!audio->codec_cfg) {
  201. kfree(audio);
  202. return -ENOMEM;
  203. }
  204. audio->pcm_cfg.buffer_size = PCM_BUFSZ_MIN;
  205. audio->miscdevice = &audio_g711alaw_misc;
  206. audio->wakelock_voted = false;
  207. audio->audio_ws_mgr = &audio_g711_ws_mgr;
  208. init_waitqueue_head(&audio->event_wait);
  209. audio->ac = q6asm_audio_client_alloc((app_cb) q6_audio_cb,
  210. (void *)audio);
  211. if (!audio->ac) {
  212. pr_err("%s: Could not allocate memory for audio client\n",
  213. __func__);
  214. kfree(audio->codec_cfg);
  215. kfree(audio);
  216. return -ENOMEM;
  217. }
  218. rc = audio_aio_open(audio, file);
  219. if (rc < 0) {
  220. pr_err_ratelimited("%s: audio_aio_open rc=%d\n",
  221. __func__, rc);
  222. goto fail;
  223. }
  224. /* open in T/NT mode */ /*foramt:G711_ALAW*/
  225. if ((file->f_mode & FMODE_WRITE) && (file->f_mode & FMODE_READ)) {
  226. rc = q6asm_open_read_write(audio->ac, FORMAT_LINEAR_PCM,
  227. FORMAT_G711_ALAW_FS);
  228. if (rc < 0) {
  229. pr_err("%s: NT mode Open failed rc=%d\n", __func__, rc);
  230. goto fail;
  231. }
  232. audio->feedback = NON_TUNNEL_MODE;
  233. /* open G711 decoder, expected frames is always 1*/
  234. audio->buf_cfg.frames_per_buf = 0x01;
  235. audio->buf_cfg.meta_info_enable = 0x01;
  236. } else if ((file->f_mode & FMODE_WRITE) &&
  237. !(file->f_mode & FMODE_READ)) {
  238. rc = q6asm_open_write(audio->ac, FORMAT_G711_ALAW_FS);
  239. if (rc < 0) {
  240. pr_err("%s: T mode Open failed rc=%d\n", __func__, rc);
  241. goto fail;
  242. }
  243. audio->feedback = TUNNEL_MODE;
  244. audio->buf_cfg.meta_info_enable = 0x00;
  245. } else {
  246. pr_err("%s: %d mode is not supported mode\n",
  247. __func__, file->f_mode);
  248. rc = -EACCES;
  249. goto fail;
  250. }
  251. snprintf(name, sizeof(name), "msm_g711_%04x", audio->ac->session);
  252. #ifdef CONFIG_DEBUG_FS
  253. audio->dentry = config_debugfs_create_file(name, (void *)audio);
  254. if (IS_ERR_OR_NULL(audio->dentry))
  255. pr_debug("%s: debugfs_create_file failed\n", __func__);
  256. pr_debug("%s: g711dec success mode[%d]session[%d]\n", __func__,
  257. audio->feedback,
  258. audio->ac->session);
  259. #endif
  260. return rc;
  261. fail:
  262. q6asm_audio_client_free(audio->ac);
  263. kfree(audio->codec_cfg);
  264. kfree(audio);
  265. return rc;
  266. }
  267. static int g711_channel_map(u8 *channel_mapping, uint32_t channels)
  268. {
  269. u8 *lchannel_mapping;
  270. lchannel_mapping = channel_mapping;
  271. pr_debug("%s: channels passed: %d\n", __func__, channels);
  272. if (channels == 1) {
  273. lchannel_mapping[0] = PCM_CHANNEL_FC;
  274. } else if (channels == 2) {
  275. lchannel_mapping[0] = PCM_CHANNEL_FL;
  276. lchannel_mapping[1] = PCM_CHANNEL_FR;
  277. } else if (channels == 3) {
  278. lchannel_mapping[0] = PCM_CHANNEL_FC;
  279. lchannel_mapping[1] = PCM_CHANNEL_FL;
  280. lchannel_mapping[2] = PCM_CHANNEL_FR;
  281. } else if (channels == 4) {
  282. lchannel_mapping[0] = PCM_CHANNEL_FC;
  283. lchannel_mapping[1] = PCM_CHANNEL_FL;
  284. lchannel_mapping[2] = PCM_CHANNEL_FR;
  285. lchannel_mapping[3] = PCM_CHANNEL_CS;
  286. } else if (channels == 5) {
  287. lchannel_mapping[0] = PCM_CHANNEL_FC;
  288. lchannel_mapping[1] = PCM_CHANNEL_FL;
  289. lchannel_mapping[2] = PCM_CHANNEL_FR;
  290. lchannel_mapping[3] = PCM_CHANNEL_LS;
  291. lchannel_mapping[4] = PCM_CHANNEL_RS;
  292. } else if (channels == 6) {
  293. lchannel_mapping[0] = PCM_CHANNEL_FC;
  294. lchannel_mapping[1] = PCM_CHANNEL_FL;
  295. lchannel_mapping[2] = PCM_CHANNEL_FR;
  296. lchannel_mapping[3] = PCM_CHANNEL_LS;
  297. lchannel_mapping[4] = PCM_CHANNEL_RS;
  298. lchannel_mapping[5] = PCM_CHANNEL_LFE;
  299. } else if (channels == 7) {
  300. lchannel_mapping[0] = PCM_CHANNEL_FC;
  301. lchannel_mapping[1] = PCM_CHANNEL_FL;
  302. lchannel_mapping[2] = PCM_CHANNEL_FR;
  303. lchannel_mapping[3] = PCM_CHANNEL_LS;
  304. lchannel_mapping[4] = PCM_CHANNEL_RS;
  305. lchannel_mapping[5] = PCM_CHANNEL_CS;
  306. lchannel_mapping[6] = PCM_CHANNEL_LFE;
  307. } else if (channels == 8) {
  308. lchannel_mapping[0] = PCM_CHANNEL_FC;
  309. lchannel_mapping[1] = PCM_CHANNEL_FLC;
  310. lchannel_mapping[2] = PCM_CHANNEL_FRC;
  311. lchannel_mapping[3] = PCM_CHANNEL_FL;
  312. lchannel_mapping[4] = PCM_CHANNEL_FR;
  313. lchannel_mapping[5] = PCM_CHANNEL_LS;
  314. lchannel_mapping[6] = PCM_CHANNEL_RS;
  315. lchannel_mapping[7] = PCM_CHANNEL_LFE;
  316. } else {
  317. pr_err("%s: ERROR.unsupported num_ch = %u\n",
  318. __func__, channels);
  319. return -EINVAL;
  320. }
  321. return 0;
  322. }
  323. static const struct file_operations audio_g711_fops = {
  324. .owner = THIS_MODULE,
  325. .open = audio_open,
  326. .release = audio_aio_release,
  327. .unlocked_ioctl = audio_ioctl,
  328. .compat_ioctl = audio_compat_ioctl,
  329. .fsync = audio_aio_fsync,
  330. };
  331. static struct miscdevice audio_g711alaw_misc = {
  332. .minor = MISC_DYNAMIC_MINOR,
  333. .name = "msm_g711alaw",
  334. .fops = &audio_g711_fops,
  335. };
  336. int __init audio_g711alaw_init(void)
  337. {
  338. int ret = misc_register(&audio_g711alaw_misc);
  339. if (ret == 0)
  340. device_init_wakeup(audio_g711alaw_misc.this_device, true);
  341. audio_g711_ws_mgr.ref_cnt = 0;
  342. mutex_init(&audio_g711_ws_mgr.ws_lock);
  343. return ret;
  344. }
  345. void audio_g711alaw_exit(void)
  346. {
  347. mutex_destroy(&audio_g711_ws_mgr.ws_lock);
  348. misc_deregister(&audio_g711alaw_misc);
  349. }