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
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
;
31 struct completion ack
;
37 * struct qcom_rpm_header - header for all rpm requests and responses
38 * @service_type: identifier of the service
39 * @length: length of the payload
41 struct qcom_rpm_header
{
47 * struct qcom_rpm_request - request message to the rpm
48 * @msg_id: identifier of the outgoing message
49 * @flags: active/sleep state flags
50 * @type: resource type
52 * @data_len: length of the payload following this header
54 struct qcom_rpm_request
{
63 * struct qcom_rpm_message - response message from the rpm
64 * @msg_type: indicator of the type of message
65 * @length: the size of this message, including the message header
67 * @message: textual message from the rpm
69 * Multiple of these messages can be stacked in an rpm message.
71 struct qcom_rpm_message
{
76 DECLARE_FLEX_ARRAY(u8
, message
);
80 #define RPM_SERVICE_TYPE_REQUEST 0x00716572 /* "req\0" */
82 #define RPM_MSG_TYPE_ERR 0x00727265 /* "err\0" */
83 #define RPM_MSG_TYPE_MSG_ID 0x2367736d /* "msg#" */
86 * qcom_rpm_smd_write - write @buf to @type:@id
88 * @state: active/sleep state flags
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_ATOMIC
);
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_GPL(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
;
199 rpm
= devm_kzalloc(&rpdev
->dev
, sizeof(*rpm
), GFP_KERNEL
);
203 mutex_init(&rpm
->lock
);
204 init_completion(&rpm
->ack
);
206 rpm
->dev
= &rpdev
->dev
;
207 rpm
->rpm_channel
= rpdev
->ept
;
208 dev_set_drvdata(&rpdev
->dev
, rpm
);
210 return of_platform_populate(rpdev
->dev
.of_node
, NULL
, NULL
, &rpdev
->dev
);
213 static void qcom_smd_rpm_remove(struct rpmsg_device
*rpdev
)
215 of_platform_depopulate(&rpdev
->dev
);
218 static const struct of_device_id qcom_smd_rpm_of_match
[] = {
219 { .compatible
= "qcom,glink-smd-rpm" },
220 { .compatible
= "qcom,smd-rpm" },
222 * Don't add any more compatibles to the list, two previous entryes
223 * should match all defined devices.
225 { .compatible
= "qcom,rpm-apq8084" },
226 { .compatible
= "qcom,rpm-ipq6018" },
227 { .compatible
= "qcom,rpm-ipq9574" },
228 { .compatible
= "qcom,rpm-msm8226" },
229 { .compatible
= "qcom,rpm-msm8909" },
230 { .compatible
= "qcom,rpm-msm8916" },
231 { .compatible
= "qcom,rpm-msm8936" },
232 { .compatible
= "qcom,rpm-msm8953" },
233 { .compatible
= "qcom,rpm-msm8974" },
234 { .compatible
= "qcom,rpm-msm8976" },
235 { .compatible
= "qcom,rpm-msm8994" },
236 { .compatible
= "qcom,rpm-msm8996" },
237 { .compatible
= "qcom,rpm-msm8998" },
238 { .compatible
= "qcom,rpm-sdm660" },
239 { .compatible
= "qcom,rpm-sm6115" },
240 { .compatible
= "qcom,rpm-sm6125" },
241 { .compatible
= "qcom,rpm-sm6375" },
242 { .compatible
= "qcom,rpm-qcm2290" },
243 { .compatible
= "qcom,rpm-qcs404" },
246 MODULE_DEVICE_TABLE(of
, qcom_smd_rpm_of_match
);
248 static struct rpmsg_driver qcom_smd_rpm_driver
= {
249 .probe
= qcom_smd_rpm_probe
,
250 .remove
= qcom_smd_rpm_remove
,
251 .callback
= qcom_smd_rpm_callback
,
253 .name
= "qcom_smd_rpm",
254 .of_match_table
= qcom_smd_rpm_of_match
,
258 static int __init
qcom_smd_rpm_init(void)
260 return register_rpmsg_driver(&qcom_smd_rpm_driver
);
262 arch_initcall(qcom_smd_rpm_init
);
264 static void __exit
qcom_smd_rpm_exit(void)
266 unregister_rpmsg_driver(&qcom_smd_rpm_driver
);
268 module_exit(qcom_smd_rpm_exit
);
270 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@sonymobile.com>");
271 MODULE_DESCRIPTION("Qualcomm SMD backed RPM driver");
272 MODULE_LICENSE("GPL v2");