1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, Sony Mobile Communications AB.
4 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
7 #include <linux/module.h>
8 #include <linux/platform_device.h>
9 #include <linux/of_platform.h>
11 #include <linux/interrupt.h>
12 #include <linux/slab.h>
14 #include <linux/rpmsg.h>
15 #include <linux/soc/qcom/smd-rpm.h>
17 #define RPM_REQUEST_TIMEOUT (5 * HZ)
20 * struct qcom_smd_rpm - state of the rpm device driver
21 * @rpm_channel: reference to the smd channel
22 * @icc: interconnect proxy device
23 * @ack: completion for acks
24 * @lock: mutual exclusion around the send/complete pair
25 * @ack_status: result of the rpm request
28 struct rpmsg_endpoint
*rpm_channel
;
29 struct platform_device
*icc
;
32 struct completion ack
;
38 * struct qcom_rpm_header - header for all rpm requests and responses
39 * @service_type: identifier of the service
40 * @length: length of the payload
42 struct qcom_rpm_header
{
48 * struct qcom_rpm_request - request message to the rpm
49 * @msg_id: identifier of the outgoing message
50 * @flags: active/sleep state flags
51 * @type: resource type
53 * @data_len: length of the payload following this header
55 struct qcom_rpm_request
{
64 * struct qcom_rpm_message - response message from the rpm
65 * @msg_type: indicator of the type of message
66 * @length: the size of this message, including the message header
68 * @message: textual message from the rpm
70 * Multiple of these messages can be stacked in an rpm message.
72 struct qcom_rpm_message
{
81 #define RPM_SERVICE_TYPE_REQUEST 0x00716572 /* "req\0" */
83 #define RPM_MSG_TYPE_ERR 0x00727265 /* "err\0" */
84 #define RPM_MSG_TYPE_MSG_ID 0x2367736d /* "msg#" */
87 * qcom_rpm_smd_write - write @buf to @type:@id
89 * @type: resource type
90 * @id: resource identifier
91 * @buf: the data to be written
92 * @count: number of bytes in @buf
94 int qcom_rpm_smd_write(struct qcom_smd_rpm
*rpm
,
100 static unsigned msg_id
= 1;
104 struct qcom_rpm_header hdr
;
105 struct qcom_rpm_request req
;
108 size_t size
= sizeof(*pkt
) + count
;
110 /* SMD packets to the RPM may not exceed 256 bytes */
111 if (WARN_ON(size
>= 256))
114 pkt
= kmalloc(size
, GFP_KERNEL
);
118 mutex_lock(&rpm
->lock
);
120 pkt
->hdr
.service_type
= cpu_to_le32(RPM_SERVICE_TYPE_REQUEST
);
121 pkt
->hdr
.length
= cpu_to_le32(sizeof(struct qcom_rpm_request
) + count
);
123 pkt
->req
.msg_id
= cpu_to_le32(msg_id
++);
124 pkt
->req
.flags
= cpu_to_le32(state
);
125 pkt
->req
.type
= cpu_to_le32(type
);
126 pkt
->req
.id
= cpu_to_le32(id
);
127 pkt
->req
.data_len
= cpu_to_le32(count
);
128 memcpy(pkt
->payload
, buf
, count
);
130 ret
= rpmsg_send(rpm
->rpm_channel
, pkt
, size
);
134 left
= wait_for_completion_timeout(&rpm
->ack
, RPM_REQUEST_TIMEOUT
);
138 ret
= rpm
->ack_status
;
142 mutex_unlock(&rpm
->lock
);
145 EXPORT_SYMBOL(qcom_rpm_smd_write
);
147 static int qcom_smd_rpm_callback(struct rpmsg_device
*rpdev
,
153 const struct qcom_rpm_header
*hdr
= data
;
154 size_t hdr_length
= le32_to_cpu(hdr
->length
);
155 const struct qcom_rpm_message
*msg
;
156 struct qcom_smd_rpm
*rpm
= dev_get_drvdata(&rpdev
->dev
);
157 const u8
*buf
= data
+ sizeof(struct qcom_rpm_header
);
158 const u8
*end
= buf
+ hdr_length
;
163 if (le32_to_cpu(hdr
->service_type
) != RPM_SERVICE_TYPE_REQUEST
||
164 hdr_length
< sizeof(struct qcom_rpm_message
)) {
165 dev_err(rpm
->dev
, "invalid request\n");
170 msg
= (struct qcom_rpm_message
*)buf
;
171 msg_length
= le32_to_cpu(msg
->length
);
172 switch (le32_to_cpu(msg
->msg_type
)) {
173 case RPM_MSG_TYPE_MSG_ID
:
175 case RPM_MSG_TYPE_ERR
:
176 len
= min_t(u32
, ALIGN(msg_length
, 4), sizeof(msgbuf
));
177 memcpy_fromio(msgbuf
, msg
->message
, len
);
180 if (!strcmp(msgbuf
, "resource does not exist"))
187 buf
= PTR_ALIGN(buf
+ 2 * sizeof(u32
) + msg_length
, 4);
190 rpm
->ack_status
= status
;
195 static int qcom_smd_rpm_probe(struct rpmsg_device
*rpdev
)
197 struct qcom_smd_rpm
*rpm
;
200 rpm
= devm_kzalloc(&rpdev
->dev
, sizeof(*rpm
), GFP_KERNEL
);
204 mutex_init(&rpm
->lock
);
205 init_completion(&rpm
->ack
);
207 rpm
->dev
= &rpdev
->dev
;
208 rpm
->rpm_channel
= rpdev
->ept
;
209 dev_set_drvdata(&rpdev
->dev
, rpm
);
211 rpm
->icc
= platform_device_register_data(&rpdev
->dev
, "icc_smd_rpm", -1,
213 if (IS_ERR(rpm
->icc
))
214 return PTR_ERR(rpm
->icc
);
216 ret
= of_platform_populate(rpdev
->dev
.of_node
, NULL
, NULL
, &rpdev
->dev
);
218 platform_device_unregister(rpm
->icc
);
223 static void qcom_smd_rpm_remove(struct rpmsg_device
*rpdev
)
225 struct qcom_smd_rpm
*rpm
= dev_get_drvdata(&rpdev
->dev
);
227 platform_device_unregister(rpm
->icc
);
228 of_platform_depopulate(&rpdev
->dev
);
231 static const struct of_device_id qcom_smd_rpm_of_match
[] = {
232 { .compatible
= "qcom,rpm-apq8084" },
233 { .compatible
= "qcom,rpm-msm8916" },
234 { .compatible
= "qcom,rpm-msm8974" },
235 { .compatible
= "qcom,rpm-msm8976" },
236 { .compatible
= "qcom,rpm-msm8996" },
237 { .compatible
= "qcom,rpm-msm8998" },
238 { .compatible
= "qcom,rpm-sdm660" },
239 { .compatible
= "qcom,rpm-qcs404" },
242 MODULE_DEVICE_TABLE(of
, qcom_smd_rpm_of_match
);
244 static struct rpmsg_driver qcom_smd_rpm_driver
= {
245 .probe
= qcom_smd_rpm_probe
,
246 .remove
= qcom_smd_rpm_remove
,
247 .callback
= qcom_smd_rpm_callback
,
249 .name
= "qcom_smd_rpm",
250 .of_match_table
= qcom_smd_rpm_of_match
,
254 static int __init
qcom_smd_rpm_init(void)
256 return register_rpmsg_driver(&qcom_smd_rpm_driver
);
258 arch_initcall(qcom_smd_rpm_init
);
260 static void __exit
qcom_smd_rpm_exit(void)
262 unregister_rpmsg_driver(&qcom_smd_rpm_driver
);
264 module_exit(qcom_smd_rpm_exit
);
266 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@sonymobile.com>");
267 MODULE_DESCRIPTION("Qualcomm SMD backed RPM driver");
268 MODULE_LICENSE("GPL v2");