tmecom.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/kernel.h>
  7. #include <linux/init.h>
  8. #include <linux/mailbox_client.h>
  9. #include <linux/seq_file.h>
  10. #include <linux/debugfs.h>
  11. #include <linux/platform_device.h>
  12. #include <linux/mailbox/qmp.h>
  13. #include <linux/uaccess.h>
  14. #include <linux/mailbox_controller.h>
  15. #include "tmecom.h"
  16. struct tmecom {
  17. struct device *dev;
  18. struct mbox_client cl;
  19. struct mbox_chan *chan;
  20. struct mutex lock;
  21. struct qmp_pkt pkt;
  22. wait_queue_head_t waitq;
  23. void *txbuf;
  24. bool rx_done;
  25. };
  26. #if IS_ENABLED(CONFIG_DEBUG_FS)
  27. #include <linux/tme_hwkm_master_defs.h>
  28. #include <linux/tme_hwkm_master.h>
  29. char dpkt[MBOX_MAX_MSG_LEN + 1];
  30. struct dentry *debugfs_file;
  31. #endif /* CONFIG_DEBUG_FS */
  32. static struct tmecom *tmedev;
  33. /**
  34. * tmecom_msg_hdr - Request/Response message header between HLOS and TME.
  35. *
  36. * This header is proceeding any request specific parameters.
  37. * The transaction id is used to match request with response.
  38. *
  39. * Note: glink/QMP layer provides the rx/tx data size, so user payload size
  40. * is calculated by reducing the header size.
  41. */
  42. struct tmecom_msg_hdr {
  43. unsigned int reserved; /* for future use */
  44. unsigned int txnid; /* transaction id */
  45. } __packed;
  46. #define TMECOM_TX_HDR_SIZE sizeof(struct tmecom_msg_hdr)
  47. #define CBOR_NUM_BYTES (sizeof(unsigned int))
  48. #define TMECOM_RX_HDR_SIZE (TMECOM_TX_HDR_SIZE + CBOR_NUM_BYTES)
  49. /*
  50. * CBOR encode emulation
  51. * Prepend tmecom_msg_hdr space
  52. * CBOR tag is prepended in request
  53. */
  54. static inline size_t tmecom_encode(struct tmecom *tdev, const void *reqbuf,
  55. size_t size)
  56. {
  57. unsigned int *msg = tdev->txbuf + TMECOM_TX_HDR_SIZE;
  58. unsigned int *src = (unsigned int *)reqbuf;
  59. memcpy(msg, src, size);
  60. return (size + TMECOM_TX_HDR_SIZE);
  61. }
  62. /*
  63. * CBOR decode emulation
  64. * Strip tmecom_msg_hdr & CBOR tag
  65. */
  66. static inline size_t tmecom_decode(struct tmecom *tdev, void *respbuf)
  67. {
  68. unsigned int *msg = tdev->pkt.data + TMECOM_RX_HDR_SIZE;
  69. unsigned int *rbuf = (unsigned int *)respbuf;
  70. memcpy(rbuf, msg, (tdev->pkt.size - TMECOM_RX_HDR_SIZE));
  71. return (tdev->pkt.size - TMECOM_RX_HDR_SIZE);
  72. }
  73. static bool tmecom_check_rx_done(struct tmecom *tdev)
  74. {
  75. return tdev->rx_done;
  76. }
  77. int tmecom_process_request(const void *reqbuf, size_t reqsize, void *respbuf,
  78. size_t *respsize)
  79. {
  80. struct tmecom *tdev = tmedev;
  81. long time_left = 0;
  82. int ret = 0;
  83. /*
  84. * Check to handle if probe is not successful or not completed yet
  85. */
  86. if (!tdev) {
  87. pr_err("%s: tmecom dev is NULL\n", __func__);
  88. return -ENODEV;
  89. }
  90. if (!reqbuf || !reqsize || (reqsize > MBOX_MAX_MSG_LEN)) {
  91. dev_err(tdev->dev, "invalid reqbuf or reqsize\n");
  92. return -EINVAL;
  93. }
  94. if (!respbuf || !respsize || (*respsize > MBOX_MAX_MSG_LEN)) {
  95. dev_err(tdev->dev, "invalid respbuf or respsize\n");
  96. return -EINVAL;
  97. }
  98. mutex_lock(&tdev->lock);
  99. tdev->rx_done = false;
  100. tdev->pkt.size = tmecom_encode(tdev, reqbuf, reqsize);
  101. /*
  102. * Controller expects a 4 byte aligned buffer
  103. */
  104. tdev->pkt.size = (tdev->pkt.size + 0x3) & ~0x3;
  105. tdev->pkt.data = tdev->txbuf;
  106. pr_debug("tmecom encoded request size = %u\n", tdev->pkt.size);
  107. print_hex_dump_bytes("tmecom sending bytes : ",
  108. DUMP_PREFIX_ADDRESS, tdev->pkt.data, tdev->pkt.size);
  109. if (mbox_send_message(tdev->chan, &tdev->pkt) < 0) {
  110. dev_err(tdev->dev, "failed to send qmp message\n");
  111. ret = -EAGAIN;
  112. goto err_exit;
  113. }
  114. time_left = wait_event_interruptible_timeout(tdev->waitq,
  115. tmecom_check_rx_done(tdev), tdev->cl.tx_tout);
  116. if (!time_left) {
  117. dev_err(tdev->dev, "request timed out\n");
  118. ret = -ETIMEDOUT;
  119. goto err_exit;
  120. }
  121. dev_info(tdev->dev, "response received\n");
  122. pr_debug("tmecom received size = %u\n", tdev->pkt.size);
  123. print_hex_dump_bytes("tmecom received bytes : ",
  124. DUMP_PREFIX_ADDRESS, tdev->pkt.data, tdev->pkt.size);
  125. *respsize = tmecom_decode(tdev, respbuf);
  126. tdev->rx_done = false;
  127. ret = 0;
  128. err_exit:
  129. mutex_unlock(&tdev->lock);
  130. return ret;
  131. }
  132. EXPORT_SYMBOL(tmecom_process_request);
  133. #if IS_ENABLED(CONFIG_DEBUG_FS)
  134. static ssize_t tmecom_debugfs_write(struct file *file,
  135. const char __user *userstr, size_t len, loff_t *pos)
  136. {
  137. int ret = 0;
  138. size_t rxlen = 0;
  139. struct tme_ext_err_info *err_info = (struct tme_ext_err_info *)dpkt;
  140. if (!len || (len > MBOX_MAX_MSG_LEN)) {
  141. pr_err("invalid message length\n");
  142. return -EINVAL;
  143. }
  144. memset(dpkt, 0, sizeof(*dpkt));
  145. ret = copy_from_user(dpkt, userstr, len);
  146. if (ret) {
  147. pr_err("%s copy from user failed, ret=%d\n", __func__, ret);
  148. return len;
  149. }
  150. tmecom_process_request(dpkt, len, dpkt, &rxlen);
  151. print_hex_dump_bytes("tmecom decoded bytes : ",
  152. DUMP_PREFIX_ADDRESS, dpkt, rxlen);
  153. pr_debug("calling TME_HWKM_CMD_BROADCAST_TP_KEY api\n");
  154. ret = tme_hwkm_master_broadcast_transportkey(err_info);
  155. if (ret == 0)
  156. pr_debug("%s successful\n", __func__);
  157. return len;
  158. }
  159. static const struct file_operations tmecom_debugfs_ops = {
  160. .open = simple_open,
  161. .write = tmecom_debugfs_write,
  162. };
  163. #endif /* CONFIG_DEBUG_FS */
  164. static void tmecom_receive_message(struct mbox_client *client, void *message)
  165. {
  166. struct tmecom *tdev = dev_get_drvdata(client->dev);
  167. struct qmp_pkt *pkt = NULL;
  168. pr_debug("%s entered\n", __func__);
  169. if (!message) {
  170. dev_err(tdev->dev, "spurious message received\n");
  171. goto tmecom_receive_end;
  172. }
  173. if (tdev->rx_done) {
  174. dev_err(tdev->dev, "tmecom response pending\n");
  175. goto tmecom_receive_end;
  176. }
  177. pkt = (struct qmp_pkt *)message;
  178. tdev->pkt.size = pkt->size;
  179. tdev->pkt.data = pkt->data;
  180. tdev->rx_done = true;
  181. tmecom_receive_end:
  182. wake_up_interruptible(&tdev->waitq);
  183. }
  184. static int tmecom_probe(struct platform_device *pdev)
  185. {
  186. struct tmecom *tdev;
  187. const char *label;
  188. char name[32];
  189. tdev = devm_kzalloc(&pdev->dev, sizeof(*tdev), GFP_KERNEL);
  190. if (!tdev)
  191. return -ENOMEM;
  192. tdev->cl.dev = &pdev->dev;
  193. tdev->cl.tx_block = true;
  194. tdev->cl.tx_tout = 500;
  195. tdev->cl.knows_txdone = false;
  196. tdev->cl.rx_callback = tmecom_receive_message;
  197. label = of_get_property(pdev->dev.of_node, "mbox-names", NULL);
  198. if (!label)
  199. return -EINVAL;
  200. snprintf(name, 32, "%s_send_message", label);
  201. tdev->chan = mbox_request_channel(&tdev->cl, 0);
  202. if (IS_ERR(tdev->chan)) {
  203. dev_err(&pdev->dev, "failed to get mbox channel\n");
  204. return PTR_ERR(tdev->chan);
  205. }
  206. mutex_init(&tdev->lock);
  207. if (tdev->chan) {
  208. tdev->txbuf =
  209. devm_kzalloc(&pdev->dev, MBOX_MAX_MSG_LEN, GFP_KERNEL);
  210. if (!tdev->txbuf) {
  211. dev_err(&pdev->dev, "message buffer alloc faile\n");
  212. return -ENOMEM;
  213. }
  214. }
  215. init_waitqueue_head(&tdev->waitq);
  216. #if IS_ENABLED(CONFIG_DEBUG_FS)
  217. debugfs_file = debugfs_create_file(name, 0220, NULL, tdev,
  218. &tmecom_debugfs_ops);
  219. if (!debugfs_file)
  220. goto err;
  221. #endif /* CONFIG_DEBUG_FS */
  222. tdev->rx_done = false;
  223. tdev->dev = &pdev->dev;
  224. dev_set_drvdata(&pdev->dev, tdev);
  225. tmedev = tdev;
  226. dev_info(&pdev->dev, "tmecom probe success\n");
  227. return 0;
  228. err:
  229. mbox_free_channel(tdev->chan);
  230. return -ENOMEM;
  231. }
  232. static int tmecom_remove(struct platform_device *pdev)
  233. {
  234. struct tmecom *tdev = platform_get_drvdata(pdev);
  235. #if IS_ENABLED(CONFIG_DEBUG_FS)
  236. debugfs_remove(debugfs_file);
  237. #endif /* CONFIG_DEBUG_FS */
  238. if (tdev->chan)
  239. mbox_free_channel(tdev->chan);
  240. dev_info(&pdev->dev, "tmecom remove success\n");
  241. return 0;
  242. }
  243. static const struct of_device_id tmecom_match_tbl[] = {
  244. {.compatible = "qcom,tmecom-qmp-client"},
  245. {},
  246. };
  247. static struct platform_driver tmecom_driver = {
  248. .probe = tmecom_probe,
  249. .remove = tmecom_remove,
  250. .driver = {
  251. .name = "tmecom-qmp-client",
  252. .suppress_bind_attrs = true,
  253. .of_match_table = tmecom_match_tbl,
  254. },
  255. };
  256. module_platform_driver(tmecom_driver);
  257. MODULE_DESCRIPTION("MSM TMECom QTI mailbox protocol client");
  258. MODULE_LICENSE("GPL v2");