spf-core.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. /* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
  2. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/slab.h>
  14. #include <linux/wait.h>
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/delay.h>
  18. #include <linux/sched.h>
  19. #include <linux/of.h>
  20. #include <linux/of_platform.h>
  21. #include <linux/jiffies.h>
  22. #include <ipc/gpr-lite.h>
  23. #include <dsp/spf-core.h>
  24. #include <dsp/digital-cdc-rsc-mgr.h>
  25. #define APM_STATE_READY_TIMEOUT_MS 10000
  26. #define Q6_READY_TIMEOUT_MS 1000
  27. #define Q6_CLOSE_ALL_TIMEOUT_MS 5000
  28. #define APM_CMD_GET_SPF_STATE 0x01001021
  29. #define APM_CMD_CLOSE_ALL 0x01001013
  30. #define APM_CMD_RSP_GET_SPF_STATE 0x02001007
  31. #define APM_MODULE_INSTANCE_ID 0x00000001
  32. #define GPR_SVC_ADSP_CORE 0x3
  33. struct spf_core {
  34. struct gpr_device *adev;
  35. wait_queue_head_t wait;
  36. struct mutex lock;
  37. bool resp_received;
  38. int32_t status;
  39. };
  40. struct spf_core_private {
  41. struct device *dev;
  42. struct mutex lock;
  43. struct spf_core *spf_core_drv;
  44. bool is_initial_boot;
  45. struct work_struct add_chld_dev_work;
  46. };
  47. static struct spf_core_private *spf_core_priv;
  48. /* used to decode basic responses from Gecko */
  49. struct spf_cmd_basic_rsp {
  50. uint32_t opcode;
  51. int32_t status;
  52. };
  53. struct apm_cmd_rsp_get_spf_status_t
  54. {
  55. /* Gecko status
  56. * @values
  57. * 0 -> Not ready
  58. * 1 -> Ready
  59. */
  60. uint32_t status;
  61. };
  62. static int spf_core_callback(struct gpr_device *adev, void *data)
  63. {
  64. struct spf_core *core = dev_get_drvdata(&adev->dev);
  65. struct apm_cmd_rsp_get_spf_status_t *spf_status_rsp;
  66. struct spf_cmd_basic_rsp *basic_rsp;
  67. struct gpr_hdr *hdr = data;
  68. dev_info_ratelimited(&adev->dev, "%s: Payload %x", __func__, hdr->opcode);
  69. switch (hdr->opcode) {
  70. case GPR_IBASIC_RSP_RESULT:
  71. basic_rsp = GPR_PKT_GET_PAYLOAD(
  72. struct spf_cmd_basic_rsp,
  73. data);
  74. dev_info_ratelimited(&adev->dev, "%s: op %x status %d", __func__,
  75. basic_rsp->opcode, basic_rsp->status);
  76. if (basic_rsp->opcode == APM_CMD_CLOSE_ALL) {
  77. core->status = basic_rsp->status;
  78. } else {
  79. dev_err_ratelimited(&adev->dev, "%s: Failed response received",
  80. __func__);
  81. }
  82. core->resp_received = true;
  83. break;
  84. case APM_CMD_RSP_GET_SPF_STATE:
  85. spf_status_rsp =
  86. GPR_PKT_GET_PAYLOAD(
  87. struct apm_cmd_rsp_get_spf_status_t,
  88. data);
  89. dev_info_ratelimited(&adev->dev, "%s: sucess response received", __func__);
  90. core->status = spf_status_rsp->status;
  91. core->resp_received = true;
  92. break;
  93. default:
  94. dev_err_ratelimited(&adev->dev, "Message ID from apm: 0x%x\n",
  95. hdr->opcode);
  96. break;
  97. }
  98. if (core->resp_received)
  99. wake_up(&core->wait);
  100. return 0;
  101. }
  102. static bool __spf_core_is_apm_ready(struct spf_core *core)
  103. {
  104. struct gpr_device *adev = core->adev;
  105. struct gpr_pkt pkt;
  106. int rc;
  107. bool ret = false;
  108. pkt.hdr.header = GPR_SET_FIELD(GPR_PKT_VERSION, GPR_PKT_VER) |
  109. GPR_SET_FIELD(GPR_PKT_HEADER_SIZE, GPR_PKT_HEADER_WORD_SIZE_V) |
  110. GPR_SET_FIELD(GPR_PKT_PACKET_SIZE, GPR_PKT_HEADER_BYTE_SIZE_V);
  111. pkt.hdr.dst_port = APM_MODULE_INSTANCE_ID;
  112. pkt.hdr.src_port = GPR_SVC_ADSP_CORE;
  113. pkt.hdr.dst_domain_id = GPR_IDS_DOMAIN_ID_ADSP_V;
  114. pkt.hdr.src_domain_id = GPR_IDS_DOMAIN_ID_APPS_V;
  115. pkt.hdr.opcode = APM_CMD_GET_SPF_STATE;
  116. dev_err_ratelimited(spf_core_priv->dev, "%s: send_command ret\n", __func__);
  117. rc = gpr_send_pkt(adev, &pkt);
  118. if (rc < 0) {
  119. ret = false;
  120. goto done;
  121. }
  122. rc = wait_event_timeout(core->wait, (core->resp_received),
  123. msecs_to_jiffies(Q6_READY_TIMEOUT_MS));
  124. dev_dbg(spf_core_priv->dev, "%s: wait event unblocked \n", __func__);
  125. if (rc > 0 && core->resp_received) {
  126. ret = core->status;
  127. } else {
  128. dev_err_ratelimited(spf_core_priv->dev, "%s: command timedout, ret\n",
  129. __func__);
  130. }
  131. done:
  132. core->resp_received = false;
  133. return ret;
  134. }
  135. /**
  136. * spf_core_is_apm_ready() - Get status of adsp
  137. *
  138. * Return: Will return true if apm is ready and false if not.
  139. */
  140. bool spf_core_is_apm_ready(void)
  141. {
  142. unsigned long timeout;
  143. bool ret = false;
  144. struct spf_core *core;
  145. if (!spf_core_priv)
  146. return ret;
  147. mutex_lock(&spf_core_priv->lock);
  148. core = spf_core_priv->spf_core_drv;
  149. if (!core)
  150. goto done;
  151. timeout = jiffies + msecs_to_jiffies(APM_STATE_READY_TIMEOUT_MS);
  152. mutex_lock(&core->lock);
  153. for (;;) {
  154. if (__spf_core_is_apm_ready(core)) {
  155. ret = true;
  156. break;
  157. }
  158. usleep_range(50000, 50050);
  159. if (!time_after(timeout, jiffies)) {
  160. ret = false;
  161. break;
  162. }
  163. }
  164. mutex_unlock(&core->lock);
  165. done:
  166. mutex_unlock(&spf_core_priv->lock);
  167. return ret;
  168. }
  169. EXPORT_SYMBOL_GPL(spf_core_is_apm_ready);
  170. /**
  171. * spf_core_apm_close_all() - Get status of adsp
  172. *
  173. * Return: Will be return true if apm is ready and false if not.
  174. */
  175. void spf_core_apm_close_all(void)
  176. {
  177. int rc = 0;
  178. struct spf_core *core;
  179. struct gpr_pkt pkt;
  180. struct gpr_device *adev = NULL;
  181. if (!spf_core_priv)
  182. return;
  183. mutex_lock(&spf_core_priv->lock);
  184. core = spf_core_priv->spf_core_drv;
  185. if (!core) {
  186. mutex_unlock(&spf_core_priv->lock);
  187. return;
  188. }
  189. mutex_lock(&core->lock);
  190. adev = core->adev;
  191. pkt.hdr.header = GPR_SET_FIELD(GPR_PKT_VERSION, GPR_PKT_VER) |
  192. GPR_SET_FIELD(GPR_PKT_HEADER_SIZE,
  193. GPR_PKT_HEADER_WORD_SIZE_V) |
  194. GPR_SET_FIELD(GPR_PKT_PACKET_SIZE,
  195. GPR_PKT_HEADER_BYTE_SIZE_V);
  196. pkt.hdr.dst_port = APM_MODULE_INSTANCE_ID;
  197. pkt.hdr.src_port = GPR_SVC_ADSP_CORE;
  198. pkt.hdr.dst_domain_id = GPR_IDS_DOMAIN_ID_ADSP_V;
  199. pkt.hdr.src_domain_id = GPR_IDS_DOMAIN_ID_APPS_V;
  200. pkt.hdr.opcode = APM_CMD_CLOSE_ALL;
  201. dev_info_ratelimited(spf_core_priv->dev, "%s: send_command \n", __func__);
  202. rc = gpr_send_pkt(adev, &pkt);
  203. if (rc < 0) {
  204. dev_err_ratelimited(spf_core_priv->dev, "%s: send_pkt_failed %d\n",
  205. __func__, rc);
  206. goto done;
  207. }
  208. /* While graph_open is processing by the SPF, apps receives
  209. * userspace(agm/pal) crash which will triggers spf_close_all
  210. * cmd from msm common drivers and immediately calls
  211. * msm_audio_ion_crash_handler() which will un-maps the memory. But
  212. * here SPF is still in processing the graph_open, recieved spf_close_all
  213. * cmd is queued in SPF. Due to un-mapping is done immediately in HLOS
  214. * will resulting in SMMU fault.
  215. * To avoid such scenarios, increased the spf_close_all cmd timeout,
  216. * because the AGM timeout for the graph_open is 4sec, so increase the timeout
  217. * for spf_close_all cmd response until graph open completes or timed out.
  218. */
  219. rc = wait_event_timeout(core->wait, (core->resp_received),
  220. msecs_to_jiffies(Q6_CLOSE_ALL_TIMEOUT_MS));
  221. dev_info_ratelimited(spf_core_priv->dev, "%s: wait event unblocked \n", __func__);
  222. if (rc > 0 && core->resp_received) {
  223. if (core->status != 0)
  224. dev_err_ratelimited(spf_core_priv->dev, "%s, cmd failed status %d",
  225. __func__, core->status);
  226. } else {
  227. dev_err_ratelimited(spf_core_priv->dev, "%s: command timedout, ret\n",
  228. __func__);
  229. }
  230. done:
  231. core->resp_received = false;
  232. mutex_unlock(&core->lock);
  233. mutex_unlock(&spf_core_priv->lock);
  234. return;
  235. }
  236. EXPORT_SYMBOL_GPL(spf_core_apm_close_all);
  237. static int spf_core_probe(struct gpr_device *adev)
  238. {
  239. struct spf_core *core;
  240. pr_err("%s",__func__);
  241. if (!spf_core_priv) {
  242. pr_err("%s: spf_core platform probe not yet done\n", __func__);
  243. return -EPROBE_DEFER;
  244. }
  245. mutex_lock(&spf_core_priv->lock);
  246. core = kzalloc(sizeof(*core), GFP_KERNEL);
  247. if (!core) {
  248. mutex_unlock(&spf_core_priv->lock);
  249. return -ENOMEM;
  250. }
  251. dev_set_drvdata(&adev->dev, core);
  252. mutex_init(&core->lock);
  253. core->adev = adev;
  254. init_waitqueue_head(&core->wait);
  255. spf_core_priv->spf_core_drv = core;
  256. if (spf_core_priv->is_initial_boot)
  257. schedule_work(&spf_core_priv->add_chld_dev_work);
  258. mutex_unlock(&spf_core_priv->lock);
  259. return 0;
  260. }
  261. static int spf_core_exit(struct gpr_device *adev)
  262. {
  263. struct spf_core *core = dev_get_drvdata(&adev->dev);
  264. if (!spf_core_priv) {
  265. pr_err("%s: spf_core platform probe not yet done\n", __func__);
  266. return -1;
  267. }
  268. mutex_lock(&spf_core_priv->lock);
  269. spf_core_priv->spf_core_drv = NULL;
  270. kfree(core);
  271. mutex_unlock(&spf_core_priv->lock);
  272. return 0;
  273. }
  274. static const struct of_device_id spf_core_device_id[] = {
  275. { .compatible = "qcom,spf_core" },
  276. {},
  277. };
  278. MODULE_DEVICE_TABLE(of, spf_core_device_id);
  279. static struct gpr_driver qcom_spf_core_driver = {
  280. .probe = spf_core_probe,
  281. .remove = spf_core_exit,
  282. .callback = spf_core_callback,
  283. .driver = {
  284. .name = "qcom-spf_core",
  285. .of_match_table = of_match_ptr(spf_core_device_id),
  286. },
  287. };
  288. static void spf_core_add_child_devices(struct work_struct *work)
  289. {
  290. int ret;
  291. pr_err("%s:enumarate machine driver\n", __func__);
  292. if(spf_core_is_apm_ready()) {
  293. dev_err(spf_core_priv->dev, "%s: apm is up\n",
  294. __func__);
  295. } else {
  296. dev_err(spf_core_priv->dev, "%s: apm is not up\n",
  297. __func__);
  298. return;
  299. }
  300. ret = of_platform_populate(spf_core_priv->dev->of_node,
  301. NULL, NULL, spf_core_priv->dev);
  302. if (ret)
  303. dev_err(spf_core_priv->dev, "%s: failed to add child nodes, ret=%d\n",
  304. __func__, ret);
  305. spf_core_priv->is_initial_boot = false;
  306. }
  307. static int spf_core_platform_driver_probe(struct platform_device *pdev)
  308. {
  309. int ret = 0;
  310. pr_err("%s",__func__);
  311. spf_core_priv = devm_kzalloc(&pdev->dev, sizeof(struct spf_core_private), GFP_KERNEL);
  312. if (!spf_core_priv)
  313. return -ENOMEM;
  314. spf_core_priv->dev = &pdev->dev;
  315. mutex_init(&spf_core_priv->lock);
  316. INIT_WORK(&spf_core_priv->add_chld_dev_work, spf_core_add_child_devices);
  317. spf_core_priv->is_initial_boot = true;
  318. ret = gpr_driver_register(&qcom_spf_core_driver);
  319. if (ret) {
  320. pr_err("%s: gpr driver register failed = %d\n",
  321. __func__, ret);
  322. ret = 0;
  323. }
  324. #if 0
  325. ret = snd_event_client_register(&pdev->dev, &gpr_ssr_ops, NULL);
  326. if (ret) {
  327. pr_err("%s: Registration with SND event fwk failed ret = %d\n",
  328. __func__, ret);
  329. ret = 0;
  330. }
  331. #endif
  332. digital_cdc_rsc_mgr_init();
  333. return ret;
  334. }
  335. static int spf_core_platform_driver_remove(struct platform_device *pdev)
  336. {
  337. //snd_event_client_deregister(&pdev->dev);
  338. gpr_driver_unregister(&qcom_spf_core_driver);
  339. spf_core_priv = NULL;
  340. digital_cdc_rsc_mgr_exit();
  341. return 0;
  342. }
  343. static const struct of_device_id spf_core_of_match[] = {
  344. { .compatible = "qcom,spf-core-platform", },
  345. {},
  346. };
  347. static struct platform_driver spf_core_driver = {
  348. .probe = spf_core_platform_driver_probe,
  349. .remove = spf_core_platform_driver_remove,
  350. .driver = {
  351. .name = "spf-core-platform",
  352. .owner = THIS_MODULE,
  353. .of_match_table = spf_core_of_match,
  354. }
  355. };
  356. module_platform_driver(spf_core_driver);
  357. MODULE_DESCRIPTION("q6 core");
  358. MODULE_LICENSE("GPL v2");