audio-pkt.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  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. enum audio_pkt_state {
  57. AUDIO_PKT_INIT,
  58. AUDIO_PKT_PROBED,
  59. AUDIO_PKT_REMOVED,
  60. AUDIO_PKT_DEINIT,
  61. };
  62. /**
  63. * struct audio_pkt_device - driver context, relates to platform dev
  64. * @dev: audio pkt device
  65. * @cdev: cdev for the audio pkt device
  66. * @lock: synchronization of @dev
  67. * @queue_lock: synchronization of @queue operations
  68. * @queue: incoming message queue
  69. * @readq: wait object for incoming queue
  70. * @dev_name: /dev/@dev_name for audio_pkt device
  71. * @ch_name: audio channel to match to
  72. * @audio_pkt_major: Major number of audio pkt driver
  73. * @audio_pkt_class: audio pkt class pointer
  74. */
  75. struct audio_pkt_device {
  76. struct device *dev;
  77. struct cdev cdev;
  78. struct mutex lock;
  79. spinlock_t queue_lock;
  80. struct sk_buff_head queue;
  81. wait_queue_head_t readq;
  82. char dev_name[20];
  83. char ch_name[20];
  84. dev_t audio_pkt_major;
  85. struct class *audio_pkt_class;
  86. };
  87. struct audio_pkt_priv {
  88. struct gpr_device *adev;
  89. struct device *dev;
  90. struct audio_pkt_device *ap_dev;
  91. struct mutex lock;
  92. enum audio_pkt_state status;
  93. };
  94. static struct audio_pkt_priv *ap_priv;
  95. struct audio_pkt_apm_cmd_shared_mem_map_regions_t {
  96. uint16_t mem_pool_id;
  97. uint16_t num_regions;
  98. uint32_t property_flag;
  99. };
  100. struct audio_pkt_apm_shared_map_region_payload_t {
  101. uint32_t shm_addr_lsw;
  102. uint32_t shm_addr_msw;
  103. uint32_t mem_size_bytes;
  104. };
  105. struct audio_pkt_apm_mem_map {
  106. struct audio_pkt_apm_cmd_shared_mem_map_regions_t mmap_header;
  107. struct audio_pkt_apm_shared_map_region_payload_t mmap_payload;
  108. };
  109. struct audio_gpr_pkt {
  110. struct gpr_hdr audpkt_hdr;
  111. struct audio_pkt_apm_mem_map audpkt_mem_map;
  112. };
  113. typedef void (*audio_pkt_clnt_cb_fn)(void *buf, int len, void *priv);
  114. struct audio_pkt_clnt_ch {
  115. int client_id;
  116. audio_pkt_clnt_cb_fn func;
  117. };
  118. /**
  119. * audio_pkt_open() - open() syscall for the audio_pkt device
  120. * inode: Pointer to the inode structure.
  121. * file: Pointer to the file structure.
  122. *
  123. * This function is used to open the audio pkt device when
  124. * userspace client do a open() system call. All input arguments are
  125. * validated by the virtual file system before calling this function.
  126. */
  127. int audio_pkt_open(struct inode *inode, struct file *file)
  128. {
  129. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  130. AUDIO_PKT_INFO("%s: for %s \n", __func__,audpkt_dev->ch_name);
  131. file->private_data = ap_priv;
  132. return 0;
  133. }
  134. /**
  135. * audio_pkt_release() - release operation on audio_pkt device
  136. * inode: Pointer to the inode structure.
  137. * file: Pointer to the file structure.
  138. *
  139. * This function is used to release the audio pkt device when
  140. * userspace client do a close() system call. All input arguments are
  141. * validated by the virtual file system before calling this function.
  142. */
  143. int audio_pkt_release(struct inode *inode, struct file *file)
  144. {
  145. struct audio_pkt_priv *ap_priv = file->private_data;
  146. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  147. struct sk_buff *skb;
  148. unsigned long flags;
  149. if ((!audpkt_dev)) {
  150. AUDIO_PKT_ERR("invalid device handle\n");
  151. return -EINVAL;
  152. }
  153. AUDIO_PKT_INFO("%s: for %s \n", __func__,audpkt_dev->ch_name);
  154. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  155. /* Discard all SKBs */
  156. while (!skb_queue_empty(&audpkt_dev->queue)) {
  157. skb = skb_dequeue(&audpkt_dev->queue);
  158. kfree_skb(skb);
  159. }
  160. wake_up_interruptible(&audpkt_dev->readq);
  161. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  162. file->private_data = NULL;
  163. return 0;
  164. }
  165. static int audio_pkt_internal_release(struct platform_device *adev)
  166. {
  167. struct audio_pkt_priv *ap_priv = platform_get_drvdata(adev);
  168. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  169. struct sk_buff *skb;
  170. unsigned long flags;
  171. if ((!audpkt_dev)) {
  172. AUDIO_PKT_ERR("invalid device handle\n");
  173. return -EINVAL;
  174. }
  175. AUDIO_PKT_INFO("%s: for %s\n", __func__,audpkt_dev->ch_name);
  176. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  177. /* Discard all SKBs */
  178. while (!skb_queue_empty(&audpkt_dev->queue)) {
  179. skb = skb_dequeue(&audpkt_dev->queue);
  180. kfree_skb(skb);
  181. }
  182. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  183. wake_up_interruptible(&audpkt_dev->readq);
  184. return 0;
  185. }
  186. /**
  187. * audio_pkt_read() - read() syscall for the audio_pkt device
  188. * file: Pointer to the file structure.
  189. * buf: Pointer to the userspace buffer.
  190. * count: Number bytes to read from the file.
  191. * ppos: Pointer to the position into the file.
  192. *
  193. * This function is used to Read the data from audio pkt device when
  194. * userspace client do a read() system call. All input arguments are
  195. * validated by the virtual file system before calling this function.
  196. */
  197. ssize_t audio_pkt_read(struct file *file, char __user *buf,
  198. size_t count, loff_t *ppos)
  199. {
  200. struct audio_pkt_priv *ap_priv = file->private_data;
  201. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  202. unsigned long flags;
  203. struct sk_buff *skb;
  204. int use;
  205. uint32_t *temp;
  206. if (!audpkt_dev) {
  207. AUDIO_PKT_ERR("invalid device handle\n");
  208. return -EINVAL;
  209. }
  210. mutex_lock(&ap_priv->lock);
  211. if (AUDIO_PKT_PROBED != ap_priv->status)
  212. {
  213. mutex_unlock(&ap_priv->lock);
  214. AUDIO_PKT_ERR("dev is in reset\n");
  215. return -ENETRESET;
  216. }
  217. mutex_unlock(&ap_priv->lock);
  218. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  219. /* Wait for data in the queue */
  220. if (skb_queue_empty(&audpkt_dev->queue)) {
  221. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  222. if (file->f_flags & O_NONBLOCK)
  223. return -EAGAIN;
  224. /* Wait until we get data or the endpoint goes away */
  225. if (wait_event_interruptible(audpkt_dev->readq,
  226. !skb_queue_empty(&audpkt_dev->queue)))
  227. return -ERESTARTSYS;
  228. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  229. }
  230. skb = skb_dequeue(&audpkt_dev->queue);
  231. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  232. if (!skb)
  233. return -EFAULT;
  234. use = min_t(size_t, count, skb->len);
  235. if (copy_to_user(buf, skb->data, use))
  236. use = -EFAULT;
  237. temp = (uint32_t *) skb->data;
  238. kfree_skb(skb);
  239. return use;
  240. }
  241. /**
  242. * audpkt_update_physical_addr - Update physical address
  243. * audpkt_hdr: Pointer to the file structure.
  244. */
  245. int audpkt_chk_and_update_physical_addr(struct audio_gpr_pkt *gpr_pkt)
  246. {
  247. int ret = 0;
  248. dma_addr_t paddr;
  249. if (gpr_pkt->audpkt_mem_map.mmap_header.property_flag &
  250. APM_MEMORY_MAP_BIT_MASK_IS_OFFSET_MODE) {
  251. ret = msm_audio_get_phy_addr(
  252. (int) gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_lsw,
  253. &paddr);
  254. if (ret < 0) {
  255. AUDIO_PKT_ERR("%s Get phy. address failed, ret %d\n",
  256. __func__, ret);
  257. return ret;
  258. }
  259. AUDIO_PKT_INFO("%s physical address %pK", __func__,
  260. (void *) paddr);
  261. gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_lsw = (uint32_t) paddr;
  262. gpr_pkt->audpkt_mem_map.mmap_payload.shm_addr_msw = (uint64_t) paddr >> 32;
  263. }
  264. return ret;
  265. }
  266. /**
  267. * audio_pkt_write() - write() syscall for the audio_pkt device
  268. * file: Pointer to the file structure.
  269. * buf: Pointer to the userspace buffer.
  270. * count: Number bytes to read from the file.
  271. * ppos: Pointer to the position into the file.
  272. *
  273. * This function is used to write the data to audio pkt device when
  274. * userspace client do a write() system call. All input arguments are
  275. * validated by the virtual file system before calling this function.
  276. */
  277. ssize_t audio_pkt_write(struct file *file, const char __user *buf,
  278. size_t count, loff_t *ppos)
  279. {
  280. struct audio_pkt_priv *ap_priv = file->private_data;
  281. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  282. struct gpr_hdr *audpkt_hdr = NULL;
  283. void *kbuf;
  284. int ret;
  285. if (!audpkt_dev) {
  286. AUDIO_PKT_ERR("invalid device handle\n");
  287. return -EINVAL;
  288. }
  289. mutex_lock(&ap_priv->lock);
  290. if (AUDIO_PKT_PROBED != ap_priv->status)
  291. {
  292. mutex_unlock(&ap_priv->lock);
  293. AUDIO_PKT_ERR("dev is in reset\n");
  294. return -ENETRESET;
  295. }
  296. mutex_unlock(&ap_priv->lock);
  297. kbuf = memdup_user(buf, count);
  298. if (IS_ERR(kbuf))
  299. return PTR_ERR(kbuf);
  300. audpkt_hdr = (struct gpr_hdr *) kbuf;
  301. if (audpkt_hdr->opcode == APM_CMD_SHARED_MEM_MAP_REGIONS) {
  302. ret = audpkt_chk_and_update_physical_addr((struct audio_gpr_pkt *) audpkt_hdr);
  303. if (ret < 0) {
  304. AUDIO_PKT_ERR("Update Physical Address Failed -%d\n", ret);
  305. return ret;
  306. }
  307. }
  308. if (mutex_lock_interruptible(&audpkt_dev->lock)) {
  309. ret = -ERESTARTSYS;
  310. goto free_kbuf;
  311. }
  312. ret = gpr_send_pkt(ap_priv->adev,(struct gpr_pkt *) kbuf);
  313. if (ret < 0) {
  314. AUDIO_PKT_ERR("APR Send Packet Failed ret -%d\n", ret);
  315. mutex_unlock(&audpkt_dev->lock);
  316. return ret;
  317. }
  318. mutex_unlock(&audpkt_dev->lock);
  319. free_kbuf:
  320. kfree(kbuf);
  321. return ret < 0 ? ret : count;
  322. }
  323. /**
  324. * audio_pkt_poll() - poll() syscall for the audio_pkt device
  325. * file: Pointer to the file structure.
  326. * wait: pointer to Poll table.
  327. *
  328. * This function is used to poll on the audio pkt device when
  329. * userspace client do a poll() system call. All input arguments are
  330. * validated by the virtual file system before calling this function.
  331. */
  332. static unsigned int audio_pkt_poll(struct file *file, poll_table *wait)
  333. {
  334. struct audio_pkt_priv *ap_priv = file->private_data;
  335. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  336. unsigned int mask = 0;
  337. unsigned long flags;
  338. if (!audpkt_dev) {
  339. AUDIO_PKT_ERR("invalid device handle\n");
  340. return POLLERR;
  341. }
  342. poll_wait(file, &audpkt_dev->readq, wait);
  343. mutex_lock(&audpkt_dev->lock);
  344. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  345. if (!skb_queue_empty(&audpkt_dev->queue))
  346. mask |= POLLIN | POLLRDNORM;
  347. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  348. mutex_unlock(&audpkt_dev->lock);
  349. return mask;
  350. }
  351. static const struct file_operations audio_pkt_fops = {
  352. .owner = THIS_MODULE,
  353. .open = audio_pkt_open,
  354. .release = audio_pkt_release,
  355. .read = audio_pkt_read,
  356. .write = audio_pkt_write,
  357. .poll = audio_pkt_poll,
  358. };
  359. /**
  360. * audio_pkt_srvc_callback() - Callback from gpr driver
  361. * adev: pointer to the gpr device of this audio packet device
  362. * data: APR response data packet
  363. *
  364. * return: 0 for success, Standard Linux errors
  365. */
  366. static int audio_pkt_srvc_callback(struct gpr_device *adev,
  367. void *data)
  368. {
  369. struct audio_pkt_priv *ap_priv = dev_get_drvdata(&adev->dev);
  370. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  371. unsigned long flags;
  372. struct sk_buff *skb;
  373. struct gpr_hdr *hdr = (struct gpr_hdr *)data;
  374. uint16_t hdr_size, pkt_size;
  375. hdr_size = GPR_PKT_GET_HEADER_BYTE_SIZE(hdr->header);
  376. pkt_size = GPR_PKT_GET_PACKET_BYTE_SIZE(hdr->header);
  377. AUDIO_PKT_INFO("%s: header %d packet %d \n",
  378. __func__,hdr_size, pkt_size);
  379. skb = alloc_skb(pkt_size, GFP_ATOMIC);
  380. if (!skb)
  381. return -ENOMEM;
  382. skb_put_data(skb, data, pkt_size);
  383. spin_lock_irqsave(&audpkt_dev->queue_lock, flags);
  384. skb_queue_tail(&audpkt_dev->queue, skb);
  385. spin_unlock_irqrestore(&audpkt_dev->queue_lock, flags);
  386. /* wake up any blocking processes, waiting for new data */
  387. wake_up_interruptible(&audpkt_dev->readq);
  388. return 0;
  389. }
  390. /**
  391. * audio_pkt_probe() - Probe a AUDIO packet device
  392. *
  393. * adev: Pointer to gpr device.
  394. *
  395. * return: 0 on success, standard Linux error codes on error.
  396. *
  397. * This function is called when the underlying device tree driver registers
  398. * a gpr device, mapped to a Audio packet device.
  399. */
  400. static int audio_pkt_probe(struct gpr_device *adev)
  401. {
  402. if(ap_priv)
  403. {
  404. mutex_lock(&ap_priv->lock);
  405. ap_priv->adev = adev;
  406. ap_priv->status = AUDIO_PKT_PROBED;
  407. mutex_unlock(&ap_priv->lock);
  408. dev_set_drvdata(&adev->dev, ap_priv);
  409. dev_dbg(&adev->dev, "%s: Driver[%s] Probed\n",
  410. __func__, adev->name);
  411. }
  412. else
  413. {
  414. dev_err(&adev->dev, "%s: Driver[%s] Probe Failed\n",
  415. __func__, adev->name);
  416. return -EINVAL;
  417. }
  418. return 0;
  419. }
  420. /**
  421. * audio_pkt_remove() - Remove a AUDIO packet device
  422. *
  423. * adev: Pointer to gpr device.
  424. *
  425. * return: 0 on success, standard Linux error codes on error.
  426. *
  427. * This function is called when the underlying device tree driver
  428. * removeds a gpr device, mapped to a Audio packet device.
  429. */
  430. static int audio_pkt_remove(struct gpr_device *adev)
  431. {
  432. if(ap_priv)
  433. {
  434. mutex_lock(&ap_priv->lock);
  435. ap_priv->adev = NULL;
  436. ap_priv->status = AUDIO_PKT_REMOVED;
  437. mutex_unlock(&ap_priv->lock);
  438. dev_dbg(&adev->dev, "%s: Driver[%s] Removing\n",
  439. __func__, adev->name);
  440. dev_set_drvdata(&adev->dev, NULL);
  441. }
  442. else
  443. {
  444. dev_err(&adev->dev, "%s: Driver[%s] Remove Failed\n",
  445. __func__, adev->name);
  446. return -EINVAL;
  447. }
  448. return 0;
  449. }
  450. static const struct of_device_id audio_pkt_match_table[] = {
  451. { .compatible = "qcom,audio-pkt" },
  452. {}
  453. };
  454. MODULE_DEVICE_TABLE(of, audio_pkt_match_table);
  455. static struct gpr_driver audio_pkt_driver = {
  456. .probe = audio_pkt_probe,
  457. .remove = audio_pkt_remove,
  458. .callback = audio_pkt_srvc_callback,
  459. .driver = {
  460. .name = MODULE_NAME,
  461. .of_match_table = of_match_ptr(audio_pkt_match_table),
  462. },
  463. };
  464. static int audio_pkt_plaform_driver_register_gpr(struct platform_device *pdev,
  465. struct audio_pkt_device *audpkt_dev)
  466. {
  467. int ret = 0;
  468. ap_priv = devm_kzalloc(&pdev->dev,
  469. sizeof(*ap_priv), GFP_KERNEL);
  470. if (!ap_priv)
  471. return -ENOMEM;
  472. ret = gpr_driver_register(&audio_pkt_driver);
  473. if (ret < 0) {
  474. dev_err(&pdev->dev, "%s: registering to gpr driver failed, err = %d\n",
  475. __func__, ret);
  476. goto err;
  477. }
  478. mutex_init(&ap_priv->lock);
  479. ap_priv->status = AUDIO_PKT_INIT;
  480. ap_priv->ap_dev = audpkt_dev;
  481. ap_priv->dev = audpkt_dev->dev;
  482. err:
  483. return ret;
  484. }
  485. /**
  486. * audio_pkt_platform_driver_probe() - Probe a AUDIO packet device
  487. *
  488. * adev: Pointer to platform device.
  489. *
  490. * return: 0 on success, standard Linux error codes on error.
  491. *
  492. * This function is called when the underlying device tree driver registers
  493. * a platform device, mapped to a Audio packet device.
  494. */
  495. static int audio_pkt_platform_driver_probe(struct platform_device *pdev)
  496. {
  497. int ret;
  498. struct audio_pkt_device *audpkt_dev;
  499. audpkt_dev = devm_kzalloc(&pdev->dev, sizeof(*audpkt_dev), GFP_KERNEL);
  500. if (!audpkt_dev)
  501. return -ENOMEM;
  502. ret = alloc_chrdev_region(&audpkt_dev->audio_pkt_major, 0,
  503. MINOR_NUMBER_COUNT,AUDPKT_DRIVER_NAME);
  504. if (ret < 0) {
  505. AUDIO_PKT_ERR("alloc_chrdev_region failed ret:%d\n", ret);
  506. goto err_chrdev;
  507. }
  508. audpkt_dev->audio_pkt_class = class_create(THIS_MODULE,
  509. AUDPKT_DRIVER_NAME);
  510. if (IS_ERR(audpkt_dev->audio_pkt_class)) {
  511. ret = PTR_ERR(audpkt_dev->audio_pkt_class);
  512. AUDIO_PKT_ERR("class_create failed ret:%ld\n",
  513. PTR_ERR(audpkt_dev->audio_pkt_class));
  514. goto err_class;
  515. }
  516. audpkt_dev->dev = device_create(audpkt_dev->audio_pkt_class, NULL,
  517. audpkt_dev->audio_pkt_major, NULL,
  518. AUDPKT_DRIVER_NAME);
  519. if (IS_ERR(audpkt_dev->dev)) {
  520. ret = PTR_ERR(audpkt_dev->dev);
  521. AUDIO_PKT_ERR("device_create failed ret:%ld\n",
  522. PTR_ERR(audpkt_dev->dev));
  523. goto err_device;
  524. }
  525. strlcpy(audpkt_dev->dev_name, CHANNEL_NAME, 20);
  526. strlcpy(audpkt_dev->ch_name, CHANNEL_NAME, 20);
  527. dev_set_name(audpkt_dev->dev, audpkt_dev->dev_name);
  528. mutex_init(&audpkt_dev->lock);
  529. spin_lock_init(&audpkt_dev->queue_lock);
  530. skb_queue_head_init(&audpkt_dev->queue);
  531. init_waitqueue_head(&audpkt_dev->readq);
  532. cdev_init(&audpkt_dev->cdev, &audio_pkt_fops);
  533. audpkt_dev->cdev.owner = THIS_MODULE;
  534. ret = cdev_add(&audpkt_dev->cdev, audpkt_dev->audio_pkt_major,
  535. MINOR_NUMBER_COUNT);
  536. if (ret) {
  537. AUDIO_PKT_ERR("cdev_add failed for %s ret:%d\n",
  538. audpkt_dev->dev_name, ret);
  539. goto free_dev;
  540. }
  541. ret = audio_pkt_plaform_driver_register_gpr(pdev, audpkt_dev);
  542. if (ret < 0) {
  543. dev_err(&pdev->dev, "%s: Failed to register with gpr, err = %d\n",
  544. __func__, ret);
  545. goto free_dev;
  546. }
  547. platform_set_drvdata(pdev, ap_priv);
  548. AUDIO_PKT_INFO("Audio Packet Port Driver Initialized\n");
  549. goto done;
  550. //return of_platform_populate(dev->of_node, NULL, NULL, dev);
  551. free_dev:
  552. device_destroy(audpkt_dev->audio_pkt_class,audpkt_dev->audio_pkt_major);
  553. err_device:
  554. class_destroy(audpkt_dev->audio_pkt_class);
  555. err_class:
  556. unregister_chrdev_region(MAJOR(audpkt_dev->audio_pkt_major),
  557. MINOR_NUMBER_COUNT);
  558. err_chrdev:
  559. done:
  560. return ret;
  561. }
  562. /**
  563. * audio_pkt_platform_driver_remove() - Remove a AUDIO packet platform device
  564. *
  565. * adev: Pointer to platform device.
  566. *
  567. * return: 0 on success, standard Linux error codes on error.
  568. *
  569. * This function is called when the underlying device tree driver
  570. * removes a platform device, mapped to a Audio packet device.
  571. */
  572. static int audio_pkt_platform_driver_remove(struct platform_device *adev)
  573. {
  574. struct audio_pkt_priv *ap_priv = platform_get_drvdata(adev);
  575. struct audio_pkt_device *audpkt_dev = ap_priv->ap_dev;
  576. gpr_driver_unregister(&audio_pkt_driver);
  577. audio_pkt_internal_release(adev);
  578. if (audpkt_dev) {
  579. cdev_del(&audpkt_dev->cdev);
  580. device_destroy(audpkt_dev->audio_pkt_class,audpkt_dev->audio_pkt_major);
  581. class_destroy(audpkt_dev->audio_pkt_class);
  582. unregister_chrdev_region(MAJOR(audpkt_dev->audio_pkt_major),
  583. MINOR_NUMBER_COUNT);
  584. }
  585. //of_platform_depopulate(&adev->dev);
  586. AUDIO_PKT_INFO("Audio Packet Port Driver Removed\n");
  587. return 0;
  588. }
  589. static const struct of_device_id audio_pkt_platform_match_table[] = {
  590. { .compatible = "qcom,audio-pkt-core-platform"},
  591. {}
  592. };
  593. MODULE_DEVICE_TABLE(of, audio_pkt_platform_match_table);
  594. static struct platform_driver audio_pkt_core_platform_driver = {
  595. .probe = audio_pkt_platform_driver_probe,
  596. .remove = audio_pkt_platform_driver_remove,
  597. .driver = {
  598. .name = MODULE_NAME,
  599. .of_match_table = of_match_ptr(audio_pkt_platform_match_table),
  600. },
  601. };
  602. static int __init audio_pkt_init(void)
  603. {
  604. return platform_driver_register(&audio_pkt_core_platform_driver);
  605. }
  606. static void __exit audio_pkt_exit(void)
  607. {
  608. platform_driver_unregister(&audio_pkt_core_platform_driver);
  609. }
  610. module_init(audio_pkt_init);
  611. module_exit(audio_pkt_exit);
  612. MODULE_DESCRIPTION("MSM Audio Packet Driver");
  613. MODULE_LICENSE("GPL v2");