wcd-dsp-glink.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201
  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(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(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(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(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(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. mutex_init(&ch[i]->mutex);
  549. ch[i]->wpriv = wpriv;
  550. INIT_WORK(&ch[i]->lcl_ch_open_wrk, wdsp_glink_lcl_ch_open_wrk);
  551. INIT_WORK(&ch[i]->lcl_ch_cls_wrk, wdsp_glink_lcl_ch_cls_wrk);
  552. init_waitqueue_head(&ch[i]->ch_connect_wait);
  553. }
  554. INIT_WORK(&wpriv->ch_open_cls_wrk, wdsp_glink_ch_open_cls_wrk);
  555. /* Register glink link_state notification */
  556. link_info.glink_link_state_notif_cb = wdsp_glink_link_state_cb;
  557. link_info.transport = NULL;
  558. link_info.edge = WDSP_EDGE;
  559. wpriv->glink_state.link_state = GLINK_LINK_STATE_DOWN;
  560. wpriv->glink_state.handle = glink_register_link_state_cb(&link_info,
  561. wpriv);
  562. if (!wpriv->glink_state.handle) {
  563. dev_err(wpriv->dev, "%s: Unable to register wdsp link state\n",
  564. __func__);
  565. ret = -EINVAL;
  566. goto err_ch_mem;
  567. }
  568. goto done;
  569. err_ch_mem:
  570. for (j = 0; j < i; j++) {
  571. mutex_destroy(&ch[j]->mutex);
  572. kfree(wpriv->ch[j]);
  573. wpriv->ch[j] = NULL;
  574. }
  575. kfree(wpriv->ch);
  576. wpriv->ch = NULL;
  577. wpriv->no_of_channels = 0;
  578. done:
  579. mutex_unlock(&wpriv->glink_mutex);
  580. return ret;
  581. }
  582. /*
  583. * wdsp_glink_tx_buf_work - Work queue function to send tx buffer to glink
  584. * work: Work structure
  585. */
  586. static void wdsp_glink_tx_buf_work(struct work_struct *work)
  587. {
  588. struct wdsp_glink_priv *wpriv;
  589. struct wdsp_glink_ch *ch;
  590. struct wdsp_glink_tx_buf *tx_buf;
  591. struct wdsp_write_pkt *wpkt;
  592. struct wdsp_cmd_pkt *cpkt;
  593. int ret = 0;
  594. tx_buf = container_of(work, struct wdsp_glink_tx_buf,
  595. tx_work);
  596. ch = tx_buf->ch;
  597. wpriv = ch->wpriv;
  598. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  599. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  600. dev_dbg(wpriv->dev, "%s: ch name = %s, payload size = %d\n",
  601. __func__, cpkt->ch_name, cpkt->payload_size);
  602. mutex_lock(&tx_buf->ch->mutex);
  603. if (ch->channel_state == GLINK_CONNECTED) {
  604. mutex_unlock(&tx_buf->ch->mutex);
  605. ret = glink_tx(ch->handle, tx_buf,
  606. cpkt->payload, cpkt->payload_size,
  607. GLINK_TX_REQ_INTENT);
  608. if (ret < 0) {
  609. dev_err(wpriv->dev, "%s: glink tx failed, ret = %d\n",
  610. __func__, ret);
  611. /*
  612. * If glink_tx() is failed then free tx_buf here as
  613. * there won't be any tx_done notification to
  614. * free the buffer.
  615. */
  616. vfree(tx_buf);
  617. }
  618. } else {
  619. mutex_unlock(&tx_buf->ch->mutex);
  620. dev_err(wpriv->dev, "%s: channel %s is not in connected state\n",
  621. __func__, ch->ch_cfg.name);
  622. /*
  623. * Free tx_buf here as there won't be any tx_done
  624. * notification in this case also.
  625. */
  626. vfree(tx_buf);
  627. }
  628. }
  629. /*
  630. * wdsp_glink_read - Read API to send the data to userspace
  631. * file: Pointer to the file structure
  632. * buf: Pointer to the userspace buffer
  633. * count: Number bytes to read from the file
  634. * ppos: Pointer to the position into the file
  635. */
  636. static ssize_t wdsp_glink_read(struct file *file, char __user *buf,
  637. size_t count, loff_t *ppos)
  638. {
  639. int ret = 0, ret1 = 0;
  640. struct wdsp_glink_rsp_que *rsp;
  641. struct wdsp_glink_priv *wpriv;
  642. wpriv = (struct wdsp_glink_priv *)file->private_data;
  643. if (!wpriv) {
  644. pr_err("%s: Invalid private data\n", __func__);
  645. ret = -EINVAL;
  646. goto done;
  647. }
  648. if (count > WDSP_MAX_READ_SIZE) {
  649. dev_info(wpriv->dev, "%s: count = %zd is more than WDSP_MAX_READ_SIZE\n",
  650. __func__, count);
  651. count = WDSP_MAX_READ_SIZE;
  652. }
  653. /*
  654. * Complete signal has given from glink rx notification callback
  655. * or from flush API. Also use interruptible wait_for_completion API
  656. * to allow the system to go in suspend.
  657. */
  658. ret = wait_for_completion_interruptible(&wpriv->rsp_complete);
  659. if (ret)
  660. goto done;
  661. mutex_lock(&wpriv->rsp_mutex);
  662. if (wpriv->rsp_cnt) {
  663. wpriv->rsp_cnt--;
  664. dev_dbg(wpriv->dev, "%s: read from buffer %d\n",
  665. __func__, wpriv->rsp_cnt);
  666. rsp = &wpriv->rsp[wpriv->rsp_cnt];
  667. if (count < rsp->buf_size) {
  668. ret1 = copy_to_user(buf, &rsp->buf, count);
  669. /* Return the number of bytes copied */
  670. ret = count;
  671. } else {
  672. ret1 = copy_to_user(buf, &rsp->buf, rsp->buf_size);
  673. /* Return the number of bytes copied */
  674. ret = rsp->buf_size;
  675. }
  676. if (ret1) {
  677. mutex_unlock(&wpriv->rsp_mutex);
  678. dev_err(wpriv->dev, "%s: copy_to_user failed %d\n",
  679. __func__, ret);
  680. ret = -EFAULT;
  681. goto done;
  682. }
  683. } else {
  684. /*
  685. * This will execute only if flush API is called or
  686. * something wrong with ref_cnt
  687. */
  688. dev_dbg(wpriv->dev, "%s: resp count = %d\n", __func__,
  689. wpriv->rsp_cnt);
  690. ret = -EINVAL;
  691. }
  692. mutex_unlock(&wpriv->rsp_mutex);
  693. done:
  694. return ret;
  695. }
  696. /*
  697. * wdsp_glink_write - Write API to receive the data from userspace
  698. * file: Pointer to the file structure
  699. * buf: Pointer to the userspace buffer
  700. * count: Number bytes to read from the file
  701. * ppos: Pointer to the position into the file
  702. */
  703. static ssize_t wdsp_glink_write(struct file *file, const char __user *buf,
  704. size_t count, loff_t *ppos)
  705. {
  706. int ret = 0, i, tx_buf_size;
  707. struct wdsp_write_pkt *wpkt;
  708. struct wdsp_cmd_pkt *cpkt;
  709. struct wdsp_glink_tx_buf *tx_buf;
  710. struct wdsp_glink_priv *wpriv;
  711. size_t pkt_max_size;
  712. wpriv = (struct wdsp_glink_priv *)file->private_data;
  713. if (!wpriv) {
  714. pr_err("%s: Invalid private data\n", __func__);
  715. ret = -EINVAL;
  716. goto done;
  717. }
  718. if ((count < WDSP_WRITE_PKT_SIZE) ||
  719. (count > WDSP_MAX_WRITE_SIZE)) {
  720. dev_err(wpriv->dev, "%s: Invalid count = %zd\n",
  721. __func__, count);
  722. ret = -EINVAL;
  723. goto done;
  724. }
  725. dev_dbg(wpriv->dev, "%s: count = %zd\n", __func__, count);
  726. tx_buf_size = count + sizeof(struct wdsp_glink_tx_buf);
  727. tx_buf = vzalloc(tx_buf_size);
  728. if (!tx_buf) {
  729. ret = -ENOMEM;
  730. goto done;
  731. }
  732. ret = copy_from_user(tx_buf->buf, buf, count);
  733. if (ret) {
  734. dev_err(wpriv->dev, "%s: copy_from_user failed %d\n",
  735. __func__, ret);
  736. ret = -EFAULT;
  737. goto free_buf;
  738. }
  739. wpkt = (struct wdsp_write_pkt *)tx_buf->buf;
  740. switch (wpkt->pkt_type) {
  741. case WDSP_REG_PKT:
  742. if (count < (WDSP_WRITE_PKT_SIZE + WDSP_REG_PKT_SIZE +
  743. WDSP_CH_CFG_SIZE)) {
  744. dev_err(wpriv->dev, "%s: Invalid reg pkt size = %zd\n",
  745. __func__, count);
  746. ret = -EINVAL;
  747. goto free_buf;
  748. }
  749. ret = wdsp_glink_ch_info_init(wpriv,
  750. (struct wdsp_reg_pkt *)wpkt->payload,
  751. count);
  752. if (ret < 0)
  753. dev_err(wpriv->dev, "%s: glink register failed, ret = %d\n",
  754. __func__, ret);
  755. vfree(tx_buf);
  756. break;
  757. case WDSP_READY_PKT:
  758. ret = wait_event_timeout(wpriv->link_state_wait,
  759. (wpriv->glink_state.link_state ==
  760. GLINK_LINK_STATE_UP),
  761. msecs_to_jiffies(TIMEOUT_MS));
  762. if (!ret) {
  763. dev_err(wpriv->dev, "%s: Link state wait timeout\n",
  764. __func__);
  765. ret = -ETIMEDOUT;
  766. goto free_buf;
  767. }
  768. ret = 0;
  769. vfree(tx_buf);
  770. break;
  771. case WDSP_CMD_PKT:
  772. if (count <= (WDSP_WRITE_PKT_SIZE + WDSP_CMD_PKT_SIZE)) {
  773. dev_err(wpriv->dev, "%s: Invalid cmd pkt size = %zd\n",
  774. __func__, count);
  775. ret = -EINVAL;
  776. goto free_buf;
  777. }
  778. mutex_lock(&wpriv->glink_mutex);
  779. if (wpriv->glink_state.link_state == GLINK_LINK_STATE_DOWN) {
  780. mutex_unlock(&wpriv->glink_mutex);
  781. dev_err(wpriv->dev, "%s: Link state is Down\n",
  782. __func__);
  783. ret = -ENETRESET;
  784. goto free_buf;
  785. }
  786. mutex_unlock(&wpriv->glink_mutex);
  787. cpkt = (struct wdsp_cmd_pkt *)wpkt->payload;
  788. pkt_max_size = sizeof(struct wdsp_write_pkt) +
  789. sizeof(struct wdsp_cmd_pkt) +
  790. cpkt->payload_size;
  791. if (count < pkt_max_size) {
  792. dev_err(wpriv->dev, "%s: Invalid cmd pkt count = %zd, pkt_size = %zd\n",
  793. __func__, count, pkt_max_size);
  794. ret = -EINVAL;
  795. goto free_buf;
  796. }
  797. dev_dbg(wpriv->dev, "%s: requested ch_name: %s, pkt_size: %zd\n",
  798. __func__, cpkt->ch_name, pkt_max_size);
  799. for (i = 0; i < wpriv->no_of_channels; i++) {
  800. if (wpriv->ch && wpriv->ch[i] &&
  801. (!strcmp(cpkt->ch_name,
  802. wpriv->ch[i]->ch_cfg.name))) {
  803. tx_buf->ch = wpriv->ch[i];
  804. break;
  805. }
  806. }
  807. if (!tx_buf->ch) {
  808. dev_err(wpriv->dev, "%s: Failed to get glink channel\n",
  809. __func__);
  810. ret = -EINVAL;
  811. goto free_buf;
  812. }
  813. ret = wait_event_timeout(tx_buf->ch->ch_connect_wait,
  814. (tx_buf->ch->channel_state ==
  815. GLINK_CONNECTED),
  816. msecs_to_jiffies(TIMEOUT_MS));
  817. if (!ret) {
  818. dev_err(wpriv->dev, "%s: glink channel %s is not in connected state %d\n",
  819. __func__, tx_buf->ch->ch_cfg.name,
  820. tx_buf->ch->channel_state);
  821. ret = -ETIMEDOUT;
  822. goto free_buf;
  823. }
  824. ret = 0;
  825. INIT_WORK(&tx_buf->tx_work, wdsp_glink_tx_buf_work);
  826. queue_work(wpriv->work_queue, &tx_buf->tx_work);
  827. break;
  828. default:
  829. dev_err(wpriv->dev, "%s: Invalid packet type\n", __func__);
  830. ret = -EINVAL;
  831. vfree(tx_buf);
  832. break;
  833. }
  834. goto done;
  835. free_buf:
  836. vfree(tx_buf);
  837. done:
  838. return ret;
  839. }
  840. /*
  841. * wdsp_glink_open - Open API to initialize private data
  842. * inode: Pointer to the inode structure
  843. * file: Pointer to the file structure
  844. */
  845. static int wdsp_glink_open(struct inode *inode, struct file *file)
  846. {
  847. int ret = 0;
  848. struct wdsp_glink_priv *wpriv;
  849. struct wdsp_glink_dev *wdev;
  850. if (!inode->i_cdev) {
  851. pr_err("%s: cdev is NULL\n", __func__);
  852. ret = -EINVAL;
  853. goto done;
  854. }
  855. wdev = container_of(inode->i_cdev, struct wdsp_glink_dev, cdev);
  856. wpriv = kzalloc(sizeof(struct wdsp_glink_priv), GFP_KERNEL);
  857. if (!wpriv) {
  858. ret = -ENOMEM;
  859. goto done;
  860. }
  861. wpriv->dev = wdev->dev;
  862. wpriv->work_queue = create_singlethread_workqueue("wdsp_glink_wq");
  863. if (!wpriv->work_queue) {
  864. dev_err(wpriv->dev, "%s: Error creating wdsp_glink_wq\n",
  865. __func__);
  866. ret = -EINVAL;
  867. goto err_wq;
  868. }
  869. init_completion(&wpriv->rsp_complete);
  870. init_waitqueue_head(&wpriv->link_state_wait);
  871. mutex_init(&wpriv->rsp_mutex);
  872. mutex_init(&wpriv->glink_mutex);
  873. file->private_data = wpriv;
  874. goto done;
  875. err_wq:
  876. kfree(wpriv);
  877. done:
  878. return ret;
  879. }
  880. /*
  881. * wdsp_glink_flush - Flush API to unblock read.
  882. * file: Pointer to the file structure
  883. * id: Lock owner ID
  884. */
  885. static int wdsp_glink_flush(struct file *file, fl_owner_t id)
  886. {
  887. struct wdsp_glink_priv *wpriv;
  888. wpriv = (struct wdsp_glink_priv *)file->private_data;
  889. if (!wpriv) {
  890. pr_err("%s: Invalid private data\n", __func__);
  891. return -EINVAL;
  892. }
  893. complete(&wpriv->rsp_complete);
  894. return 0;
  895. }
  896. /*
  897. * wdsp_glink_release - Release API to clean up resources.
  898. * Whenever a file structure is shared across multiple threads,
  899. * release won't be invoked until all copies are closed
  900. * (file->f_count.counter should be 0). If we need to flush pending
  901. * data when any copy is closed, you should implement the flush method.
  902. *
  903. * inode: Pointer to the inode structure
  904. * file: Pointer to the file structure
  905. */
  906. static int wdsp_glink_release(struct inode *inode, struct file *file)
  907. {
  908. int i, ret = 0;
  909. struct wdsp_glink_priv *wpriv;
  910. wpriv = (struct wdsp_glink_priv *)file->private_data;
  911. if (!wpriv) {
  912. pr_err("%s: Invalid private data\n", __func__);
  913. ret = -EINVAL;
  914. goto done;
  915. }
  916. if (wpriv->glink_state.handle)
  917. glink_unregister_link_state_cb(wpriv->glink_state.handle);
  918. flush_workqueue(wpriv->work_queue);
  919. destroy_workqueue(wpriv->work_queue);
  920. /*
  921. * Clean up glink channel memory in channel state
  922. * callback only if close channels are called from here.
  923. */
  924. if (wpriv->ch) {
  925. for (i = 0; i < wpriv->no_of_channels; i++) {
  926. if (wpriv->ch[i]) {
  927. wpriv->ch[i]->free_mem = true;
  928. /*
  929. * Channel handle NULL means channel is already
  930. * closed. Free the channel memory here itself.
  931. */
  932. if (!wpriv->ch[i]->handle) {
  933. kfree(wpriv->ch[i]);
  934. wpriv->ch[i] = NULL;
  935. } else {
  936. wdsp_glink_close_ch(wpriv->ch[i]);
  937. }
  938. }
  939. }
  940. kfree(wpriv->ch);
  941. wpriv->ch = NULL;
  942. }
  943. mutex_destroy(&wpriv->glink_mutex);
  944. mutex_destroy(&wpriv->rsp_mutex);
  945. kfree(wpriv);
  946. file->private_data = NULL;
  947. done:
  948. return ret;
  949. }
  950. static const struct file_operations wdsp_glink_fops = {
  951. .owner = THIS_MODULE,
  952. .open = wdsp_glink_open,
  953. .read = wdsp_glink_read,
  954. .write = wdsp_glink_write,
  955. .flush = wdsp_glink_flush,
  956. .release = wdsp_glink_release,
  957. };
  958. /*
  959. * wdsp_glink_probe - Driver probe to expose char device
  960. * pdev: Pointer to device tree data.
  961. */
  962. static int wdsp_glink_probe(struct platform_device *pdev)
  963. {
  964. int ret;
  965. struct wdsp_glink_dev *wdev;
  966. wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
  967. if (!wdev) {
  968. ret = -ENOMEM;
  969. goto done;
  970. }
  971. ret = alloc_chrdev_region(&wdev->dev_num, 0, MINOR_NUMBER_COUNT,
  972. WDSP_GLINK_DRIVER_NAME);
  973. if (ret < 0) {
  974. dev_err(&pdev->dev, "%s: Failed to alloc char dev, err = %d\n",
  975. __func__, ret);
  976. goto err_chrdev;
  977. }
  978. wdev->cls = class_create(THIS_MODULE, WDSP_GLINK_DRIVER_NAME);
  979. if (IS_ERR(wdev->cls)) {
  980. ret = PTR_ERR(wdev->cls);
  981. dev_err(&pdev->dev, "%s: Failed to create class, err = %d\n",
  982. __func__, ret);
  983. goto err_class;
  984. }
  985. wdev->dev = device_create(wdev->cls, NULL, wdev->dev_num,
  986. NULL, WDSP_GLINK_DRIVER_NAME);
  987. if (IS_ERR(wdev->dev)) {
  988. ret = PTR_ERR(wdev->dev);
  989. dev_err(&pdev->dev, "%s: Failed to create device, err = %d\n",
  990. __func__, ret);
  991. goto err_dev_create;
  992. }
  993. cdev_init(&wdev->cdev, &wdsp_glink_fops);
  994. ret = cdev_add(&wdev->cdev, wdev->dev_num, MINOR_NUMBER_COUNT);
  995. if (ret < 0) {
  996. dev_err(&pdev->dev, "%s: Failed to register char dev, err = %d\n",
  997. __func__, ret);
  998. goto err_cdev_add;
  999. }
  1000. platform_set_drvdata(pdev, wdev);
  1001. goto done;
  1002. err_cdev_add:
  1003. device_destroy(wdev->cls, wdev->dev_num);
  1004. err_dev_create:
  1005. class_destroy(wdev->cls);
  1006. err_class:
  1007. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  1008. err_chrdev:
  1009. devm_kfree(&pdev->dev, wdev);
  1010. done:
  1011. return ret;
  1012. }
  1013. /*
  1014. * wdsp_glink_remove - Driver remove to handle cleanup
  1015. * pdev: Pointer to device tree data.
  1016. */
  1017. static int wdsp_glink_remove(struct platform_device *pdev)
  1018. {
  1019. struct wdsp_glink_dev *wdev = platform_get_drvdata(pdev);
  1020. if (wdev) {
  1021. cdev_del(&wdev->cdev);
  1022. device_destroy(wdev->cls, wdev->dev_num);
  1023. class_destroy(wdev->cls);
  1024. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  1025. devm_kfree(&pdev->dev, wdev);
  1026. } else {
  1027. dev_err(&pdev->dev, "%s: Invalid device data\n", __func__);
  1028. }
  1029. return 0;
  1030. }
  1031. static const struct of_device_id wdsp_glink_of_match[] = {
  1032. {.compatible = "qcom,wcd-dsp-glink"},
  1033. { }
  1034. };
  1035. MODULE_DEVICE_TABLE(of, wdsp_glink_of_match);
  1036. static struct platform_driver wdsp_glink_driver = {
  1037. .probe = wdsp_glink_probe,
  1038. .remove = wdsp_glink_remove,
  1039. .driver = {
  1040. .name = WDSP_GLINK_DRIVER_NAME,
  1041. .owner = THIS_MODULE,
  1042. .of_match_table = wdsp_glink_of_match,
  1043. },
  1044. };
  1045. module_platform_driver(wdsp_glink_driver);
  1046. MODULE_DESCRIPTION("SoC WCD_DSP GLINK Driver");
  1047. MODULE_LICENSE("GPL v2");