gpr-lite.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /* Copyright (c) 2011-2017, 2019-2020 The Linux Foundation. All rights reserved.
  2. * Copyright (c) 2018, Linaro Limited
  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/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/device.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/idr.h>
  18. #include <linux/slab.h>
  19. #include <linux/of_device.h>
  20. #include <ipc/gpr-lite.h>
  21. #include <linux/rpmsg.h>
  22. #include <linux/of.h>
  23. struct gpr {
  24. struct rpmsg_endpoint *ch;
  25. struct device *dev;
  26. spinlock_t svcs_lock;
  27. struct idr svcs_idr;
  28. int dest_domain_id;
  29. };
  30. /**
  31. * gpr_send_pkt() - Send a gpr message from gpr device
  32. *
  33. * @adev: Pointer to previously registered gpr device.
  34. * @pkt: Pointer to gpr packet to send
  35. *
  36. * Return: Will be an negative on packet size on success.
  37. */
  38. int gpr_send_pkt(struct gpr_device *adev, struct gpr_pkt *pkt)
  39. {
  40. struct gpr *gpr = dev_get_drvdata(adev->dev.parent);
  41. struct gpr_hdr *hdr;
  42. unsigned long flags;
  43. uint32_t pkt_size;
  44. int ret;
  45. spin_lock_irqsave(&adev->lock, flags);
  46. hdr = &pkt->hdr;
  47. pkt_size = GPR_PKT_GET_PACKET_BYTE_SIZE(hdr->header);
  48. dev_dbg(gpr->dev, "SVC_ID %d %s packet size %d\n", adev->svc_id, __func__, pkt_size);
  49. ret = rpmsg_trysend(gpr->ch, pkt, pkt_size);
  50. spin_unlock_irqrestore(&adev->lock, flags);
  51. return ret ? ret : pkt_size;
  52. }
  53. EXPORT_SYMBOL_GPL(gpr_send_pkt);
  54. static void gpr_dev_release(struct device *dev)
  55. {
  56. struct gpr_device *adev = to_gpr_device(dev);
  57. kfree(adev);
  58. }
  59. static int gpr_callback(struct rpmsg_device *rpdev, void *buf,
  60. int len, void *priv, u32 addr)
  61. {
  62. struct gpr *gpr = dev_get_drvdata(&rpdev->dev);
  63. uint16_t hdr_size, pkt_size, svc_id;
  64. //uint16_t ver;
  65. struct gpr_device *svc = NULL;
  66. struct gpr_driver *adrv = NULL;
  67. struct gpr_hdr *hdr;
  68. unsigned long flags;
  69. //uint32_t opcode_type;
  70. if (len <= GPR_HDR_SIZE) {
  71. dev_err(gpr->dev, "GPR: Improper gpr pkt received:%p %d\n",
  72. buf, len);
  73. return -EINVAL;
  74. }
  75. hdr = buf;
  76. hdr_size = GPR_PKT_GET_HEADER_BYTE_SIZE(hdr->header);
  77. if (hdr_size < GPR_HDR_SIZE) {
  78. dev_err(gpr->dev, "GPR: Wrong hdr size:%d\n", hdr_size);
  79. return -EINVAL;
  80. }
  81. pkt_size = GPR_PKT_GET_PACKET_BYTE_SIZE(hdr->header);
  82. dev_dbg(gpr->dev,"Header %x", hdr->header);
  83. if (pkt_size < GPR_HDR_SIZE || pkt_size != len) {
  84. dev_err(gpr->dev, "GPR: Wrong packet size\n");
  85. return -EINVAL;
  86. }
  87. dev_dbg(gpr->dev, "%s: dst_port %x hdr_size %d pkt_size %d\n",__func__ , hdr->dst_port, hdr_size, pkt_size);
  88. svc_id = hdr->dst_port;
  89. spin_lock_irqsave(&gpr->svcs_lock, flags);
  90. svc = idr_find(&gpr->svcs_idr, svc_id);
  91. if (svc && svc->dev.driver) {
  92. adrv = to_gpr_driver(svc->dev.driver);
  93. } else {
  94. /*Does not match any SVC ID hence would be routed to audio passthrough*/
  95. svc = idr_find(&gpr->svcs_idr, GPR_SVC_MAX);
  96. if (svc && svc->dev.driver)
  97. adrv = to_gpr_driver(svc->dev.driver);
  98. }
  99. spin_unlock_irqrestore(&gpr->svcs_lock, flags);
  100. if (!adrv) {
  101. dev_err(gpr->dev, "GPR: service is not registered\n");
  102. return -EINVAL;
  103. }
  104. /*
  105. * NOTE: hdr_size is not same as GPR_HDR_SIZE as remote can include
  106. * optional headers in to gpr_hdr which should be ignored
  107. */
  108. adrv->callback(svc, buf);
  109. return 0;
  110. }
  111. static int gpr_device_match(struct device *dev, struct device_driver *drv)
  112. {
  113. struct gpr_device *adev = to_gpr_device(dev);
  114. struct gpr_driver *adrv = to_gpr_driver(drv);
  115. const struct gpr_device_id *id = adrv->id_table;
  116. /* Attempt an OF style match first */
  117. if (of_driver_match_device(dev, drv))
  118. return 1;
  119. if (!id)
  120. return 0;
  121. while (id->domain_id != 0 || id->svc_id != 0) {
  122. if (id->domain_id == adev->domain_id &&
  123. id->svc_id == adev->svc_id)
  124. return 1;
  125. id++;
  126. }
  127. return 0;
  128. }
  129. static int gpr_device_probe(struct device *dev)
  130. {
  131. struct gpr_device *adev = to_gpr_device(dev);
  132. struct gpr_driver *adrv = to_gpr_driver(dev->driver);
  133. return adrv->probe(adev);
  134. }
  135. static int gpr_device_remove(struct device *dev)
  136. {
  137. struct gpr_device *adev = to_gpr_device(dev);
  138. struct gpr_driver *adrv;
  139. struct gpr *gpr = dev_get_drvdata(adev->dev.parent);
  140. if (dev->driver) {
  141. adrv = to_gpr_driver(dev->driver);
  142. if (adrv->remove)
  143. adrv->remove(adev);
  144. spin_lock(&gpr->svcs_lock);
  145. idr_remove(&gpr->svcs_idr, adev->svc_id);
  146. spin_unlock(&gpr->svcs_lock);
  147. }
  148. return 0;
  149. }
  150. static int gpr_uevent(struct device *dev, struct kobj_uevent_env *env)
  151. {
  152. struct gpr_device *adev = to_gpr_device(dev);
  153. int ret;
  154. ret = of_device_uevent_modalias(dev, env);
  155. if (ret != -ENODEV)
  156. return ret;
  157. return add_uevent_var(env, "MODALIAS=gpr:%s", adev->name);
  158. }
  159. struct bus_type gprbus = {
  160. .name = "gprbus",
  161. .match = gpr_device_match,
  162. .probe = gpr_device_probe,
  163. .uevent = gpr_uevent,
  164. .remove = gpr_device_remove,
  165. };
  166. EXPORT_SYMBOL_GPL(gprbus);
  167. static int gpr_add_device(struct device *dev, struct device_node *np,
  168. const struct gpr_device_id *id)
  169. {
  170. struct gpr *gpr = dev_get_drvdata(dev);
  171. struct gpr_device *adev = NULL;
  172. int ret;
  173. adev = kzalloc(sizeof(*adev), GFP_KERNEL);
  174. if (!adev)
  175. return -ENOMEM;
  176. spin_lock_init(&adev->lock);
  177. adev->svc_id = id->svc_id;
  178. adev->domain_id = id->domain_id;
  179. adev->version = id->svc_version;
  180. if (np)
  181. strscpy(adev->name, np->name, GPR_NAME_SIZE);
  182. else
  183. strscpy(adev->name, id->name, GPR_NAME_SIZE);
  184. dev_set_name(&adev->dev, "gprsvc:%s:%x:%x", adev->name,
  185. id->domain_id, id->svc_id);
  186. adev->dev.bus = &gprbus;
  187. adev->dev.parent = dev;
  188. adev->dev.of_node = np;
  189. adev->dev.release = gpr_dev_release;
  190. adev->dev.driver = NULL;
  191. spin_lock(&gpr->svcs_lock);
  192. idr_alloc(&gpr->svcs_idr, adev, id->svc_id,
  193. id->svc_id + 1, GFP_ATOMIC);
  194. spin_unlock(&gpr->svcs_lock);
  195. dev_info(dev, "Adding GPR dev: %s\n", dev_name(&adev->dev));
  196. ret = device_register(&adev->dev);
  197. if (ret) {
  198. dev_err(dev, "device_register failed: %d\n", ret);
  199. put_device(&adev->dev);
  200. }
  201. return ret;
  202. }
  203. static void of_register_gpr_devices(struct device *dev)
  204. {
  205. struct gpr *gpr = dev_get_drvdata(dev);
  206. struct device_node *node;
  207. for_each_child_of_node(dev->of_node, node) {
  208. struct gpr_device_id id = { {0} };
  209. if (of_property_read_u32(node, "reg", &id.svc_id))
  210. continue;
  211. id.domain_id = gpr->dest_domain_id;
  212. if (gpr_add_device(dev, node, &id))
  213. dev_err(dev, "Failed to add gpr %d svc\n", id.svc_id);
  214. }
  215. }
  216. static int gpr_probe(struct rpmsg_device *rpdev)
  217. {
  218. struct device *dev = &rpdev->dev;
  219. struct gpr *gpr;
  220. int ret;
  221. gpr = devm_kzalloc(dev, sizeof(*gpr), GFP_KERNEL);
  222. if (!gpr)
  223. return -ENOMEM;
  224. ret = of_property_read_u32(dev->of_node, "reg", &gpr->dest_domain_id);
  225. if (ret) {
  226. dev_err(dev, "GPR Domain ID not specified in DT\n");
  227. return ret;
  228. }
  229. dev_set_drvdata(dev, gpr);
  230. gpr->ch = rpdev->ept;
  231. gpr->dev = dev;
  232. spin_lock_init(&gpr->svcs_lock);
  233. idr_init(&gpr->svcs_idr);
  234. of_register_gpr_devices(dev);
  235. return 0;
  236. }
  237. static int gpr_remove_device(struct device *dev, void *null)
  238. {
  239. struct gpr_device *adev = to_gpr_device(dev);
  240. device_unregister(&adev->dev);
  241. return 0;
  242. }
  243. static void gpr_remove(struct rpmsg_device *rpdev)
  244. {
  245. device_for_each_child(&rpdev->dev, NULL, gpr_remove_device);
  246. }
  247. /*
  248. * __gpr_driver_register() - Client driver registration with gprbus
  249. *
  250. * @drv:Client driver to be associated with client-device.
  251. * @owner: owning module/driver
  252. *
  253. * This API will register the client driver with the gprbus
  254. * It is called from the driver's module-init function.
  255. */
  256. int __gpr_driver_register(struct gpr_driver *drv, struct module *owner)
  257. {
  258. drv->driver.bus = &gprbus;
  259. drv->driver.owner = owner;
  260. return driver_register(&drv->driver);
  261. }
  262. EXPORT_SYMBOL_GPL(__gpr_driver_register);
  263. /*
  264. * gpr_driver_unregister() - Undo effect of gpr_driver_register
  265. *
  266. * @drv: Client driver to be unregistered
  267. */
  268. void gpr_driver_unregister(struct gpr_driver *drv)
  269. {
  270. driver_unregister(&drv->driver);
  271. }
  272. EXPORT_SYMBOL_GPL(gpr_driver_unregister);
  273. static const struct of_device_id gpr_of_match[] = {
  274. { .compatible = "qcom,gpr"},
  275. {}
  276. };
  277. MODULE_DEVICE_TABLE(of, gpr_of_match);
  278. static struct rpmsg_driver gpr_driver = {
  279. .probe = gpr_probe,
  280. .remove = gpr_remove,
  281. .callback = gpr_callback,
  282. .drv = {
  283. .name = "qcom,gpr",
  284. .of_match_table = gpr_of_match,
  285. },
  286. };
  287. static int __init gpr_init(void)
  288. {
  289. int ret;
  290. ret = bus_register(&gprbus);
  291. if (!ret)
  292. ret = register_rpmsg_driver(&gpr_driver);
  293. else
  294. bus_unregister(&gprbus);
  295. return ret;
  296. }
  297. static void __exit gpr_exit(void)
  298. {
  299. bus_unregister(&gprbus);
  300. unregister_rpmsg_driver(&gpr_driver);
  301. }
  302. subsys_initcall(gpr_init);
  303. module_exit(gpr_exit);
  304. MODULE_LICENSE("GPL v2");
  305. MODULE_DESCRIPTION("QTI GPR Bus");