1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2016, Linaro Ltd
7 #include <linux/module.h>
9 #include <linux/of_address.h>
10 #include <linux/interrupt.h>
11 #include <linux/platform_device.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/slab.h>
14 #include <linux/rpmsg.h>
15 #include <linux/idr.h>
16 #include <linux/circ_buf.h>
17 #include <linux/soc/qcom/smem.h>
18 #include <linux/sizes.h>
19 #include <linux/delay.h>
20 #include <linux/regmap.h>
21 #include <linux/workqueue.h>
22 #include <linux/list.h>
24 #include <linux/rpmsg/qcom_glink.h>
26 #include "qcom_glink_native.h"
28 #define FIFO_FULL_RESERVE 8
29 #define FIFO_ALIGNMENT 8
30 #define TX_BLOCKED_CMD_RESERVE 8 /* size of struct read_notif_request */
32 #define SMEM_GLINK_NATIVE_XPRT_DESCRIPTOR 478
33 #define SMEM_GLINK_NATIVE_XPRT_FIFO_0 479
34 #define SMEM_GLINK_NATIVE_XPRT_FIFO_1 480
36 struct glink_smem_pipe
{
37 struct qcom_glink_pipe native
;
47 #define to_smem_pipe(p) container_of(p, struct glink_smem_pipe, native)
49 static size_t glink_smem_rx_avail(struct qcom_glink_pipe
*np
)
51 struct glink_smem_pipe
*pipe
= to_smem_pipe(np
);
58 fifo
= qcom_smem_get(pipe
->remote_pid
,
59 SMEM_GLINK_NATIVE_XPRT_FIFO_1
, &len
);
61 pr_err("failed to acquire RX fifo handle: %ld\n",
67 pipe
->native
.length
= len
;
70 head
= le32_to_cpu(*pipe
->head
);
71 tail
= le32_to_cpu(*pipe
->tail
);
74 return pipe
->native
.length
- tail
+ head
;
79 static void glink_smem_rx_peak(struct qcom_glink_pipe
*np
,
80 void *data
, unsigned int offset
, size_t count
)
82 struct glink_smem_pipe
*pipe
= to_smem_pipe(np
);
86 tail
= le32_to_cpu(*pipe
->tail
);
88 if (tail
>= pipe
->native
.length
)
89 tail
-= pipe
->native
.length
;
91 len
= min_t(size_t, count
, pipe
->native
.length
- tail
);
93 __ioread32_copy(data
, pipe
->fifo
+ tail
,
98 __ioread32_copy(data
+ len
, pipe
->fifo
,
99 (count
- len
) / sizeof(u32
));
103 static void glink_smem_rx_advance(struct qcom_glink_pipe
*np
,
106 struct glink_smem_pipe
*pipe
= to_smem_pipe(np
);
109 tail
= le32_to_cpu(*pipe
->tail
);
112 if (tail
> pipe
->native
.length
)
113 tail
-= pipe
->native
.length
;
115 *pipe
->tail
= cpu_to_le32(tail
);
118 static size_t glink_smem_tx_avail(struct qcom_glink_pipe
*np
)
120 struct glink_smem_pipe
*pipe
= to_smem_pipe(np
);
125 head
= le32_to_cpu(*pipe
->head
);
126 tail
= le32_to_cpu(*pipe
->tail
);
129 avail
= pipe
->native
.length
- head
+ tail
;
133 if (avail
< (FIFO_FULL_RESERVE
+ TX_BLOCKED_CMD_RESERVE
))
136 avail
-= FIFO_FULL_RESERVE
+ TX_BLOCKED_CMD_RESERVE
;
141 static unsigned int glink_smem_tx_write_one(struct glink_smem_pipe
*pipe
,
143 const void *data
, size_t count
)
147 len
= min_t(size_t, count
, pipe
->native
.length
- head
);
149 memcpy(pipe
->fifo
+ head
, data
, len
);
152 memcpy(pipe
->fifo
, data
+ len
, count
- len
);
155 if (head
>= pipe
->native
.length
)
156 head
-= pipe
->native
.length
;
161 static void glink_smem_tx_write(struct qcom_glink_pipe
*glink_pipe
,
162 const void *hdr
, size_t hlen
,
163 const void *data
, size_t dlen
)
165 struct glink_smem_pipe
*pipe
= to_smem_pipe(glink_pipe
);
168 head
= le32_to_cpu(*pipe
->head
);
170 head
= glink_smem_tx_write_one(pipe
, head
, hdr
, hlen
);
171 head
= glink_smem_tx_write_one(pipe
, head
, data
, dlen
);
173 /* Ensure head is always aligned to 8 bytes */
174 head
= ALIGN(head
, 8);
175 if (head
>= pipe
->native
.length
)
176 head
-= pipe
->native
.length
;
178 /* Ensure ordering of fifo and head update */
181 *pipe
->head
= cpu_to_le32(head
);
184 static void qcom_glink_smem_release(struct device
*dev
)
189 struct qcom_glink
*qcom_glink_smem_register(struct device
*parent
,
190 struct device_node
*node
)
192 struct glink_smem_pipe
*rx_pipe
;
193 struct glink_smem_pipe
*tx_pipe
;
194 struct qcom_glink
*glink
;
201 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
203 return ERR_PTR(-ENOMEM
);
205 dev
->parent
= parent
;
207 dev
->release
= qcom_glink_smem_release
;
208 dev_set_name(dev
, "%s:%s", node
->parent
->name
, node
->name
);
209 ret
= device_register(dev
);
211 pr_err("failed to register glink edge\n");
216 ret
= of_property_read_u32(dev
->of_node
, "qcom,remote-pid",
219 dev_err(dev
, "failed to parse qcom,remote-pid\n");
223 rx_pipe
= devm_kzalloc(dev
, sizeof(*rx_pipe
), GFP_KERNEL
);
224 tx_pipe
= devm_kzalloc(dev
, sizeof(*tx_pipe
), GFP_KERNEL
);
225 if (!rx_pipe
|| !tx_pipe
) {
230 ret
= qcom_smem_alloc(remote_pid
,
231 SMEM_GLINK_NATIVE_XPRT_DESCRIPTOR
, 32);
232 if (ret
&& ret
!= -EEXIST
) {
233 dev_err(dev
, "failed to allocate glink descriptors\n");
237 descs
= qcom_smem_get(remote_pid
,
238 SMEM_GLINK_NATIVE_XPRT_DESCRIPTOR
, &size
);
240 dev_err(dev
, "failed to acquire xprt descriptor\n");
241 ret
= PTR_ERR(descs
);
246 dev_err(dev
, "glink descriptor of invalid size\n");
251 tx_pipe
->tail
= &descs
[0];
252 tx_pipe
->head
= &descs
[1];
253 rx_pipe
->tail
= &descs
[2];
254 rx_pipe
->head
= &descs
[3];
256 ret
= qcom_smem_alloc(remote_pid
, SMEM_GLINK_NATIVE_XPRT_FIFO_0
,
258 if (ret
&& ret
!= -EEXIST
) {
259 dev_err(dev
, "failed to allocate TX fifo\n");
263 tx_pipe
->fifo
= qcom_smem_get(remote_pid
, SMEM_GLINK_NATIVE_XPRT_FIFO_0
,
264 &tx_pipe
->native
.length
);
265 if (IS_ERR(tx_pipe
->fifo
)) {
266 dev_err(dev
, "failed to acquire TX fifo\n");
267 ret
= PTR_ERR(tx_pipe
->fifo
);
271 rx_pipe
->native
.avail
= glink_smem_rx_avail
;
272 rx_pipe
->native
.peak
= glink_smem_rx_peak
;
273 rx_pipe
->native
.advance
= glink_smem_rx_advance
;
274 rx_pipe
->remote_pid
= remote_pid
;
276 tx_pipe
->native
.avail
= glink_smem_tx_avail
;
277 tx_pipe
->native
.write
= glink_smem_tx_write
;
278 tx_pipe
->remote_pid
= remote_pid
;
283 glink
= qcom_glink_native_probe(dev
,
284 GLINK_FEATURE_INTENT_REUSE
,
285 &rx_pipe
->native
, &tx_pipe
->native
,
288 ret
= PTR_ERR(glink
);
295 device_unregister(dev
);
299 EXPORT_SYMBOL_GPL(qcom_glink_smem_register
);
301 void qcom_glink_smem_unregister(struct qcom_glink
*glink
)
303 qcom_glink_native_remove(glink
);
304 qcom_glink_native_unregister(glink
);
306 EXPORT_SYMBOL_GPL(qcom_glink_smem_unregister
);
308 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@linaro.org>");
309 MODULE_DESCRIPTION("Qualcomm GLINK SMEM driver");
310 MODULE_LICENSE("GPL v2");