apr.c 28 KB

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