1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
7 #include <linux/mod_devicetable.h>
8 #include <linux/module.h>
9 #include <linux/skbuff.h>
15 struct qrtr_endpoint ep;
16 struct mhi_device *mhi_dev;
18 struct completion ready;
21 /* From MHI to QRTR */
22 static void qcom_mhi_qrtr_dl_callback(struct mhi_device *mhi_dev,
23 struct mhi_result *mhi_res)
25 struct qrtr_mhi_dev *qdev = dev_get_drvdata(&mhi_dev->dev);
28 if (!qdev || mhi_res->transaction_status)
31 rc = qrtr_endpoint_post(&qdev->ep, mhi_res->buf_addr,
32 mhi_res->bytes_xferd);
34 dev_err(qdev->dev, "invalid ipcrouter packet\n");
37 /* From QRTR to MHI */
38 static void qcom_mhi_qrtr_ul_callback(struct mhi_device *mhi_dev,
39 struct mhi_result *mhi_res)
41 struct sk_buff *skb = mhi_res->buf_addr;
48 /* Send data over MHI */
49 static int qcom_mhi_qrtr_send(struct qrtr_endpoint *ep, struct sk_buff *skb)
51 struct qrtr_mhi_dev *qdev = container_of(ep, struct qrtr_mhi_dev, ep);
54 rc = wait_for_completion_interruptible(&qdev->ready);
61 rc = skb_linearize(skb);
65 rc = mhi_queue_skb(qdev->mhi_dev, DMA_TO_DEVICE, skb, skb->len,
80 static int qcom_mhi_qrtr_probe(struct mhi_device *mhi_dev,
81 const struct mhi_device_id *id)
83 struct qrtr_mhi_dev *qdev;
87 rc = mhi_prepare_for_transfer(mhi_dev, 0);
91 qdev = devm_kzalloc(&mhi_dev->dev, sizeof(*qdev), GFP_KERNEL);
95 qdev->mhi_dev = mhi_dev;
96 qdev->dev = &mhi_dev->dev;
97 qdev->ep.xmit = qcom_mhi_qrtr_send;
99 dev_set_drvdata(&mhi_dev->dev, qdev);
100 rc = qrtr_endpoint_register(&qdev->ep, QRTR_EP_NID_AUTO);
105 rc = mhi_prepare_for_transfer(mhi_dev, MHI_CH_INBOUND_ALLOC_BUFS);
107 qrtr_endpoint_unregister(&qdev->ep);
108 dev_set_drvdata(&mhi_dev->dev, NULL);
112 complete_all(&qdev->ready);
113 dev_dbg(qdev->dev, "Qualcomm MHI QRTR driver probed\n");
118 static void qcom_mhi_qrtr_remove(struct mhi_device *mhi_dev)
120 struct qrtr_mhi_dev *qdev = dev_get_drvdata(&mhi_dev->dev);
122 qrtr_endpoint_unregister(&qdev->ep);
123 mhi_unprepare_from_transfer(mhi_dev);
124 dev_set_drvdata(&mhi_dev->dev, NULL);
127 static const struct mhi_device_id qcom_mhi_qrtr_id_table[] = {
131 MODULE_DEVICE_TABLE(mhi, qcom_mhi_qrtr_id_table);
133 static struct mhi_driver qcom_mhi_qrtr_driver = {
134 .probe = qcom_mhi_qrtr_probe,
135 .remove = qcom_mhi_qrtr_remove,
136 .dl_xfer_cb = qcom_mhi_qrtr_dl_callback,
137 .ul_xfer_cb = qcom_mhi_qrtr_ul_callback,
138 .id_table = qcom_mhi_qrtr_id_table,
140 .name = "qcom_mhi_qrtr",
144 module_mhi_driver(qcom_mhi_qrtr_driver);
148 MODULE_DESCRIPTION("Qualcomm IPC-Router MHI interface driver");
149 MODULE_LICENSE("GPL v2");