apr.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2010-2014, 2016-2020 The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/kernel.h>
  6. #include <linux/module.h>
  7. #include <linux/types.h>
  8. #include <linux/uaccess.h>
  9. #include <linux/spinlock.h>
  10. #include <linux/list.h>
  11. #include <linux/sched.h>
  12. #include <linux/wait.h>
  13. #include <linux/errno.h>
  14. #include <linux/fs.h>
  15. #include <linux/delay.h>
  16. #include <linux/debugfs.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/sysfs.h>
  19. #include <linux/device.h>
  20. #include <linux/of.h>
  21. #include <linux/slab.h>
  22. #include <linux/ipc_logging.h>
  23. #include <linux/of_platform.h>
  24. #include <linux/ratelimit.h>
  25. #include <soc/qcom/subsystem_restart.h>
  26. #include <linux/qcom_scm.h>
  27. #include <soc/snd_event.h>
  28. #include <dsp/apr_audio-v2.h>
  29. #include <dsp/audio_notifier.h>
  30. #include <ipc/apr.h>
  31. #include <ipc/apr_tal.h>
  32. #define APR_PKT_IPC_LOG_PAGE_CNT 2
  33. static int apr_pkt_cnt_adsp_restart = 20;
  34. module_param(apr_pkt_cnt_adsp_restart, int, 0664);
  35. MODULE_PARM_DESC(apr_pkt_cnt_adsp_restart, "set apr pktcount for adsp restart feature");
  36. static struct apr_q6 q6;
  37. static struct apr_client client[APR_DEST_MAX][APR_CLIENT_MAX];
  38. static void *apr_pkt_ctx;
  39. static int apr_send_pkt_count;
  40. static wait_queue_head_t modem_wait;
  41. static bool is_modem_up;
  42. static char *subsys_name = NULL;
  43. /* Subsystem restart: QDSP6 data, functions */
  44. static struct workqueue_struct *apr_reset_workqueue;
  45. static void apr_reset_deregister(struct work_struct *work);
  46. static void dispatch_event(unsigned long code, uint16_t proc);
  47. struct apr_reset_work {
  48. void *handle;
  49. struct work_struct work;
  50. };
  51. struct apr_chld_device {
  52. struct platform_device *pdev;
  53. struct list_head node;
  54. };
  55. struct apr_private {
  56. struct device *dev;
  57. spinlock_t apr_lock;
  58. bool is_initial_boot;
  59. struct work_struct add_chld_dev_work;
  60. };
  61. static struct apr_private *apr_priv;
  62. static bool apr_cf_debug;
  63. static struct work_struct apr_cb_work;
  64. static void state_notify_cb(struct work_struct *work);
  65. #ifdef CONFIG_DEBUG_FS
  66. static struct dentry *debugfs_apr_debug;
  67. static ssize_t apr_debug_write(struct file *filp, const char __user *ubuf,
  68. size_t cnt, loff_t *ppos)
  69. {
  70. char cmd;
  71. if (copy_from_user(&cmd, ubuf, 1))
  72. return -EFAULT;
  73. apr_cf_debug = (cmd == '1') ? true : false;
  74. return cnt;
  75. }
  76. static const struct file_operations apr_debug_ops = {
  77. .write = apr_debug_write,
  78. };
  79. #endif
  80. #define APR_PKT_INFO(x...) \
  81. do { \
  82. if (apr_pkt_ctx) \
  83. ipc_log_string(apr_pkt_ctx, "<APR>: "x); \
  84. } while (0)
  85. struct apr_svc_table {
  86. char name[64];
  87. int idx;
  88. int id;
  89. int client_id;
  90. };
  91. static const struct apr_svc_table svc_tbl_qdsp6[] = {
  92. {
  93. .name = "AFE",
  94. .idx = 0,
  95. .id = APR_SVC_AFE,
  96. .client_id = APR_CLIENT_AUDIO,
  97. },
  98. {
  99. .name = "ASM",
  100. .idx = 1,
  101. .id = APR_SVC_ASM,
  102. .client_id = APR_CLIENT_AUDIO,
  103. },
  104. {
  105. .name = "ADM",
  106. .idx = 2,
  107. .id = APR_SVC_ADM,
  108. .client_id = APR_CLIENT_AUDIO,
  109. },
  110. {
  111. .name = "CORE",
  112. .idx = 3,
  113. .id = APR_SVC_ADSP_CORE,
  114. .client_id = APR_CLIENT_AUDIO,
  115. },
  116. {
  117. .name = "TEST",
  118. .idx = 4,
  119. .id = APR_SVC_TEST_CLIENT,
  120. .client_id = APR_CLIENT_AUDIO,
  121. },
  122. {
  123. .name = "MVM",
  124. .idx = 5,
  125. .id = APR_SVC_ADSP_MVM,
  126. .client_id = APR_CLIENT_AUDIO,
  127. },
  128. {
  129. .name = "CVS",
  130. .idx = 6,
  131. .id = APR_SVC_ADSP_CVS,
  132. .client_id = APR_CLIENT_AUDIO,
  133. },
  134. {
  135. .name = "CVP",
  136. .idx = 7,
  137. .id = APR_SVC_ADSP_CVP,
  138. .client_id = APR_CLIENT_AUDIO,
  139. },
  140. {
  141. .name = "USM",
  142. .idx = 8,
  143. .id = APR_SVC_USM,
  144. .client_id = APR_CLIENT_AUDIO,
  145. },
  146. {
  147. .name = "VIDC",
  148. .idx = 9,
  149. .id = APR_SVC_VIDC,
  150. },
  151. {
  152. .name = "LSM",
  153. .idx = 10,
  154. .id = APR_SVC_LSM,
  155. .client_id = APR_CLIENT_AUDIO,
  156. },
  157. };
  158. static struct apr_svc_table svc_tbl_voice[] = {
  159. {
  160. .name = "VSM",
  161. .idx = 0,
  162. .id = APR_SVC_VSM,
  163. .client_id = APR_CLIENT_VOICE,
  164. },
  165. {
  166. .name = "VPM",
  167. .idx = 1,
  168. .id = APR_SVC_VPM,
  169. .client_id = APR_CLIENT_VOICE,
  170. },
  171. {
  172. .name = "MVS",
  173. .idx = 2,
  174. .id = APR_SVC_MVS,
  175. .client_id = APR_CLIENT_VOICE,
  176. },
  177. {
  178. .name = "MVM",
  179. .idx = 3,
  180. .id = APR_SVC_MVM,
  181. .client_id = APR_CLIENT_VOICE,
  182. },
  183. {
  184. .name = "CVS",
  185. .idx = 4,
  186. .id = APR_SVC_CVS,
  187. .client_id = APR_CLIENT_VOICE,
  188. },
  189. {
  190. .name = "CVP",
  191. .idx = 5,
  192. .id = APR_SVC_CVP,
  193. .client_id = APR_CLIENT_VOICE,
  194. },
  195. {
  196. .name = "SRD",
  197. .idx = 6,
  198. .id = APR_SVC_SRD,
  199. .client_id = APR_CLIENT_VOICE,
  200. },
  201. {
  202. .name = "TEST",
  203. .idx = 7,
  204. .id = APR_SVC_TEST_CLIENT,
  205. .client_id = APR_CLIENT_VOICE,
  206. },
  207. };
  208. /**
  209. * apr_get_modem_state:
  210. *
  211. * Returns current modem load status
  212. *
  213. */
  214. enum apr_subsys_state apr_get_modem_state(void)
  215. {
  216. return atomic_read(&q6.modem_state);
  217. }
  218. EXPORT_SYMBOL(apr_get_modem_state);
  219. /**
  220. * apr_set_modem_state - Update modem load status.
  221. *
  222. * @state: State to update modem load status
  223. *
  224. */
  225. void apr_set_modem_state(enum apr_subsys_state state)
  226. {
  227. atomic_set(&q6.modem_state, state);
  228. }
  229. EXPORT_SYMBOL(apr_set_modem_state);
  230. enum apr_subsys_state apr_cmpxchg_modem_state(enum apr_subsys_state prev,
  231. enum apr_subsys_state new)
  232. {
  233. return atomic_cmpxchg(&q6.modem_state, prev, new);
  234. }
  235. static void apr_modem_down(unsigned long opcode)
  236. {
  237. apr_set_modem_state(APR_SUBSYS_DOWN);
  238. dispatch_event(opcode, APR_DEST_MODEM);
  239. }
  240. static void apr_modem_up(void)
  241. {
  242. if (apr_cmpxchg_modem_state(APR_SUBSYS_DOWN, APR_SUBSYS_UP) ==
  243. APR_SUBSYS_DOWN)
  244. wake_up(&modem_wait);
  245. is_modem_up = 1;
  246. }
  247. enum apr_subsys_state apr_get_q6_state(void)
  248. {
  249. return atomic_read(&q6.q6_state);
  250. }
  251. EXPORT_SYMBOL(apr_get_q6_state);
  252. int apr_set_q6_state(enum apr_subsys_state state)
  253. {
  254. pr_debug("%s: setting adsp state %d\n", __func__, state);
  255. if (state < APR_SUBSYS_DOWN || state > APR_SUBSYS_LOADED)
  256. return -EINVAL;
  257. atomic_set(&q6.q6_state, state);
  258. return 0;
  259. }
  260. EXPORT_SYMBOL(apr_set_q6_state);
  261. static void apr_ssr_disable(struct device *dev, void *data)
  262. {
  263. apr_set_q6_state(APR_SUBSYS_DOWN);
  264. }
  265. static const struct snd_event_ops apr_ssr_ops = {
  266. .disable = apr_ssr_disable,
  267. };
  268. static void apr_adsp_down(unsigned long opcode)
  269. {
  270. pr_info("%s: Q6 is Down\n", __func__);
  271. snd_event_notify(apr_priv->dev, SND_EVENT_DOWN);
  272. apr_set_q6_state(APR_SUBSYS_DOWN);
  273. dispatch_event(opcode, APR_DEST_QDSP6);
  274. }
  275. static void apr_add_child_devices(struct work_struct *work)
  276. {
  277. int ret;
  278. ret = of_platform_populate(apr_priv->dev->of_node,
  279. NULL, NULL, apr_priv->dev);
  280. if (ret)
  281. dev_err(apr_priv->dev, "%s: failed to add child nodes, ret=%d\n",
  282. __func__, ret);
  283. }
  284. static void apr_adsp_up(void)
  285. {
  286. pr_info("%s: Q6 is Up\n", __func__);
  287. apr_set_q6_state(APR_SUBSYS_LOADED);
  288. spin_lock(&apr_priv->apr_lock);
  289. if (apr_priv->is_initial_boot)
  290. schedule_work(&apr_priv->add_chld_dev_work);
  291. spin_unlock(&apr_priv->apr_lock);
  292. snd_event_notify(apr_priv->dev, SND_EVENT_UP);
  293. cancel_work_sync(&apr_cb_work);
  294. }
  295. int apr_load_adsp_image(void)
  296. {
  297. int rc = 0;
  298. mutex_lock(&q6.lock);
  299. if (apr_get_q6_state() == APR_SUBSYS_UP) {
  300. q6.pil = subsystem_get("adsp");
  301. if (IS_ERR(q6.pil)) {
  302. rc = PTR_ERR(q6.pil);
  303. pr_err("APR: Unable to load q6 image, error:%d\n", rc);
  304. } else {
  305. apr_set_q6_state(APR_SUBSYS_LOADED);
  306. pr_debug("APR: Image is loaded, stated\n");
  307. }
  308. } else if (apr_get_q6_state() == APR_SUBSYS_LOADED) {
  309. pr_debug("APR: q6 image already loaded\n");
  310. } else {
  311. pr_debug("APR: cannot load state %d\n", apr_get_q6_state());
  312. }
  313. mutex_unlock(&q6.lock);
  314. return rc;
  315. }
  316. struct apr_client *apr_get_client(int dest_id, int client_id)
  317. {
  318. return &client[dest_id][client_id];
  319. }
  320. /**
  321. * apr_send_pkt - Clients call to send packet
  322. * to destination processor.
  323. *
  324. * @handle: APR service handle
  325. * @buf: payload to send to destination processor.
  326. *
  327. * Returns Bytes(>0)pkt_size on success or error on failure.
  328. */
  329. int apr_send_pkt(void *handle, uint32_t *buf)
  330. {
  331. struct apr_svc *svc = handle;
  332. struct apr_client *clnt;
  333. struct apr_hdr *hdr;
  334. uint16_t dest_id;
  335. uint16_t client_id;
  336. uint16_t w_len;
  337. int rc;
  338. unsigned long flags;
  339. static DEFINE_RATELIMIT_STATE(rtl, 1 * HZ, 1);
  340. if (!handle || !buf) {
  341. pr_err("APR: Wrong parameters for %s\n",
  342. !handle ? "handle" : "buf");
  343. return -EINVAL;
  344. }
  345. if (svc->need_reset) {
  346. pr_err_ratelimited("apr: send_pkt service need reset\n");
  347. return -ENETRESET;
  348. }
  349. if ((svc->dest_id == APR_DEST_QDSP6) &&
  350. (apr_get_q6_state() != APR_SUBSYS_LOADED)) {
  351. if (__ratelimit(&rtl))
  352. pr_err_ratelimited("%s: Still dsp is not Up\n", __func__);
  353. return -ENETRESET;
  354. } else if ((svc->dest_id == APR_DEST_MODEM) &&
  355. (apr_get_modem_state() == APR_SUBSYS_DOWN)) {
  356. pr_err("apr: Still Modem is not Up\n");
  357. return -ENETRESET;
  358. }
  359. spin_lock_irqsave(&svc->w_lock, flags);
  360. dest_id = svc->dest_id;
  361. client_id = svc->client_id;
  362. clnt = &client[dest_id][client_id];
  363. if (!client[dest_id][client_id].handle) {
  364. pr_err_ratelimited("APR: Still service is not yet opened\n");
  365. spin_unlock_irqrestore(&svc->w_lock, flags);
  366. return -EINVAL;
  367. }
  368. hdr = (struct apr_hdr *)buf;
  369. hdr->src_domain = APR_DOMAIN_APPS;
  370. hdr->src_svc = svc->id;
  371. hdr->dest_domain = svc->dest_domain;
  372. hdr->dest_svc = svc->id;
  373. if (unlikely(apr_cf_debug)) {
  374. APR_PKT_INFO(
  375. "Tx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X]",
  376. (hdr->src_domain << 8) | hdr->src_svc,
  377. (hdr->dest_domain << 8) | hdr->dest_svc, hdr->opcode,
  378. hdr->token);
  379. }
  380. rc = apr_tal_write(clnt->handle, buf,
  381. (struct apr_pkt_priv *)&svc->pkt_owner,
  382. hdr->pkt_size);
  383. if (rc >= 0) {
  384. w_len = rc;
  385. if (w_len != hdr->pkt_size) {
  386. pr_err("%s: Unable to write whole APR pkt successfully: %d\n",
  387. __func__, rc);
  388. rc = -EINVAL;
  389. }
  390. } else {
  391. pr_err_ratelimited("%s: Write APR pkt failed with error %d\n",
  392. __func__, rc);
  393. if (rc == -ECONNRESET) {
  394. pr_err_ratelimited("%s: Received reset error from tal\n",
  395. __func__);
  396. if (svc->dest_id == APR_DEST_QDSP6)
  397. apr_set_q6_state(APR_SUBSYS_DOWN);
  398. rc = -ENETRESET;
  399. }
  400. if (rc == -EAGAIN || rc == -ETIMEDOUT) {
  401. apr_send_pkt_count++;
  402. pr_err("%s:: send pkt timedout apr_send_pkt_count %d\n",
  403. __func__, apr_send_pkt_count);
  404. }
  405. }
  406. if (apr_send_pkt_count == apr_pkt_cnt_adsp_restart) {
  407. pr_debug("%s:: schedule work for adsp loader restart cb\n",
  408. __func__);
  409. schedule_work(&apr_cb_work);
  410. apr_send_pkt_count = 0;
  411. }
  412. spin_unlock_irqrestore(&svc->w_lock, flags);
  413. return rc;
  414. }
  415. EXPORT_SYMBOL(apr_send_pkt);
  416. int apr_pkt_config(void *handle, struct apr_pkt_cfg *cfg)
  417. {
  418. struct apr_svc *svc = (struct apr_svc *)handle;
  419. uint16_t dest_id;
  420. uint16_t client_id;
  421. struct apr_client *clnt;
  422. if (!handle) {
  423. pr_err("%s: Invalid handle\n", __func__);
  424. return -EINVAL;
  425. }
  426. if (svc->need_reset) {
  427. pr_err("%s: service need reset\n", __func__);
  428. return -ENETRESET;
  429. }
  430. svc->pkt_owner = cfg->pkt_owner;
  431. dest_id = svc->dest_id;
  432. client_id = svc->client_id;
  433. clnt = &client[dest_id][client_id];
  434. return apr_tal_rx_intents_config(clnt->handle,
  435. cfg->intents.num_of_intents, cfg->intents.size);
  436. }
  437. /**
  438. * apr_register - Clients call to register
  439. * to APR.
  440. *
  441. * @dest: destination processor
  442. * @svc_name: name of service to register as
  443. * @svc_fn: callback function to trigger when response
  444. * ack or packets received from destination processor.
  445. * @src_port: Port number within a service
  446. * @priv: private data of client, passed back in cb fn.
  447. *
  448. * Returns apr_svc handle on success or NULL on failure.
  449. */
  450. struct apr_svc *apr_register(char *dest, char *svc_name, apr_fn svc_fn,
  451. uint32_t src_port, void *priv)
  452. {
  453. struct apr_client *clnt;
  454. int client_id = 0;
  455. int svc_idx = 0;
  456. int svc_id = 0;
  457. int dest_id = 0;
  458. int domain_id = 0;
  459. int temp_port = 0;
  460. struct apr_svc *svc = NULL;
  461. int rc = 0;
  462. bool can_open_channel = true;
  463. if (!dest || !svc_name || !svc_fn)
  464. return NULL;
  465. if (!strcmp(dest, "ADSP"))
  466. domain_id = APR_DOMAIN_ADSP;
  467. else if (!strcmp(dest, "MODEM")) {
  468. /* Don't request for SMD channels if destination is MODEM,
  469. * as these channels are no longer used and these clients
  470. * are to listen only for MODEM SSR events
  471. */
  472. can_open_channel = false;
  473. domain_id = APR_DOMAIN_MODEM;
  474. } else {
  475. pr_err("APR: wrong destination\n");
  476. goto done;
  477. }
  478. dest_id = apr_get_dest_id(dest);
  479. if (dest_id == APR_DEST_QDSP6) {
  480. if (apr_get_q6_state() != APR_SUBSYS_LOADED) {
  481. pr_err_ratelimited("%s: adsp not up\n", __func__);
  482. return NULL;
  483. }
  484. pr_debug("%s: adsp Up\n", __func__);
  485. } else if (dest_id == APR_DEST_MODEM) {
  486. if (apr_get_modem_state() == APR_SUBSYS_DOWN) {
  487. if (is_modem_up) {
  488. pr_err("%s: modem shutdown due to SSR, ret",
  489. __func__);
  490. return NULL;
  491. }
  492. pr_debug("%s: Wait for modem to bootup\n", __func__);
  493. rc = wait_event_interruptible_timeout(modem_wait,
  494. (apr_get_modem_state() == APR_SUBSYS_UP),
  495. (1 * HZ));
  496. if (rc == 0) {
  497. pr_err("%s: Modem is not Up\n", __func__);
  498. return NULL;
  499. }
  500. }
  501. pr_debug("%s: modem Up\n", __func__);
  502. }
  503. if (apr_get_svc(svc_name, domain_id, &client_id, &svc_idx, &svc_id)) {
  504. pr_err_ratelimited("%s: apr_get_svc failed\n", __func__);
  505. goto done;
  506. }
  507. clnt = &client[dest_id][client_id];
  508. mutex_lock(&clnt->m_lock);
  509. if (!clnt->handle && can_open_channel) {
  510. clnt->handle = apr_tal_open(client_id, dest_id,
  511. APR_DL_SMD, apr_cb_func, NULL);
  512. if (!clnt->handle) {
  513. svc = NULL;
  514. pr_err_ratelimited("APR: Unable to open handle\n");
  515. mutex_unlock(&clnt->m_lock);
  516. goto done;
  517. }
  518. }
  519. mutex_unlock(&clnt->m_lock);
  520. svc = &clnt->svc[svc_idx];
  521. mutex_lock(&svc->m_lock);
  522. clnt->id = client_id;
  523. if (svc->need_reset) {
  524. mutex_unlock(&svc->m_lock);
  525. pr_err_ratelimited("APR: Service needs reset\n");
  526. svc = NULL;
  527. goto done;
  528. }
  529. svc->id = svc_id;
  530. svc->dest_id = dest_id;
  531. svc->client_id = client_id;
  532. svc->dest_domain = domain_id;
  533. svc->pkt_owner = APR_PKT_OWNER_DRIVER;
  534. if (src_port != 0xFFFFFFFF) {
  535. temp_port = ((src_port >> 8) * 8) + (src_port & 0xFF);
  536. pr_debug("port = %d t_port = %d\n", src_port, temp_port);
  537. if (temp_port >= APR_MAX_PORTS || temp_port < 0) {
  538. pr_err("APR: temp_port out of bounds\n");
  539. mutex_unlock(&svc->m_lock);
  540. return NULL;
  541. }
  542. if (!svc->svc_cnt)
  543. clnt->svc_cnt++;
  544. svc->port_cnt++;
  545. svc->port_fn[temp_port] = svc_fn;
  546. svc->port_priv[temp_port] = priv;
  547. svc->svc_cnt++;
  548. } else {
  549. if (!svc->fn) {
  550. if (!svc->svc_cnt)
  551. clnt->svc_cnt++;
  552. svc->fn = svc_fn;
  553. svc->priv = priv;
  554. svc->svc_cnt++;
  555. }
  556. }
  557. mutex_unlock(&svc->m_lock);
  558. done:
  559. return svc;
  560. }
  561. EXPORT_SYMBOL(apr_register);
  562. void apr_cb_func(void *buf, int len, void *priv)
  563. {
  564. struct apr_client_data data;
  565. struct apr_client *apr_client;
  566. struct apr_svc *c_svc;
  567. struct apr_hdr *hdr;
  568. uint16_t hdr_size;
  569. uint16_t msg_type;
  570. uint16_t ver;
  571. uint16_t src;
  572. uint16_t svc;
  573. uint16_t clnt;
  574. int i;
  575. int temp_port = 0;
  576. uint32_t *ptr;
  577. pr_debug("APR2: len = %d\n", len);
  578. ptr = buf;
  579. pr_debug("\n*****************\n");
  580. for (i = 0; i < len/4; i++)
  581. pr_debug("%x ", ptr[i]);
  582. pr_debug("\n");
  583. pr_debug("\n*****************\n");
  584. if (!buf || len <= APR_HDR_SIZE) {
  585. pr_err("APR: Improper apr pkt received:%pK %d\n", buf, len);
  586. return;
  587. }
  588. hdr = buf;
  589. ver = hdr->hdr_field;
  590. ver = (ver & 0x000F);
  591. if (ver > APR_PKT_VER + 1) {
  592. pr_err("APR: Wrong version: %d\n", ver);
  593. return;
  594. }
  595. hdr_size = hdr->hdr_field;
  596. hdr_size = ((hdr_size & 0x00F0) >> 0x4) * 4;
  597. if (hdr_size < APR_HDR_SIZE) {
  598. pr_err("APR: Wrong hdr size:%d\n", hdr_size);
  599. return;
  600. }
  601. if (hdr->pkt_size < APR_HDR_SIZE) {
  602. pr_err("APR: Wrong paket size\n");
  603. return;
  604. }
  605. if (hdr->pkt_size < hdr_size) {
  606. pr_err("APR: Packet size less than header size\n");
  607. return;
  608. }
  609. msg_type = hdr->hdr_field;
  610. msg_type = (msg_type >> 0x08) & 0x0003;
  611. if (msg_type >= APR_MSG_TYPE_MAX && msg_type != APR_BASIC_RSP_RESULT) {
  612. pr_err("APR: Wrong message type: %d\n", msg_type);
  613. return;
  614. }
  615. if (hdr->src_domain >= APR_DOMAIN_MAX ||
  616. hdr->dest_domain >= APR_DOMAIN_MAX ||
  617. hdr->src_svc >= APR_SVC_MAX ||
  618. hdr->dest_svc >= APR_SVC_MAX) {
  619. pr_err("APR: Wrong APR header\n");
  620. return;
  621. }
  622. svc = hdr->dest_svc;
  623. if (hdr->src_domain == APR_DOMAIN_MODEM) {
  624. if (svc == APR_SVC_MVS || svc == APR_SVC_MVM ||
  625. svc == APR_SVC_CVS || svc == APR_SVC_CVP ||
  626. svc == APR_SVC_TEST_CLIENT)
  627. clnt = APR_CLIENT_VOICE;
  628. else {
  629. pr_err("APR: Wrong svc :%d\n", svc);
  630. return;
  631. }
  632. } else if (hdr->src_domain == APR_DOMAIN_ADSP) {
  633. if (svc == APR_SVC_AFE || svc == APR_SVC_ASM ||
  634. svc == APR_SVC_VSM || svc == APR_SVC_VPM ||
  635. svc == APR_SVC_ADM || svc == APR_SVC_ADSP_CORE ||
  636. svc == APR_SVC_USM ||
  637. svc == APR_SVC_TEST_CLIENT || svc == APR_SVC_ADSP_MVM ||
  638. svc == APR_SVC_ADSP_CVS || svc == APR_SVC_ADSP_CVP ||
  639. svc == APR_SVC_LSM)
  640. clnt = APR_CLIENT_AUDIO;
  641. else if (svc == APR_SVC_VIDC)
  642. clnt = APR_CLIENT_AUDIO;
  643. else {
  644. pr_err("APR: Wrong svc :%d\n", svc);
  645. return;
  646. }
  647. } else {
  648. pr_err("APR: Pkt from wrong source: %d\n", hdr->src_domain);
  649. return;
  650. }
  651. src = apr_get_data_src(hdr);
  652. if (src == APR_DEST_MAX)
  653. return;
  654. pr_debug("src =%d clnt = %d\n", src, clnt);
  655. apr_client = &client[src][clnt];
  656. for (i = 0; i < APR_SVC_MAX; i++)
  657. if (apr_client->svc[i].id == svc) {
  658. pr_debug("%d\n", apr_client->svc[i].id);
  659. c_svc = &apr_client->svc[i];
  660. break;
  661. }
  662. if (i == APR_SVC_MAX) {
  663. pr_err("APR: service is not registered\n");
  664. return;
  665. }
  666. pr_debug("svc_idx = %d\n", i);
  667. pr_debug("%x %x %x %pK %pK\n", c_svc->id, c_svc->dest_id,
  668. c_svc->client_id, c_svc->fn, c_svc->priv);
  669. data.payload_size = hdr->pkt_size - hdr_size;
  670. data.opcode = hdr->opcode;
  671. data.src = src;
  672. data.src_port = hdr->src_port;
  673. data.dest_port = hdr->dest_port;
  674. data.token = hdr->token;
  675. data.msg_type = msg_type;
  676. data.payload = NULL;
  677. if (data.payload_size > 0)
  678. data.payload = (char *)hdr + hdr_size;
  679. if (unlikely(apr_cf_debug)) {
  680. if (hdr->opcode == APR_BASIC_RSP_RESULT && data.payload) {
  681. uint32_t *ptr = data.payload;
  682. APR_PKT_INFO(
  683. "Rx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X] rc[0x%X]",
  684. (hdr->src_domain << 8) | hdr->src_svc,
  685. (hdr->dest_domain << 8) | hdr->dest_svc,
  686. hdr->opcode, hdr->token, ptr[1]);
  687. } else {
  688. APR_PKT_INFO(
  689. "Rx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X]",
  690. (hdr->src_domain << 8) | hdr->src_svc,
  691. (hdr->dest_domain << 8) | hdr->dest_svc, hdr->opcode,
  692. hdr->token);
  693. }
  694. }
  695. temp_port = ((data.dest_port >> 8) * 8) + (data.dest_port & 0xFF);
  696. if (((temp_port >= 0) && (temp_port < APR_MAX_PORTS))
  697. && (c_svc->port_cnt && c_svc->port_fn[temp_port]))
  698. c_svc->port_fn[temp_port](&data,
  699. c_svc->port_priv[temp_port]);
  700. else if (c_svc->fn)
  701. c_svc->fn(&data, c_svc->priv);
  702. else
  703. pr_err("APR: Rxed a packet for NULL callback\n");
  704. }
  705. int apr_get_svc(const char *svc_name, int domain_id, int *client_id,
  706. int *svc_idx, int *svc_id)
  707. {
  708. int i;
  709. int size;
  710. struct apr_svc_table *tbl;
  711. int ret = 0;
  712. if (domain_id == APR_DOMAIN_ADSP) {
  713. tbl = (struct apr_svc_table *)&svc_tbl_qdsp6;
  714. size = ARRAY_SIZE(svc_tbl_qdsp6);
  715. } else {
  716. tbl = (struct apr_svc_table *)&svc_tbl_voice;
  717. size = ARRAY_SIZE(svc_tbl_voice);
  718. }
  719. for (i = 0; i < size; i++) {
  720. if (!strcmp(svc_name, tbl[i].name)) {
  721. *client_id = tbl[i].client_id;
  722. *svc_idx = tbl[i].idx;
  723. *svc_id = tbl[i].id;
  724. break;
  725. }
  726. }
  727. pr_debug("%s: svc_name = %s c_id = %d domain_id = %d\n",
  728. __func__, svc_name, *client_id, domain_id);
  729. if (i == size) {
  730. pr_err("%s: APR: Wrong svc name %s\n", __func__, svc_name);
  731. ret = -EINVAL;
  732. }
  733. return ret;
  734. }
  735. static void apr_reset_deregister(struct work_struct *work)
  736. {
  737. struct apr_svc *handle = NULL;
  738. struct apr_reset_work *apr_reset =
  739. container_of(work, struct apr_reset_work, work);
  740. handle = apr_reset->handle;
  741. pr_debug("%s:handle[%pK]\n", __func__, handle);
  742. apr_deregister(handle);
  743. kfree(apr_reset);
  744. }
  745. static void state_notify_cb(struct work_struct *work)
  746. {
  747. if (q6.state_notify_cb)
  748. q6.state_notify_cb(APR_SUBSYS_UNKNOWN, q6.client_handle);
  749. }
  750. void apr_register_adsp_state_cb(void *adsp_cb, void *client_handle)
  751. {
  752. q6.state_notify_cb = adsp_cb;
  753. q6.client_handle = client_handle;
  754. }
  755. EXPORT_SYMBOL(apr_register_adsp_state_cb);
  756. /**
  757. * apr_start_rx_rt - Clients call to vote for thread
  758. * priority upgrade whenever needed.
  759. *
  760. * @handle: APR service handle
  761. *
  762. * Returns 0 on success or error otherwise.
  763. */
  764. int apr_start_rx_rt(void *handle)
  765. {
  766. int rc = 0;
  767. struct apr_svc *svc = handle;
  768. uint16_t dest_id = 0;
  769. uint16_t client_id = 0;
  770. if (!svc) {
  771. pr_err("%s: Invalid APR handle\n", __func__);
  772. return -EINVAL;
  773. }
  774. mutex_lock(&svc->m_lock);
  775. dest_id = svc->dest_id;
  776. client_id = svc->client_id;
  777. if ((client_id >= APR_CLIENT_MAX) || (dest_id >= APR_DEST_MAX)) {
  778. pr_err("%s: %s invalid. client_id = %u, dest_id = %u\n",
  779. __func__,
  780. client_id >= APR_CLIENT_MAX ? "Client ID" : "Dest ID",
  781. client_id, dest_id);
  782. rc = -EINVAL;
  783. goto exit;
  784. }
  785. if (!client[dest_id][client_id].handle) {
  786. pr_err("%s: Client handle is NULL\n", __func__);
  787. rc = -EINVAL;
  788. goto exit;
  789. }
  790. rc = apr_tal_start_rx_rt(client[dest_id][client_id].handle);
  791. if (rc)
  792. pr_err("%s: failed to set RT thread priority for APR RX. rc = %d\n",
  793. __func__, rc);
  794. exit:
  795. mutex_unlock(&svc->m_lock);
  796. return rc;
  797. }
  798. EXPORT_SYMBOL(apr_start_rx_rt);
  799. /**
  800. * apr_end_rx_rt - Clients call to unvote for thread
  801. * priority upgrade (perviously voted with
  802. * apr_start_rx_rt()).
  803. *
  804. * @handle: APR service handle
  805. *
  806. * Returns 0 on success or error otherwise.
  807. */
  808. int apr_end_rx_rt(void *handle)
  809. {
  810. int rc = 0;
  811. struct apr_svc *svc = handle;
  812. uint16_t dest_id = 0;
  813. uint16_t client_id = 0;
  814. if (!svc) {
  815. pr_err("%s: Invalid APR handle\n", __func__);
  816. return -EINVAL;
  817. }
  818. mutex_lock(&svc->m_lock);
  819. dest_id = svc->dest_id;
  820. client_id = svc->client_id;
  821. if ((client_id >= APR_CLIENT_MAX) || (dest_id >= APR_DEST_MAX)) {
  822. pr_err("%s: %s invalid. client_id = %u, dest_id = %u\n",
  823. __func__,
  824. client_id >= APR_CLIENT_MAX ? "Client ID" : "Dest ID",
  825. client_id, dest_id);
  826. rc = -EINVAL;
  827. goto exit;
  828. }
  829. if (!client[dest_id][client_id].handle) {
  830. pr_err("%s: Client handle is NULL\n", __func__);
  831. rc = -EINVAL;
  832. goto exit;
  833. }
  834. rc = apr_tal_end_rx_rt(client[dest_id][client_id].handle);
  835. if (rc)
  836. pr_err("%s: failed to reset RT thread priority for APR RX. rc = %d\n",
  837. __func__, rc);
  838. exit:
  839. mutex_unlock(&svc->m_lock);
  840. return rc;
  841. }
  842. EXPORT_SYMBOL(apr_end_rx_rt);
  843. /**
  844. * apr_deregister - Clients call to de-register
  845. * from APR.
  846. *
  847. * @handle: APR service handle to de-register
  848. *
  849. * Returns 0 on success or -EINVAL on error.
  850. */
  851. int apr_deregister(void *handle)
  852. {
  853. struct apr_svc *svc = handle;
  854. struct apr_client *clnt;
  855. uint16_t dest_id;
  856. uint16_t client_id;
  857. if (!handle)
  858. return -EINVAL;
  859. mutex_lock(&svc->m_lock);
  860. if (!svc->svc_cnt) {
  861. pr_err("%s: svc already deregistered. svc = %pK\n",
  862. __func__, svc);
  863. mutex_unlock(&svc->m_lock);
  864. return -EINVAL;
  865. }
  866. dest_id = svc->dest_id;
  867. client_id = svc->client_id;
  868. clnt = &client[dest_id][client_id];
  869. if (svc->svc_cnt > 0) {
  870. if (svc->port_cnt)
  871. svc->port_cnt--;
  872. svc->svc_cnt--;
  873. if (!svc->svc_cnt) {
  874. client[dest_id][client_id].svc_cnt--;
  875. pr_debug("%s: service is reset %pK\n", __func__, svc);
  876. }
  877. }
  878. if (!svc->svc_cnt) {
  879. svc->priv = NULL;
  880. svc->id = 0;
  881. svc->fn = NULL;
  882. svc->dest_id = 0;
  883. svc->client_id = 0;
  884. svc->need_reset = 0x0;
  885. }
  886. if (client[dest_id][client_id].handle &&
  887. !client[dest_id][client_id].svc_cnt) {
  888. apr_tal_close(client[dest_id][client_id].handle);
  889. client[dest_id][client_id].handle = NULL;
  890. }
  891. mutex_unlock(&svc->m_lock);
  892. return 0;
  893. }
  894. EXPORT_SYMBOL(apr_deregister);
  895. /**
  896. * apr_reset - sets up workqueue to de-register
  897. * the given APR service handle.
  898. *
  899. * @handle: APR service handle
  900. *
  901. */
  902. void apr_reset(void *handle)
  903. {
  904. struct apr_reset_work *apr_reset_worker = NULL;
  905. if (!handle)
  906. return;
  907. pr_debug("%s: handle[%pK]\n", __func__, handle);
  908. if (apr_reset_workqueue == NULL) {
  909. pr_err("%s: apr_reset_workqueue is NULL\n", __func__);
  910. return;
  911. }
  912. apr_reset_worker = kzalloc(sizeof(struct apr_reset_work),
  913. GFP_ATOMIC);
  914. if (apr_reset_worker == NULL) {
  915. pr_err("%s: mem failure\n", __func__);
  916. return;
  917. }
  918. apr_reset_worker->handle = handle;
  919. INIT_WORK(&apr_reset_worker->work, apr_reset_deregister);
  920. queue_work(apr_reset_workqueue, &apr_reset_worker->work);
  921. }
  922. EXPORT_SYMBOL(apr_reset);
  923. /* Dispatch the Reset events to Modem and audio clients */
  924. static void dispatch_event(unsigned long code, uint16_t proc)
  925. {
  926. struct apr_client *apr_client;
  927. struct apr_client_data data;
  928. struct apr_svc *svc;
  929. uint16_t clnt;
  930. int i, j;
  931. memset(&data, 0, sizeof(data));
  932. data.opcode = RESET_EVENTS;
  933. data.reset_event = code;
  934. /* Service domain can be different from the processor */
  935. data.reset_proc = apr_get_reset_domain(proc);
  936. clnt = APR_CLIENT_AUDIO;
  937. apr_client = &client[proc][clnt];
  938. for (i = 0; i < APR_SVC_MAX; i++) {
  939. mutex_lock(&apr_client->svc[i].m_lock);
  940. if (apr_client->svc[i].fn) {
  941. apr_client->svc[i].need_reset = 0x1;
  942. apr_client->svc[i].fn(&data, apr_client->svc[i].priv);
  943. }
  944. if (apr_client->svc[i].port_cnt) {
  945. svc = &(apr_client->svc[i]);
  946. svc->need_reset = 0x1;
  947. for (j = 0; j < APR_MAX_PORTS; j++)
  948. if (svc->port_fn[j])
  949. svc->port_fn[j](&data,
  950. svc->port_priv[j]);
  951. }
  952. mutex_unlock(&apr_client->svc[i].m_lock);
  953. }
  954. clnt = APR_CLIENT_VOICE;
  955. apr_client = &client[proc][clnt];
  956. for (i = 0; i < APR_SVC_MAX; i++) {
  957. mutex_lock(&apr_client->svc[i].m_lock);
  958. if (apr_client->svc[i].fn) {
  959. apr_client->svc[i].need_reset = 0x1;
  960. apr_client->svc[i].fn(&data, apr_client->svc[i].priv);
  961. }
  962. if (apr_client->svc[i].port_cnt) {
  963. svc = &(apr_client->svc[i]);
  964. svc->need_reset = 0x1;
  965. for (j = 0; j < APR_MAX_PORTS; j++)
  966. if (svc->port_fn[j])
  967. svc->port_fn[j](&data,
  968. svc->port_priv[j]);
  969. }
  970. mutex_unlock(&apr_client->svc[i].m_lock);
  971. }
  972. }
  973. static int apr_notifier_service_cb(struct notifier_block *this,
  974. unsigned long opcode, void *data)
  975. {
  976. struct audio_notifier_cb_data *cb_data = data;
  977. if (cb_data == NULL) {
  978. pr_err("%s: Callback data is NULL!\n", __func__);
  979. goto done;
  980. }
  981. pr_debug("%s: Service opcode 0x%lx, domain %d\n",
  982. __func__, opcode, cb_data->domain);
  983. switch (opcode) {
  984. case AUDIO_NOTIFIER_SERVICE_DOWN:
  985. /*
  986. * Use flag to ignore down notifications during
  987. * initial boot. There is no benefit from error
  988. * recovery notifications during initial boot
  989. * up since everything is expected to be down.
  990. */
  991. spin_lock(&apr_priv->apr_lock);
  992. if (apr_priv->is_initial_boot) {
  993. spin_unlock(&apr_priv->apr_lock);
  994. break;
  995. }
  996. spin_unlock(&apr_priv->apr_lock);
  997. if (cb_data->domain == AUDIO_NOTIFIER_MODEM_DOMAIN)
  998. apr_modem_down(opcode);
  999. else
  1000. apr_adsp_down(opcode);
  1001. break;
  1002. case AUDIO_NOTIFIER_SERVICE_UP:
  1003. if (cb_data->domain == AUDIO_NOTIFIER_MODEM_DOMAIN)
  1004. apr_modem_up();
  1005. else
  1006. apr_adsp_up();
  1007. spin_lock(&apr_priv->apr_lock);
  1008. apr_priv->is_initial_boot = false;
  1009. spin_unlock(&apr_priv->apr_lock);
  1010. break;
  1011. default:
  1012. break;
  1013. }
  1014. done:
  1015. return NOTIFY_OK;
  1016. }
  1017. static struct notifier_block adsp_service_nb = {
  1018. .notifier_call = apr_notifier_service_cb,
  1019. .priority = 0,
  1020. };
  1021. static struct notifier_block modem_service_nb = {
  1022. .notifier_call = apr_notifier_service_cb,
  1023. .priority = 0,
  1024. };
  1025. #ifdef CONFIG_DEBUG_FS
  1026. static int __init apr_debug_init(void)
  1027. {
  1028. debugfs_apr_debug = debugfs_create_file("msm_apr_debug",
  1029. S_IFREG | 0444, NULL, NULL,
  1030. &apr_debug_ops);
  1031. return 0;
  1032. }
  1033. #else
  1034. static int __init apr_debug_init(void)
  1035. {
  1036. return 0;
  1037. }
  1038. #endif
  1039. static void apr_cleanup(void)
  1040. {
  1041. int i, j, k;
  1042. of_platform_depopulate(apr_priv->dev);
  1043. subsys_notif_deregister(subsys_name);
  1044. if (apr_reset_workqueue) {
  1045. flush_workqueue(apr_reset_workqueue);
  1046. destroy_workqueue(apr_reset_workqueue);
  1047. }
  1048. mutex_destroy(&q6.lock);
  1049. for (i = 0; i < APR_DEST_MAX; i++) {
  1050. for (j = 0; j < APR_CLIENT_MAX; j++) {
  1051. mutex_destroy(&client[i][j].m_lock);
  1052. for (k = 0; k < APR_SVC_MAX; k++)
  1053. mutex_destroy(&client[i][j].svc[k].m_lock);
  1054. }
  1055. }
  1056. #ifdef CONFIG_DEBUG_FS
  1057. debugfs_remove(debugfs_apr_debug);
  1058. #endif
  1059. }
  1060. static int apr_probe(struct platform_device *pdev)
  1061. {
  1062. int i, j, k, ret = 0;
  1063. init_waitqueue_head(&modem_wait);
  1064. apr_priv = devm_kzalloc(&pdev->dev, sizeof(*apr_priv), GFP_KERNEL);
  1065. if (!apr_priv)
  1066. return -ENOMEM;
  1067. apr_priv->dev = &pdev->dev;
  1068. spin_lock_init(&apr_priv->apr_lock);
  1069. INIT_WORK(&apr_priv->add_chld_dev_work, apr_add_child_devices);
  1070. for (i = 0; i < APR_DEST_MAX; i++)
  1071. for (j = 0; j < APR_CLIENT_MAX; j++) {
  1072. mutex_init(&client[i][j].m_lock);
  1073. for (k = 0; k < APR_SVC_MAX; k++) {
  1074. mutex_init(&client[i][j].svc[k].m_lock);
  1075. spin_lock_init(&client[i][j].svc[k].w_lock);
  1076. }
  1077. }
  1078. apr_set_subsys_state();
  1079. mutex_init(&q6.lock);
  1080. apr_reset_workqueue = create_singlethread_workqueue("apr_driver");
  1081. if (!apr_reset_workqueue) {
  1082. apr_priv = NULL;
  1083. return -ENOMEM;
  1084. }
  1085. apr_pkt_ctx = ipc_log_context_create(APR_PKT_IPC_LOG_PAGE_CNT,
  1086. "apr", 0);
  1087. if (!apr_pkt_ctx)
  1088. pr_err("%s: Unable to create ipc log context\n", __func__);
  1089. spin_lock(&apr_priv->apr_lock);
  1090. apr_priv->is_initial_boot = true;
  1091. spin_unlock(&apr_priv->apr_lock);
  1092. ret = of_property_read_string(pdev->dev.of_node,
  1093. "qcom,subsys-name",
  1094. (const char **)(&subsys_name));
  1095. if (ret) {
  1096. pr_err("%s: missing subsys-name entry in dt node\n", __func__);
  1097. return -EINVAL;
  1098. }
  1099. if (!strcmp(subsys_name, "apr_adsp")) {
  1100. subsys_notif_register("apr_adsp",
  1101. AUDIO_NOTIFIER_ADSP_DOMAIN,
  1102. &adsp_service_nb);
  1103. } else if (!strcmp(subsys_name, "apr_modem")) {
  1104. subsys_notif_register("apr_modem",
  1105. AUDIO_NOTIFIER_MODEM_DOMAIN,
  1106. &modem_service_nb);
  1107. } else {
  1108. pr_err("%s: invalid subsys-name %s\n", __func__, subsys_name);
  1109. return -EINVAL;
  1110. }
  1111. apr_tal_init();
  1112. ret = snd_event_client_register(&pdev->dev, &apr_ssr_ops, NULL);
  1113. if (ret) {
  1114. pr_err("%s: Registration with SND event fwk failed ret = %d\n",
  1115. __func__, ret);
  1116. ret = 0;
  1117. }
  1118. INIT_WORK(&apr_cb_work, state_notify_cb);
  1119. return apr_debug_init();
  1120. }
  1121. static int apr_remove(struct platform_device *pdev)
  1122. {
  1123. snd_event_client_deregister(&pdev->dev);
  1124. apr_cleanup();
  1125. apr_tal_exit();
  1126. apr_priv = NULL;
  1127. return 0;
  1128. }
  1129. static const struct of_device_id apr_machine_of_match[] = {
  1130. { .compatible = "qcom,msm-audio-apr", },
  1131. {},
  1132. };
  1133. static struct platform_driver apr_driver = {
  1134. .probe = apr_probe,
  1135. .remove = apr_remove,
  1136. .driver = {
  1137. .name = "audio_apr",
  1138. .owner = THIS_MODULE,
  1139. .of_match_table = apr_machine_of_match,
  1140. .suppress_bind_attrs = true,
  1141. }
  1142. };
  1143. module_platform_driver(apr_driver);
  1144. MODULE_DESCRIPTION("APR DRIVER");
  1145. MODULE_LICENSE("GPL v2");
  1146. MODULE_DEVICE_TABLE(of, apr_machine_of_match);