audio-pkt.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. /* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #include <linux/platform_device.h>
  14. #include <linux/of_platform.h>
  15. #include <linux/ipc_logging.h>
  16. #include <linux/refcount.h>
  17. #include <linux/device.h>
  18. #include <linux/module.h>
  19. #include <linux/skbuff.h>
  20. #include <linux/cdev.h>
  21. #include <linux/slab.h>
  22. #include <linux/poll.h>
  23. #include <linux/idr.h>
  24. #include <linux/of.h>
  25. #include <linux/fs.h>
  26. #include <linux/uaccess.h>
  27. #include <linux/termios.h>
  28. #include <ipc/gpr-lite.h>
  29. #include <dsp/msm_audio_ion.h>
  30. /* Define IPC Logging Macros */
  31. #define AUDIO_PKT_IPC_LOG_PAGE_CNT 2
  32. static void *audio_pkt_ilctxt;
  33. static int audio_pkt_debug_mask;
  34. module_param_named(debug_mask, audio_pkt_debug_mask, int, 0664);
  35. #define APM_CMD_SHARED_MEM_MAP_REGIONS 0x0100100C
  36. #define APM_MEMORY_MAP_BIT_MASK_IS_OFFSET_MODE 0x00000004UL
  37. enum {
  38. AUDIO_PKT_INFO = 1U << 0,
  39. };
  40. #define AUDIO_PKT_INFO(x, ...) \
  41. do { \
  42. if (audio_pkt_debug_mask & AUDIO_PKT_INFO) { \
  43. ipc_log_string(audio_pkt_ilctxt, \
  44. "[%s]: "x, __func__, ##__VA_ARGS__); \
  45. } \
  46. } while (0)
  47. #define AUDIO_PKT_ERR(x, ...) \
  48. do { \
  49. pr_err_ratelimited("[%s]: "x, __func__, ##__VA_ARGS__); \
  50. ipc_log_string(audio_pkt_ilctxt, "[%s]: "x, __func__, ##__VA_ARGS__); \
  51. } while (0)
  52. #define MODULE_NAME "audio-pkt"
  53. #define MINOR_NUMBER_COUNT 1
  54. #define AUDPKT_DRIVER_NAME "aud_pasthru_adsp"
  55. #define CHANNEL_NAME "to_apps"
  56. /**
  57. * struct audio_pkt - driver context, relates rpdev to cdev
  58. * @adev: gpr device node
  59. * @dev: audio pkt device
  60. * @cdev: cdev for the audio pkt device
  61. * @lock: synchronization of @rpdev
  62. * @queue_lock: synchronization of @queue operations
  63. * @queue: incoming message queue
  64. * @readq: wait object for incoming queue
  65. * @dev_name: /dev/@dev_name for audio_pkt device
  66. * @ch_name: audio channel to match to
  67. * @audio_pkt_major: Major number of audio pkt driver
  68. * @audio_pkt_class: audio pkt class pointer
  69. */
  70. struct audio_pkt_device {
  71. struct gpr_device *adev;
  72. struct device *dev;
  73. struct cdev cdev;
  74. struct mutex lock;
  75. spinlock_t queue_lock;
  76. struct sk_buff_head queue;
  77. wait_queue_head_t readq;
  78. char dev_name[20];
  79. char ch_name[20];
  80. dev_t audio_pkt_major;
  81. struct class *audio_pkt_class;
  82. };
  83. struct audio_pkt_apm_cmd_shared_mem_map_regions_t {
  84. uint16_t mem_pool_id;
  85. uint16_t num_regions;
  86. uint32_t property_flag;
  87. };
  88. struct audio_pkt_apm_shared_map_region_payload_t {
  89. uint32_t shm_addr_lsw;
  90. uint32_t shm_addr_msw;
  91. uint32_t mem_size_bytes;
  92. };
  93. struct audio_pkt_apm_mem_map {
  94. struct audio_pkt_apm_cmd_shared_mem_map_regions_t mmap_header;
  95. struct audio_pkt_apm_shared_map_region_payload_t mmap_payload;
  96. };
  97. struct audio_gpr_pkt {
  98. struct gpr_hdr audpkt_hdr;
  99. struct audio_pkt_apm_mem_map audpkt_mem_map;
  100. };
  101. typedef void (*audio_pkt_clnt_cb_fn)(void *buf, int len, void *priv);
  102. struct audio_pkt_clnt_ch {
  103. int client_id;
  104. audio_pkt_clnt_cb_fn func;
  105. };
  106. #define dev_to_audpkt_dev(_dev) container_of(_dev, struct audio_pkt_device, dev)
  107. #define cdev_to_audpkt_dev(_cdev) container_of(_cdev, struct audio_pkt_device, cdev)
  108. /**
  109. * audio_pkt_open() - open() syscall for the audio_pkt device
  110. * inode: Pointer to the inode structure.
  111. * file: Pointer to the file structure.
  112. *
  113. * This function is used to open the audio pkt device when
  114. * userspace client do a open() system call. All input arguments are
  115. * validated by the virtual file system before calling this function.
  116. */
  117. int audio_pkt_open(struct inode *inode, struct file *file)
  118. {
  119. struct audio_pkt_device *audpkt_dev = cdev_to_audpkt_dev(inode->i_cdev);
  120. struct device *dev = audpkt_dev->dev;
  121. AUDIO_PKT_ERR("for %s\n", audpkt_dev->ch_name);
  122. get_device(dev);
  123. file->private_data = audpkt_dev;
  124. return 0;
  125. }
  126. /**
  127. * audio_pkt_release() - release operation on audio_pkt device
  128. * inode: Pointer to the inode structure.
  129. * file: Pointer to the file structure.
  130. *
  131. * This function is used to release the audio pkt device when
  132. * userspace client do a close() system call. All input arguments are
  133. * validated by the virtual file system before calling this function.
  134. */
  135. int audio_pkt_release(struct inode *inode, struct file *file)
  136. {
  137. struct audio_pkt_device *audpkt_dev = cdev_to_audpkt_dev(inode->i_cdev);
  138. struct device *dev = audpkt_dev->dev;
  139. struct sk_buff *skb;
  140. unsigned long flags;
  141. AUDIO_PKT_INFO("for %s \n", audpkt_dev->ch_name);
  142. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  143. /* Discard all SKBs */
  144. while (!skb_queue_empty(&audpkt_dev->queue)) {
  145. skb = skb_dequeue(&audpkt_dev->queue);
  146. kfree_skb(skb);
  147. }
  148. wake_up_interruptible(&audpkt_dev->readq);
  149. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  150. put_device(dev);
  151. file->private_data = NULL;
  152. return 0;
  153. }
  154. /**
  155. * audio_pkt_read() - read() syscall for the audio_pkt device
  156. * file: Pointer to the file structure.
  157. * buf: Pointer to the userspace buffer.
  158. * count: Number bytes to read from the file.
  159. * ppos: Pointer to the position into the file.
  160. *
  161. * This function is used to Read the data from audio pkt device when
  162. * userspace client do a read() system call. All input arguments are
  163. * validated by the virtual file system before calling this function.
  164. */
  165. ssize_t audio_pkt_read(struct file *file, char __user *buf,
  166. size_t count, loff_t *ppos)
  167. {
  168. struct audio_pkt_device *audpkt_dev = file->private_data;
  169. unsigned long flags;
  170. struct sk_buff *skb;
  171. int use;
  172. uint32_t *temp;
  173. if (!audpkt_dev) {
  174. AUDIO_PKT_ERR("invalid device handle\n");
  175. return -EINVAL;
  176. }
  177. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  178. /* Wait for data in the queue */
  179. if (skb_queue_empty(&audpkt_dev->queue)) {
  180. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  181. if (file->f_flags & O_NONBLOCK)
  182. return -EAGAIN;
  183. /* Wait until we get data or the endpoint goes away */
  184. if (wait_event_interruptible(audpkt_dev->readq,
  185. !skb_queue_empty(&audpkt_dev->queue)))
  186. return -ERESTARTSYS;
  187. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  188. }
  189. skb = skb_dequeue(&audpkt_dev->queue);
  190. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  191. if (!skb)
  192. return -EFAULT;
  193. use = min_t(size_t, count, skb->len);
  194. if (copy_to_user(buf, skb->data, use))
  195. use = -EFAULT;
  196. temp = (uint32_t *) skb->data;
  197. kfree_skb(skb);
  198. return use;
  199. }
  200. /**
  201. * audpkt_update_physical_addr - Update physical address
  202. * audpkt_hdr: Pointer to the file structure.
  203. */
  204. int audpkt_chk_and_update_physical_addr(struct audio_gpr_pkt *gpr_pkt)
  205. {
  206. int ret = 0;
  207. dma_addr_t paddr;
  208. if (gpr_pkt->audpkt_mem_map.mmap_header.property_flag &
  209. APM_MEMORY_MAP_BIT_MASK_IS_OFFSET_MODE) {
  210. ret = msm_audio_get_phy_addr(
  211. (int) gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_lsw,
  212. &paddr);
  213. if (ret < 0) {
  214. AUDIO_PKT_ERR("%s Get phy. address failed, ret %d\n",
  215. __func__, ret);
  216. return ret;
  217. }
  218. AUDIO_PKT_INFO("%s physical address %pK", __func__,
  219. (void *) paddr);
  220. gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_lsw = (uint32_t) paddr;
  221. gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_msw = (uint64_t) paddr >> 32;
  222. }
  223. return ret;
  224. }
  225. /**
  226. * audio_pkt_write() - write() syscall for the audio_pkt device
  227. * file: Pointer to the file structure.
  228. * buf: Pointer to the userspace buffer.
  229. * count: Number bytes to read from the file.
  230. * ppos: Pointer to the position into the file.
  231. *
  232. * This function is used to write the data to audio pkt device when
  233. * userspace client do a write() system call. All input arguments are
  234. * validated by the virtual file system before calling this function.
  235. */
  236. ssize_t audio_pkt_write(struct file *file, const char __user *buf,
  237. size_t count, loff_t *ppos)
  238. {
  239. struct audio_pkt_device *audpkt_dev = file->private_data;
  240. struct gpr_hdr *audpkt_hdr = NULL;
  241. void *kbuf;
  242. int ret;
  243. if (!audpkt_dev) {
  244. AUDIO_PKT_ERR("invalid device handle\n");
  245. return -EINVAL;
  246. }
  247. kbuf = memdup_user(buf, count);
  248. if (IS_ERR(kbuf))
  249. return PTR_ERR(kbuf);
  250. audpkt_hdr = (struct gpr_hdr *) kbuf;
  251. if (audpkt_hdr->opcode == APM_CMD_SHARED_MEM_MAP_REGIONS) {
  252. ret = audpkt_chk_and_update_physical_addr((struct audio_gpr_pkt *) audpkt_hdr);
  253. if (ret < 0) {
  254. AUDIO_PKT_ERR("Update Physical Address Failed -%d\n", ret);
  255. return ret;
  256. }
  257. }
  258. if (mutex_lock_interruptible(&audpkt_dev->lock)) {
  259. ret = -ERESTARTSYS;
  260. goto free_kbuf;
  261. }
  262. ret = gpr_send_pkt(audpkt_dev->adev,(struct gpr_pkt *) kbuf);
  263. if (ret < 0) {
  264. AUDIO_PKT_ERR("APR Send Packet Failed ret -%d\n", ret);
  265. return ret;
  266. }
  267. mutex_unlock(&audpkt_dev->lock);
  268. free_kbuf:
  269. kfree(kbuf);
  270. return ret < 0 ? ret : count;
  271. }
  272. /**
  273. * audio_pkt_poll() - poll() syscall for the audio_pkt device
  274. * file: Pointer to the file structure.
  275. * wait: pointer to Poll table.
  276. *
  277. * This function is used to poll on the audio pkt device when
  278. * userspace client do a poll() system call. All input arguments are
  279. * validated by the virtual file system before calling this function.
  280. */
  281. static unsigned int audio_pkt_poll(struct file *file, poll_table *wait)
  282. {
  283. struct audio_pkt_device *audpkt_dev = file->private_data;
  284. unsigned int mask = 0;
  285. unsigned long flags;
  286. audpkt_dev = file->private_data;
  287. if (!audpkt_dev) {
  288. AUDIO_PKT_ERR("invalid device handle\n");
  289. return POLLERR;
  290. }
  291. poll_wait(file, &audpkt_dev->readq, wait);
  292. mutex_lock(&audpkt_dev->lock);
  293. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  294. if (!skb_queue_empty(&audpkt_dev->queue))
  295. mask |= POLLIN | POLLRDNORM;
  296. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  297. mutex_unlock(&audpkt_dev->lock);
  298. return mask;
  299. }
  300. static const struct file_operations audio_pkt_fops = {
  301. .owner = THIS_MODULE,
  302. .open = audio_pkt_open,
  303. .release = audio_pkt_release,
  304. .read = audio_pkt_read,
  305. .write = audio_pkt_write,
  306. .poll = audio_pkt_poll,
  307. };
  308. /**
  309. * audio_pkt_srvc_callback() - Callback from gpr driver
  310. * adev: pointer to the gpr device of this audio packet device
  311. * data: APR response data packet
  312. *
  313. * return: 0 for success, Standard Linux errors
  314. */
  315. static int audio_pkt_srvc_callback(struct gpr_device *adev,
  316. void *data)
  317. {
  318. struct audio_pkt_device *audpkt_dev = dev_get_drvdata(&adev->dev);
  319. unsigned long flags;
  320. struct sk_buff *skb;
  321. struct gpr_hdr *hdr = (struct gpr_hdr *)data;
  322. uint16_t hdr_size, pkt_size;
  323. hdr_size = GPR_PKT_GET_HEADER_BYTE_SIZE(hdr->header);
  324. pkt_size = GPR_PKT_GET_PACKET_BYTE_SIZE(hdr->header);
  325. AUDIO_PKT_INFO("header %d packet %d \n",hdr_size, pkt_size);
  326. skb = alloc_skb(pkt_size, GFP_ATOMIC);
  327. if (!skb)
  328. return -ENOMEM;
  329. skb_put_data(skb, data, pkt_size);
  330. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  331. skb_queue_tail(&audpkt_dev->queue, skb);
  332. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  333. /* wake up any blocking processes, waiting for new data */
  334. wake_up_interruptible(&audpkt_dev->readq);
  335. return 0;
  336. }
  337. /**
  338. * audio_pkt_probe() - Probe a AUDIO packet device
  339. *
  340. * adev: Pointer to gpr device.
  341. *
  342. * return: 0 on success, standard Linux error codes on error.
  343. *
  344. * This function is called when the underlying device tree driver registers
  345. * a gpr device, mapped to a Audio packet device.
  346. */
  347. static int audio_pkt_probe(struct gpr_device *adev)
  348. {
  349. struct audio_pkt_device *audpkt_dev;
  350. struct device *dev = &adev->dev;
  351. int ret;
  352. audpkt_dev = devm_kzalloc(dev, sizeof(*audpkt_dev), GFP_KERNEL);
  353. if (!audpkt_dev)
  354. return -ENOMEM;
  355. ret = alloc_chrdev_region(&audpkt_dev->audio_pkt_major, 0,
  356. MINOR_NUMBER_COUNT,AUDPKT_DRIVER_NAME);
  357. if (ret < 0) {
  358. AUDIO_PKT_ERR("alloc_chrdev_region failed ret:%d\n", ret);
  359. goto err_chrdev;
  360. }
  361. audpkt_dev->audio_pkt_class = class_create(THIS_MODULE,
  362. AUDPKT_DRIVER_NAME);
  363. if (IS_ERR(audpkt_dev->audio_pkt_class)) {
  364. ret = PTR_ERR(audpkt_dev->audio_pkt_class);
  365. AUDIO_PKT_ERR("class_create failed ret:%ld\n",
  366. PTR_ERR(audpkt_dev->audio_pkt_class));
  367. goto err_class;
  368. }
  369. audpkt_dev->dev = device_create(audpkt_dev->audio_pkt_class, NULL,
  370. audpkt_dev->audio_pkt_major, NULL,
  371. AUDPKT_DRIVER_NAME);
  372. if (IS_ERR(audpkt_dev->dev)) {
  373. ret = PTR_ERR(audpkt_dev->dev);
  374. AUDIO_PKT_ERR("device_create failed ret:%ld\n",
  375. PTR_ERR(audpkt_dev->dev));
  376. goto err_device;
  377. }
  378. strlcpy(audpkt_dev->dev_name, CHANNEL_NAME, 20);
  379. strlcpy(audpkt_dev->ch_name, CHANNEL_NAME, 20);
  380. dev_set_name(audpkt_dev->dev, audpkt_dev->dev_name);
  381. mutex_init(&audpkt_dev->lock);
  382. spin_lock_init(&audpkt_dev->queue_lock);
  383. skb_queue_head_init(&audpkt_dev->queue);
  384. init_waitqueue_head(&audpkt_dev->readq);
  385. audpkt_dev->adev = adev;
  386. dev_set_drvdata(dev, audpkt_dev);
  387. cdev_init(&audpkt_dev->cdev, &audio_pkt_fops);
  388. audpkt_dev->cdev.owner = THIS_MODULE;
  389. ret = cdev_add(&audpkt_dev->cdev, audpkt_dev->audio_pkt_major,
  390. MINOR_NUMBER_COUNT);
  391. if (ret) {
  392. AUDIO_PKT_ERR("cdev_add failed for %s ret:%d\n",
  393. audpkt_dev->dev_name, ret);
  394. goto free_dev;
  395. }
  396. AUDIO_PKT_INFO("Audio Packet Port Driver Initialized\n");
  397. return of_platform_populate(dev->of_node, NULL, NULL, dev);
  398. free_dev:
  399. put_device(dev);
  400. device_destroy(audpkt_dev->audio_pkt_class,audpkt_dev->audio_pkt_major);
  401. err_device:
  402. class_destroy(audpkt_dev->audio_pkt_class);
  403. err_class:
  404. unregister_chrdev_region(MAJOR(audpkt_dev->audio_pkt_major),
  405. MINOR_NUMBER_COUNT);
  406. err_chrdev:
  407. kfree(audpkt_dev);
  408. return ret;
  409. }
  410. /**
  411. * audio_pkt_remove() - Remove a AUDIO packet device
  412. *
  413. * adev: Pointer to gpr device.
  414. *
  415. * return: 0 on success, standard Linux error codes on error.
  416. *
  417. * This function is called when the underlying device tree driver
  418. * removeds a gpr device, mapped to a Audio packet device.
  419. */
  420. static int audio_pkt_remove(struct gpr_device *adev)
  421. {
  422. of_platform_depopulate(&adev->dev);
  423. AUDIO_PKT_INFO("Audio Packet Port Driver Removed\n");
  424. return 0;
  425. }
  426. static const struct of_device_id audio_pkt_match_table[] = {
  427. { .compatible = "qcom,audio-pkt" },
  428. {},
  429. };
  430. MODULE_DEVICE_TABLE(of, audio_pkt_match_table);
  431. static struct gpr_driver audio_pkt_driver = {
  432. .probe = audio_pkt_probe,
  433. .remove = audio_pkt_remove,
  434. .callback = audio_pkt_srvc_callback,
  435. .driver = {
  436. .name = MODULE_NAME,
  437. .of_match_table = of_match_ptr(audio_pkt_match_table),
  438. },
  439. };
  440. module_gpr_driver(audio_pkt_driver);
  441. MODULE_DESCRIPTION("MSM Audio Packet Driver");
  442. MODULE_LICENSE("GPL v2");