apr.c 28 KB

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