wcd-dsp-glink.c 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  1. /* Copyright (c) 2016-2017, 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/mutex.h>
  16. #include <linux/errno.h>
  17. #include <linux/fs.h>
  18. #include <linux/uaccess.h>
  19. #include <linux/slab.h>
  20. #include <linux/list.h>
  21. #include <linux/cdev.h>
  22. #include <linux/platform_device.h>
  23. #include <linux/vmalloc.h>
  24. #include <soc/qcom/glink.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_MAX_NO_OF_INTENTS (20)
  30. #define WDSP_MAX_NO_OF_CHANNELS (10)
  31. #define WDSP_WRITE_PKT_SIZE (sizeof(struct wdsp_write_pkt))
  32. #define WDSP_REG_PKT_SIZE (sizeof(struct wdsp_reg_pkt))
  33. #define WDSP_CMD_PKT_SIZE (sizeof(struct wdsp_cmd_pkt))
  34. #define WDSP_CH_CFG_SIZE (sizeof(struct wdsp_glink_ch_cfg))
  35. #define MINOR_NUMBER_COUNT 1
  36. #define WDSP_EDGE "wdsp"
  37. #define RESP_QUEUE_SIZE 3
  38. #define QOS_PKT_SIZE 1024
  39. #define TIMEOUT_MS 1000
  40. struct wdsp_glink_dev {
  41. struct class *cls;
  42. struct device *dev;
  43. struct cdev cdev;
  44. dev_t dev_num;
  45. };
  46. struct wdsp_glink_rsp_que {
  47. /* Size of valid data in buffer */
  48. u32 buf_size;
  49. /* Response buffer */
  50. u8 buf[WDSP_MAX_READ_SIZE];
  51. };
  52. struct wdsp_glink_tx_buf {
  53. struct work_struct tx_work;
  54. struct work_struct free_tx_work;
  55. /* Glink channel information */
  56. struct wdsp_glink_ch *ch;
  57. /* Tx buffer to send to glink */
  58. u8 buf[0];
  59. };
  60. struct wdsp_glink_ch {
  61. struct wdsp_glink_priv *wpriv;
  62. /* Glink channel handle */
  63. void *handle;
  64. /* Channel states like connect, disconnect */
  65. int channel_state;
  66. struct mutex mutex;
  67. /* To free up the channel memory */
  68. bool free_mem;
  69. /* Glink local channel open work */
  70. struct work_struct lcl_ch_open_wrk;
  71. /* Glink local channel close work */
  72. struct work_struct lcl_ch_cls_wrk;
  73. /* Wait for ch connect state before sending any command */
  74. wait_queue_head_t ch_connect_wait;
  75. /*
  76. * Glink channel configuration. This has to be the last
  77. * member of the strucuture as it has variable size
  78. */
  79. struct wdsp_glink_ch_cfg ch_cfg;
  80. };
  81. struct wdsp_glink_state {
  82. /* Glink link state information */
  83. enum glink_link_state link_state;
  84. void *handle;
  85. };
  86. struct wdsp_glink_priv {
  87. /* Respone buffer related */
  88. u8 rsp_cnt;
  89. struct wdsp_glink_rsp_que rsp[RESP_QUEUE_SIZE];
  90. struct completion rsp_complete;
  91. struct mutex rsp_mutex;
  92. /* Glink channel related */
  93. struct mutex glink_mutex;
  94. struct wdsp_glink_state glink_state;
  95. struct wdsp_glink_ch **ch;
  96. u8 no_of_channels;
  97. struct work_struct ch_open_cls_wrk;
  98. struct workqueue_struct *work_queue;
  99. wait_queue_head_t link_state_wait;
  100. struct device *dev;
  101. };
  102. static int wdsp_glink_close_ch(struct wdsp_glink_ch *ch);
  103. static int wdsp_glink_open_ch(struct wdsp_glink_ch *ch);
  104. /*
  105. * wdsp_glink_free_tx_buf_work - Work function to free tx pkt
  106. * work: Work structure
  107. */
  108. static void wdsp_glink_free_tx_buf_work(struct work_struct *work)
  109. {
  110. struct wdsp_glink_tx_buf *tx_buf;
  111. tx_buf = container_of(work, struct wdsp_glink_tx_buf,
  112. free_tx_work);
  113. vfree(tx_buf);
  114. }
  115. /*
  116. * wdsp_glink_free_tx_buf - Function to free tx buffer
  117. * priv: Pointer to the channel
  118. * pkt_priv: Pointer to the tx buffer
  119. */
  120. static void wdsp_glink_free_tx_buf(const void *priv, const void *pkt_priv)
  121. {
  122. struct wdsp_glink_tx_buf *tx_buf = (struct wdsp_glink_tx_buf *)pkt_priv;
  123. struct wdsp_glink_priv *wpriv;
  124. struct wdsp_glink_ch *ch;
  125. if (!priv) {
  126. pr_err("%s: Invalid priv\n", __func__);
  127. return;
  128. }
  129. if (!tx_buf) {
  130. pr_err("%s: Invalid tx_buf\n", __func__);
  131. return;
  132. }
  133. ch = (struct wdsp_glink_ch *)priv;
  134. wpriv = ch->wpriv;
  135. /* Work queue to free tx pkt */
  136. INIT_WORK(&tx_buf->free_tx_work, wdsp_glink_free_tx_buf_work);
  137. queue_work(wpriv->work_queue, &tx_buf->free_tx_work);
  138. }
  139. /*
  140. * wdsp_glink_notify_rx - Glink notify rx callback for responses
  141. * handle: Opaque Channel handle returned by GLink
  142. * priv: Private pointer to the channel
  143. * pkt_priv: Private pointer to the packet
  144. * ptr: Pointer to the Rx data
  145. * size: Size of the Rx data
  146. */
  147. static void wdsp_glink_notify_rx(void *handle, const void *priv,
  148. const void *pkt_priv, const void *ptr,
  149. size_t size)
  150. {
  151. u8 *rx_buf;
  152. u8 rsp_cnt;
  153. struct wdsp_glink_ch *ch;
  154. struct wdsp_glink_priv *wpriv;
  155. if (!ptr || !priv) {
  156. pr_err("%s: Invalid parameters\n", __func__);
  157. return;
  158. }
  159. ch = (struct wdsp_glink_ch *)priv;
  160. wpriv = ch->wpriv;
  161. rx_buf = (u8 *)ptr;
  162. if (size > WDSP_MAX_READ_SIZE) {
  163. dev_err(wpriv->dev, "%s: Size %zd is greater than allowed %d\n",
  164. __func__, size, WDSP_MAX_READ_SIZE);
  165. size = WDSP_MAX_READ_SIZE;
  166. }
  167. mutex_lock(&wpriv->rsp_mutex);
  168. rsp_cnt = wpriv->rsp_cnt;
  169. if (rsp_cnt >= RESP_QUEUE_SIZE) {
  170. dev_err(wpriv->dev, "%s: Resp Queue is Full\n", __func__);
  171. rsp_cnt = 0;
  172. }
  173. dev_dbg(wpriv->dev, "%s: copy into buffer %d\n", __func__, rsp_cnt);
  174. memcpy(wpriv->rsp[rsp_cnt].buf, rx_buf, size);
  175. wpriv->rsp[rsp_cnt].buf_size = size;
  176. wpriv->rsp_cnt = ++rsp_cnt;
  177. mutex_unlock(&wpriv->rsp_mutex);
  178. glink_rx_done(handle, ptr, true);
  179. complete(&wpriv->rsp_complete);
  180. }
  181. /*
  182. * wdsp_glink_notify_tx_done - Glink notify tx done callback to
  183. * free tx buffer
  184. * handle: Opaque Channel handle returned by GLink
  185. * priv: Private pointer to the channel
  186. * pkt_priv: Private pointer to the packet
  187. * ptr: Pointer to the Tx data
  188. */
  189. static void wdsp_glink_notify_tx_done(void *handle, const void *priv,
  190. const void *pkt_priv, const void *ptr)
  191. {
  192. wdsp_glink_free_tx_buf(priv, pkt_priv);
  193. }
  194. /*
  195. * wdsp_glink_notify_tx_abort - Glink notify tx abort callback to
  196. * free tx buffer
  197. * handle: Opaque Channel handle returned by GLink
  198. * priv: Private pointer to the channel
  199. * pkt_priv: Private pointer to the packet
  200. */
  201. static void wdsp_glink_notify_tx_abort(void *handle, const void *priv,
  202. const void *pkt_priv)
  203. {
  204. wdsp_glink_free_tx_buf(priv, pkt_priv);
  205. }
  206. /*
  207. * wdsp_glink_notify_rx_intent_req - Glink notify rx intent request callback
  208. * to queue buffer to receive from remote client
  209. * handle: Opaque channel handle returned by GLink
  210. * priv: Private pointer to the channel
  211. * req_size: Size of intent to be queued
  212. */
  213. static bool wdsp_glink_notify_rx_intent_req(void *handle, const void *priv,
  214. size_t req_size)
  215. {
  216. struct wdsp_glink_priv *wpriv;
  217. struct wdsp_glink_ch *ch;
  218. int rc = 0;
  219. bool ret = false;
  220. if (!priv) {
  221. pr_err("%s: Invalid priv\n", __func__);
  222. goto done;
  223. }
  224. if (req_size > WDSP_MAX_READ_SIZE) {
  225. pr_err("%s: Invalid req_size %zd\n", __func__, req_size);
  226. goto done;
  227. }
  228. ch = (struct wdsp_glink_ch *)priv;
  229. wpriv = ch->wpriv;
  230. dev_dbg(wpriv->dev, "%s: intent size %zd requested for ch name %s",
  231. __func__, req_size, ch->ch_cfg.name);
  232. mutex_lock(&ch->mutex);
  233. rc = glink_queue_rx_intent(ch->handle, ch, req_size);
  234. if (rc < 0) {
  235. dev_err(wpriv->dev, "%s: Failed to queue rx intent, rc = %d\n",
  236. __func__, rc);
  237. mutex_unlock(&ch->mutex);
  238. goto done;
  239. }
  240. mutex_unlock(&ch->mutex);
  241. ret = true;
  242. done:
  243. return ret;
  244. }
  245. /*
  246. * wdsp_glink_lcl_ch_open_wrk - Work function to open channel again
  247. * when local disconnect event happens
  248. * work: Work structure
  249. */
  250. static void wdsp_glink_lcl_ch_open_wrk(struct work_struct *work)
  251. {
  252. struct wdsp_glink_ch *ch;
  253. ch = container_of(work, struct wdsp_glink_ch,
  254. lcl_ch_open_wrk);
  255. wdsp_glink_open_ch(ch);
  256. }
  257. /*
  258. * wdsp_glink_lcl_ch_cls_wrk - Work function to close channel locally
  259. * when remote disconnect event happens
  260. * work: Work structure
  261. */
  262. static void wdsp_glink_lcl_ch_cls_wrk(struct work_struct *work)
  263. {
  264. struct wdsp_glink_ch *ch;
  265. ch = container_of(work, struct wdsp_glink_ch,
  266. lcl_ch_cls_wrk);
  267. wdsp_glink_close_ch(ch);
  268. }
  269. /*
  270. * wdsp_glink_notify_state - Glink channel state information event callback
  271. * handle: Opaque Channel handle returned by GLink
  272. * priv: Private pointer to the channel
  273. * event: channel state event
  274. */
  275. static void wdsp_glink_notify_state(void *handle, const void *priv,
  276. unsigned int event)
  277. {
  278. struct wdsp_glink_priv *wpriv;
  279. struct wdsp_glink_ch *ch;
  280. int i, ret = 0;
  281. if (!priv) {
  282. pr_err("%s: Invalid priv\n", __func__);
  283. return;
  284. }
  285. ch = (struct wdsp_glink_ch *)priv;
  286. wpriv = ch->wpriv;
  287. mutex_lock(&ch->mutex);
  288. ch->channel_state = event;
  289. if (event == GLINK_CONNECTED) {
  290. dev_dbg(wpriv->dev, "%s: glink channel: %s connected\n",
  291. __func__, ch->ch_cfg.name);
  292. for (i = 0; i < ch->ch_cfg.no_of_intents; i++) {
  293. dev_dbg(wpriv->dev, "%s: intent_size = %d\n", __func__,
  294. ch->ch_cfg.intents_size[i]);
  295. ret = glink_queue_rx_intent(ch->handle, ch,
  296. ch->ch_cfg.intents_size[i]);
  297. if (ret < 0)
  298. dev_warn(wpriv->dev, "%s: Failed to queue intent %d of size %d\n",
  299. __func__, i,
  300. ch->ch_cfg.intents_size[i]);
  301. }
  302. ret = glink_qos_latency(ch->handle, ch->ch_cfg.latency_in_us,
  303. QOS_PKT_SIZE);
  304. if (ret < 0)
  305. dev_warn(wpriv->dev, "%s: Failed to request qos %d for ch %s\n",
  306. __func__, ch->ch_cfg.latency_in_us,
  307. ch->ch_cfg.name);
  308. wake_up(&ch->ch_connect_wait);
  309. mutex_unlock(&ch->mutex);
  310. } else if (event == GLINK_LOCAL_DISCONNECTED) {
  311. /*
  312. * Don't use dev_dbg here as dev may not be valid if channel
  313. * closed from driver close.
  314. */
  315. pr_debug("%s: channel: %s disconnected locally\n",
  316. __func__, ch->ch_cfg.name);
  317. mutex_unlock(&ch->mutex);
  318. if (ch->free_mem) {
  319. kfree(ch);
  320. ch = NULL;
  321. }
  322. } else if (event == GLINK_REMOTE_DISCONNECTED) {
  323. dev_dbg(wpriv->dev, "%s: remote channel: %s disconnected remotely\n",
  324. __func__, ch->ch_cfg.name);
  325. mutex_unlock(&ch->mutex);
  326. /*
  327. * If remote disconnect happens, local side also has
  328. * to close the channel as per glink design in a
  329. * separate work_queue.
  330. */
  331. queue_work(wpriv->work_queue, &ch->lcl_ch_cls_wrk);
  332. }
  333. }
  334. /*
  335. * wdsp_glink_close_ch - Internal function to close glink channel
  336. * ch: Glink Channel structure.
  337. */
  338. static int wdsp_glink_close_ch(struct wdsp_glink_ch *ch)
  339. {
  340. struct wdsp_glink_priv *wpriv = ch->wpriv;
  341. int ret = 0;
  342. mutex_lock(&wpriv->glink_mutex);
  343. if (ch->handle) {
  344. ret = glink_close(ch->handle);
  345. if (ret < 0) {
  346. dev_err(wpriv->dev, "%s: glink_close is failed, ret = %d\n",
  347. __func__, ret);
  348. } else {
  349. ch->handle = NULL;
  350. dev_dbg(wpriv->dev, "%s: ch %s is closed\n", __func__,
  351. ch->ch_cfg.name);
  352. }
  353. } else {
  354. dev_dbg(wpriv->dev, "%s: ch %s is already closed\n", __func__,
  355. ch->ch_cfg.name);
  356. }
  357. mutex_unlock(&wpriv->glink_mutex);
  358. return ret;
  359. }
  360. /*
  361. * wdsp_glink_open_ch - Internal function to open glink channel
  362. * ch: Glink Channel structure.
  363. */
  364. static int wdsp_glink_open_ch(struct wdsp_glink_ch *ch)
  365. {
  366. struct wdsp_glink_priv *wpriv = ch->wpriv;
  367. struct glink_open_config open_cfg;
  368. int ret = 0;
  369. mutex_lock(&wpriv->glink_mutex);
  370. if (!ch->handle) {
  371. memset(&open_cfg, 0, sizeof(open_cfg));
  372. open_cfg.options = GLINK_OPT_INITIAL_XPORT;
  373. open_cfg.edge = WDSP_EDGE;
  374. open_cfg.notify_rx = wdsp_glink_notify_rx;
  375. open_cfg.notify_tx_done = wdsp_glink_notify_tx_done;
  376. open_cfg.notify_tx_abort = wdsp_glink_notify_tx_abort;
  377. open_cfg.notify_state = wdsp_glink_notify_state;
  378. open_cfg.notify_rx_intent_req = wdsp_glink_notify_rx_intent_req;
  379. open_cfg.priv = ch;
  380. open_cfg.name = ch->ch_cfg.name;
  381. dev_dbg(wpriv->dev, "%s: ch->ch_cfg.name = %s, latency_in_us = %d, intents = %d\n",
  382. __func__, ch->ch_cfg.name, ch->ch_cfg.latency_in_us,
  383. ch->ch_cfg.no_of_intents);
  384. ch->handle = glink_open(&open_cfg);
  385. if (IS_ERR_OR_NULL(ch->handle)) {
  386. dev_err(wpriv->dev, "%s: glink_open failed for ch %s\n",
  387. __func__, ch->ch_cfg.name);
  388. ch->handle = NULL;
  389. ret = -EINVAL;
  390. }
  391. } else {
  392. dev_err(wpriv->dev, "%s: ch %s is already opened\n", __func__,
  393. ch->ch_cfg.name);
  394. }
  395. mutex_unlock(&wpriv->glink_mutex);
  396. return ret;
  397. }
  398. /*
  399. * wdsp_glink_close_all_ch - Internal function to close all glink channels
  400. * wpriv: Wdsp_glink private structure
  401. */
  402. static void wdsp_glink_close_all_ch(struct wdsp_glink_priv *wpriv)
  403. {
  404. int i;
  405. for (i = 0; i < wpriv->no_of_channels; i++)
  406. if (wpriv->ch && wpriv->ch[i])
  407. wdsp_glink_close_ch(wpriv->ch[i]);
  408. }
  409. /*
  410. * wdsp_glink_open_all_ch - Internal function to open all glink channels
  411. * wpriv: Wdsp_glink private structure
  412. */
  413. static int wdsp_glink_open_all_ch(struct wdsp_glink_priv *wpriv)
  414. {
  415. int ret = 0, i, j;
  416. for (i = 0; i < wpriv->no_of_channels; i++) {
  417. if (wpriv->ch && wpriv->ch[i]) {
  418. ret = wdsp_glink_open_ch(wpriv->ch[i]);
  419. if (ret < 0)
  420. goto err_open;
  421. }
  422. }
  423. goto done;
  424. err_open:
  425. for (j = 0; j < i; j++)
  426. if (wpriv->ch[i])
  427. wdsp_glink_close_ch(wpriv->ch[j]);
  428. done:
  429. return ret;
  430. }
  431. /*
  432. * wdsp_glink_ch_open_wq - Work function to open glink channels
  433. * work: Work structure
  434. */
  435. static void wdsp_glink_ch_open_cls_wrk(struct work_struct *work)
  436. {
  437. struct wdsp_glink_priv *wpriv;
  438. wpriv = container_of(work, struct wdsp_glink_priv,
  439. ch_open_cls_wrk);
  440. if (wpriv->glink_state.link_state == GLINK_LINK_STATE_DOWN) {
  441. dev_info(wpriv->dev, "%s: GLINK_LINK_STATE_DOWN\n",
  442. __func__);
  443. wdsp_glink_close_all_ch(wpriv);
  444. } else if (wpriv->glink_state.link_state == GLINK_LINK_STATE_UP) {
  445. dev_info(wpriv->dev, "%s: GLINK_LINK_STATE_UP\n",
  446. __func__);
  447. wdsp_glink_open_all_ch(wpriv);
  448. }
  449. }
  450. /*
  451. * wdsp_glink_link_state_cb - Glink link state callback to inform
  452. * about link states
  453. * cb_info: Glink link state callback information structure
  454. * priv: Private structure of link state passed while register
  455. */
  456. static void wdsp_glink_link_state_cb(struct glink_link_state_cb_info *cb_info,
  457. void *priv)
  458. {
  459. struct wdsp_glink_priv *wpriv;
  460. if (!cb_info || !priv) {
  461. pr_err("%s: Invalid parameters\n", __func__);
  462. return;
  463. }
  464. wpriv = (struct wdsp_glink_priv *)priv;
  465. mutex_lock(&wpriv->glink_mutex);
  466. wpriv->glink_state.link_state = cb_info->link_state;
  467. wake_up(&wpriv->link_state_wait);
  468. mutex_unlock(&wpriv->glink_mutex);
  469. queue_work(wpriv->work_queue, &wpriv->ch_open_cls_wrk);
  470. }
  471. /*
  472. * wdsp_glink_ch_info_init- Internal function to allocate channel memory
  473. * and register with glink
  474. * wpriv: Wdsp_glink private structure.
  475. * pkt: Glink registration packet contains glink channel information.
  476. * pkt_size: Size of the pkt.
  477. */
  478. static int wdsp_glink_ch_info_init(struct wdsp_glink_priv *wpriv,
  479. struct wdsp_reg_pkt *pkt, size_t pkt_size)
  480. {
  481. int ret = 0, i, j;
  482. struct glink_link_info link_info;
  483. struct wdsp_glink_ch_cfg *ch_cfg;
  484. struct wdsp_glink_ch **ch;
  485. u8 no_of_channels;
  486. u8 *payload;
  487. u32 ch_size, ch_cfg_size;
  488. size_t size = WDSP_WRITE_PKT_SIZE + WDSP_REG_PKT_SIZE;
  489. mutex_lock(&wpriv->glink_mutex);
  490. if (wpriv->ch) {
  491. dev_err_ratelimited(wpriv->dev, "%s: glink ch memory is already allocated\n",
  492. __func__);
  493. ret = -EINVAL;
  494. goto done;
  495. }
  496. payload = (u8 *)pkt->payload;
  497. no_of_channels = pkt->no_of_channels;
  498. if (no_of_channels > WDSP_MAX_NO_OF_CHANNELS) {
  499. dev_err_ratelimited(wpriv->dev, "%s: no_of_channels: %d but max allowed are %d\n",
  500. __func__, no_of_channels, WDSP_MAX_NO_OF_CHANNELS);
  501. ret = -EINVAL;
  502. goto done;
  503. }
  504. ch = kcalloc(no_of_channels, sizeof(struct wdsp_glink_ch *),
  505. GFP_ATOMIC);
  506. if (!ch) {
  507. ret = -ENOMEM;
  508. goto done;
  509. }
  510. wpriv->ch = ch;
  511. wpriv->no_of_channels = no_of_channels;
  512. for (i = 0; i < no_of_channels; i++) {
  513. ch_cfg = (struct wdsp_glink_ch_cfg *)payload;
  514. size += WDSP_CH_CFG_SIZE;
  515. if (size > pkt_size) {
  516. dev_err_ratelimited(wpriv->dev, "%s: Invalid size = %zd, pkt_size = %zd\n",
  517. __func__, size, pkt_size);
  518. ret = -EINVAL;
  519. goto err_ch_mem;
  520. }
  521. if (ch_cfg->no_of_intents > WDSP_MAX_NO_OF_INTENTS) {
  522. dev_err_ratelimited(wpriv->dev, "%s: Invalid no_of_intents = %d\n",
  523. __func__, ch_cfg->no_of_intents);
  524. ret = -EINVAL;
  525. goto err_ch_mem;
  526. }
  527. size += (sizeof(u32) * ch_cfg->no_of_intents);
  528. if (size > pkt_size) {
  529. dev_err_ratelimited(wpriv->dev, "%s: Invalid size = %zd, pkt_size = %zd\n",
  530. __func__, size, pkt_size);
  531. ret = -EINVAL;
  532. goto err_ch_mem;
  533. }
  534. ch_cfg_size = sizeof(struct wdsp_glink_ch_cfg) +
  535. (sizeof(u32) * ch_cfg->no_of_intents);
  536. ch_size = sizeof(struct wdsp_glink_ch) +
  537. (sizeof(u32) * ch_cfg->no_of_intents);
  538. dev_dbg(wpriv->dev, "%s: channels: %d ch_cfg_size: %d, size: %zd, pkt_size: %zd",
  539. __func__, no_of_channels, ch_cfg_size, size, pkt_size);
  540. ch[i] = kzalloc(ch_size, GFP_KERNEL);
  541. if (!ch[i]) {
  542. ret = -ENOMEM;
  543. goto err_ch_mem;
  544. }
  545. ch[i]->channel_state = GLINK_LOCAL_DISCONNECTED;
  546. memcpy(&ch[i]->ch_cfg, payload, ch_cfg_size);
  547. payload += ch_cfg_size;
  548. /* check ch name is valid string or not */
  549. for (j = 0; j < WDSP_CH_NAME_MAX_LEN; j++) {
  550. if (ch[i]->ch_cfg.name[j] == '\0')
  551. break;
  552. }
  553. if (j == WDSP_CH_NAME_MAX_LEN) {
  554. dev_err_ratelimited(wpriv->dev, "%s: Wrong channel name\n",
  555. __func__);
  556. kfree(ch[i]);
  557. ch[i] = NULL;
  558. ret = -EINVAL;
  559. goto err_ch_mem;
  560. }
  561. mutex_init(&ch[i]->mutex);
  562. ch[i]->wpriv = wpriv;
  563. INIT_WORK(&ch[i]->lcl_ch_open_wrk, wdsp_glink_lcl_ch_open_wrk);
  564. INIT_WORK(&ch[i]->lcl_ch_cls_wrk, wdsp_glink_lcl_ch_cls_wrk);
  565. init_waitqueue_head(&ch[i]->ch_connect_wait);
  566. }
  567. INIT_WORK(&wpriv->ch_open_cls_wrk, wdsp_glink_ch_open_cls_wrk);
  568. /* Register glink link_state notification */
  569. link_info.glink_link_state_notif_cb = wdsp_glink_link_state_cb;
  570. link_info.transport = NULL;
  571. link_info.edge = WDSP_EDGE;
  572. wpriv->glink_state.link_state = GLINK_LINK_STATE_DOWN;
  573. wpriv->glink_state.handle = glink_register_link_state_cb(&link_info,
  574. wpriv);
  575. if (!wpriv->glink_state.handle) {
  576. dev_err(wpriv->dev, "%s: Unable to register wdsp link state\n",
  577. __func__);
  578. ret = -EINVAL;
  579. goto err_ch_mem;
  580. }
  581. goto done;
  582. err_ch_mem:
  583. for (j = 0; j < i; j++) {
  584. mutex_destroy(&ch[j]->mutex);
  585. kfree(wpriv->ch[j]);
  586. wpriv->ch[j] = NULL;
  587. }
  588. kfree(wpriv->ch);
  589. wpriv->ch = NULL;
  590. wpriv->no_of_channels = 0;
  591. done:
  592. mutex_unlock(&wpriv->glink_mutex);
  593. return ret;
  594. }
  595. /*
  596. * wdsp_glink_tx_buf_work - Work queue function to send tx buffer to glink
  597. * work: Work structure
  598. */
  599. static void wdsp_glink_tx_buf_work(struct work_struct *work)
  600. {
  601. struct wdsp_glink_priv *wpriv;
  602. struct wdsp_glink_ch *ch;
  603. struct wdsp_glink_tx_buf *tx_buf;
  604. struct wdsp_write_pkt *wpkt;
  605. struct wdsp_cmd_pkt *cpkt;
  606. int ret = 0;
  607. tx_buf = container_of(work, struct wdsp_glink_tx_buf,
  608. tx_work);
  609. ch = tx_buf->ch;
  610. wpriv = ch->wpriv;
  611. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  612. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  613. dev_dbg(wpriv->dev, "%s: ch name = %s, payload size = %d\n",
  614. __func__, cpkt->ch_name, cpkt->payload_size);
  615. mutex_lock(&tx_buf->ch->mutex);
  616. if (ch->channel_state == GLINK_CONNECTED) {
  617. mutex_unlock(&tx_buf->ch->mutex);
  618. ret = glink_tx(ch->handle, tx_buf,
  619. cpkt->payload, cpkt->payload_size,
  620. GLINK_TX_REQ_INTENT);
  621. if (ret < 0) {
  622. dev_err(wpriv->dev, "%s: glink tx failed, ret = %d\n",
  623. __func__, ret);
  624. /*
  625. * If glink_tx() is failed then free tx_buf here as
  626. * there won't be any tx_done notification to
  627. * free the buffer.
  628. */
  629. vfree(tx_buf);
  630. }
  631. } else {
  632. mutex_unlock(&tx_buf->ch->mutex);
  633. dev_err(wpriv->dev, "%s: channel %s is not in connected state\n",
  634. __func__, ch->ch_cfg.name);
  635. /*
  636. * Free tx_buf here as there won't be any tx_done
  637. * notification in this case also.
  638. */
  639. vfree(tx_buf);
  640. }
  641. }
  642. /*
  643. * wdsp_glink_read - Read API to send the data to userspace
  644. * file: Pointer to the file structure
  645. * buf: Pointer to the userspace buffer
  646. * count: Number bytes to read from the file
  647. * ppos: Pointer to the position into the file
  648. */
  649. static ssize_t wdsp_glink_read(struct file *file, char __user *buf,
  650. size_t count, loff_t *ppos)
  651. {
  652. int ret = 0, ret1 = 0;
  653. struct wdsp_glink_rsp_que *rsp;
  654. struct wdsp_glink_priv *wpriv;
  655. wpriv = (struct wdsp_glink_priv *)file->private_data;
  656. if (!wpriv) {
  657. pr_err("%s: Invalid private data\n", __func__);
  658. ret = -EINVAL;
  659. goto done;
  660. }
  661. if (count > WDSP_MAX_READ_SIZE) {
  662. dev_info_ratelimited(wpriv->dev, "%s: count = %zd is more than WDSP_MAX_READ_SIZE\n",
  663. __func__, count);
  664. count = WDSP_MAX_READ_SIZE;
  665. }
  666. /*
  667. * Complete signal has given from glink rx notification callback
  668. * or from flush API. Also use interruptible wait_for_completion API
  669. * to allow the system to go in suspend.
  670. */
  671. ret = wait_for_completion_interruptible(&wpriv->rsp_complete);
  672. if (ret)
  673. goto done;
  674. mutex_lock(&wpriv->rsp_mutex);
  675. if (wpriv->rsp_cnt) {
  676. wpriv->rsp_cnt--;
  677. dev_dbg(wpriv->dev, "%s: read from buffer %d\n",
  678. __func__, wpriv->rsp_cnt);
  679. rsp = &wpriv->rsp[wpriv->rsp_cnt];
  680. if (count < rsp->buf_size) {
  681. ret1 = copy_to_user(buf, &rsp->buf, count);
  682. /* Return the number of bytes copied */
  683. ret = count;
  684. } else {
  685. ret1 = copy_to_user(buf, &rsp->buf, rsp->buf_size);
  686. /* Return the number of bytes copied */
  687. ret = rsp->buf_size;
  688. }
  689. if (ret1) {
  690. mutex_unlock(&wpriv->rsp_mutex);
  691. dev_err_ratelimited(wpriv->dev, "%s: copy_to_user failed %d\n",
  692. __func__, ret);
  693. ret = -EFAULT;
  694. goto done;
  695. }
  696. } else {
  697. /*
  698. * This will execute only if flush API is called or
  699. * something wrong with ref_cnt
  700. */
  701. dev_dbg(wpriv->dev, "%s: resp count = %d\n", __func__,
  702. wpriv->rsp_cnt);
  703. ret = -EINVAL;
  704. }
  705. mutex_unlock(&wpriv->rsp_mutex);
  706. done:
  707. return ret;
  708. }
  709. /*
  710. * wdsp_glink_write - Write API to receive the data from userspace
  711. * file: Pointer to the file structure
  712. * buf: Pointer to the userspace buffer
  713. * count: Number bytes to read from the file
  714. * ppos: Pointer to the position into the file
  715. */
  716. static ssize_t wdsp_glink_write(struct file *file, const char __user *buf,
  717. size_t count, loff_t *ppos)
  718. {
  719. int ret = 0, i, tx_buf_size;
  720. struct wdsp_write_pkt *wpkt;
  721. struct wdsp_cmd_pkt *cpkt;
  722. struct wdsp_glink_tx_buf *tx_buf;
  723. struct wdsp_glink_priv *wpriv;
  724. size_t pkt_max_size;
  725. wpriv = (struct wdsp_glink_priv *)file->private_data;
  726. if (!wpriv) {
  727. pr_err("%s: Invalid private data\n", __func__);
  728. ret = -EINVAL;
  729. goto done;
  730. }
  731. if ((count < WDSP_WRITE_PKT_SIZE) ||
  732. (count > WDSP_MAX_WRITE_SIZE)) {
  733. dev_err_ratelimited(wpriv->dev, "%s: Invalid count = %zd\n",
  734. __func__, count);
  735. ret = -EINVAL;
  736. goto done;
  737. }
  738. dev_dbg(wpriv->dev, "%s: count = %zd\n", __func__, count);
  739. tx_buf_size = count + sizeof(struct wdsp_glink_tx_buf);
  740. tx_buf = vzalloc(tx_buf_size);
  741. if (!tx_buf) {
  742. ret = -ENOMEM;
  743. goto done;
  744. }
  745. ret = copy_from_user(tx_buf->buf, buf, count);
  746. if (ret) {
  747. dev_err_ratelimited(wpriv->dev, "%s: copy_from_user failed %d\n",
  748. __func__, ret);
  749. ret = -EFAULT;
  750. goto free_buf;
  751. }
  752. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  753. switch (wpkt->pkt_type) {
  754. case WDSP_REG_PKT:
  755. if (count < (WDSP_WRITE_PKT_SIZE + WDSP_REG_PKT_SIZE +
  756. WDSP_CH_CFG_SIZE)) {
  757. dev_err_ratelimited(wpriv->dev, "%s: Invalid reg pkt size = %zd\n",
  758. __func__, count);
  759. ret = -EINVAL;
  760. goto free_buf;
  761. }
  762. ret = wdsp_glink_ch_info_init(wpriv,
  763. (struct wdsp_reg_pkt *)wpkt->payload,
  764. count);
  765. if (ret < 0)
  766. dev_err_ratelimited(wpriv->dev, "%s: glink register failed, ret = %d\n",
  767. __func__, ret);
  768. vfree(tx_buf);
  769. break;
  770. case WDSP_READY_PKT:
  771. ret = wait_event_timeout(wpriv->link_state_wait,
  772. (wpriv->glink_state.link_state ==
  773. GLINK_LINK_STATE_UP),
  774. msecs_to_jiffies(TIMEOUT_MS));
  775. if (!ret) {
  776. dev_err_ratelimited(wpriv->dev, "%s: Link state wait timeout\n",
  777. __func__);
  778. ret = -ETIMEDOUT;
  779. goto free_buf;
  780. }
  781. ret = 0;
  782. vfree(tx_buf);
  783. break;
  784. case WDSP_CMD_PKT:
  785. if (count <= (WDSP_WRITE_PKT_SIZE + WDSP_CMD_PKT_SIZE)) {
  786. dev_err_ratelimited(wpriv->dev, "%s: Invalid cmd pkt size = %zd\n",
  787. __func__, count);
  788. ret = -EINVAL;
  789. goto free_buf;
  790. }
  791. mutex_lock(&wpriv->glink_mutex);
  792. if (wpriv->glink_state.link_state == GLINK_LINK_STATE_DOWN) {
  793. mutex_unlock(&wpriv->glink_mutex);
  794. dev_err_ratelimited(wpriv->dev, "%s: Link state is Down\n",
  795. __func__);
  796. ret = -ENETRESET;
  797. goto free_buf;
  798. }
  799. mutex_unlock(&wpriv->glink_mutex);
  800. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  801. pkt_max_size = sizeof(struct wdsp_write_pkt) +
  802. sizeof(struct wdsp_cmd_pkt) +
  803. cpkt->payload_size;
  804. if (count < pkt_max_size) {
  805. dev_err_ratelimited(wpriv->dev, "%s: Invalid cmd pkt count = %zd, pkt_size = %zd\n",
  806. __func__, count, pkt_max_size);
  807. ret = -EINVAL;
  808. goto free_buf;
  809. }
  810. for (i = 0; i < wpriv->no_of_channels; i++) {
  811. if (wpriv->ch && wpriv->ch[i] &&
  812. (!strcmp(cpkt->ch_name,
  813. wpriv->ch[i]->ch_cfg.name))) {
  814. tx_buf->ch = wpriv->ch[i];
  815. break;
  816. }
  817. }
  818. if (!tx_buf->ch) {
  819. dev_err_ratelimited(wpriv->dev, "%s: Failed to get glink channel\n",
  820. __func__);
  821. ret = -EINVAL;
  822. goto free_buf;
  823. }
  824. dev_dbg(wpriv->dev, "%s: requested ch_name: %s, pkt_size: %zd\n",
  825. __func__, cpkt->ch_name, pkt_max_size);
  826. ret = wait_event_timeout(tx_buf->ch->ch_connect_wait,
  827. (tx_buf->ch->channel_state ==
  828. GLINK_CONNECTED),
  829. msecs_to_jiffies(TIMEOUT_MS));
  830. if (!ret) {
  831. dev_err_ratelimited(wpriv->dev, "%s: glink channel %s is not in connected state %d\n",
  832. __func__, tx_buf->ch->ch_cfg.name,
  833. tx_buf->ch->channel_state);
  834. ret = -ETIMEDOUT;
  835. goto free_buf;
  836. }
  837. ret = 0;
  838. INIT_WORK(&tx_buf->tx_work, wdsp_glink_tx_buf_work);
  839. queue_work(wpriv->work_queue, &tx_buf->tx_work);
  840. break;
  841. default:
  842. dev_err_ratelimited(wpriv->dev, "%s: Invalid packet type\n",
  843. __func__);
  844. ret = -EINVAL;
  845. vfree(tx_buf);
  846. break;
  847. }
  848. goto done;
  849. free_buf:
  850. vfree(tx_buf);
  851. done:
  852. return ret;
  853. }
  854. /*
  855. * wdsp_glink_open - Open API to initialize private data
  856. * inode: Pointer to the inode structure
  857. * file: Pointer to the file structure
  858. */
  859. static int wdsp_glink_open(struct inode *inode, struct file *file)
  860. {
  861. int ret = 0;
  862. struct wdsp_glink_priv *wpriv;
  863. struct wdsp_glink_dev *wdev;
  864. if (!inode->i_cdev) {
  865. pr_err("%s: cdev is NULL\n", __func__);
  866. ret = -EINVAL;
  867. goto done;
  868. }
  869. wdev = container_of(inode->i_cdev, struct wdsp_glink_dev, cdev);
  870. wpriv = kzalloc(sizeof(struct wdsp_glink_priv), GFP_KERNEL);
  871. if (!wpriv) {
  872. ret = -ENOMEM;
  873. goto done;
  874. }
  875. wpriv->dev = wdev->dev;
  876. wpriv->work_queue = create_singlethread_workqueue("wdsp_glink_wq");
  877. if (!wpriv->work_queue) {
  878. dev_err(wpriv->dev, "%s: Error creating wdsp_glink_wq\n",
  879. __func__);
  880. ret = -EINVAL;
  881. goto err_wq;
  882. }
  883. wpriv->glink_state.link_state = GLINK_LINK_STATE_DOWN;
  884. init_completion(&wpriv->rsp_complete);
  885. init_waitqueue_head(&wpriv->link_state_wait);
  886. mutex_init(&wpriv->rsp_mutex);
  887. mutex_init(&wpriv->glink_mutex);
  888. file->private_data = wpriv;
  889. goto done;
  890. err_wq:
  891. kfree(wpriv);
  892. done:
  893. return ret;
  894. }
  895. /*
  896. * wdsp_glink_flush - Flush API to unblock read.
  897. * file: Pointer to the file structure
  898. * id: Lock owner ID
  899. */
  900. static int wdsp_glink_flush(struct file *file, fl_owner_t id)
  901. {
  902. struct wdsp_glink_priv *wpriv;
  903. wpriv = (struct wdsp_glink_priv *)file->private_data;
  904. if (!wpriv) {
  905. pr_err("%s: Invalid private data\n", __func__);
  906. return -EINVAL;
  907. }
  908. complete(&wpriv->rsp_complete);
  909. return 0;
  910. }
  911. /*
  912. * wdsp_glink_release - Release API to clean up resources.
  913. * Whenever a file structure is shared across multiple threads,
  914. * release won't be invoked until all copies are closed
  915. * (file->f_count.counter should be 0). If we need to flush pending
  916. * data when any copy is closed, you should implement the flush method.
  917. *
  918. * inode: Pointer to the inode structure
  919. * file: Pointer to the file structure
  920. */
  921. static int wdsp_glink_release(struct inode *inode, struct file *file)
  922. {
  923. int i, ret = 0;
  924. struct wdsp_glink_priv *wpriv;
  925. wpriv = (struct wdsp_glink_priv *)file->private_data;
  926. if (!wpriv) {
  927. pr_err("%s: Invalid private data\n", __func__);
  928. ret = -EINVAL;
  929. goto done;
  930. }
  931. if (wpriv->glink_state.handle)
  932. glink_unregister_link_state_cb(wpriv->glink_state.handle);
  933. flush_workqueue(wpriv->work_queue);
  934. destroy_workqueue(wpriv->work_queue);
  935. /*
  936. * Clean up glink channel memory in channel state
  937. * callback only if close channels are called from here.
  938. */
  939. if (wpriv->ch) {
  940. for (i = 0; i < wpriv->no_of_channels; i++) {
  941. if (wpriv->ch[i]) {
  942. wpriv->ch[i]->free_mem = true;
  943. /*
  944. * Channel handle NULL means channel is already
  945. * closed. Free the channel memory here itself.
  946. */
  947. if (!wpriv->ch[i]->handle) {
  948. kfree(wpriv->ch[i]);
  949. wpriv->ch[i] = NULL;
  950. } else {
  951. wdsp_glink_close_ch(wpriv->ch[i]);
  952. }
  953. }
  954. }
  955. kfree(wpriv->ch);
  956. wpriv->ch = NULL;
  957. }
  958. mutex_destroy(&wpriv->glink_mutex);
  959. mutex_destroy(&wpriv->rsp_mutex);
  960. kfree(wpriv);
  961. file->private_data = NULL;
  962. done:
  963. return ret;
  964. }
  965. static const struct file_operations wdsp_glink_fops = {
  966. .owner = THIS_MODULE,
  967. .open = wdsp_glink_open,
  968. .read = wdsp_glink_read,
  969. .write = wdsp_glink_write,
  970. .flush = wdsp_glink_flush,
  971. .release = wdsp_glink_release,
  972. };
  973. /*
  974. * wdsp_glink_probe - Driver probe to expose char device
  975. * pdev: Pointer to device tree data.
  976. */
  977. static int wdsp_glink_probe(struct platform_device *pdev)
  978. {
  979. int ret;
  980. struct wdsp_glink_dev *wdev;
  981. wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
  982. if (!wdev) {
  983. ret = -ENOMEM;
  984. goto done;
  985. }
  986. ret = alloc_chrdev_region(&wdev->dev_num, 0, MINOR_NUMBER_COUNT,
  987. WDSP_GLINK_DRIVER_NAME);
  988. if (ret < 0) {
  989. dev_err(&pdev->dev, "%s: Failed to alloc char dev, err = %d\n",
  990. __func__, ret);
  991. goto err_chrdev;
  992. }
  993. wdev->cls = class_create(THIS_MODULE, WDSP_GLINK_DRIVER_NAME);
  994. if (IS_ERR(wdev->cls)) {
  995. ret = PTR_ERR(wdev->cls);
  996. dev_err(&pdev->dev, "%s: Failed to create class, err = %d\n",
  997. __func__, ret);
  998. goto err_class;
  999. }
  1000. wdev->dev = device_create(wdev->cls, NULL, wdev->dev_num,
  1001. NULL, WDSP_GLINK_DRIVER_NAME);
  1002. if (IS_ERR(wdev->dev)) {
  1003. ret = PTR_ERR(wdev->dev);
  1004. dev_err(&pdev->dev, "%s: Failed to create device, err = %d\n",
  1005. __func__, ret);
  1006. goto err_dev_create;
  1007. }
  1008. cdev_init(&wdev->cdev, &wdsp_glink_fops);
  1009. ret = cdev_add(&wdev->cdev, wdev->dev_num, MINOR_NUMBER_COUNT);
  1010. if (ret < 0) {
  1011. dev_err(&pdev->dev, "%s: Failed to register char dev, err = %d\n",
  1012. __func__, ret);
  1013. goto err_cdev_add;
  1014. }
  1015. platform_set_drvdata(pdev, wdev);
  1016. goto done;
  1017. err_cdev_add:
  1018. device_destroy(wdev->cls, wdev->dev_num);
  1019. err_dev_create:
  1020. class_destroy(wdev->cls);
  1021. err_class:
  1022. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  1023. err_chrdev:
  1024. devm_kfree(&pdev->dev, wdev);
  1025. done:
  1026. return ret;
  1027. }
  1028. /*
  1029. * wdsp_glink_remove - Driver remove to handle cleanup
  1030. * pdev: Pointer to device tree data.
  1031. */
  1032. static int wdsp_glink_remove(struct platform_device *pdev)
  1033. {
  1034. struct wdsp_glink_dev *wdev = platform_get_drvdata(pdev);
  1035. if (wdev) {
  1036. cdev_del(&wdev->cdev);
  1037. device_destroy(wdev->cls, wdev->dev_num);
  1038. class_destroy(wdev->cls);
  1039. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  1040. devm_kfree(&pdev->dev, wdev);
  1041. } else {
  1042. dev_err(&pdev->dev, "%s: Invalid device data\n", __func__);
  1043. }
  1044. return 0;
  1045. }
  1046. static const struct of_device_id wdsp_glink_of_match[] = {
  1047. {.compatible = "qcom,wcd-dsp-glink"},
  1048. { }
  1049. };
  1050. MODULE_DEVICE_TABLE(of, wdsp_glink_of_match);
  1051. static struct platform_driver wdsp_glink_driver = {
  1052. .probe = wdsp_glink_probe,
  1053. .remove = wdsp_glink_remove,
  1054. .driver = {
  1055. .name = WDSP_GLINK_DRIVER_NAME,
  1056. .owner = THIS_MODULE,
  1057. .of_match_table = wdsp_glink_of_match,
  1058. },
  1059. };
  1060. static int __init wdsp_glink_init(void)
  1061. {
  1062. return platform_driver_register(&wdsp_glink_driver);
  1063. }
  1064. static void __exit wdsp_glink_exit(void)
  1065. {
  1066. platform_driver_unregister(&wdsp_glink_driver);
  1067. }
  1068. module_init(wdsp_glink_init);
  1069. module_exit(wdsp_glink_exit);
  1070. MODULE_DESCRIPTION("SoC WCD_DSP GLINK Driver");
  1071. MODULE_LICENSE("GPL v2");