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 memcpy_fromio(data, pipe->fifo + tail, len);
96 memcpy_fromio(data + len, pipe->fifo, (count - len));
99 static void glink_smem_rx_advance(struct qcom_glink_pipe *np,
102 struct glink_smem_pipe *pipe = to_smem_pipe(np);
105 tail = le32_to_cpu(*pipe->tail);
108 if (tail >= pipe->native.length)
109 tail -= pipe->native.length;
111 *pipe->tail = cpu_to_le32(tail);
114 static size_t glink_smem_tx_avail(struct qcom_glink_pipe *np)
116 struct glink_smem_pipe *pipe = to_smem_pipe(np);
121 head = le32_to_cpu(*pipe->head);
122 tail = le32_to_cpu(*pipe->tail);
125 avail = pipe->native.length - head + tail;
129 if (avail < (FIFO_FULL_RESERVE + TX_BLOCKED_CMD_RESERVE))
132 avail -= FIFO_FULL_RESERVE + TX_BLOCKED_CMD_RESERVE;
137 static unsigned int glink_smem_tx_write_one(struct glink_smem_pipe *pipe,
139 const void *data, size_t count)
143 len = min_t(size_t, count, pipe->native.length - head);
145 memcpy(pipe->fifo + head, data, len);
148 memcpy(pipe->fifo, data + len, count - len);
151 if (head >= pipe->native.length)
152 head -= pipe->native.length;
157 static void glink_smem_tx_write(struct qcom_glink_pipe *glink_pipe,
158 const void *hdr, size_t hlen,
159 const void *data, size_t dlen)
161 struct glink_smem_pipe *pipe = to_smem_pipe(glink_pipe);
164 head = le32_to_cpu(*pipe->head);
166 head = glink_smem_tx_write_one(pipe, head, hdr, hlen);
167 head = glink_smem_tx_write_one(pipe, head, data, dlen);
169 /* Ensure head is always aligned to 8 bytes */
170 head = ALIGN(head, 8);
171 if (head >= pipe->native.length)
172 head -= pipe->native.length;
174 /* Ensure ordering of fifo and head update */
177 *pipe->head = cpu_to_le32(head);
180 static void qcom_glink_smem_release(struct device *dev)
185 struct qcom_glink *qcom_glink_smem_register(struct device *parent,
186 struct device_node *node)
188 struct glink_smem_pipe *rx_pipe;
189 struct glink_smem_pipe *tx_pipe;
190 struct qcom_glink *glink;
197 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
199 return ERR_PTR(-ENOMEM);
201 dev->parent = parent;
203 dev->release = qcom_glink_smem_release;
204 dev_set_name(dev, "%s:%pOFn", dev_name(parent->parent), node);
205 ret = device_register(dev);
207 pr_err("failed to register glink edge\n");
212 ret = of_property_read_u32(dev->of_node, "qcom,remote-pid",
215 dev_err(dev, "failed to parse qcom,remote-pid\n");
219 rx_pipe = devm_kzalloc(dev, sizeof(*rx_pipe), GFP_KERNEL);
220 tx_pipe = devm_kzalloc(dev, sizeof(*tx_pipe), GFP_KERNEL);
221 if (!rx_pipe || !tx_pipe) {
226 ret = qcom_smem_alloc(remote_pid,
227 SMEM_GLINK_NATIVE_XPRT_DESCRIPTOR, 32);
228 if (ret && ret != -EEXIST) {
229 dev_err(dev, "failed to allocate glink descriptors\n");
233 descs = qcom_smem_get(remote_pid,
234 SMEM_GLINK_NATIVE_XPRT_DESCRIPTOR, &size);
236 dev_err(dev, "failed to acquire xprt descriptor\n");
237 ret = PTR_ERR(descs);
242 dev_err(dev, "glink descriptor of invalid size\n");
247 tx_pipe->tail = &descs[0];
248 tx_pipe->head = &descs[1];
249 rx_pipe->tail = &descs[2];
250 rx_pipe->head = &descs[3];
252 ret = qcom_smem_alloc(remote_pid, SMEM_GLINK_NATIVE_XPRT_FIFO_0,
254 if (ret && ret != -EEXIST) {
255 dev_err(dev, "failed to allocate TX fifo\n");
259 tx_pipe->fifo = qcom_smem_get(remote_pid, SMEM_GLINK_NATIVE_XPRT_FIFO_0,
260 &tx_pipe->native.length);
261 if (IS_ERR(tx_pipe->fifo)) {
262 dev_err(dev, "failed to acquire TX fifo\n");
263 ret = PTR_ERR(tx_pipe->fifo);
267 rx_pipe->native.avail = glink_smem_rx_avail;
268 rx_pipe->native.peak = glink_smem_rx_peak;
269 rx_pipe->native.advance = glink_smem_rx_advance;
270 rx_pipe->remote_pid = remote_pid;
272 tx_pipe->native.avail = glink_smem_tx_avail;
273 tx_pipe->native.write = glink_smem_tx_write;
274 tx_pipe->remote_pid = remote_pid;
279 glink = qcom_glink_native_probe(dev,
280 GLINK_FEATURE_INTENT_REUSE,
281 &rx_pipe->native, &tx_pipe->native,
284 ret = PTR_ERR(glink);
291 device_unregister(dev);
295 EXPORT_SYMBOL_GPL(qcom_glink_smem_register);
297 void qcom_glink_smem_unregister(struct qcom_glink *glink)
299 qcom_glink_native_remove(glink);
300 qcom_glink_native_unregister(glink);
302 EXPORT_SYMBOL_GPL(qcom_glink_smem_unregister);
304 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@linaro.org>");
305 MODULE_DESCRIPTION("Qualcomm GLINK SMEM driver");
306 MODULE_LICENSE("GPL v2");