audio_g711mlaw.c 10 KB

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