wcd-dsp-glink.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. /* Copyright (c) 2016-2018, 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. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/errno.h>
  17. #include <linux/fs.h>
  18. #include <linux/uaccess.h>
  19. #include <linux/slab.h>
  20. #include <linux/cdev.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/of_device.h>
  23. #include <linux/vmalloc.h>
  24. #include <linux/rpmsg.h>
  25. #include "sound/wcd-dsp-glink.h"
  26. #define WDSP_GLINK_DRIVER_NAME "wcd-dsp-glink"
  27. #define WDSP_MAX_WRITE_SIZE (256 * 1024)
  28. #define WDSP_MAX_READ_SIZE (4 * 1024)
  29. #define WDSP_WRITE_PKT_SIZE (sizeof(struct wdsp_write_pkt))
  30. #define WDSP_CMD_PKT_SIZE (sizeof(struct wdsp_cmd_pkt))
  31. #define MINOR_NUMBER_COUNT 1
  32. #define RESP_QUEUE_SIZE 3
  33. #define TIMEOUT_MS 1000
  34. enum wdsp_ch_state {
  35. WDSP_CH_DISCONNECTED,
  36. WDSP_CH_CONNECTED,
  37. };
  38. struct wdsp_glink_dev {
  39. struct class *cls;
  40. struct device *dev;
  41. struct cdev cdev;
  42. dev_t dev_num;
  43. };
  44. struct wdsp_rsp_que {
  45. /* Size of valid data in buffer */
  46. u32 buf_size;
  47. /* Response buffer */
  48. u8 buf[WDSP_MAX_READ_SIZE];
  49. };
  50. struct wdsp_ch {
  51. struct wdsp_glink_priv *wpriv;
  52. /* rpmsg handle */
  53. void *handle;
  54. /* Channel states like connect, disconnect */
  55. int ch_state;
  56. char ch_name[RPMSG_NAME_SIZE];
  57. spinlock_t ch_lock;
  58. };
  59. struct wdsp_tx_buf {
  60. struct work_struct tx_work;
  61. /* Glink channel information */
  62. struct wdsp_ch *ch;
  63. /* Tx buffer to send to glink */
  64. u8 buf[0];
  65. };
  66. struct wdsp_glink_priv {
  67. /* Respone buffer related */
  68. u8 rsp_cnt;
  69. struct wdsp_rsp_que rsp[RESP_QUEUE_SIZE];
  70. struct completion rsp_complete;
  71. spinlock_t rsp_lock;
  72. /* Glink channel related */
  73. int no_of_channels;
  74. struct wdsp_ch **ch;
  75. struct workqueue_struct *work_queue;
  76. /* Wait for all channels state before sending any command */
  77. wait_queue_head_t ch_state_wait;
  78. struct wdsp_glink_dev *wdev;
  79. struct device *dev;
  80. };
  81. static struct wdsp_glink_priv *wpriv;
  82. static struct wdsp_ch *wdsp_get_ch(char *ch_name)
  83. {
  84. int i;
  85. for (i = 0; i < wpriv->no_of_channels; i++) {
  86. if (!strcmp(ch_name, wpriv->ch[i]->ch_name))
  87. return wpriv->ch[i];
  88. }
  89. return NULL;
  90. }
  91. /*
  92. * wdsp_rpmsg_callback - Rpmsg callback for responses
  93. * rpdev: Rpmsg device structure
  94. * data: Pointer to the Rx data
  95. * len: Size of the Rx data
  96. * priv: Private pointer to the channel
  97. * addr: Address variable
  98. * Returns 0 on success and an appropriate error value on failure
  99. */
  100. static int wdsp_rpmsg_callback(struct rpmsg_device *rpdev, void *data,
  101. int len, void *priv, u32 addr__unused)
  102. {
  103. struct wdsp_ch *ch = dev_get_drvdata(&rpdev->dev);
  104. struct wdsp_glink_priv *wpriv;
  105. unsigned long flags;
  106. u8 *rx_buf;
  107. u8 rsp_cnt = 0;
  108. if (!ch || !data) {
  109. pr_err("%s: Invalid ch or data\n", __func__);
  110. return -EINVAL;
  111. }
  112. wpriv = ch->wpriv;
  113. rx_buf = (u8 *)data;
  114. if (len > WDSP_MAX_READ_SIZE) {
  115. dev_info_ratelimited(wpriv->dev, "%s: Size %d is greater than allowed %d\n",
  116. __func__, len, WDSP_MAX_READ_SIZE);
  117. len = WDSP_MAX_READ_SIZE;
  118. }
  119. dev_dbg_ratelimited(wpriv->dev, "%s: copy into buffer %d\n", __func__,
  120. wpriv->rsp_cnt);
  121. if (wpriv->rsp_cnt >= RESP_QUEUE_SIZE) {
  122. dev_info_ratelimited(wpriv->dev, "%s: Resp Queue is Full\n",
  123. __func__);
  124. rsp_cnt = 0;
  125. }
  126. spin_lock_irqsave(&wpriv->rsp_lock, flags);
  127. rsp_cnt = wpriv->rsp_cnt;
  128. memcpy(wpriv->rsp[rsp_cnt].buf, rx_buf, len);
  129. wpriv->rsp[rsp_cnt].buf_size = len;
  130. wpriv->rsp_cnt = ++rsp_cnt;
  131. spin_unlock_irqrestore(&wpriv->rsp_lock, flags);
  132. complete(&wpriv->rsp_complete);
  133. return 0;
  134. }
  135. /*
  136. * wdsp_rpmsg_probe - Rpmsg channel probe function
  137. * rpdev: Rpmsg device structure
  138. * Returns 0 on success and an appropriate error value on failure
  139. */
  140. static int wdsp_rpmsg_probe(struct rpmsg_device *rpdev)
  141. {
  142. struct wdsp_ch *ch;
  143. ch = wdsp_get_ch(rpdev->id.name);
  144. if (!ch) {
  145. dev_err(&rpdev->dev, "%s, Invalid Channel [%s]\n",
  146. __func__, rpdev->id.name);
  147. return -EINVAL;
  148. }
  149. dev_dbg(&rpdev->dev, "%s: Channel[%s] state[Up]\n",
  150. __func__, rpdev->id.name);
  151. spin_lock(&ch->ch_lock);
  152. ch->handle = rpdev;
  153. ch->ch_state = WDSP_CH_CONNECTED;
  154. spin_unlock(&ch->ch_lock);
  155. dev_set_drvdata(&rpdev->dev, ch);
  156. wake_up(&wpriv->ch_state_wait);
  157. return 0;
  158. }
  159. /*
  160. * wdsp_rpmsg_remove - Rpmsg channel remove function
  161. * rpdev: Rpmsg device structure
  162. */
  163. static void wdsp_rpmsg_remove(struct rpmsg_device *rpdev)
  164. {
  165. struct wdsp_ch *ch = dev_get_drvdata(&rpdev->dev);
  166. if (!ch) {
  167. dev_err(&rpdev->dev, "%s: Invalid ch\n", __func__);
  168. return;
  169. }
  170. dev_dbg(&rpdev->dev, "%s: Channel[%s] state[Down]\n",
  171. __func__, rpdev->id.name);
  172. spin_lock(&ch->ch_lock);
  173. ch->handle = NULL;
  174. ch->ch_state = WDSP_CH_DISCONNECTED;
  175. spin_unlock(&ch->ch_lock);
  176. dev_set_drvdata(&rpdev->dev, NULL);
  177. }
  178. static bool wdsp_is_ch_connected(struct wdsp_glink_priv *wpriv)
  179. {
  180. int i;
  181. for (i = 0; i < wpriv->no_of_channels; i++) {
  182. spin_lock(&wpriv->ch[i]->ch_lock);
  183. if (wpriv->ch[i]->ch_state != WDSP_CH_CONNECTED) {
  184. spin_unlock(&wpriv->ch[i]->ch_lock);
  185. return false;
  186. }
  187. spin_unlock(&wpriv->ch[i]->ch_lock);
  188. }
  189. return true;
  190. }
  191. static int wdsp_wait_for_all_ch_connect(struct wdsp_glink_priv *wpriv)
  192. {
  193. int ret;
  194. ret = wait_event_timeout(wpriv->ch_state_wait,
  195. wdsp_is_ch_connected(wpriv),
  196. msecs_to_jiffies(TIMEOUT_MS));
  197. if (!ret) {
  198. dev_err_ratelimited(wpriv->dev, "%s: All channels are not connected\n",
  199. __func__);
  200. ret = -ETIMEDOUT;
  201. goto err;
  202. }
  203. ret = 0;
  204. err:
  205. return ret;
  206. }
  207. /*
  208. * wdsp_tx_buf_work - Work queue function to send tx buffer to glink
  209. * work: Work structure
  210. */
  211. static void wdsp_tx_buf_work(struct work_struct *work)
  212. {
  213. struct wdsp_glink_priv *wpriv;
  214. struct wdsp_ch *ch;
  215. struct wdsp_tx_buf *tx_buf;
  216. struct wdsp_write_pkt *wpkt;
  217. struct wdsp_cmd_pkt *cpkt;
  218. int ret = 0;
  219. struct rpmsg_device *rpdev = NULL;
  220. tx_buf = container_of(work, struct wdsp_tx_buf,
  221. tx_work);
  222. ch = tx_buf->ch;
  223. wpriv = ch->wpriv;
  224. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  225. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  226. dev_dbg(wpriv->dev, "%s: ch name = %s, payload size = %d\n",
  227. __func__, cpkt->ch_name, cpkt->payload_size);
  228. spin_lock(&ch->ch_lock);
  229. rpdev = ch->handle;
  230. if (rpdev && ch->ch_state == WDSP_CH_CONNECTED) {
  231. spin_unlock(&ch->ch_lock);
  232. ret = rpmsg_send(rpdev->ept, cpkt->payload,
  233. cpkt->payload_size);
  234. if (ret < 0)
  235. dev_err(wpriv->dev, "%s: rpmsg send failed, ret = %d\n",
  236. __func__, ret);
  237. } else {
  238. spin_unlock(&ch->ch_lock);
  239. if (rpdev)
  240. dev_err(wpriv->dev, "%s: channel %s is not in connected state\n",
  241. __func__, ch->ch_name);
  242. else
  243. dev_err(wpriv->dev, "%s: rpdev is NULL\n", __func__);
  244. }
  245. vfree(tx_buf);
  246. }
  247. /*
  248. * wdsp_glink_read - Read API to send the data to userspace
  249. * file: Pointer to the file structure
  250. * buf: Pointer to the userspace buffer
  251. * count: Number bytes to read from the file
  252. * ppos: Pointer to the position into the file
  253. * Returns 0 on success and an appropriate error value on failure
  254. */
  255. static ssize_t wdsp_glink_read(struct file *file, char __user *buf,
  256. size_t count, loff_t *ppos)
  257. {
  258. int ret = 0, ret1 = 0;
  259. struct wdsp_rsp_que *read_rsp = NULL;
  260. struct wdsp_glink_priv *wpriv;
  261. unsigned long flags;
  262. wpriv = (struct wdsp_glink_priv *)file->private_data;
  263. if (!wpriv) {
  264. pr_err("%s: Invalid private data\n", __func__);
  265. return -EINVAL;
  266. }
  267. if (count > WDSP_MAX_READ_SIZE) {
  268. dev_info_ratelimited(wpriv->dev, "%s: count = %zd is more than WDSP_MAX_READ_SIZE\n",
  269. __func__, count);
  270. count = WDSP_MAX_READ_SIZE;
  271. }
  272. /*
  273. * Complete signal has given from gwdsp_rpmsg_callback()
  274. * or from flush API. Also use interruptible wait_for_completion API
  275. * to allow the system to go in suspend.
  276. */
  277. ret = wait_for_completion_interruptible(&wpriv->rsp_complete);
  278. if (ret < 0)
  279. return ret;
  280. read_rsp = kzalloc(sizeof(struct wdsp_rsp_que), GFP_KERNEL);
  281. if (!read_rsp)
  282. return -ENOMEM;
  283. spin_lock_irqsave(&wpriv->rsp_lock, flags);
  284. if (wpriv->rsp_cnt) {
  285. wpriv->rsp_cnt--;
  286. dev_dbg(wpriv->dev, "%s: read from buffer %d\n",
  287. __func__, wpriv->rsp_cnt);
  288. memcpy(read_rsp, &wpriv->rsp[wpriv->rsp_cnt],
  289. sizeof(struct wdsp_rsp_que));
  290. spin_unlock_irqrestore(&wpriv->rsp_lock, flags);
  291. if (count < read_rsp->buf_size) {
  292. ret1 = copy_to_user(buf, read_rsp->buf, count);
  293. /* Return the number of bytes copied */
  294. ret = count;
  295. } else {
  296. ret1 = copy_to_user(buf, read_rsp->buf,
  297. read_rsp->buf_size);
  298. /* Return the number of bytes copied */
  299. ret = read_rsp->buf_size;
  300. }
  301. if (ret1) {
  302. dev_err_ratelimited(wpriv->dev, "%s: copy_to_user failed %d\n",
  303. __func__, ret);
  304. ret = -EFAULT;
  305. goto done;
  306. }
  307. } else {
  308. /*
  309. * This will execute only if flush API is called or
  310. * something wrong with ref_cnt
  311. */
  312. dev_dbg(wpriv->dev, "%s: resp count = %d\n", __func__,
  313. wpriv->rsp_cnt);
  314. spin_unlock_irqrestore(&wpriv->rsp_lock, flags);
  315. ret = -EINVAL;
  316. }
  317. done:
  318. kfree(read_rsp);
  319. return ret;
  320. }
  321. /*
  322. * wdsp_glink_write - Write API to receive the data from userspace
  323. * file: Pointer to the file structure
  324. * buf: Pointer to the userspace buffer
  325. * count: Number bytes to read from the file
  326. * ppos: Pointer to the position into the file
  327. * Returns 0 on success and an appropriate error value on failure
  328. */
  329. static ssize_t wdsp_glink_write(struct file *file, const char __user *buf,
  330. size_t count, loff_t *ppos)
  331. {
  332. int ret = 0, i, tx_buf_size;
  333. struct wdsp_write_pkt *wpkt;
  334. struct wdsp_cmd_pkt *cpkt;
  335. struct wdsp_tx_buf *tx_buf;
  336. struct wdsp_glink_priv *wpriv;
  337. size_t pkt_max_size;
  338. wpriv = (struct wdsp_glink_priv *)file->private_data;
  339. if (!wpriv) {
  340. pr_err("%s: Invalid private data\n", __func__);
  341. ret = -EINVAL;
  342. goto done;
  343. }
  344. if ((count < WDSP_WRITE_PKT_SIZE) ||
  345. (count > WDSP_MAX_WRITE_SIZE)) {
  346. dev_err_ratelimited(wpriv->dev, "%s: Invalid count = %zd\n",
  347. __func__, count);
  348. ret = -EINVAL;
  349. goto done;
  350. }
  351. dev_dbg(wpriv->dev, "%s: count = %zd\n", __func__, count);
  352. tx_buf_size = count + sizeof(struct wdsp_tx_buf);
  353. tx_buf = vzalloc(tx_buf_size);
  354. if (!tx_buf) {
  355. ret = -ENOMEM;
  356. goto done;
  357. }
  358. ret = copy_from_user(tx_buf->buf, buf, count);
  359. if (ret) {
  360. dev_err_ratelimited(wpriv->dev, "%s: copy_from_user failed %d\n",
  361. __func__, ret);
  362. ret = -EFAULT;
  363. goto free_buf;
  364. }
  365. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  366. switch (wpkt->pkt_type) {
  367. case WDSP_REG_PKT:
  368. /* Keep this case to support backward compatibility */
  369. vfree(tx_buf);
  370. break;
  371. case WDSP_READY_PKT:
  372. ret = wdsp_wait_for_all_ch_connect(wpriv);
  373. if (ret < 0)
  374. dev_err_ratelimited(wpriv->dev, "%s: Channels not in connected state\n",
  375. __func__);
  376. vfree(tx_buf);
  377. break;
  378. case WDSP_CMD_PKT:
  379. if (count <= (WDSP_WRITE_PKT_SIZE + WDSP_CMD_PKT_SIZE)) {
  380. dev_err_ratelimited(wpriv->dev, "%s: Invalid cmd pkt size = %zd\n",
  381. __func__, count);
  382. ret = -EINVAL;
  383. goto free_buf;
  384. }
  385. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  386. pkt_max_size = sizeof(struct wdsp_write_pkt) +
  387. sizeof(struct wdsp_cmd_pkt) +
  388. cpkt->payload_size;
  389. if (count < pkt_max_size) {
  390. dev_err_ratelimited(wpriv->dev, "%s: Invalid cmd pkt count = %zd, pkt_size = %zd\n",
  391. __func__, count, pkt_max_size);
  392. ret = -EINVAL;
  393. goto free_buf;
  394. }
  395. for (i = 0; i < wpriv->no_of_channels; i++) {
  396. if (!strcmp(cpkt->ch_name, wpriv->ch[i]->ch_name)) {
  397. tx_buf->ch = wpriv->ch[i];
  398. break;
  399. }
  400. }
  401. if (!tx_buf->ch) {
  402. dev_err_ratelimited(wpriv->dev, "%s: Failed to get channel\n",
  403. __func__);
  404. ret = -EINVAL;
  405. goto free_buf;
  406. }
  407. dev_dbg(wpriv->dev, "%s: requested ch_name: %s, pkt_size: %zd\n",
  408. __func__, cpkt->ch_name, pkt_max_size);
  409. spin_lock(&tx_buf->ch->ch_lock);
  410. if (tx_buf->ch->ch_state != WDSP_CH_CONNECTED) {
  411. spin_unlock(&tx_buf->ch->ch_lock);
  412. ret = -ENETRESET;
  413. dev_err_ratelimited(wpriv->dev, "%s: Channels are not in connected state\n",
  414. __func__);
  415. goto free_buf;
  416. }
  417. spin_unlock(&tx_buf->ch->ch_lock);
  418. INIT_WORK(&tx_buf->tx_work, wdsp_tx_buf_work);
  419. queue_work(wpriv->work_queue, &tx_buf->tx_work);
  420. break;
  421. default:
  422. dev_err_ratelimited(wpriv->dev, "%s: Invalid packet type\n",
  423. __func__);
  424. ret = -EINVAL;
  425. vfree(tx_buf);
  426. break;
  427. }
  428. goto done;
  429. free_buf:
  430. vfree(tx_buf);
  431. done:
  432. return ret;
  433. }
  434. /*
  435. * wdsp_glink_open - Open API to initialize private data
  436. * inode: Pointer to the inode structure
  437. * file: Pointer to the file structure
  438. * Returns 0 on success and an appropriate error value on failure
  439. */
  440. static int wdsp_glink_open(struct inode *inode, struct file *file)
  441. {
  442. pr_debug("%s: wpriv = %pK\n", __func__, wpriv);
  443. file->private_data = wpriv;
  444. return 0;
  445. }
  446. /*
  447. * wdsp_glink_flush - Flush API to unblock read.
  448. * file: Pointer to the file structure
  449. * id: Lock owner ID
  450. * Returns 0 on success and an appropriate error value on failure
  451. */
  452. static int wdsp_glink_flush(struct file *file, fl_owner_t id)
  453. {
  454. struct wdsp_glink_priv *wpriv;
  455. wpriv = (struct wdsp_glink_priv *)file->private_data;
  456. if (!wpriv) {
  457. pr_err("%s: Invalid private data\n", __func__);
  458. return -EINVAL;
  459. }
  460. complete(&wpriv->rsp_complete);
  461. return 0;
  462. }
  463. /*
  464. * wdsp_glink_release - Release API to clean up resources.
  465. * Whenever a file structure is shared across multiple threads,
  466. * release won't be invoked until all copies are closed
  467. * (file->f_count.counter should be 0). If we need to flush pending
  468. * data when any copy is closed, you should implement the flush method.
  469. *
  470. * inode: Pointer to the inode structure
  471. * file: Pointer to the file structure
  472. * Returns 0 on success and an appropriate error value on failure
  473. */
  474. static int wdsp_glink_release(struct inode *inode, struct file *file)
  475. {
  476. pr_debug("%s: file->private_data = %pK\n", __func__,
  477. file->private_data);
  478. file->private_data = NULL;
  479. return 0;
  480. }
  481. static struct rpmsg_driver wdsp_rpmsg_driver = {
  482. .probe = wdsp_rpmsg_probe,
  483. .remove = wdsp_rpmsg_remove,
  484. .callback = wdsp_rpmsg_callback,
  485. /* Update this dynamically before register_rpmsg() */
  486. .id_table = NULL,
  487. .drv = {
  488. .name = "wdsp_rpmsg",
  489. },
  490. };
  491. static int wdsp_register_rpmsg(struct platform_device *pdev,
  492. struct wdsp_glink_dev *wdev)
  493. {
  494. int ret = 0;
  495. int i, no_of_channels;
  496. struct rpmsg_device_id *wdsp_rpmsg_id_table, *id_table;
  497. const char *ch_name = NULL;
  498. wpriv = devm_kzalloc(&pdev->dev,
  499. sizeof(struct wdsp_glink_priv), GFP_KERNEL);
  500. if (!wpriv)
  501. return -ENOMEM;
  502. no_of_channels = of_property_count_strings(pdev->dev.of_node,
  503. "qcom,wdsp-channels");
  504. if (no_of_channels < 0) {
  505. dev_err(&pdev->dev, "%s: channel name parse error %d\n",
  506. __func__, no_of_channels);
  507. return -EINVAL;
  508. }
  509. wpriv->ch = devm_kzalloc(&pdev->dev,
  510. (sizeof(struct wdsp_glink_priv *) * no_of_channels),
  511. GFP_KERNEL);
  512. if (!wpriv->ch)
  513. return -ENOMEM;
  514. for (i = 0; i < no_of_channels; i++) {
  515. ret = of_property_read_string_index(pdev->dev.of_node,
  516. "qcom,wdsp-channels", i,
  517. &ch_name);
  518. if (ret) {
  519. dev_err(&pdev->dev, "%s: channel name parse error %d\n",
  520. __func__, ret);
  521. return -EINVAL;
  522. }
  523. wpriv->ch[i] = devm_kzalloc(&pdev->dev,
  524. sizeof(struct wdsp_glink_priv),
  525. GFP_KERNEL);
  526. if (!wpriv->ch[i])
  527. return -ENOMEM;
  528. strlcpy(wpriv->ch[i]->ch_name, ch_name, RPMSG_NAME_SIZE);
  529. wpriv->ch[i]->wpriv = wpriv;
  530. spin_lock_init(&wpriv->ch[i]->ch_lock);
  531. }
  532. init_waitqueue_head(&wpriv->ch_state_wait);
  533. init_completion(&wpriv->rsp_complete);
  534. spin_lock_init(&wpriv->rsp_lock);
  535. wpriv->wdev = wdev;
  536. wpriv->dev = wdev->dev;
  537. wpriv->work_queue = create_singlethread_workqueue("wdsp_glink_wq");
  538. if (!wpriv->work_queue) {
  539. dev_err(&pdev->dev, "%s: Error creating wdsp_glink_wq\n",
  540. __func__);
  541. return -EINVAL;
  542. }
  543. wdsp_rpmsg_id_table = devm_kzalloc(&pdev->dev,
  544. (sizeof(struct rpmsg_device_id) *
  545. (no_of_channels + 1)),
  546. GFP_KERNEL);
  547. if (!wdsp_rpmsg_id_table) {
  548. ret = -ENOMEM;
  549. goto err;
  550. }
  551. wpriv->no_of_channels = no_of_channels;
  552. id_table = wdsp_rpmsg_id_table;
  553. for (i = 0; i < no_of_channels; i++) {
  554. strlcpy(id_table->name, wpriv->ch[i]->ch_name,
  555. RPMSG_NAME_SIZE);
  556. id_table++;
  557. }
  558. wdsp_rpmsg_driver.id_table = wdsp_rpmsg_id_table;
  559. ret = register_rpmsg_driver(&wdsp_rpmsg_driver);
  560. if (ret < 0) {
  561. dev_err(&pdev->dev, "%s: Rpmsg driver register failed, err = %d\n",
  562. __func__, ret);
  563. goto err;
  564. }
  565. return 0;
  566. err:
  567. destroy_workqueue(wpriv->work_queue);
  568. return ret;
  569. }
  570. static const struct file_operations wdsp_glink_fops = {
  571. .owner = THIS_MODULE,
  572. .open = wdsp_glink_open,
  573. .read = wdsp_glink_read,
  574. .write = wdsp_glink_write,
  575. .flush = wdsp_glink_flush,
  576. .release = wdsp_glink_release,
  577. };
  578. static int wdsp_glink_probe(struct platform_device *pdev)
  579. {
  580. int ret;
  581. struct wdsp_glink_dev *wdev;
  582. wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
  583. if (!wdev) {
  584. ret = -ENOMEM;
  585. goto done;
  586. }
  587. ret = alloc_chrdev_region(&wdev->dev_num, 0, MINOR_NUMBER_COUNT,
  588. WDSP_GLINK_DRIVER_NAME);
  589. if (ret < 0) {
  590. dev_err(&pdev->dev, "%s: Failed to alloc char dev, err = %d\n",
  591. __func__, ret);
  592. goto err_chrdev;
  593. }
  594. wdev->cls = class_create(THIS_MODULE, WDSP_GLINK_DRIVER_NAME);
  595. if (IS_ERR(wdev->cls)) {
  596. ret = PTR_ERR(wdev->cls);
  597. dev_err(&pdev->dev, "%s: Failed to create class, err = %d\n",
  598. __func__, ret);
  599. goto err_class;
  600. }
  601. wdev->dev = device_create(wdev->cls, NULL, wdev->dev_num,
  602. NULL, WDSP_GLINK_DRIVER_NAME);
  603. if (IS_ERR(wdev->dev)) {
  604. ret = PTR_ERR(wdev->dev);
  605. dev_err(&pdev->dev, "%s: Failed to create device, err = %d\n",
  606. __func__, ret);
  607. goto err_dev_create;
  608. }
  609. cdev_init(&wdev->cdev, &wdsp_glink_fops);
  610. ret = cdev_add(&wdev->cdev, wdev->dev_num, MINOR_NUMBER_COUNT);
  611. if (ret < 0) {
  612. dev_err(&pdev->dev, "%s: Failed to register char dev, err = %d\n",
  613. __func__, ret);
  614. goto err_cdev_add;
  615. }
  616. ret = wdsp_register_rpmsg(pdev, wdev);
  617. if (ret < 0) {
  618. dev_err(&pdev->dev, "%s: Failed to register with rpmsg, err = %d\n",
  619. __func__, ret);
  620. goto err_cdev_add;
  621. }
  622. platform_set_drvdata(pdev, wpriv);
  623. goto done;
  624. err_cdev_add:
  625. device_destroy(wdev->cls, wdev->dev_num);
  626. err_dev_create:
  627. class_destroy(wdev->cls);
  628. err_class:
  629. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  630. err_chrdev:
  631. done:
  632. return ret;
  633. }
  634. static int wdsp_glink_remove(struct platform_device *pdev)
  635. {
  636. struct wdsp_glink_priv *wpriv = platform_get_drvdata(pdev);
  637. unregister_rpmsg_driver(&wdsp_rpmsg_driver);
  638. if (wpriv) {
  639. flush_workqueue(wpriv->work_queue);
  640. destroy_workqueue(wpriv->work_queue);
  641. if (wpriv->wdev) {
  642. cdev_del(&wpriv->wdev->cdev);
  643. device_destroy(wpriv->wdev->cls, wpriv->wdev->dev_num);
  644. class_destroy(wpriv->wdev->cls);
  645. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  646. }
  647. }
  648. return 0;
  649. }
  650. static const struct of_device_id wdsp_glink_of_match[] = {
  651. {.compatible = "qcom,wcd-dsp-glink"},
  652. { }
  653. };
  654. MODULE_DEVICE_TABLE(of, wdsp_glink_of_match);
  655. static struct platform_driver wdsp_glink_driver = {
  656. .probe = wdsp_glink_probe,
  657. .remove = wdsp_glink_remove,
  658. .driver = {
  659. .name = WDSP_GLINK_DRIVER_NAME,
  660. .owner = THIS_MODULE,
  661. .of_match_table = wdsp_glink_of_match,
  662. },
  663. };
  664. static int __init wdsp_glink_init(void)
  665. {
  666. return platform_driver_register(&wdsp_glink_driver);
  667. }
  668. static void __exit wdsp_glink_exit(void)
  669. {
  670. platform_driver_unregister(&wdsp_glink_driver);
  671. }
  672. module_init(wdsp_glink_init);
  673. module_exit(wdsp_glink_exit);
  674. MODULE_DESCRIPTION("SoC WCD_DSP GLINK Driver");
  675. MODULE_LICENSE("GPL v2");