adsp-loader.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /*
  2. * Copyright (c) 2012-2014, 2017-2018, The Linux Foundation. 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/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/module.h>
  16. #include <linux/err.h>
  17. #include <linux/delay.h>
  18. #include <linux/platform_device.h>
  19. #include <ipc/apr.h>
  20. #include <linux/of_device.h>
  21. #include <linux/sysfs.h>
  22. #include <linux/workqueue.h>
  23. #include <soc/qcom/subsystem_restart.h>
  24. #define Q6_PIL_GET_DELAY_MS 100
  25. #define BOOT_CMD 1
  26. #define SSR_RESET_CMD 1
  27. #define IMAGE_UNLOAD_CMD 0
  28. static ssize_t adsp_boot_store(struct kobject *kobj,
  29. struct kobj_attribute *attr,
  30. const char *buf, size_t count);
  31. static ssize_t adsp_ssr_store(struct kobject *kobj,
  32. struct kobj_attribute *attr,
  33. const char *buf, size_t count);
  34. struct adsp_loader_private {
  35. void *pil_h;
  36. struct kobject *boot_adsp_obj;
  37. struct attribute_group *attr_group;
  38. };
  39. static struct kobj_attribute adsp_boot_attribute =
  40. __ATTR(boot, 0220, NULL, adsp_boot_store);
  41. static struct kobj_attribute adsp_ssr_attribute =
  42. __ATTR(ssr, 0220, NULL, adsp_ssr_store);
  43. static struct attribute *attrs[] = {
  44. &adsp_boot_attribute.attr,
  45. &adsp_ssr_attribute.attr,
  46. NULL,
  47. };
  48. static struct work_struct adsp_ldr_work;
  49. static struct platform_device *adsp_private;
  50. static void adsp_loader_unload(struct platform_device *pdev);
  51. static void adsp_load_fw(struct work_struct *adsp_ldr_work)
  52. {
  53. struct platform_device *pdev = adsp_private;
  54. struct adsp_loader_private *priv = NULL;
  55. const char *adsp_dt = "qcom,adsp-state";
  56. int rc = 0;
  57. u32 adsp_state;
  58. const char *img_name;
  59. if (!pdev) {
  60. dev_err(&pdev->dev, "%s: Platform device null\n", __func__);
  61. goto fail;
  62. }
  63. if (!pdev->dev.of_node) {
  64. dev_err(&pdev->dev,
  65. "%s: Device tree information missing\n", __func__);
  66. goto fail;
  67. }
  68. rc = of_property_read_u32(pdev->dev.of_node, adsp_dt, &adsp_state);
  69. if (rc) {
  70. dev_err(&pdev->dev,
  71. "%s: ADSP state = %x\n", __func__, adsp_state);
  72. goto fail;
  73. }
  74. rc = of_property_read_string(pdev->dev.of_node,
  75. "qcom,proc-img-to-load",
  76. &img_name);
  77. if (rc) {
  78. dev_dbg(&pdev->dev,
  79. "%s: loading default image ADSP\n", __func__);
  80. goto load_adsp;
  81. }
  82. if (!strcmp(img_name, "modem")) {
  83. /* adsp_state always returns "0". So load modem image based on
  84. * apr_modem_state to prevent loading of image twice
  85. */
  86. adsp_state = apr_get_modem_state();
  87. if (adsp_state == APR_SUBSYS_DOWN) {
  88. priv = platform_get_drvdata(pdev);
  89. if (!priv) {
  90. dev_err(&pdev->dev,
  91. " %s: Private data get failed\n", __func__);
  92. goto fail;
  93. }
  94. priv->pil_h = subsystem_get("modem");
  95. if (IS_ERR(priv->pil_h)) {
  96. dev_err(&pdev->dev, "%s: pil get failed,\n",
  97. __func__);
  98. goto fail;
  99. }
  100. /* Set the state of the ADSP in APR driver */
  101. apr_set_modem_state(APR_SUBSYS_LOADED);
  102. } else if (adsp_state == APR_SUBSYS_LOADED) {
  103. dev_dbg(&pdev->dev,
  104. "%s: MDSP state = %x\n", __func__, adsp_state);
  105. }
  106. dev_dbg(&pdev->dev, "%s: Q6/MDSP image is loaded\n", __func__);
  107. return;
  108. }
  109. load_adsp:
  110. {
  111. adsp_state = apr_get_q6_state();
  112. if (adsp_state == APR_SUBSYS_DOWN) {
  113. priv = platform_get_drvdata(pdev);
  114. if (!priv) {
  115. dev_err(&pdev->dev,
  116. " %s: Private data get failed\n", __func__);
  117. goto fail;
  118. }
  119. priv->pil_h = subsystem_get("adsp");
  120. if (IS_ERR(priv->pil_h)) {
  121. dev_err(&pdev->dev, "%s: pil get failed,\n",
  122. __func__);
  123. goto fail;
  124. }
  125. } else if (adsp_state == APR_SUBSYS_LOADED) {
  126. dev_dbg(&pdev->dev,
  127. "%s: ADSP state = %x\n", __func__, adsp_state);
  128. }
  129. dev_dbg(&pdev->dev, "%s: Q6/ADSP image is loaded\n", __func__);
  130. return;
  131. }
  132. fail:
  133. dev_err(&pdev->dev, "%s: Q6 image loading failed\n", __func__);
  134. }
  135. static void adsp_loader_do(struct platform_device *pdev)
  136. {
  137. schedule_work(&adsp_ldr_work);
  138. }
  139. static ssize_t adsp_ssr_store(struct kobject *kobj,
  140. struct kobj_attribute *attr,
  141. const char *buf,
  142. size_t count)
  143. {
  144. int ssr_command = 0;
  145. struct subsys_device *adsp_dev = NULL;
  146. struct platform_device *pdev = adsp_private;
  147. struct adsp_loader_private *priv = NULL;
  148. int rc;
  149. dev_dbg(&pdev->dev, "%s: going to call adsp ssr\n ", __func__);
  150. if (kstrtoint(buf, 10, &ssr_command) < 0)
  151. return -EINVAL;
  152. if (ssr_command != SSR_RESET_CMD)
  153. return -EINVAL;
  154. priv = platform_get_drvdata(pdev);
  155. if (!priv)
  156. return -EINVAL;
  157. adsp_dev = (struct subsys_device *)priv->pil_h;
  158. if (!adsp_dev)
  159. return -EINVAL;
  160. dev_err(&pdev->dev, "requesting for ADSP restart\n");
  161. /* subsystem_restart_dev has worker queue to handle */
  162. rc = subsystem_restart_dev(adsp_dev);
  163. if (rc) {
  164. dev_err(&pdev->dev, "subsystem_restart_dev failed\n");
  165. return rc;
  166. }
  167. dev_dbg(&pdev->dev, "ADSP restarted\n");
  168. return count;
  169. }
  170. static ssize_t adsp_boot_store(struct kobject *kobj,
  171. struct kobj_attribute *attr,
  172. const char *buf,
  173. size_t count)
  174. {
  175. int boot = 0;
  176. if (sscanf(buf, "%du", &boot) != 1) {
  177. pr_err("%s: failed to read boot info from string\n", __func__);
  178. return -EINVAL;
  179. }
  180. if (boot == BOOT_CMD) {
  181. pr_debug("%s: going to call adsp_loader_do\n", __func__);
  182. adsp_loader_do(adsp_private);
  183. } else if (boot == IMAGE_UNLOAD_CMD) {
  184. pr_debug("%s: going to call adsp_unloader\n", __func__);
  185. adsp_loader_unload(adsp_private);
  186. }
  187. return count;
  188. }
  189. static void adsp_loader_unload(struct platform_device *pdev)
  190. {
  191. struct adsp_loader_private *priv = NULL;
  192. priv = platform_get_drvdata(pdev);
  193. if (!priv)
  194. return;
  195. if (priv->pil_h) {
  196. dev_dbg(&pdev->dev, "%s: calling subsystem put\n", __func__);
  197. subsystem_put(priv->pil_h);
  198. priv->pil_h = NULL;
  199. }
  200. }
  201. static int adsp_loader_init_sysfs(struct platform_device *pdev)
  202. {
  203. int ret = -EINVAL;
  204. struct adsp_loader_private *priv = NULL;
  205. adsp_private = NULL;
  206. priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
  207. if (!priv) {
  208. ret = -ENOMEM;
  209. return ret;
  210. }
  211. platform_set_drvdata(pdev, priv);
  212. priv->pil_h = NULL;
  213. priv->boot_adsp_obj = NULL;
  214. priv->attr_group = devm_kzalloc(&pdev->dev,
  215. sizeof(*(priv->attr_group)),
  216. GFP_KERNEL);
  217. if (!priv->attr_group) {
  218. ret = -ENOMEM;
  219. goto error_return;
  220. }
  221. priv->attr_group->attrs = attrs;
  222. priv->boot_adsp_obj = kobject_create_and_add("boot_adsp", kernel_kobj);
  223. if (!priv->boot_adsp_obj) {
  224. dev_err(&pdev->dev, "%s: sysfs create and add failed\n",
  225. __func__);
  226. ret = -ENOMEM;
  227. goto error_return;
  228. }
  229. ret = sysfs_create_group(priv->boot_adsp_obj, priv->attr_group);
  230. if (ret) {
  231. dev_err(&pdev->dev, "%s: sysfs create group failed %d\n",
  232. __func__, ret);
  233. goto error_return;
  234. }
  235. adsp_private = pdev;
  236. return 0;
  237. error_return:
  238. if (priv->boot_adsp_obj) {
  239. kobject_del(priv->boot_adsp_obj);
  240. priv->boot_adsp_obj = NULL;
  241. }
  242. return ret;
  243. }
  244. static int adsp_loader_remove(struct platform_device *pdev)
  245. {
  246. struct adsp_loader_private *priv = NULL;
  247. priv = platform_get_drvdata(pdev);
  248. if (!priv)
  249. return 0;
  250. if (priv->pil_h) {
  251. subsystem_put(priv->pil_h);
  252. priv->pil_h = NULL;
  253. }
  254. if (priv->boot_adsp_obj) {
  255. sysfs_remove_group(priv->boot_adsp_obj, priv->attr_group);
  256. kobject_del(priv->boot_adsp_obj);
  257. priv->boot_adsp_obj = NULL;
  258. }
  259. return 0;
  260. }
  261. static int adsp_loader_probe(struct platform_device *pdev)
  262. {
  263. int ret = adsp_loader_init_sysfs(pdev);
  264. if (ret != 0) {
  265. dev_err(&pdev->dev, "%s: Error in initing sysfs\n", __func__);
  266. return ret;
  267. }
  268. INIT_WORK(&adsp_ldr_work, adsp_load_fw);
  269. return 0;
  270. }
  271. static const struct of_device_id adsp_loader_dt_match[] = {
  272. { .compatible = "qcom,adsp-loader" },
  273. { }
  274. };
  275. MODULE_DEVICE_TABLE(of, adsp_loader_dt_match);
  276. static struct platform_driver adsp_loader_driver = {
  277. .driver = {
  278. .name = "adsp-loader",
  279. .owner = THIS_MODULE,
  280. .of_match_table = adsp_loader_dt_match,
  281. },
  282. .probe = adsp_loader_probe,
  283. .remove = adsp_loader_remove,
  284. };
  285. static int __init adsp_loader_init(void)
  286. {
  287. return platform_driver_register(&adsp_loader_driver);
  288. }
  289. module_init(adsp_loader_init);
  290. static void __exit adsp_loader_exit(void)
  291. {
  292. platform_driver_unregister(&adsp_loader_driver);
  293. }
  294. module_exit(adsp_loader_exit);
  295. MODULE_DESCRIPTION("ADSP Loader module");
  296. MODULE_LICENSE("GPL v2");