wcd-dsp-glink.c 20 KB

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