blob: beda610e6b30d139d2ccf53d4fed655ee3952f4b [file] [log] [blame]
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001// SPDX-License-Identifier: GPL-2.0
2// Copyright (c) 2011-2018, The Linux Foundation. All rights reserved.
3// Copyright (c) 2018, Linaro Limited
4
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00005#include <linux/completion.h>
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00006#include <linux/device.h>
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00007#include <linux/dma-buf.h>
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00008#include <linux/dma-mapping.h>
9#include <linux/idr.h>
10#include <linux/list.h>
11#include <linux/miscdevice.h>
12#include <linux/module.h>
13#include <linux/of_address.h>
14#include <linux/of.h>
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +000015#include <linux/sort.h>
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000016#include <linux/of_platform.h>
17#include <linux/rpmsg.h>
18#include <linux/scatterlist.h>
19#include <linux/slab.h>
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +000020#include <uapi/misc/fastrpc.h>
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000021
22#define ADSP_DOMAIN_ID (0)
23#define MDSP_DOMAIN_ID (1)
24#define SDSP_DOMAIN_ID (2)
25#define CDSP_DOMAIN_ID (3)
26#define FASTRPC_DEV_MAX 4 /* adsp, mdsp, slpi, cdsp*/
27#define FASTRPC_MAX_SESSIONS 9 /*8 compute, 1 cpz*/
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +000028#define FASTRPC_ALIGN 128
29#define FASTRPC_MAX_FDLIST 16
30#define FASTRPC_MAX_CRCLIST 64
31#define FASTRPC_PHYS(p) ((p) & 0xffffffff)
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000032#define FASTRPC_CTX_MAX (256)
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +000033#define FASTRPC_INIT_HANDLE 1
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000034#define FASTRPC_CTXID_MASK (0xFF0)
Jorge Ramirez-Ortizefcd2392019-10-09 15:41:23 +010035#define INIT_FILELEN_MAX (2 * 1024 * 1024)
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000036#define FASTRPC_DEVICE_NAME "fastrpc"
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +010037#define ADSP_MMAP_ADD_PAGES 0x1000
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000038
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +000039/* Retrives number of input buffers from the scalars parameter */
40#define REMOTE_SCALARS_INBUFS(sc) (((sc) >> 16) & 0x0ff)
41
42/* Retrives number of output buffers from the scalars parameter */
43#define REMOTE_SCALARS_OUTBUFS(sc) (((sc) >> 8) & 0x0ff)
44
45/* Retrives number of input handles from the scalars parameter */
46#define REMOTE_SCALARS_INHANDLES(sc) (((sc) >> 4) & 0x0f)
47
48/* Retrives number of output handles from the scalars parameter */
49#define REMOTE_SCALARS_OUTHANDLES(sc) ((sc) & 0x0f)
50
51#define REMOTE_SCALARS_LENGTH(sc) (REMOTE_SCALARS_INBUFS(sc) + \
52 REMOTE_SCALARS_OUTBUFS(sc) + \
53 REMOTE_SCALARS_INHANDLES(sc)+ \
54 REMOTE_SCALARS_OUTHANDLES(sc))
55#define FASTRPC_BUILD_SCALARS(attr, method, in, out, oin, oout) \
56 (((attr & 0x07) << 29) | \
57 ((method & 0x1f) << 24) | \
58 ((in & 0xff) << 16) | \
59 ((out & 0xff) << 8) | \
60 ((oin & 0x0f) << 4) | \
61 (oout & 0x0f))
62
63#define FASTRPC_SCALARS(method, in, out) \
64 FASTRPC_BUILD_SCALARS(0, method, in, out, 0, 0)
65
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +000066#define FASTRPC_CREATE_PROCESS_NARGS 6
67/* Remote Method id table */
68#define FASTRPC_RMID_INIT_ATTACH 0
69#define FASTRPC_RMID_INIT_RELEASE 1
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +010070#define FASTRPC_RMID_INIT_MMAP 4
71#define FASTRPC_RMID_INIT_MUNMAP 5
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +000072#define FASTRPC_RMID_INIT_CREATE 6
73#define FASTRPC_RMID_INIT_CREATE_ATTR 7
74#define FASTRPC_RMID_INIT_CREATE_STATIC 8
75
Jonathan Marek84195d22020-09-08 09:10:10 -040076/* Protection Domain(PD) ids */
77#define AUDIO_PD (0) /* also GUEST_OS PD? */
78#define USER_PD (1)
79#define SENSORS_PD (2)
80
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +000081#define miscdev_to_cctx(d) container_of(d, struct fastrpc_channel_ctx, miscdev)
82
83static const char *domains[FASTRPC_DEV_MAX] = { "adsp", "mdsp",
84 "sdsp", "cdsp"};
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +000085struct fastrpc_phy_page {
86 u64 addr; /* physical address */
87 u64 size; /* size of contiguous region */
88};
89
90struct fastrpc_invoke_buf {
91 u32 num; /* number of contiguous regions */
92 u32 pgidx; /* index to start of contiguous region */
93};
94
95struct fastrpc_remote_arg {
96 u64 pv;
97 u64 len;
98};
99
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +0100100struct fastrpc_mmap_rsp_msg {
101 u64 vaddr;
102};
103
104struct fastrpc_mmap_req_msg {
105 s32 pgid;
106 u32 flags;
107 u64 vaddr;
108 s32 num;
109};
110
111struct fastrpc_munmap_req_msg {
112 s32 pgid;
113 u64 vaddr;
114 u64 size;
115};
116
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000117struct fastrpc_msg {
118 int pid; /* process group id */
119 int tid; /* thread id */
120 u64 ctx; /* invoke caller context */
121 u32 handle; /* handle to invoke */
122 u32 sc; /* scalars structure describing the data */
123 u64 addr; /* physical address */
124 u64 size; /* size of contiguous region */
125};
126
127struct fastrpc_invoke_rsp {
128 u64 ctx; /* invoke caller context */
129 int retval; /* invoke return value */
130};
131
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000132struct fastrpc_buf_overlap {
133 u64 start;
134 u64 end;
135 int raix;
136 u64 mstart;
137 u64 mend;
138 u64 offset;
139};
140
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000141struct fastrpc_buf {
142 struct fastrpc_user *fl;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000143 struct dma_buf *dmabuf;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000144 struct device *dev;
145 void *virt;
146 u64 phys;
147 u64 size;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000148 /* Lock for dma buf attachments */
149 struct mutex lock;
150 struct list_head attachments;
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +0100151 /* mmap support */
152 struct list_head node; /* list of user requested mmaps */
153 uintptr_t raddr;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000154};
155
156struct fastrpc_dma_buf_attachment {
157 struct device *dev;
158 struct sg_table sgt;
159 struct list_head node;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000160};
161
162struct fastrpc_map {
163 struct list_head node;
164 struct fastrpc_user *fl;
165 int fd;
166 struct dma_buf *buf;
167 struct sg_table *table;
168 struct dma_buf_attachment *attach;
169 u64 phys;
170 u64 size;
171 void *va;
172 u64 len;
173 struct kref refcount;
174};
175
176struct fastrpc_invoke_ctx {
177 int nscalars;
178 int nbufs;
179 int retval;
180 int pid;
181 int tgid;
182 u32 sc;
183 u32 *crc;
184 u64 ctxid;
185 u64 msg_sz;
186 struct kref refcount;
187 struct list_head node; /* list of ctxs */
188 struct completion work;
Thierry Escande8e7389c2019-03-07 10:12:22 +0000189 struct work_struct put_work;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000190 struct fastrpc_msg msg;
191 struct fastrpc_user *fl;
192 struct fastrpc_remote_arg *rpra;
193 struct fastrpc_map **maps;
194 struct fastrpc_buf *buf;
195 struct fastrpc_invoke_args *args;
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000196 struct fastrpc_buf_overlap *olaps;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000197 struct fastrpc_channel_ctx *cctx;
198};
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +0000199
200struct fastrpc_session_ctx {
201 struct device *dev;
202 int sid;
203 bool used;
204 bool valid;
205};
206
207struct fastrpc_channel_ctx {
208 int domain_id;
209 int sesscount;
210 struct rpmsg_device *rpdev;
211 struct fastrpc_session_ctx session[FASTRPC_MAX_SESSIONS];
212 spinlock_t lock;
213 struct idr ctx_idr;
214 struct list_head users;
215 struct miscdevice miscdev;
Bjorn Andersson278d56f2019-08-29 10:29:22 +0100216 struct kref refcount;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +0000217};
218
219struct fastrpc_user {
220 struct list_head user;
221 struct list_head maps;
222 struct list_head pending;
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +0100223 struct list_head mmaps;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +0000224
225 struct fastrpc_channel_ctx *cctx;
226 struct fastrpc_session_ctx *sctx;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000227 struct fastrpc_buf *init_mem;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +0000228
229 int tgid;
230 int pd;
231 /* Lock for lists */
232 spinlock_t lock;
233 /* lock for allocations */
234 struct mutex mutex;
235};
236
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000237static void fastrpc_free_map(struct kref *ref)
238{
239 struct fastrpc_map *map;
240
241 map = container_of(ref, struct fastrpc_map, refcount);
242
243 if (map->table) {
244 dma_buf_unmap_attachment(map->attach, map->table,
245 DMA_BIDIRECTIONAL);
246 dma_buf_detach(map->buf, map->attach);
247 dma_buf_put(map->buf);
248 }
249
250 kfree(map);
251}
252
253static void fastrpc_map_put(struct fastrpc_map *map)
254{
255 if (map)
256 kref_put(&map->refcount, fastrpc_free_map);
257}
258
259static void fastrpc_map_get(struct fastrpc_map *map)
260{
261 if (map)
262 kref_get(&map->refcount);
263}
264
265static int fastrpc_map_find(struct fastrpc_user *fl, int fd,
266 struct fastrpc_map **ppmap)
267{
268 struct fastrpc_map *map = NULL;
269
270 mutex_lock(&fl->mutex);
271 list_for_each_entry(map, &fl->maps, node) {
272 if (map->fd == fd) {
273 fastrpc_map_get(map);
274 *ppmap = map;
275 mutex_unlock(&fl->mutex);
276 return 0;
277 }
278 }
279 mutex_unlock(&fl->mutex);
280
281 return -ENOENT;
282}
283
284static void fastrpc_buf_free(struct fastrpc_buf *buf)
285{
286 dma_free_coherent(buf->dev, buf->size, buf->virt,
287 FASTRPC_PHYS(buf->phys));
288 kfree(buf);
289}
290
291static int fastrpc_buf_alloc(struct fastrpc_user *fl, struct device *dev,
292 u64 size, struct fastrpc_buf **obuf)
293{
294 struct fastrpc_buf *buf;
295
296 buf = kzalloc(sizeof(*buf), GFP_KERNEL);
297 if (!buf)
298 return -ENOMEM;
299
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000300 INIT_LIST_HEAD(&buf->attachments);
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +0100301 INIT_LIST_HEAD(&buf->node);
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000302 mutex_init(&buf->lock);
303
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000304 buf->fl = fl;
305 buf->virt = NULL;
306 buf->phys = 0;
307 buf->size = size;
308 buf->dev = dev;
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +0100309 buf->raddr = 0;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000310
311 buf->virt = dma_alloc_coherent(dev, buf->size, (dma_addr_t *)&buf->phys,
312 GFP_KERNEL);
Jorge Ramirez-Ortiz41db5f82019-07-05 10:13:03 +0200313 if (!buf->virt) {
314 mutex_destroy(&buf->lock);
315 kfree(buf);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000316 return -ENOMEM;
Jorge Ramirez-Ortiz41db5f82019-07-05 10:13:03 +0200317 }
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000318
319 if (fl->sctx && fl->sctx->sid)
320 buf->phys += ((u64)fl->sctx->sid << 32);
321
322 *obuf = buf;
323
324 return 0;
325}
326
Bjorn Andersson278d56f2019-08-29 10:29:22 +0100327static void fastrpc_channel_ctx_free(struct kref *ref)
328{
329 struct fastrpc_channel_ctx *cctx;
330
331 cctx = container_of(ref, struct fastrpc_channel_ctx, refcount);
332
333 kfree(cctx);
334}
335
336static void fastrpc_channel_ctx_get(struct fastrpc_channel_ctx *cctx)
337{
338 kref_get(&cctx->refcount);
339}
340
341static void fastrpc_channel_ctx_put(struct fastrpc_channel_ctx *cctx)
342{
343 kref_put(&cctx->refcount, fastrpc_channel_ctx_free);
344}
345
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000346static void fastrpc_context_free(struct kref *ref)
347{
348 struct fastrpc_invoke_ctx *ctx;
349 struct fastrpc_channel_ctx *cctx;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000350 unsigned long flags;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000351 int i;
352
353 ctx = container_of(ref, struct fastrpc_invoke_ctx, refcount);
354 cctx = ctx->cctx;
355
356 for (i = 0; i < ctx->nscalars; i++)
357 fastrpc_map_put(ctx->maps[i]);
358
359 if (ctx->buf)
360 fastrpc_buf_free(ctx->buf);
361
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000362 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000363 idr_remove(&cctx->ctx_idr, ctx->ctxid >> 4);
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000364 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000365
366 kfree(ctx->maps);
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000367 kfree(ctx->olaps);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000368 kfree(ctx);
Bjorn Andersson278d56f2019-08-29 10:29:22 +0100369
370 fastrpc_channel_ctx_put(cctx);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000371}
372
373static void fastrpc_context_get(struct fastrpc_invoke_ctx *ctx)
374{
375 kref_get(&ctx->refcount);
376}
377
378static void fastrpc_context_put(struct fastrpc_invoke_ctx *ctx)
379{
380 kref_put(&ctx->refcount, fastrpc_context_free);
381}
382
Thierry Escande8e7389c2019-03-07 10:12:22 +0000383static void fastrpc_context_put_wq(struct work_struct *work)
384{
385 struct fastrpc_invoke_ctx *ctx =
386 container_of(work, struct fastrpc_invoke_ctx, put_work);
387
388 fastrpc_context_put(ctx);
389}
390
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000391#define CMP(aa, bb) ((aa) == (bb) ? 0 : (aa) < (bb) ? -1 : 1)
392static int olaps_cmp(const void *a, const void *b)
393{
394 struct fastrpc_buf_overlap *pa = (struct fastrpc_buf_overlap *)a;
395 struct fastrpc_buf_overlap *pb = (struct fastrpc_buf_overlap *)b;
396 /* sort with lowest starting buffer first */
397 int st = CMP(pa->start, pb->start);
398 /* sort with highest ending buffer first */
399 int ed = CMP(pb->end, pa->end);
400
401 return st == 0 ? ed : st;
402}
403
404static void fastrpc_get_buff_overlaps(struct fastrpc_invoke_ctx *ctx)
405{
406 u64 max_end = 0;
407 int i;
408
409 for (i = 0; i < ctx->nbufs; ++i) {
410 ctx->olaps[i].start = ctx->args[i].ptr;
411 ctx->olaps[i].end = ctx->olaps[i].start + ctx->args[i].length;
412 ctx->olaps[i].raix = i;
413 }
414
415 sort(ctx->olaps, ctx->nbufs, sizeof(*ctx->olaps), olaps_cmp, NULL);
416
417 for (i = 0; i < ctx->nbufs; ++i) {
418 /* Falling inside previous range */
419 if (ctx->olaps[i].start < max_end) {
420 ctx->olaps[i].mstart = max_end;
421 ctx->olaps[i].mend = ctx->olaps[i].end;
422 ctx->olaps[i].offset = max_end - ctx->olaps[i].start;
423
424 if (ctx->olaps[i].end > max_end) {
425 max_end = ctx->olaps[i].end;
426 } else {
427 ctx->olaps[i].mend = 0;
428 ctx->olaps[i].mstart = 0;
429 }
430
431 } else {
432 ctx->olaps[i].mend = ctx->olaps[i].end;
433 ctx->olaps[i].mstart = ctx->olaps[i].start;
434 ctx->olaps[i].offset = 0;
435 max_end = ctx->olaps[i].end;
436 }
437 }
438}
439
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000440static struct fastrpc_invoke_ctx *fastrpc_context_alloc(
441 struct fastrpc_user *user, u32 kernel, u32 sc,
442 struct fastrpc_invoke_args *args)
443{
444 struct fastrpc_channel_ctx *cctx = user->cctx;
445 struct fastrpc_invoke_ctx *ctx = NULL;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000446 unsigned long flags;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000447 int ret;
448
449 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
450 if (!ctx)
451 return ERR_PTR(-ENOMEM);
452
453 INIT_LIST_HEAD(&ctx->node);
454 ctx->fl = user;
455 ctx->nscalars = REMOTE_SCALARS_LENGTH(sc);
456 ctx->nbufs = REMOTE_SCALARS_INBUFS(sc) +
457 REMOTE_SCALARS_OUTBUFS(sc);
458
459 if (ctx->nscalars) {
460 ctx->maps = kcalloc(ctx->nscalars,
461 sizeof(*ctx->maps), GFP_KERNEL);
462 if (!ctx->maps) {
463 kfree(ctx);
464 return ERR_PTR(-ENOMEM);
465 }
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000466 ctx->olaps = kcalloc(ctx->nscalars,
467 sizeof(*ctx->olaps), GFP_KERNEL);
468 if (!ctx->olaps) {
469 kfree(ctx->maps);
470 kfree(ctx);
471 return ERR_PTR(-ENOMEM);
472 }
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000473 ctx->args = args;
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000474 fastrpc_get_buff_overlaps(ctx);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000475 }
476
Bjorn Andersson278d56f2019-08-29 10:29:22 +0100477 /* Released in fastrpc_context_put() */
478 fastrpc_channel_ctx_get(cctx);
479
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000480 ctx->sc = sc;
481 ctx->retval = -1;
482 ctx->pid = current->pid;
483 ctx->tgid = user->tgid;
484 ctx->cctx = cctx;
485 init_completion(&ctx->work);
Thierry Escande8e7389c2019-03-07 10:12:22 +0000486 INIT_WORK(&ctx->put_work, fastrpc_context_put_wq);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000487
488 spin_lock(&user->lock);
489 list_add_tail(&ctx->node, &user->pending);
490 spin_unlock(&user->lock);
491
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000492 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000493 ret = idr_alloc_cyclic(&cctx->ctx_idr, ctx, 1,
494 FASTRPC_CTX_MAX, GFP_ATOMIC);
495 if (ret < 0) {
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000496 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000497 goto err_idr;
498 }
499 ctx->ctxid = ret << 4;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +0000500 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000501
502 kref_init(&ctx->refcount);
503
504 return ctx;
505err_idr:
506 spin_lock(&user->lock);
507 list_del(&ctx->node);
508 spin_unlock(&user->lock);
Bjorn Andersson278d56f2019-08-29 10:29:22 +0100509 fastrpc_channel_ctx_put(cctx);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000510 kfree(ctx->maps);
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000511 kfree(ctx->olaps);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000512 kfree(ctx);
513
514 return ERR_PTR(ret);
515}
516
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000517static struct sg_table *
518fastrpc_map_dma_buf(struct dma_buf_attachment *attachment,
519 enum dma_data_direction dir)
520{
521 struct fastrpc_dma_buf_attachment *a = attachment->priv;
522 struct sg_table *table;
Jonathan Marekb2126582021-02-08 15:04:01 -0500523 int ret;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000524
525 table = &a->sgt;
526
Jonathan Marekb2126582021-02-08 15:04:01 -0500527 ret = dma_map_sgtable(attachment->dev, table, dir, 0);
528 if (ret)
529 table = ERR_PTR(ret);
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000530 return table;
531}
532
533static void fastrpc_unmap_dma_buf(struct dma_buf_attachment *attach,
534 struct sg_table *table,
535 enum dma_data_direction dir)
536{
Marek Szyprowski7cd7edb2020-08-26 08:33:12 +0200537 dma_unmap_sgtable(attach->dev, table, dir, 0);
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000538}
539
540static void fastrpc_release(struct dma_buf *dmabuf)
541{
542 struct fastrpc_buf *buffer = dmabuf->priv;
543
544 fastrpc_buf_free(buffer);
545}
546
547static int fastrpc_dma_buf_attach(struct dma_buf *dmabuf,
548 struct dma_buf_attachment *attachment)
549{
550 struct fastrpc_dma_buf_attachment *a;
551 struct fastrpc_buf *buffer = dmabuf->priv;
552 int ret;
553
554 a = kzalloc(sizeof(*a), GFP_KERNEL);
555 if (!a)
556 return -ENOMEM;
557
558 ret = dma_get_sgtable(buffer->dev, &a->sgt, buffer->virt,
559 FASTRPC_PHYS(buffer->phys), buffer->size);
560 if (ret < 0) {
561 dev_err(buffer->dev, "failed to get scatterlist from DMA API\n");
Navid Emamdoostfc739a02019-09-25 10:27:41 -0500562 kfree(a);
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000563 return -EINVAL;
564 }
565
566 a->dev = attachment->dev;
567 INIT_LIST_HEAD(&a->node);
568 attachment->priv = a;
569
570 mutex_lock(&buffer->lock);
571 list_add(&a->node, &buffer->attachments);
572 mutex_unlock(&buffer->lock);
573
574 return 0;
575}
576
577static void fastrpc_dma_buf_detatch(struct dma_buf *dmabuf,
578 struct dma_buf_attachment *attachment)
579{
580 struct fastrpc_dma_buf_attachment *a = attachment->priv;
581 struct fastrpc_buf *buffer = dmabuf->priv;
582
583 mutex_lock(&buffer->lock);
584 list_del(&a->node);
585 mutex_unlock(&buffer->lock);
Srinivas Kandagatlacf618602019-08-29 10:29:26 +0100586 sg_free_table(&a->sgt);
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000587 kfree(a);
588}
589
Thomas Zimmermann6619ccf2020-09-25 13:55:59 +0200590static int fastrpc_vmap(struct dma_buf *dmabuf, struct dma_buf_map *map)
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000591{
592 struct fastrpc_buf *buf = dmabuf->priv;
593
Thomas Zimmermann6619ccf2020-09-25 13:55:59 +0200594 dma_buf_map_set_vaddr(map, buf->virt);
595
596 return 0;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000597}
598
599static int fastrpc_mmap(struct dma_buf *dmabuf,
600 struct vm_area_struct *vma)
601{
602 struct fastrpc_buf *buf = dmabuf->priv;
603 size_t size = vma->vm_end - vma->vm_start;
604
605 return dma_mmap_coherent(buf->dev, vma, buf->virt,
606 FASTRPC_PHYS(buf->phys), size);
607}
608
609static const struct dma_buf_ops fastrpc_dma_buf_ops = {
610 .attach = fastrpc_dma_buf_attach,
611 .detach = fastrpc_dma_buf_detatch,
612 .map_dma_buf = fastrpc_map_dma_buf,
613 .unmap_dma_buf = fastrpc_unmap_dma_buf,
614 .mmap = fastrpc_mmap,
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +0000615 .vmap = fastrpc_vmap,
616 .release = fastrpc_release,
617};
618
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000619static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
620 u64 len, struct fastrpc_map **ppmap)
621{
622 struct fastrpc_session_ctx *sess = fl->sctx;
623 struct fastrpc_map *map = NULL;
624 int err = 0;
625
626 if (!fastrpc_map_find(fl, fd, ppmap))
627 return 0;
628
629 map = kzalloc(sizeof(*map), GFP_KERNEL);
630 if (!map)
631 return -ENOMEM;
632
633 INIT_LIST_HEAD(&map->node);
634 map->fl = fl;
635 map->fd = fd;
636 map->buf = dma_buf_get(fd);
Wei Yongjun682a6042019-02-16 01:35:43 +0000637 if (IS_ERR(map->buf)) {
638 err = PTR_ERR(map->buf);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000639 goto get_err;
640 }
641
642 map->attach = dma_buf_attach(map->buf, sess->dev);
643 if (IS_ERR(map->attach)) {
644 dev_err(sess->dev, "Failed to attach dmabuf\n");
645 err = PTR_ERR(map->attach);
646 goto attach_err;
647 }
648
649 map->table = dma_buf_map_attachment(map->attach, DMA_BIDIRECTIONAL);
650 if (IS_ERR(map->table)) {
651 err = PTR_ERR(map->table);
652 goto map_err;
653 }
654
655 map->phys = sg_dma_address(map->table->sgl);
656 map->phys += ((u64)fl->sctx->sid << 32);
657 map->size = len;
658 map->va = sg_virt(map->table->sgl);
659 map->len = len;
660 kref_init(&map->refcount);
661
662 spin_lock(&fl->lock);
663 list_add_tail(&map->node, &fl->maps);
664 spin_unlock(&fl->lock);
665 *ppmap = map;
666
667 return 0;
668
669map_err:
670 dma_buf_detach(map->buf, map->attach);
671attach_err:
672 dma_buf_put(map->buf);
673get_err:
674 kfree(map);
675
676 return err;
677}
678
679/*
680 * Fastrpc payload buffer with metadata looks like:
681 *
682 * >>>>>> START of METADATA <<<<<<<<<
683 * +---------------------------------+
684 * | Arguments |
685 * | type:(struct fastrpc_remote_arg)|
686 * | (0 - N) |
687 * +---------------------------------+
688 * | Invoke Buffer list |
689 * | type:(struct fastrpc_invoke_buf)|
690 * | (0 - N) |
691 * +---------------------------------+
692 * | Page info list |
693 * | type:(struct fastrpc_phy_page) |
694 * | (0 - N) |
695 * +---------------------------------+
696 * | Optional info |
697 * |(can be specific to SoC/Firmware)|
698 * +---------------------------------+
699 * >>>>>>>> END of METADATA <<<<<<<<<
700 * +---------------------------------+
701 * | Inline ARGS |
702 * | (0-N) |
703 * +---------------------------------+
704 */
705
706static int fastrpc_get_meta_size(struct fastrpc_invoke_ctx *ctx)
707{
708 int size = 0;
709
710 size = (sizeof(struct fastrpc_remote_arg) +
711 sizeof(struct fastrpc_invoke_buf) +
712 sizeof(struct fastrpc_phy_page)) * ctx->nscalars +
713 sizeof(u64) * FASTRPC_MAX_FDLIST +
714 sizeof(u32) * FASTRPC_MAX_CRCLIST;
715
716 return size;
717}
718
719static u64 fastrpc_get_payload_size(struct fastrpc_invoke_ctx *ctx, int metalen)
720{
721 u64 size = 0;
722 int i;
723
724 size = ALIGN(metalen, FASTRPC_ALIGN);
725 for (i = 0; i < ctx->nscalars; i++) {
726 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1) {
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000727
728 if (ctx->olaps[i].offset == 0)
729 size = ALIGN(size, FASTRPC_ALIGN);
730
731 size += (ctx->olaps[i].mend - ctx->olaps[i].mstart);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000732 }
733 }
734
735 return size;
736}
737
738static int fastrpc_create_maps(struct fastrpc_invoke_ctx *ctx)
739{
740 struct device *dev = ctx->fl->sctx->dev;
741 int i, err;
742
743 for (i = 0; i < ctx->nscalars; ++i) {
744 /* Make sure reserved field is set to 0 */
745 if (ctx->args[i].reserved)
746 return -EINVAL;
747
748 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1 ||
749 ctx->args[i].length == 0)
750 continue;
751
752 err = fastrpc_map_create(ctx->fl, ctx->args[i].fd,
753 ctx->args[i].length, &ctx->maps[i]);
754 if (err) {
755 dev_err(dev, "Error Creating map %d\n", err);
756 return -EINVAL;
757 }
758
759 }
760 return 0;
761}
762
763static int fastrpc_get_args(u32 kernel, struct fastrpc_invoke_ctx *ctx)
764{
765 struct device *dev = ctx->fl->sctx->dev;
766 struct fastrpc_remote_arg *rpra;
767 struct fastrpc_invoke_buf *list;
768 struct fastrpc_phy_page *pages;
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000769 int inbufs, i, oix, err = 0;
770 u64 len, rlen, pkt_size;
Srinivas Kandagatla02b45b42019-03-07 10:12:28 +0000771 u64 pg_start, pg_end;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000772 uintptr_t args;
773 int metalen;
774
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000775 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
776 metalen = fastrpc_get_meta_size(ctx);
777 pkt_size = fastrpc_get_payload_size(ctx, metalen);
778
779 err = fastrpc_create_maps(ctx);
780 if (err)
781 return err;
782
783 ctx->msg_sz = pkt_size;
784
785 err = fastrpc_buf_alloc(ctx->fl, dev, pkt_size, &ctx->buf);
786 if (err)
787 return err;
788
789 rpra = ctx->buf->virt;
790 list = ctx->buf->virt + ctx->nscalars * sizeof(*rpra);
791 pages = ctx->buf->virt + ctx->nscalars * (sizeof(*list) +
792 sizeof(*rpra));
793 args = (uintptr_t)ctx->buf->virt + metalen;
794 rlen = pkt_size - metalen;
795 ctx->rpra = rpra;
796
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000797 for (oix = 0; oix < ctx->nbufs; ++oix) {
798 int mlen;
799
800 i = ctx->olaps[oix].raix;
801 len = ctx->args[i].length;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000802
803 rpra[i].pv = 0;
804 rpra[i].len = len;
805 list[i].num = len ? 1 : 0;
806 list[i].pgidx = i;
807
808 if (!len)
809 continue;
810
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000811 if (ctx->maps[i]) {
Srinivas Kandagatla80f3afd2019-03-07 10:12:26 +0000812 struct vm_area_struct *vma = NULL;
813
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000814 rpra[i].pv = (u64) ctx->args[i].ptr;
815 pages[i].addr = ctx->maps[i]->phys;
Srinivas Kandagatla80f3afd2019-03-07 10:12:26 +0000816
817 vma = find_vma(current->mm, ctx->args[i].ptr);
818 if (vma)
819 pages[i].addr += ctx->args[i].ptr -
820 vma->vm_start;
821
Srinivas Kandagatla02b45b42019-03-07 10:12:28 +0000822 pg_start = (ctx->args[i].ptr & PAGE_MASK) >> PAGE_SHIFT;
823 pg_end = ((ctx->args[i].ptr + len - 1) & PAGE_MASK) >>
824 PAGE_SHIFT;
825 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
826
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000827 } else {
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000828
829 if (ctx->olaps[oix].offset == 0) {
830 rlen -= ALIGN(args, FASTRPC_ALIGN) - args;
831 args = ALIGN(args, FASTRPC_ALIGN);
832 }
833
834 mlen = ctx->olaps[oix].mend - ctx->olaps[oix].mstart;
835
836 if (rlen < mlen)
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000837 goto bail;
838
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000839 rpra[i].pv = args - ctx->olaps[oix].offset;
840 pages[i].addr = ctx->buf->phys -
841 ctx->olaps[oix].offset +
842 (pkt_size - rlen);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000843 pages[i].addr = pages[i].addr & PAGE_MASK;
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000844
Srinivas Kandagatla02b45b42019-03-07 10:12:28 +0000845 pg_start = (args & PAGE_MASK) >> PAGE_SHIFT;
846 pg_end = ((args + len - 1) & PAGE_MASK) >> PAGE_SHIFT;
847 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
Srinivas Kandagatla25e8dfb2019-03-07 10:12:27 +0000848 args = args + mlen;
849 rlen -= mlen;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000850 }
851
852 if (i < inbufs && !ctx->maps[i]) {
853 void *dst = (void *)(uintptr_t)rpra[i].pv;
854 void *src = (void *)(uintptr_t)ctx->args[i].ptr;
855
856 if (!kernel) {
857 if (copy_from_user(dst, (void __user *)src,
858 len)) {
859 err = -EFAULT;
860 goto bail;
861 }
862 } else {
863 memcpy(dst, src, len);
864 }
865 }
866 }
867
868 for (i = ctx->nbufs; i < ctx->nscalars; ++i) {
869 rpra[i].pv = (u64) ctx->args[i].ptr;
870 rpra[i].len = ctx->args[i].length;
871 list[i].num = ctx->args[i].length ? 1 : 0;
872 list[i].pgidx = i;
873 pages[i].addr = ctx->maps[i]->phys;
874 pages[i].size = ctx->maps[i]->size;
875 }
876
877bail:
878 if (err)
879 dev_err(dev, "Error: get invoke args failed:%d\n", err);
880
881 return err;
882}
883
884static int fastrpc_put_args(struct fastrpc_invoke_ctx *ctx,
885 u32 kernel)
886{
887 struct fastrpc_remote_arg *rpra = ctx->rpra;
888 int i, inbufs;
889
890 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
891
892 for (i = inbufs; i < ctx->nbufs; ++i) {
893 void *src = (void *)(uintptr_t)rpra[i].pv;
894 void *dst = (void *)(uintptr_t)ctx->args[i].ptr;
895 u64 len = rpra[i].len;
896
897 if (!kernel) {
898 if (copy_to_user((void __user *)dst, src, len))
899 return -EFAULT;
900 } else {
901 memcpy(dst, src, len);
902 }
903 }
904
905 return 0;
906}
907
908static int fastrpc_invoke_send(struct fastrpc_session_ctx *sctx,
909 struct fastrpc_invoke_ctx *ctx,
910 u32 kernel, uint32_t handle)
911{
912 struct fastrpc_channel_ctx *cctx;
913 struct fastrpc_user *fl = ctx->fl;
914 struct fastrpc_msg *msg = &ctx->msg;
Srinivas Kandagatla74003382020-05-12 12:09:30 +0100915 int ret;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000916
917 cctx = fl->cctx;
918 msg->pid = fl->tgid;
919 msg->tid = current->pid;
920
921 if (kernel)
922 msg->pid = 0;
923
924 msg->ctx = ctx->ctxid | fl->pd;
925 msg->handle = handle;
926 msg->sc = ctx->sc;
927 msg->addr = ctx->buf ? ctx->buf->phys : 0;
928 msg->size = roundup(ctx->msg_sz, PAGE_SIZE);
929 fastrpc_context_get(ctx);
930
Srinivas Kandagatla74003382020-05-12 12:09:30 +0100931 ret = rpmsg_send(cctx->rpdev->ept, (void *)msg, sizeof(*msg));
932
933 if (ret)
934 fastrpc_context_put(ctx);
935
936 return ret;
937
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000938}
939
940static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel,
941 u32 handle, u32 sc,
942 struct fastrpc_invoke_args *args)
943{
944 struct fastrpc_invoke_ctx *ctx = NULL;
945 int err = 0;
946
947 if (!fl->sctx)
948 return -EINVAL;
949
Bjorn Andersson2e369872019-08-29 10:29:23 +0100950 if (!fl->cctx->rpdev)
951 return -EPIPE;
952
Dmitry Baryshkov20c40792021-02-12 22:26:58 +0300953 if (handle == FASTRPC_INIT_HANDLE && !kernel) {
954 dev_warn_ratelimited(fl->sctx->dev, "user app trying to send a kernel RPC message (%d)\n", handle);
955 return -EPERM;
956 }
957
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000958 ctx = fastrpc_context_alloc(fl, kernel, sc, args);
959 if (IS_ERR(ctx))
960 return PTR_ERR(ctx);
961
962 if (ctx->nscalars) {
963 err = fastrpc_get_args(kernel, ctx);
964 if (err)
965 goto bail;
966 }
Srinivas Kandagatla415a0722019-03-07 10:12:24 +0000967
968 /* make sure that all CPU memory writes are seen by DSP */
969 dma_wmb();
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000970 /* Send invoke buffer to remote dsp */
971 err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle);
972 if (err)
973 goto bail;
974
Jorge Ramirez-Ortiz55bcda32019-10-09 15:41:21 +0100975 if (kernel) {
976 if (!wait_for_completion_timeout(&ctx->work, 10 * HZ))
977 err = -ETIMEDOUT;
978 } else {
979 err = wait_for_completion_interruptible(&ctx->work);
980 }
981
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000982 if (err)
983 goto bail;
984
985 /* Check the response from remote dsp */
986 err = ctx->retval;
987 if (err)
988 goto bail;
989
990 if (ctx->nscalars) {
Srinivas Kandagatla415a0722019-03-07 10:12:24 +0000991 /* make sure that all memory writes by DSP are seen by CPU */
992 dma_rmb();
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +0000993 /* populate all the output buffers with results */
994 err = fastrpc_put_args(ctx, kernel);
995 if (err)
996 goto bail;
997 }
998
999bail:
Jorge Ramirez-Ortiz387f6252019-10-09 15:41:22 +01001000 if (err != -ERESTARTSYS && err != -ETIMEDOUT) {
1001 /* We are done with this compute context */
1002 spin_lock(&fl->lock);
1003 list_del(&ctx->node);
1004 spin_unlock(&fl->lock);
1005 fastrpc_context_put(ctx);
1006 }
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001007 if (err)
1008 dev_dbg(fl->sctx->dev, "Error: Invoke Failed %d\n", err);
1009
1010 return err;
1011}
1012
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001013static int fastrpc_init_create_process(struct fastrpc_user *fl,
1014 char __user *argp)
1015{
1016 struct fastrpc_init_create init;
1017 struct fastrpc_invoke_args *args;
1018 struct fastrpc_phy_page pages[1];
1019 struct fastrpc_map *map = NULL;
1020 struct fastrpc_buf *imem = NULL;
1021 int memlen;
1022 int err;
1023 struct {
1024 int pgid;
1025 u32 namelen;
1026 u32 filelen;
1027 u32 pageslen;
1028 u32 attrs;
1029 u32 siglen;
1030 } inbuf;
1031 u32 sc;
1032
1033 args = kcalloc(FASTRPC_CREATE_PROCESS_NARGS, sizeof(*args), GFP_KERNEL);
1034 if (!args)
1035 return -ENOMEM;
1036
1037 if (copy_from_user(&init, argp, sizeof(init))) {
1038 err = -EFAULT;
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001039 goto err;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001040 }
1041
1042 if (init.filelen > INIT_FILELEN_MAX) {
1043 err = -EINVAL;
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001044 goto err;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001045 }
1046
1047 inbuf.pgid = fl->tgid;
1048 inbuf.namelen = strlen(current->comm) + 1;
1049 inbuf.filelen = init.filelen;
1050 inbuf.pageslen = 1;
1051 inbuf.attrs = init.attrs;
1052 inbuf.siglen = init.siglen;
Jonathan Marek84195d22020-09-08 09:10:10 -04001053 fl->pd = USER_PD;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001054
1055 if (init.filelen && init.filefd) {
1056 err = fastrpc_map_create(fl, init.filefd, init.filelen, &map);
1057 if (err)
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001058 goto err;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001059 }
1060
1061 memlen = ALIGN(max(INIT_FILELEN_MAX, (int)init.filelen * 4),
1062 1024 * 1024);
1063 err = fastrpc_buf_alloc(fl, fl->sctx->dev, memlen,
1064 &imem);
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001065 if (err)
1066 goto err_alloc;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001067
1068 fl->init_mem = imem;
1069 args[0].ptr = (u64)(uintptr_t)&inbuf;
1070 args[0].length = sizeof(inbuf);
1071 args[0].fd = -1;
1072
1073 args[1].ptr = (u64)(uintptr_t)current->comm;
1074 args[1].length = inbuf.namelen;
1075 args[1].fd = -1;
1076
1077 args[2].ptr = (u64) init.file;
1078 args[2].length = inbuf.filelen;
1079 args[2].fd = init.filefd;
1080
1081 pages[0].addr = imem->phys;
1082 pages[0].size = imem->size;
1083
1084 args[3].ptr = (u64)(uintptr_t) pages;
1085 args[3].length = 1 * sizeof(*pages);
1086 args[3].fd = -1;
1087
1088 args[4].ptr = (u64)(uintptr_t)&inbuf.attrs;
1089 args[4].length = sizeof(inbuf.attrs);
1090 args[4].fd = -1;
1091
1092 args[5].ptr = (u64)(uintptr_t) &inbuf.siglen;
1093 args[5].length = sizeof(inbuf.siglen);
1094 args[5].fd = -1;
1095
1096 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE, 4, 0);
1097 if (init.attrs)
1098 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE_ATTR, 6, 0);
1099
1100 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1101 sc, args);
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001102 if (err)
1103 goto err_invoke;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001104
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001105 kfree(args);
1106
1107 return 0;
1108
1109err_invoke:
1110 fl->init_mem = NULL;
1111 fastrpc_buf_free(imem);
1112err_alloc:
1113 if (map) {
1114 spin_lock(&fl->lock);
1115 list_del(&map->node);
1116 spin_unlock(&fl->lock);
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001117 fastrpc_map_put(map);
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001118 }
Thierry Escandeb49f6d82019-03-07 10:12:23 +00001119err:
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001120 kfree(args);
1121
1122 return err;
1123}
1124
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001125static struct fastrpc_session_ctx *fastrpc_session_alloc(
1126 struct fastrpc_channel_ctx *cctx)
1127{
1128 struct fastrpc_session_ctx *session = NULL;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001129 unsigned long flags;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001130 int i;
1131
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001132 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001133 for (i = 0; i < cctx->sesscount; i++) {
1134 if (!cctx->session[i].used && cctx->session[i].valid) {
1135 cctx->session[i].used = true;
1136 session = &cctx->session[i];
1137 break;
1138 }
1139 }
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001140 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001141
1142 return session;
1143}
1144
1145static void fastrpc_session_free(struct fastrpc_channel_ctx *cctx,
1146 struct fastrpc_session_ctx *session)
1147{
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001148 unsigned long flags;
1149
1150 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001151 session->used = false;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001152 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001153}
1154
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001155static int fastrpc_release_current_dsp_process(struct fastrpc_user *fl)
1156{
1157 struct fastrpc_invoke_args args[1];
1158 int tgid = 0;
1159 u32 sc;
1160
1161 tgid = fl->tgid;
1162 args[0].ptr = (u64)(uintptr_t) &tgid;
1163 args[0].length = sizeof(tgid);
1164 args[0].fd = -1;
1165 args[0].reserved = 0;
1166 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_RELEASE, 1, 0);
1167
1168 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1169 sc, &args[0]);
1170}
1171
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001172static int fastrpc_device_release(struct inode *inode, struct file *file)
1173{
1174 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1175 struct fastrpc_channel_ctx *cctx = fl->cctx;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001176 struct fastrpc_invoke_ctx *ctx, *n;
1177 struct fastrpc_map *map, *m;
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +01001178 struct fastrpc_buf *buf, *b;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001179 unsigned long flags;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001180
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001181 fastrpc_release_current_dsp_process(fl);
1182
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001183 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001184 list_del(&fl->user);
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001185 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001186
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001187 if (fl->init_mem)
1188 fastrpc_buf_free(fl->init_mem);
1189
1190 list_for_each_entry_safe(ctx, n, &fl->pending, node) {
1191 list_del(&ctx->node);
1192 fastrpc_context_put(ctx);
1193 }
1194
1195 list_for_each_entry_safe(map, m, &fl->maps, node) {
1196 list_del(&map->node);
1197 fastrpc_map_put(map);
1198 }
1199
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +01001200 list_for_each_entry_safe(buf, b, &fl->mmaps, node) {
1201 list_del(&buf->node);
1202 fastrpc_buf_free(buf);
1203 }
1204
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001205 fastrpc_session_free(cctx, fl->sctx);
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001206 fastrpc_channel_ctx_put(cctx);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001207
1208 mutex_destroy(&fl->mutex);
1209 kfree(fl);
1210 file->private_data = NULL;
1211
1212 return 0;
1213}
1214
1215static int fastrpc_device_open(struct inode *inode, struct file *filp)
1216{
1217 struct fastrpc_channel_ctx *cctx = miscdev_to_cctx(filp->private_data);
1218 struct fastrpc_user *fl = NULL;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001219 unsigned long flags;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001220
1221 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
1222 if (!fl)
1223 return -ENOMEM;
1224
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001225 /* Released in fastrpc_device_release() */
1226 fastrpc_channel_ctx_get(cctx);
1227
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001228 filp->private_data = fl;
1229 spin_lock_init(&fl->lock);
1230 mutex_init(&fl->mutex);
1231 INIT_LIST_HEAD(&fl->pending);
1232 INIT_LIST_HEAD(&fl->maps);
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +01001233 INIT_LIST_HEAD(&fl->mmaps);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001234 INIT_LIST_HEAD(&fl->user);
1235 fl->tgid = current->tgid;
1236 fl->cctx = cctx;
Thierry Escande7c11df42019-02-15 10:40:07 +00001237
1238 fl->sctx = fastrpc_session_alloc(cctx);
1239 if (!fl->sctx) {
1240 dev_err(&cctx->rpdev->dev, "No session available\n");
1241 mutex_destroy(&fl->mutex);
1242 kfree(fl);
1243
1244 return -EBUSY;
1245 }
1246
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001247 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001248 list_add_tail(&fl->user, &cctx->users);
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001249 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001250
1251 return 0;
1252}
1253
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +00001254static int fastrpc_dmabuf_alloc(struct fastrpc_user *fl, char __user *argp)
1255{
1256 struct fastrpc_alloc_dma_buf bp;
1257 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
1258 struct fastrpc_buf *buf = NULL;
1259 int err;
1260
1261 if (copy_from_user(&bp, argp, sizeof(bp)))
1262 return -EFAULT;
1263
1264 err = fastrpc_buf_alloc(fl, fl->sctx->dev, bp.size, &buf);
1265 if (err)
1266 return err;
1267 exp_info.ops = &fastrpc_dma_buf_ops;
1268 exp_info.size = bp.size;
1269 exp_info.flags = O_RDWR;
1270 exp_info.priv = buf;
1271 buf->dmabuf = dma_buf_export(&exp_info);
1272 if (IS_ERR(buf->dmabuf)) {
1273 err = PTR_ERR(buf->dmabuf);
1274 fastrpc_buf_free(buf);
1275 return err;
1276 }
1277
1278 bp.fd = dma_buf_fd(buf->dmabuf, O_ACCMODE);
1279 if (bp.fd < 0) {
1280 dma_buf_put(buf->dmabuf);
1281 return -EINVAL;
1282 }
1283
1284 if (copy_to_user(argp, &bp, sizeof(bp))) {
1285 dma_buf_put(buf->dmabuf);
1286 return -EFAULT;
1287 }
1288
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +00001289 return 0;
1290}
1291
Jonathan Marek6010d9b2020-09-08 09:10:11 -04001292static int fastrpc_init_attach(struct fastrpc_user *fl, int pd)
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001293{
1294 struct fastrpc_invoke_args args[1];
1295 int tgid = fl->tgid;
1296 u32 sc;
1297
1298 args[0].ptr = (u64)(uintptr_t) &tgid;
1299 args[0].length = sizeof(tgid);
1300 args[0].fd = -1;
1301 args[0].reserved = 0;
1302 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_ATTACH, 1, 0);
Jonathan Marek6010d9b2020-09-08 09:10:11 -04001303 fl->pd = pd;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001304
1305 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1306 sc, &args[0]);
1307}
1308
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001309static int fastrpc_invoke(struct fastrpc_user *fl, char __user *argp)
1310{
1311 struct fastrpc_invoke_args *args = NULL;
1312 struct fastrpc_invoke inv;
1313 u32 nscalars;
1314 int err;
1315
1316 if (copy_from_user(&inv, argp, sizeof(inv)))
1317 return -EFAULT;
1318
1319 /* nscalars is truncated here to max supported value */
1320 nscalars = REMOTE_SCALARS_LENGTH(inv.sc);
1321 if (nscalars) {
1322 args = kcalloc(nscalars, sizeof(*args), GFP_KERNEL);
1323 if (!args)
1324 return -ENOMEM;
1325
1326 if (copy_from_user(args, (void __user *)(uintptr_t)inv.args,
1327 nscalars * sizeof(*args))) {
1328 kfree(args);
1329 return -EFAULT;
1330 }
1331 }
1332
1333 err = fastrpc_internal_invoke(fl, false, inv.handle, inv.sc, args);
1334 kfree(args);
1335
1336 return err;
1337}
1338
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +01001339static int fastrpc_req_munmap_impl(struct fastrpc_user *fl,
1340 struct fastrpc_req_munmap *req)
1341{
1342 struct fastrpc_invoke_args args[1] = { [0] = { 0 } };
1343 struct fastrpc_buf *buf, *b;
1344 struct fastrpc_munmap_req_msg req_msg;
1345 struct device *dev = fl->sctx->dev;
1346 int err;
1347 u32 sc;
1348
1349 spin_lock(&fl->lock);
1350 list_for_each_entry_safe(buf, b, &fl->mmaps, node) {
1351 if ((buf->raddr == req->vaddrout) && (buf->size == req->size))
1352 break;
1353 buf = NULL;
1354 }
1355 spin_unlock(&fl->lock);
1356
1357 if (!buf) {
1358 dev_err(dev, "mmap not in list\n");
1359 return -EINVAL;
1360 }
1361
1362 req_msg.pgid = fl->tgid;
1363 req_msg.size = buf->size;
1364 req_msg.vaddr = buf->raddr;
1365
1366 args[0].ptr = (u64) (uintptr_t) &req_msg;
1367 args[0].length = sizeof(req_msg);
1368
1369 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MUNMAP, 1, 0);
1370 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1371 &args[0]);
1372 if (!err) {
1373 dev_dbg(dev, "unmmap\tpt 0x%09lx OK\n", buf->raddr);
1374 spin_lock(&fl->lock);
1375 list_del(&buf->node);
1376 spin_unlock(&fl->lock);
1377 fastrpc_buf_free(buf);
1378 } else {
1379 dev_err(dev, "unmmap\tpt 0x%09lx ERROR\n", buf->raddr);
1380 }
1381
1382 return err;
1383}
1384
1385static int fastrpc_req_munmap(struct fastrpc_user *fl, char __user *argp)
1386{
1387 struct fastrpc_req_munmap req;
1388
1389 if (copy_from_user(&req, argp, sizeof(req)))
1390 return -EFAULT;
1391
1392 return fastrpc_req_munmap_impl(fl, &req);
1393}
1394
1395static int fastrpc_req_mmap(struct fastrpc_user *fl, char __user *argp)
1396{
1397 struct fastrpc_invoke_args args[3] = { [0 ... 2] = { 0 } };
1398 struct fastrpc_buf *buf = NULL;
1399 struct fastrpc_mmap_req_msg req_msg;
1400 struct fastrpc_mmap_rsp_msg rsp_msg;
1401 struct fastrpc_req_munmap req_unmap;
1402 struct fastrpc_phy_page pages;
1403 struct fastrpc_req_mmap req;
1404 struct device *dev = fl->sctx->dev;
1405 int err;
1406 u32 sc;
1407
1408 if (copy_from_user(&req, argp, sizeof(req)))
1409 return -EFAULT;
1410
1411 if (req.flags != ADSP_MMAP_ADD_PAGES) {
1412 dev_err(dev, "flag not supported 0x%x\n", req.flags);
1413 return -EINVAL;
1414 }
1415
1416 if (req.vaddrin) {
1417 dev_err(dev, "adding user allocated pages is not supported\n");
1418 return -EINVAL;
1419 }
1420
1421 err = fastrpc_buf_alloc(fl, fl->sctx->dev, req.size, &buf);
1422 if (err) {
1423 dev_err(dev, "failed to allocate buffer\n");
1424 return err;
1425 }
1426
1427 req_msg.pgid = fl->tgid;
1428 req_msg.flags = req.flags;
1429 req_msg.vaddr = req.vaddrin;
1430 req_msg.num = sizeof(pages);
1431
1432 args[0].ptr = (u64) (uintptr_t) &req_msg;
1433 args[0].length = sizeof(req_msg);
1434
1435 pages.addr = buf->phys;
1436 pages.size = buf->size;
1437
1438 args[1].ptr = (u64) (uintptr_t) &pages;
1439 args[1].length = sizeof(pages);
1440
1441 args[2].ptr = (u64) (uintptr_t) &rsp_msg;
1442 args[2].length = sizeof(rsp_msg);
1443
1444 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MMAP, 2, 1);
1445 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1446 &args[0]);
1447 if (err) {
1448 dev_err(dev, "mmap error (len 0x%08llx)\n", buf->size);
1449 goto err_invoke;
1450 }
1451
1452 /* update the buffer to be able to deallocate the memory on the DSP */
1453 buf->raddr = (uintptr_t) rsp_msg.vaddr;
1454
1455 /* let the client know the address to use */
1456 req.vaddrout = rsp_msg.vaddr;
1457
1458 spin_lock(&fl->lock);
1459 list_add_tail(&buf->node, &fl->mmaps);
1460 spin_unlock(&fl->lock);
1461
1462 if (copy_to_user((void __user *)argp, &req, sizeof(req))) {
1463 /* unmap the memory and release the buffer */
1464 req_unmap.vaddrout = buf->raddr;
1465 req_unmap.size = buf->size;
1466 fastrpc_req_munmap_impl(fl, &req_unmap);
1467 return -EFAULT;
1468 }
1469
1470 dev_dbg(dev, "mmap\t\tpt 0x%09lx OK [len 0x%08llx]\n",
1471 buf->raddr, buf->size);
1472
1473 return 0;
1474
1475err_invoke:
1476 fastrpc_buf_free(buf);
1477
1478 return err;
1479}
1480
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001481static long fastrpc_device_ioctl(struct file *file, unsigned int cmd,
1482 unsigned long arg)
1483{
1484 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1485 char __user *argp = (char __user *)arg;
1486 int err;
1487
1488 switch (cmd) {
1489 case FASTRPC_IOCTL_INVOKE:
1490 err = fastrpc_invoke(fl, argp);
1491 break;
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001492 case FASTRPC_IOCTL_INIT_ATTACH:
Jonathan Marek6010d9b2020-09-08 09:10:11 -04001493 err = fastrpc_init_attach(fl, AUDIO_PD);
1494 break;
1495 case FASTRPC_IOCTL_INIT_ATTACH_SNS:
1496 err = fastrpc_init_attach(fl, SENSORS_PD);
Srinivas Kandagatlad73f71c2019-02-08 17:11:26 +00001497 break;
1498 case FASTRPC_IOCTL_INIT_CREATE:
1499 err = fastrpc_init_create_process(fl, argp);
1500 break;
Srinivas Kandagatla6cffd792019-02-08 17:11:27 +00001501 case FASTRPC_IOCTL_ALLOC_DMA_BUFF:
1502 err = fastrpc_dmabuf_alloc(fl, argp);
1503 break;
Jorge Ramirez-Ortiz2419e552019-10-09 15:41:19 +01001504 case FASTRPC_IOCTL_MMAP:
1505 err = fastrpc_req_mmap(fl, argp);
1506 break;
1507 case FASTRPC_IOCTL_MUNMAP:
1508 err = fastrpc_req_munmap(fl, argp);
1509 break;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001510 default:
1511 err = -ENOTTY;
1512 break;
1513 }
1514
1515 return err;
1516}
1517
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001518static const struct file_operations fastrpc_fops = {
1519 .open = fastrpc_device_open,
1520 .release = fastrpc_device_release,
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001521 .unlocked_ioctl = fastrpc_device_ioctl,
1522 .compat_ioctl = fastrpc_device_ioctl,
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001523};
1524
1525static int fastrpc_cb_probe(struct platform_device *pdev)
1526{
1527 struct fastrpc_channel_ctx *cctx;
1528 struct fastrpc_session_ctx *sess;
1529 struct device *dev = &pdev->dev;
1530 int i, sessions = 0;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001531 unsigned long flags;
Bo YU01b76c32019-03-28 03:47:37 -04001532 int rc;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001533
1534 cctx = dev_get_drvdata(dev->parent);
1535 if (!cctx)
1536 return -EINVAL;
1537
1538 of_property_read_u32(dev->of_node, "qcom,nsessions", &sessions);
1539
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001540 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001541 sess = &cctx->session[cctx->sesscount];
1542 sess->used = false;
1543 sess->valid = true;
1544 sess->dev = dev;
1545 dev_set_drvdata(dev, sess);
1546
1547 if (of_property_read_u32(dev->of_node, "reg", &sess->sid))
1548 dev_info(dev, "FastRPC Session ID not specified in DT\n");
1549
1550 if (sessions > 0) {
1551 struct fastrpc_session_ctx *dup_sess;
1552
1553 for (i = 1; i < sessions; i++) {
1554 if (cctx->sesscount++ >= FASTRPC_MAX_SESSIONS)
1555 break;
1556 dup_sess = &cctx->session[cctx->sesscount];
1557 memcpy(dup_sess, sess, sizeof(*dup_sess));
1558 }
1559 }
1560 cctx->sesscount++;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001561 spin_unlock_irqrestore(&cctx->lock, flags);
Bo YU01b76c32019-03-28 03:47:37 -04001562 rc = dma_set_mask(dev, DMA_BIT_MASK(32));
1563 if (rc) {
1564 dev_err(dev, "32-bit DMA enable failed\n");
1565 return rc;
1566 }
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001567
1568 return 0;
1569}
1570
1571static int fastrpc_cb_remove(struct platform_device *pdev)
1572{
1573 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(pdev->dev.parent);
1574 struct fastrpc_session_ctx *sess = dev_get_drvdata(&pdev->dev);
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001575 unsigned long flags;
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001576 int i;
1577
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001578 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001579 for (i = 1; i < FASTRPC_MAX_SESSIONS; i++) {
1580 if (cctx->session[i].sid == sess->sid) {
1581 cctx->session[i].valid = false;
1582 cctx->sesscount--;
1583 }
1584 }
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001585 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001586
1587 return 0;
1588}
1589
1590static const struct of_device_id fastrpc_match_table[] = {
1591 { .compatible = "qcom,fastrpc-compute-cb", },
1592 {}
1593};
1594
1595static struct platform_driver fastrpc_cb_driver = {
1596 .probe = fastrpc_cb_probe,
1597 .remove = fastrpc_cb_remove,
1598 .driver = {
1599 .name = "qcom,fastrpc-cb",
1600 .of_match_table = fastrpc_match_table,
1601 .suppress_bind_attrs = true,
1602 },
1603};
1604
1605static int fastrpc_rpmsg_probe(struct rpmsg_device *rpdev)
1606{
1607 struct device *rdev = &rpdev->dev;
1608 struct fastrpc_channel_ctx *data;
1609 int i, err, domain_id = -1;
1610 const char *domain;
1611
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001612 err = of_property_read_string(rdev->of_node, "label", &domain);
1613 if (err) {
1614 dev_info(rdev, "FastRPC Domain not specified in DT\n");
1615 return err;
1616 }
1617
1618 for (i = 0; i <= CDSP_DOMAIN_ID; i++) {
1619 if (!strcmp(domains[i], domain)) {
1620 domain_id = i;
1621 break;
1622 }
1623 }
1624
1625 if (domain_id < 0) {
1626 dev_info(rdev, "FastRPC Invalid Domain ID %d\n", domain_id);
1627 return -EINVAL;
1628 }
1629
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001630 data = kzalloc(sizeof(*data), GFP_KERNEL);
1631 if (!data)
1632 return -ENOMEM;
1633
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001634 data->miscdev.minor = MISC_DYNAMIC_MINOR;
Srinivas Kandagatla2d10d2d2019-10-09 15:41:20 +01001635 data->miscdev.name = devm_kasprintf(rdev, GFP_KERNEL, "fastrpc-%s",
1636 domains[domain_id]);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001637 data->miscdev.fops = &fastrpc_fops;
1638 err = misc_register(&data->miscdev);
Srinivas Kandagatla0978de92020-05-11 17:27:22 +01001639 if (err) {
1640 kfree(data);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001641 return err;
Srinivas Kandagatla0978de92020-05-11 17:27:22 +01001642 }
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001643
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001644 kref_init(&data->refcount);
1645
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001646 dev_set_drvdata(&rpdev->dev, data);
1647 dma_set_mask_and_coherent(rdev, DMA_BIT_MASK(32));
1648 INIT_LIST_HEAD(&data->users);
1649 spin_lock_init(&data->lock);
1650 idr_init(&data->ctx_idr);
1651 data->domain_id = domain_id;
1652 data->rpdev = rpdev;
1653
1654 return of_platform_populate(rdev->of_node, NULL, NULL, rdev);
1655}
1656
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001657static void fastrpc_notify_users(struct fastrpc_user *user)
1658{
1659 struct fastrpc_invoke_ctx *ctx;
1660
1661 spin_lock(&user->lock);
1662 list_for_each_entry(ctx, &user->pending, node)
1663 complete(&ctx->work);
1664 spin_unlock(&user->lock);
1665}
1666
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001667static void fastrpc_rpmsg_remove(struct rpmsg_device *rpdev)
1668{
1669 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001670 struct fastrpc_user *user;
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001671 unsigned long flags;
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001672
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001673 spin_lock_irqsave(&cctx->lock, flags);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001674 list_for_each_entry(user, &cctx->users, user)
1675 fastrpc_notify_users(user);
Srinivas Kandagatla977e6c82019-03-07 10:12:25 +00001676 spin_unlock_irqrestore(&cctx->lock, flags);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001677
1678 misc_deregister(&cctx->miscdev);
1679 of_platform_depopulate(&rpdev->dev);
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001680
Bjorn Andersson2e369872019-08-29 10:29:23 +01001681 cctx->rpdev = NULL;
Bjorn Andersson278d56f2019-08-29 10:29:22 +01001682 fastrpc_channel_ctx_put(cctx);
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001683}
1684
1685static int fastrpc_rpmsg_callback(struct rpmsg_device *rpdev, void *data,
1686 int len, void *priv, u32 addr)
1687{
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001688 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
1689 struct fastrpc_invoke_rsp *rsp = data;
1690 struct fastrpc_invoke_ctx *ctx;
1691 unsigned long flags;
1692 unsigned long ctxid;
1693
1694 if (len < sizeof(*rsp))
1695 return -EINVAL;
1696
1697 ctxid = ((rsp->ctx & FASTRPC_CTXID_MASK) >> 4);
1698
1699 spin_lock_irqsave(&cctx->lock, flags);
1700 ctx = idr_find(&cctx->ctx_idr, ctxid);
1701 spin_unlock_irqrestore(&cctx->lock, flags);
1702
1703 if (!ctx) {
1704 dev_err(&rpdev->dev, "No context ID matches response\n");
1705 return -ENOENT;
1706 }
1707
1708 ctx->retval = rsp->retval;
1709 complete(&ctx->work);
Thierry Escande8e7389c2019-03-07 10:12:22 +00001710
1711 /*
1712 * The DMA buffer associated with the context cannot be freed in
1713 * interrupt context so schedule it through a worker thread to
1714 * avoid a kernel BUG.
1715 */
1716 schedule_work(&ctx->put_work);
Srinivas Kandagatlac68cfb72019-02-08 17:11:25 +00001717
Srinivas Kandagatlaf6f92792019-02-08 17:11:24 +00001718 return 0;
1719}
1720
1721static const struct of_device_id fastrpc_rpmsg_of_match[] = {
1722 { .compatible = "qcom,fastrpc" },
1723 { },
1724};
1725MODULE_DEVICE_TABLE(of, fastrpc_rpmsg_of_match);
1726
1727static struct rpmsg_driver fastrpc_driver = {
1728 .probe = fastrpc_rpmsg_probe,
1729 .remove = fastrpc_rpmsg_remove,
1730 .callback = fastrpc_rpmsg_callback,
1731 .drv = {
1732 .name = "qcom,fastrpc",
1733 .of_match_table = fastrpc_rpmsg_of_match,
1734 },
1735};
1736
1737static int fastrpc_init(void)
1738{
1739 int ret;
1740
1741 ret = platform_driver_register(&fastrpc_cb_driver);
1742 if (ret < 0) {
1743 pr_err("fastrpc: failed to register cb driver\n");
1744 return ret;
1745 }
1746
1747 ret = register_rpmsg_driver(&fastrpc_driver);
1748 if (ret < 0) {
1749 pr_err("fastrpc: failed to register rpmsg driver\n");
1750 platform_driver_unregister(&fastrpc_cb_driver);
1751 return ret;
1752 }
1753
1754 return 0;
1755}
1756module_init(fastrpc_init);
1757
1758static void fastrpc_exit(void)
1759{
1760 platform_driver_unregister(&fastrpc_cb_driver);
1761 unregister_rpmsg_driver(&fastrpc_driver);
1762}
1763module_exit(fastrpc_exit);
1764
1765MODULE_LICENSE("GPL v2");