misc: fastrpc: do not interrupt kernel calls
[linux-block.git] / drivers / misc / fastrpc.c
CommitLineData
f6f9279f
SK
1// SPDX-License-Identifier: GPL-2.0
2// Copyright (c) 2011-2018, The Linux Foundation. All rights reserved.
3// Copyright (c) 2018, Linaro Limited
4
c68cfb71 5#include <linux/completion.h>
f6f9279f 6#include <linux/device.h>
c68cfb71 7#include <linux/dma-buf.h>
f6f9279f
SK
8#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>
25e8dfb8 15#include <linux/sort.h>
f6f9279f
SK
16#include <linux/of_platform.h>
17#include <linux/rpmsg.h>
18#include <linux/scatterlist.h>
19#include <linux/slab.h>
c68cfb71 20#include <uapi/misc/fastrpc.h>
f6f9279f
SK
21
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*/
c68cfb71
SK
28#define FASTRPC_ALIGN 128
29#define FASTRPC_MAX_FDLIST 16
30#define FASTRPC_MAX_CRCLIST 64
31#define FASTRPC_PHYS(p) ((p) & 0xffffffff)
f6f9279f 32#define FASTRPC_CTX_MAX (256)
d73f71c7 33#define FASTRPC_INIT_HANDLE 1
f6f9279f 34#define FASTRPC_CTXID_MASK (0xFF0)
f1cf11c2 35#define INIT_FILELEN_MAX (64 * 1024 * 1024)
f6f9279f 36#define FASTRPC_DEVICE_NAME "fastrpc"
2419e55e 37#define ADSP_MMAP_ADD_PAGES 0x1000
f6f9279f 38
c68cfb71
SK
39/* 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
d73f71c7
SK
66#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
2419e55e
JRO
70#define FASTRPC_RMID_INIT_MMAP 4
71#define FASTRPC_RMID_INIT_MUNMAP 5
d73f71c7
SK
72#define FASTRPC_RMID_INIT_CREATE 6
73#define FASTRPC_RMID_INIT_CREATE_ATTR 7
74#define FASTRPC_RMID_INIT_CREATE_STATIC 8
75
f6f9279f
SK
76#define miscdev_to_cctx(d) container_of(d, struct fastrpc_channel_ctx, miscdev)
77
78static const char *domains[FASTRPC_DEV_MAX] = { "adsp", "mdsp",
79 "sdsp", "cdsp"};
c68cfb71
SK
80struct fastrpc_phy_page {
81 u64 addr; /* physical address */
82 u64 size; /* size of contiguous region */
83};
84
85struct fastrpc_invoke_buf {
86 u32 num; /* number of contiguous regions */
87 u32 pgidx; /* index to start of contiguous region */
88};
89
90struct fastrpc_remote_arg {
91 u64 pv;
92 u64 len;
93};
94
2419e55e
JRO
95struct fastrpc_mmap_rsp_msg {
96 u64 vaddr;
97};
98
99struct fastrpc_mmap_req_msg {
100 s32 pgid;
101 u32 flags;
102 u64 vaddr;
103 s32 num;
104};
105
106struct fastrpc_munmap_req_msg {
107 s32 pgid;
108 u64 vaddr;
109 u64 size;
110};
111
c68cfb71
SK
112struct fastrpc_msg {
113 int pid; /* process group id */
114 int tid; /* thread id */
115 u64 ctx; /* invoke caller context */
116 u32 handle; /* handle to invoke */
117 u32 sc; /* scalars structure describing the data */
118 u64 addr; /* physical address */
119 u64 size; /* size of contiguous region */
120};
121
122struct fastrpc_invoke_rsp {
123 u64 ctx; /* invoke caller context */
124 int retval; /* invoke return value */
125};
126
25e8dfb8
SK
127struct fastrpc_buf_overlap {
128 u64 start;
129 u64 end;
130 int raix;
131 u64 mstart;
132 u64 mend;
133 u64 offset;
134};
135
c68cfb71
SK
136struct fastrpc_buf {
137 struct fastrpc_user *fl;
6cffd795 138 struct dma_buf *dmabuf;
c68cfb71
SK
139 struct device *dev;
140 void *virt;
141 u64 phys;
142 u64 size;
6cffd795
SK
143 /* Lock for dma buf attachments */
144 struct mutex lock;
145 struct list_head attachments;
2419e55e
JRO
146 /* mmap support */
147 struct list_head node; /* list of user requested mmaps */
148 uintptr_t raddr;
6cffd795
SK
149};
150
151struct fastrpc_dma_buf_attachment {
152 struct device *dev;
153 struct sg_table sgt;
154 struct list_head node;
c68cfb71
SK
155};
156
157struct fastrpc_map {
158 struct list_head node;
159 struct fastrpc_user *fl;
160 int fd;
161 struct dma_buf *buf;
162 struct sg_table *table;
163 struct dma_buf_attachment *attach;
164 u64 phys;
165 u64 size;
166 void *va;
167 u64 len;
168 struct kref refcount;
169};
170
171struct fastrpc_invoke_ctx {
172 int nscalars;
173 int nbufs;
174 int retval;
175 int pid;
176 int tgid;
177 u32 sc;
178 u32 *crc;
179 u64 ctxid;
180 u64 msg_sz;
181 struct kref refcount;
182 struct list_head node; /* list of ctxs */
183 struct completion work;
8e7389c7 184 struct work_struct put_work;
c68cfb71
SK
185 struct fastrpc_msg msg;
186 struct fastrpc_user *fl;
187 struct fastrpc_remote_arg *rpra;
188 struct fastrpc_map **maps;
189 struct fastrpc_buf *buf;
190 struct fastrpc_invoke_args *args;
25e8dfb8 191 struct fastrpc_buf_overlap *olaps;
c68cfb71
SK
192 struct fastrpc_channel_ctx *cctx;
193};
f6f9279f
SK
194
195struct fastrpc_session_ctx {
196 struct device *dev;
197 int sid;
198 bool used;
199 bool valid;
200};
201
202struct fastrpc_channel_ctx {
203 int domain_id;
204 int sesscount;
205 struct rpmsg_device *rpdev;
206 struct fastrpc_session_ctx session[FASTRPC_MAX_SESSIONS];
207 spinlock_t lock;
208 struct idr ctx_idr;
209 struct list_head users;
210 struct miscdevice miscdev;
278d56f9 211 struct kref refcount;
f6f9279f
SK
212};
213
214struct fastrpc_user {
215 struct list_head user;
216 struct list_head maps;
217 struct list_head pending;
2419e55e 218 struct list_head mmaps;
f6f9279f
SK
219
220 struct fastrpc_channel_ctx *cctx;
221 struct fastrpc_session_ctx *sctx;
c68cfb71 222 struct fastrpc_buf *init_mem;
f6f9279f
SK
223
224 int tgid;
225 int pd;
226 /* Lock for lists */
227 spinlock_t lock;
228 /* lock for allocations */
229 struct mutex mutex;
230};
231
c68cfb71
SK
232static void fastrpc_free_map(struct kref *ref)
233{
234 struct fastrpc_map *map;
235
236 map = container_of(ref, struct fastrpc_map, refcount);
237
238 if (map->table) {
239 dma_buf_unmap_attachment(map->attach, map->table,
240 DMA_BIDIRECTIONAL);
241 dma_buf_detach(map->buf, map->attach);
242 dma_buf_put(map->buf);
243 }
244
245 kfree(map);
246}
247
248static void fastrpc_map_put(struct fastrpc_map *map)
249{
250 if (map)
251 kref_put(&map->refcount, fastrpc_free_map);
252}
253
254static void fastrpc_map_get(struct fastrpc_map *map)
255{
256 if (map)
257 kref_get(&map->refcount);
258}
259
260static int fastrpc_map_find(struct fastrpc_user *fl, int fd,
261 struct fastrpc_map **ppmap)
262{
263 struct fastrpc_map *map = NULL;
264
265 mutex_lock(&fl->mutex);
266 list_for_each_entry(map, &fl->maps, node) {
267 if (map->fd == fd) {
268 fastrpc_map_get(map);
269 *ppmap = map;
270 mutex_unlock(&fl->mutex);
271 return 0;
272 }
273 }
274 mutex_unlock(&fl->mutex);
275
276 return -ENOENT;
277}
278
279static void fastrpc_buf_free(struct fastrpc_buf *buf)
280{
281 dma_free_coherent(buf->dev, buf->size, buf->virt,
282 FASTRPC_PHYS(buf->phys));
283 kfree(buf);
284}
285
286static int fastrpc_buf_alloc(struct fastrpc_user *fl, struct device *dev,
287 u64 size, struct fastrpc_buf **obuf)
288{
289 struct fastrpc_buf *buf;
290
291 buf = kzalloc(sizeof(*buf), GFP_KERNEL);
292 if (!buf)
293 return -ENOMEM;
294
6cffd795 295 INIT_LIST_HEAD(&buf->attachments);
2419e55e 296 INIT_LIST_HEAD(&buf->node);
6cffd795
SK
297 mutex_init(&buf->lock);
298
c68cfb71
SK
299 buf->fl = fl;
300 buf->virt = NULL;
301 buf->phys = 0;
302 buf->size = size;
303 buf->dev = dev;
2419e55e 304 buf->raddr = 0;
c68cfb71
SK
305
306 buf->virt = dma_alloc_coherent(dev, buf->size, (dma_addr_t *)&buf->phys,
307 GFP_KERNEL);
41db5f83
JRO
308 if (!buf->virt) {
309 mutex_destroy(&buf->lock);
310 kfree(buf);
c68cfb71 311 return -ENOMEM;
41db5f83 312 }
c68cfb71
SK
313
314 if (fl->sctx && fl->sctx->sid)
315 buf->phys += ((u64)fl->sctx->sid << 32);
316
317 *obuf = buf;
318
319 return 0;
320}
321
278d56f9
BA
322static void fastrpc_channel_ctx_free(struct kref *ref)
323{
324 struct fastrpc_channel_ctx *cctx;
325
326 cctx = container_of(ref, struct fastrpc_channel_ctx, refcount);
327
328 kfree(cctx);
329}
330
331static void fastrpc_channel_ctx_get(struct fastrpc_channel_ctx *cctx)
332{
333 kref_get(&cctx->refcount);
334}
335
336static void fastrpc_channel_ctx_put(struct fastrpc_channel_ctx *cctx)
337{
338 kref_put(&cctx->refcount, fastrpc_channel_ctx_free);
339}
340
c68cfb71
SK
341static void fastrpc_context_free(struct kref *ref)
342{
343 struct fastrpc_invoke_ctx *ctx;
344 struct fastrpc_channel_ctx *cctx;
977e6c8d 345 unsigned long flags;
c68cfb71
SK
346 int i;
347
348 ctx = container_of(ref, struct fastrpc_invoke_ctx, refcount);
349 cctx = ctx->cctx;
350
351 for (i = 0; i < ctx->nscalars; i++)
352 fastrpc_map_put(ctx->maps[i]);
353
354 if (ctx->buf)
355 fastrpc_buf_free(ctx->buf);
356
977e6c8d 357 spin_lock_irqsave(&cctx->lock, flags);
c68cfb71 358 idr_remove(&cctx->ctx_idr, ctx->ctxid >> 4);
977e6c8d 359 spin_unlock_irqrestore(&cctx->lock, flags);
c68cfb71
SK
360
361 kfree(ctx->maps);
25e8dfb8 362 kfree(ctx->olaps);
c68cfb71 363 kfree(ctx);
278d56f9
BA
364
365 fastrpc_channel_ctx_put(cctx);
c68cfb71
SK
366}
367
368static void fastrpc_context_get(struct fastrpc_invoke_ctx *ctx)
369{
370 kref_get(&ctx->refcount);
371}
372
373static void fastrpc_context_put(struct fastrpc_invoke_ctx *ctx)
374{
375 kref_put(&ctx->refcount, fastrpc_context_free);
376}
377
8e7389c7
TE
378static void fastrpc_context_put_wq(struct work_struct *work)
379{
380 struct fastrpc_invoke_ctx *ctx =
381 container_of(work, struct fastrpc_invoke_ctx, put_work);
382
383 fastrpc_context_put(ctx);
384}
385
25e8dfb8
SK
386#define CMP(aa, bb) ((aa) == (bb) ? 0 : (aa) < (bb) ? -1 : 1)
387static int olaps_cmp(const void *a, const void *b)
388{
389 struct fastrpc_buf_overlap *pa = (struct fastrpc_buf_overlap *)a;
390 struct fastrpc_buf_overlap *pb = (struct fastrpc_buf_overlap *)b;
391 /* sort with lowest starting buffer first */
392 int st = CMP(pa->start, pb->start);
393 /* sort with highest ending buffer first */
394 int ed = CMP(pb->end, pa->end);
395
396 return st == 0 ? ed : st;
397}
398
399static void fastrpc_get_buff_overlaps(struct fastrpc_invoke_ctx *ctx)
400{
401 u64 max_end = 0;
402 int i;
403
404 for (i = 0; i < ctx->nbufs; ++i) {
405 ctx->olaps[i].start = ctx->args[i].ptr;
406 ctx->olaps[i].end = ctx->olaps[i].start + ctx->args[i].length;
407 ctx->olaps[i].raix = i;
408 }
409
410 sort(ctx->olaps, ctx->nbufs, sizeof(*ctx->olaps), olaps_cmp, NULL);
411
412 for (i = 0; i < ctx->nbufs; ++i) {
413 /* Falling inside previous range */
414 if (ctx->olaps[i].start < max_end) {
415 ctx->olaps[i].mstart = max_end;
416 ctx->olaps[i].mend = ctx->olaps[i].end;
417 ctx->olaps[i].offset = max_end - ctx->olaps[i].start;
418
419 if (ctx->olaps[i].end > max_end) {
420 max_end = ctx->olaps[i].end;
421 } else {
422 ctx->olaps[i].mend = 0;
423 ctx->olaps[i].mstart = 0;
424 }
425
426 } else {
427 ctx->olaps[i].mend = ctx->olaps[i].end;
428 ctx->olaps[i].mstart = ctx->olaps[i].start;
429 ctx->olaps[i].offset = 0;
430 max_end = ctx->olaps[i].end;
431 }
432 }
433}
434
c68cfb71
SK
435static struct fastrpc_invoke_ctx *fastrpc_context_alloc(
436 struct fastrpc_user *user, u32 kernel, u32 sc,
437 struct fastrpc_invoke_args *args)
438{
439 struct fastrpc_channel_ctx *cctx = user->cctx;
440 struct fastrpc_invoke_ctx *ctx = NULL;
977e6c8d 441 unsigned long flags;
c68cfb71
SK
442 int ret;
443
444 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
445 if (!ctx)
446 return ERR_PTR(-ENOMEM);
447
448 INIT_LIST_HEAD(&ctx->node);
449 ctx->fl = user;
450 ctx->nscalars = REMOTE_SCALARS_LENGTH(sc);
451 ctx->nbufs = REMOTE_SCALARS_INBUFS(sc) +
452 REMOTE_SCALARS_OUTBUFS(sc);
453
454 if (ctx->nscalars) {
455 ctx->maps = kcalloc(ctx->nscalars,
456 sizeof(*ctx->maps), GFP_KERNEL);
457 if (!ctx->maps) {
458 kfree(ctx);
459 return ERR_PTR(-ENOMEM);
460 }
25e8dfb8
SK
461 ctx->olaps = kcalloc(ctx->nscalars,
462 sizeof(*ctx->olaps), GFP_KERNEL);
463 if (!ctx->olaps) {
464 kfree(ctx->maps);
465 kfree(ctx);
466 return ERR_PTR(-ENOMEM);
467 }
c68cfb71 468 ctx->args = args;
25e8dfb8 469 fastrpc_get_buff_overlaps(ctx);
c68cfb71
SK
470 }
471
278d56f9
BA
472 /* Released in fastrpc_context_put() */
473 fastrpc_channel_ctx_get(cctx);
474
c68cfb71
SK
475 ctx->sc = sc;
476 ctx->retval = -1;
477 ctx->pid = current->pid;
478 ctx->tgid = user->tgid;
479 ctx->cctx = cctx;
480 init_completion(&ctx->work);
8e7389c7 481 INIT_WORK(&ctx->put_work, fastrpc_context_put_wq);
c68cfb71
SK
482
483 spin_lock(&user->lock);
484 list_add_tail(&ctx->node, &user->pending);
485 spin_unlock(&user->lock);
486
977e6c8d 487 spin_lock_irqsave(&cctx->lock, flags);
c68cfb71
SK
488 ret = idr_alloc_cyclic(&cctx->ctx_idr, ctx, 1,
489 FASTRPC_CTX_MAX, GFP_ATOMIC);
490 if (ret < 0) {
977e6c8d 491 spin_unlock_irqrestore(&cctx->lock, flags);
c68cfb71
SK
492 goto err_idr;
493 }
494 ctx->ctxid = ret << 4;
977e6c8d 495 spin_unlock_irqrestore(&cctx->lock, flags);
c68cfb71
SK
496
497 kref_init(&ctx->refcount);
498
499 return ctx;
500err_idr:
501 spin_lock(&user->lock);
502 list_del(&ctx->node);
503 spin_unlock(&user->lock);
278d56f9 504 fastrpc_channel_ctx_put(cctx);
c68cfb71 505 kfree(ctx->maps);
25e8dfb8 506 kfree(ctx->olaps);
c68cfb71
SK
507 kfree(ctx);
508
509 return ERR_PTR(ret);
510}
511
6cffd795
SK
512static struct sg_table *
513fastrpc_map_dma_buf(struct dma_buf_attachment *attachment,
514 enum dma_data_direction dir)
515{
516 struct fastrpc_dma_buf_attachment *a = attachment->priv;
517 struct sg_table *table;
518
519 table = &a->sgt;
520
521 if (!dma_map_sg(attachment->dev, table->sgl, table->nents, dir))
522 return ERR_PTR(-ENOMEM);
523
524 return table;
525}
526
527static void fastrpc_unmap_dma_buf(struct dma_buf_attachment *attach,
528 struct sg_table *table,
529 enum dma_data_direction dir)
530{
531 dma_unmap_sg(attach->dev, table->sgl, table->nents, dir);
532}
533
534static void fastrpc_release(struct dma_buf *dmabuf)
535{
536 struct fastrpc_buf *buffer = dmabuf->priv;
537
538 fastrpc_buf_free(buffer);
539}
540
541static int fastrpc_dma_buf_attach(struct dma_buf *dmabuf,
542 struct dma_buf_attachment *attachment)
543{
544 struct fastrpc_dma_buf_attachment *a;
545 struct fastrpc_buf *buffer = dmabuf->priv;
546 int ret;
547
548 a = kzalloc(sizeof(*a), GFP_KERNEL);
549 if (!a)
550 return -ENOMEM;
551
552 ret = dma_get_sgtable(buffer->dev, &a->sgt, buffer->virt,
553 FASTRPC_PHYS(buffer->phys), buffer->size);
554 if (ret < 0) {
555 dev_err(buffer->dev, "failed to get scatterlist from DMA API\n");
556 return -EINVAL;
557 }
558
559 a->dev = attachment->dev;
560 INIT_LIST_HEAD(&a->node);
561 attachment->priv = a;
562
563 mutex_lock(&buffer->lock);
564 list_add(&a->node, &buffer->attachments);
565 mutex_unlock(&buffer->lock);
566
567 return 0;
568}
569
570static void fastrpc_dma_buf_detatch(struct dma_buf *dmabuf,
571 struct dma_buf_attachment *attachment)
572{
573 struct fastrpc_dma_buf_attachment *a = attachment->priv;
574 struct fastrpc_buf *buffer = dmabuf->priv;
575
576 mutex_lock(&buffer->lock);
577 list_del(&a->node);
578 mutex_unlock(&buffer->lock);
cf61860e 579 sg_free_table(&a->sgt);
6cffd795
SK
580 kfree(a);
581}
582
583static void *fastrpc_kmap(struct dma_buf *dmabuf, unsigned long pgnum)
584{
585 struct fastrpc_buf *buf = dmabuf->priv;
586
587 return buf->virt ? buf->virt + pgnum * PAGE_SIZE : NULL;
588}
589
590static void *fastrpc_vmap(struct dma_buf *dmabuf)
591{
592 struct fastrpc_buf *buf = dmabuf->priv;
593
594 return buf->virt;
595}
596
597static int fastrpc_mmap(struct dma_buf *dmabuf,
598 struct vm_area_struct *vma)
599{
600 struct fastrpc_buf *buf = dmabuf->priv;
601 size_t size = vma->vm_end - vma->vm_start;
602
603 return dma_mmap_coherent(buf->dev, vma, buf->virt,
604 FASTRPC_PHYS(buf->phys), size);
605}
606
607static const struct dma_buf_ops fastrpc_dma_buf_ops = {
608 .attach = fastrpc_dma_buf_attach,
609 .detach = fastrpc_dma_buf_detatch,
610 .map_dma_buf = fastrpc_map_dma_buf,
611 .unmap_dma_buf = fastrpc_unmap_dma_buf,
612 .mmap = fastrpc_mmap,
613 .map = fastrpc_kmap,
614 .vmap = fastrpc_vmap,
615 .release = fastrpc_release,
616};
617
c68cfb71
SK
618static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
619 u64 len, struct fastrpc_map **ppmap)
620{
621 struct fastrpc_session_ctx *sess = fl->sctx;
622 struct fastrpc_map *map = NULL;
623 int err = 0;
624
625 if (!fastrpc_map_find(fl, fd, ppmap))
626 return 0;
627
628 map = kzalloc(sizeof(*map), GFP_KERNEL);
629 if (!map)
630 return -ENOMEM;
631
632 INIT_LIST_HEAD(&map->node);
633 map->fl = fl;
634 map->fd = fd;
635 map->buf = dma_buf_get(fd);
682a6044
WY
636 if (IS_ERR(map->buf)) {
637 err = PTR_ERR(map->buf);
c68cfb71
SK
638 goto get_err;
639 }
640
641 map->attach = dma_buf_attach(map->buf, sess->dev);
642 if (IS_ERR(map->attach)) {
643 dev_err(sess->dev, "Failed to attach dmabuf\n");
644 err = PTR_ERR(map->attach);
645 goto attach_err;
646 }
647
648 map->table = dma_buf_map_attachment(map->attach, DMA_BIDIRECTIONAL);
649 if (IS_ERR(map->table)) {
650 err = PTR_ERR(map->table);
651 goto map_err;
652 }
653
654 map->phys = sg_dma_address(map->table->sgl);
655 map->phys += ((u64)fl->sctx->sid << 32);
656 map->size = len;
657 map->va = sg_virt(map->table->sgl);
658 map->len = len;
659 kref_init(&map->refcount);
660
661 spin_lock(&fl->lock);
662 list_add_tail(&map->node, &fl->maps);
663 spin_unlock(&fl->lock);
664 *ppmap = map;
665
666 return 0;
667
668map_err:
669 dma_buf_detach(map->buf, map->attach);
670attach_err:
671 dma_buf_put(map->buf);
672get_err:
673 kfree(map);
674
675 return err;
676}
677
678/*
679 * Fastrpc payload buffer with metadata looks like:
680 *
681 * >>>>>> START of METADATA <<<<<<<<<
682 * +---------------------------------+
683 * | Arguments |
684 * | type:(struct fastrpc_remote_arg)|
685 * | (0 - N) |
686 * +---------------------------------+
687 * | Invoke Buffer list |
688 * | type:(struct fastrpc_invoke_buf)|
689 * | (0 - N) |
690 * +---------------------------------+
691 * | Page info list |
692 * | type:(struct fastrpc_phy_page) |
693 * | (0 - N) |
694 * +---------------------------------+
695 * | Optional info |
696 * |(can be specific to SoC/Firmware)|
697 * +---------------------------------+
698 * >>>>>>>> END of METADATA <<<<<<<<<
699 * +---------------------------------+
700 * | Inline ARGS |
701 * | (0-N) |
702 * +---------------------------------+
703 */
704
705static int fastrpc_get_meta_size(struct fastrpc_invoke_ctx *ctx)
706{
707 int size = 0;
708
709 size = (sizeof(struct fastrpc_remote_arg) +
710 sizeof(struct fastrpc_invoke_buf) +
711 sizeof(struct fastrpc_phy_page)) * ctx->nscalars +
712 sizeof(u64) * FASTRPC_MAX_FDLIST +
713 sizeof(u32) * FASTRPC_MAX_CRCLIST;
714
715 return size;
716}
717
718static u64 fastrpc_get_payload_size(struct fastrpc_invoke_ctx *ctx, int metalen)
719{
720 u64 size = 0;
721 int i;
722
723 size = ALIGN(metalen, FASTRPC_ALIGN);
724 for (i = 0; i < ctx->nscalars; i++) {
725 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1) {
25e8dfb8
SK
726
727 if (ctx->olaps[i].offset == 0)
728 size = ALIGN(size, FASTRPC_ALIGN);
729
730 size += (ctx->olaps[i].mend - ctx->olaps[i].mstart);
c68cfb71
SK
731 }
732 }
733
734 return size;
735}
736
737static int fastrpc_create_maps(struct fastrpc_invoke_ctx *ctx)
738{
739 struct device *dev = ctx->fl->sctx->dev;
740 int i, err;
741
742 for (i = 0; i < ctx->nscalars; ++i) {
743 /* Make sure reserved field is set to 0 */
744 if (ctx->args[i].reserved)
745 return -EINVAL;
746
747 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1 ||
748 ctx->args[i].length == 0)
749 continue;
750
751 err = fastrpc_map_create(ctx->fl, ctx->args[i].fd,
752 ctx->args[i].length, &ctx->maps[i]);
753 if (err) {
754 dev_err(dev, "Error Creating map %d\n", err);
755 return -EINVAL;
756 }
757
758 }
759 return 0;
760}
761
762static int fastrpc_get_args(u32 kernel, struct fastrpc_invoke_ctx *ctx)
763{
764 struct device *dev = ctx->fl->sctx->dev;
765 struct fastrpc_remote_arg *rpra;
766 struct fastrpc_invoke_buf *list;
767 struct fastrpc_phy_page *pages;
25e8dfb8
SK
768 int inbufs, i, oix, err = 0;
769 u64 len, rlen, pkt_size;
02b45b47 770 u64 pg_start, pg_end;
c68cfb71
SK
771 uintptr_t args;
772 int metalen;
773
c68cfb71
SK
774 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
775 metalen = fastrpc_get_meta_size(ctx);
776 pkt_size = fastrpc_get_payload_size(ctx, metalen);
777
778 err = fastrpc_create_maps(ctx);
779 if (err)
780 return err;
781
782 ctx->msg_sz = pkt_size;
783
784 err = fastrpc_buf_alloc(ctx->fl, dev, pkt_size, &ctx->buf);
785 if (err)
786 return err;
787
788 rpra = ctx->buf->virt;
789 list = ctx->buf->virt + ctx->nscalars * sizeof(*rpra);
790 pages = ctx->buf->virt + ctx->nscalars * (sizeof(*list) +
791 sizeof(*rpra));
792 args = (uintptr_t)ctx->buf->virt + metalen;
793 rlen = pkt_size - metalen;
794 ctx->rpra = rpra;
795
25e8dfb8
SK
796 for (oix = 0; oix < ctx->nbufs; ++oix) {
797 int mlen;
798
799 i = ctx->olaps[oix].raix;
800 len = ctx->args[i].length;
c68cfb71
SK
801
802 rpra[i].pv = 0;
803 rpra[i].len = len;
804 list[i].num = len ? 1 : 0;
805 list[i].pgidx = i;
806
807 if (!len)
808 continue;
809
c68cfb71 810 if (ctx->maps[i]) {
80f3afd7
SK
811 struct vm_area_struct *vma = NULL;
812
c68cfb71
SK
813 rpra[i].pv = (u64) ctx->args[i].ptr;
814 pages[i].addr = ctx->maps[i]->phys;
80f3afd7
SK
815
816 vma = find_vma(current->mm, ctx->args[i].ptr);
817 if (vma)
818 pages[i].addr += ctx->args[i].ptr -
819 vma->vm_start;
820
02b45b47
SK
821 pg_start = (ctx->args[i].ptr & PAGE_MASK) >> PAGE_SHIFT;
822 pg_end = ((ctx->args[i].ptr + len - 1) & PAGE_MASK) >>
823 PAGE_SHIFT;
824 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
825
c68cfb71 826 } else {
25e8dfb8
SK
827
828 if (ctx->olaps[oix].offset == 0) {
829 rlen -= ALIGN(args, FASTRPC_ALIGN) - args;
830 args = ALIGN(args, FASTRPC_ALIGN);
831 }
832
833 mlen = ctx->olaps[oix].mend - ctx->olaps[oix].mstart;
834
835 if (rlen < mlen)
c68cfb71
SK
836 goto bail;
837
25e8dfb8
SK
838 rpra[i].pv = args - ctx->olaps[oix].offset;
839 pages[i].addr = ctx->buf->phys -
840 ctx->olaps[oix].offset +
841 (pkt_size - rlen);
c68cfb71 842 pages[i].addr = pages[i].addr & PAGE_MASK;
25e8dfb8 843
02b45b47
SK
844 pg_start = (args & PAGE_MASK) >> PAGE_SHIFT;
845 pg_end = ((args + len - 1) & PAGE_MASK) >> PAGE_SHIFT;
846 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
25e8dfb8
SK
847 args = args + mlen;
848 rlen -= mlen;
c68cfb71
SK
849 }
850
851 if (i < inbufs && !ctx->maps[i]) {
852 void *dst = (void *)(uintptr_t)rpra[i].pv;
853 void *src = (void *)(uintptr_t)ctx->args[i].ptr;
854
855 if (!kernel) {
856 if (copy_from_user(dst, (void __user *)src,
857 len)) {
858 err = -EFAULT;
859 goto bail;
860 }
861 } else {
862 memcpy(dst, src, len);
863 }
864 }
865 }
866
867 for (i = ctx->nbufs; i < ctx->nscalars; ++i) {
868 rpra[i].pv = (u64) ctx->args[i].ptr;
869 rpra[i].len = ctx->args[i].length;
870 list[i].num = ctx->args[i].length ? 1 : 0;
871 list[i].pgidx = i;
872 pages[i].addr = ctx->maps[i]->phys;
873 pages[i].size = ctx->maps[i]->size;
874 }
875
876bail:
877 if (err)
878 dev_err(dev, "Error: get invoke args failed:%d\n", err);
879
880 return err;
881}
882
883static int fastrpc_put_args(struct fastrpc_invoke_ctx *ctx,
884 u32 kernel)
885{
886 struct fastrpc_remote_arg *rpra = ctx->rpra;
887 int i, inbufs;
888
889 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
890
891 for (i = inbufs; i < ctx->nbufs; ++i) {
892 void *src = (void *)(uintptr_t)rpra[i].pv;
893 void *dst = (void *)(uintptr_t)ctx->args[i].ptr;
894 u64 len = rpra[i].len;
895
896 if (!kernel) {
897 if (copy_to_user((void __user *)dst, src, len))
898 return -EFAULT;
899 } else {
900 memcpy(dst, src, len);
901 }
902 }
903
904 return 0;
905}
906
907static int fastrpc_invoke_send(struct fastrpc_session_ctx *sctx,
908 struct fastrpc_invoke_ctx *ctx,
909 u32 kernel, uint32_t handle)
910{
911 struct fastrpc_channel_ctx *cctx;
912 struct fastrpc_user *fl = ctx->fl;
913 struct fastrpc_msg *msg = &ctx->msg;
914
915 cctx = fl->cctx;
916 msg->pid = fl->tgid;
917 msg->tid = current->pid;
918
919 if (kernel)
920 msg->pid = 0;
921
922 msg->ctx = ctx->ctxid | fl->pd;
923 msg->handle = handle;
924 msg->sc = ctx->sc;
925 msg->addr = ctx->buf ? ctx->buf->phys : 0;
926 msg->size = roundup(ctx->msg_sz, PAGE_SIZE);
927 fastrpc_context_get(ctx);
928
929 return rpmsg_send(cctx->rpdev->ept, (void *)msg, sizeof(*msg));
930}
931
932static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel,
933 u32 handle, u32 sc,
934 struct fastrpc_invoke_args *args)
935{
936 struct fastrpc_invoke_ctx *ctx = NULL;
937 int err = 0;
938
939 if (!fl->sctx)
940 return -EINVAL;
941
2e369878
BA
942 if (!fl->cctx->rpdev)
943 return -EPIPE;
944
c68cfb71
SK
945 ctx = fastrpc_context_alloc(fl, kernel, sc, args);
946 if (IS_ERR(ctx))
947 return PTR_ERR(ctx);
948
949 if (ctx->nscalars) {
950 err = fastrpc_get_args(kernel, ctx);
951 if (err)
952 goto bail;
953 }
415a0729
SK
954
955 /* make sure that all CPU memory writes are seen by DSP */
956 dma_wmb();
c68cfb71
SK
957 /* Send invoke buffer to remote dsp */
958 err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle);
959 if (err)
960 goto bail;
961
55bcda35
JRO
962 if (kernel) {
963 if (!wait_for_completion_timeout(&ctx->work, 10 * HZ))
964 err = -ETIMEDOUT;
965 } else {
966 err = wait_for_completion_interruptible(&ctx->work);
967 }
968
c68cfb71
SK
969 if (err)
970 goto bail;
971
972 /* Check the response from remote dsp */
973 err = ctx->retval;
974 if (err)
975 goto bail;
976
977 if (ctx->nscalars) {
415a0729
SK
978 /* make sure that all memory writes by DSP are seen by CPU */
979 dma_rmb();
c68cfb71
SK
980 /* populate all the output buffers with results */
981 err = fastrpc_put_args(ctx, kernel);
982 if (err)
983 goto bail;
984 }
985
986bail:
987 /* We are done with this compute context, remove it from pending list */
988 spin_lock(&fl->lock);
989 list_del(&ctx->node);
990 spin_unlock(&fl->lock);
991 fastrpc_context_put(ctx);
992
993 if (err)
994 dev_dbg(fl->sctx->dev, "Error: Invoke Failed %d\n", err);
995
996 return err;
997}
998
d73f71c7
SK
999static int fastrpc_init_create_process(struct fastrpc_user *fl,
1000 char __user *argp)
1001{
1002 struct fastrpc_init_create init;
1003 struct fastrpc_invoke_args *args;
1004 struct fastrpc_phy_page pages[1];
1005 struct fastrpc_map *map = NULL;
1006 struct fastrpc_buf *imem = NULL;
1007 int memlen;
1008 int err;
1009 struct {
1010 int pgid;
1011 u32 namelen;
1012 u32 filelen;
1013 u32 pageslen;
1014 u32 attrs;
1015 u32 siglen;
1016 } inbuf;
1017 u32 sc;
1018
1019 args = kcalloc(FASTRPC_CREATE_PROCESS_NARGS, sizeof(*args), GFP_KERNEL);
1020 if (!args)
1021 return -ENOMEM;
1022
1023 if (copy_from_user(&init, argp, sizeof(init))) {
1024 err = -EFAULT;
b49f6d83 1025 goto err;
d73f71c7
SK
1026 }
1027
1028 if (init.filelen > INIT_FILELEN_MAX) {
1029 err = -EINVAL;
b49f6d83 1030 goto err;
d73f71c7
SK
1031 }
1032
1033 inbuf.pgid = fl->tgid;
1034 inbuf.namelen = strlen(current->comm) + 1;
1035 inbuf.filelen = init.filelen;
1036 inbuf.pageslen = 1;
1037 inbuf.attrs = init.attrs;
1038 inbuf.siglen = init.siglen;
1039 fl->pd = 1;
1040
1041 if (init.filelen && init.filefd) {
1042 err = fastrpc_map_create(fl, init.filefd, init.filelen, &map);
1043 if (err)
b49f6d83 1044 goto err;
d73f71c7
SK
1045 }
1046
1047 memlen = ALIGN(max(INIT_FILELEN_MAX, (int)init.filelen * 4),
1048 1024 * 1024);
1049 err = fastrpc_buf_alloc(fl, fl->sctx->dev, memlen,
1050 &imem);
b49f6d83
TE
1051 if (err)
1052 goto err_alloc;
d73f71c7
SK
1053
1054 fl->init_mem = imem;
1055 args[0].ptr = (u64)(uintptr_t)&inbuf;
1056 args[0].length = sizeof(inbuf);
1057 args[0].fd = -1;
1058
1059 args[1].ptr = (u64)(uintptr_t)current->comm;
1060 args[1].length = inbuf.namelen;
1061 args[1].fd = -1;
1062
1063 args[2].ptr = (u64) init.file;
1064 args[2].length = inbuf.filelen;
1065 args[2].fd = init.filefd;
1066
1067 pages[0].addr = imem->phys;
1068 pages[0].size = imem->size;
1069
1070 args[3].ptr = (u64)(uintptr_t) pages;
1071 args[3].length = 1 * sizeof(*pages);
1072 args[3].fd = -1;
1073
1074 args[4].ptr = (u64)(uintptr_t)&inbuf.attrs;
1075 args[4].length = sizeof(inbuf.attrs);
1076 args[4].fd = -1;
1077
1078 args[5].ptr = (u64)(uintptr_t) &inbuf.siglen;
1079 args[5].length = sizeof(inbuf.siglen);
1080 args[5].fd = -1;
1081
1082 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE, 4, 0);
1083 if (init.attrs)
1084 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE_ATTR, 6, 0);
1085
1086 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1087 sc, args);
b49f6d83
TE
1088 if (err)
1089 goto err_invoke;
1090
1091 kfree(args);
d73f71c7 1092
b49f6d83
TE
1093 return 0;
1094
1095err_invoke:
1096 fl->init_mem = NULL;
1097 fastrpc_buf_free(imem);
1098err_alloc:
1099 if (map) {
1100 spin_lock(&fl->lock);
1101 list_del(&map->node);
1102 spin_unlock(&fl->lock);
d73f71c7 1103 fastrpc_map_put(map);
d73f71c7 1104 }
b49f6d83 1105err:
d73f71c7
SK
1106 kfree(args);
1107
1108 return err;
1109}
1110
f6f9279f
SK
1111static struct fastrpc_session_ctx *fastrpc_session_alloc(
1112 struct fastrpc_channel_ctx *cctx)
1113{
1114 struct fastrpc_session_ctx *session = NULL;
977e6c8d 1115 unsigned long flags;
f6f9279f
SK
1116 int i;
1117
977e6c8d 1118 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f
SK
1119 for (i = 0; i < cctx->sesscount; i++) {
1120 if (!cctx->session[i].used && cctx->session[i].valid) {
1121 cctx->session[i].used = true;
1122 session = &cctx->session[i];
1123 break;
1124 }
1125 }
977e6c8d 1126 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f
SK
1127
1128 return session;
1129}
1130
1131static void fastrpc_session_free(struct fastrpc_channel_ctx *cctx,
1132 struct fastrpc_session_ctx *session)
1133{
977e6c8d
SK
1134 unsigned long flags;
1135
1136 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f 1137 session->used = false;
977e6c8d 1138 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f
SK
1139}
1140
d73f71c7
SK
1141static int fastrpc_release_current_dsp_process(struct fastrpc_user *fl)
1142{
1143 struct fastrpc_invoke_args args[1];
1144 int tgid = 0;
1145 u32 sc;
1146
1147 tgid = fl->tgid;
1148 args[0].ptr = (u64)(uintptr_t) &tgid;
1149 args[0].length = sizeof(tgid);
1150 args[0].fd = -1;
1151 args[0].reserved = 0;
1152 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_RELEASE, 1, 0);
1153
1154 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1155 sc, &args[0]);
1156}
1157
f6f9279f
SK
1158static int fastrpc_device_release(struct inode *inode, struct file *file)
1159{
1160 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1161 struct fastrpc_channel_ctx *cctx = fl->cctx;
c68cfb71
SK
1162 struct fastrpc_invoke_ctx *ctx, *n;
1163 struct fastrpc_map *map, *m;
2419e55e 1164 struct fastrpc_buf *buf, *b;
977e6c8d 1165 unsigned long flags;
f6f9279f 1166
d73f71c7
SK
1167 fastrpc_release_current_dsp_process(fl);
1168
977e6c8d 1169 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f 1170 list_del(&fl->user);
977e6c8d 1171 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f 1172
c68cfb71
SK
1173 if (fl->init_mem)
1174 fastrpc_buf_free(fl->init_mem);
1175
1176 list_for_each_entry_safe(ctx, n, &fl->pending, node) {
1177 list_del(&ctx->node);
1178 fastrpc_context_put(ctx);
1179 }
1180
1181 list_for_each_entry_safe(map, m, &fl->maps, node) {
1182 list_del(&map->node);
1183 fastrpc_map_put(map);
1184 }
1185
2419e55e
JRO
1186 list_for_each_entry_safe(buf, b, &fl->mmaps, node) {
1187 list_del(&buf->node);
1188 fastrpc_buf_free(buf);
1189 }
1190
f6f9279f 1191 fastrpc_session_free(cctx, fl->sctx);
278d56f9 1192 fastrpc_channel_ctx_put(cctx);
f6f9279f
SK
1193
1194 mutex_destroy(&fl->mutex);
1195 kfree(fl);
1196 file->private_data = NULL;
1197
1198 return 0;
1199}
1200
1201static int fastrpc_device_open(struct inode *inode, struct file *filp)
1202{
1203 struct fastrpc_channel_ctx *cctx = miscdev_to_cctx(filp->private_data);
1204 struct fastrpc_user *fl = NULL;
977e6c8d 1205 unsigned long flags;
f6f9279f
SK
1206
1207 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
1208 if (!fl)
1209 return -ENOMEM;
1210
278d56f9
BA
1211 /* Released in fastrpc_device_release() */
1212 fastrpc_channel_ctx_get(cctx);
1213
f6f9279f
SK
1214 filp->private_data = fl;
1215 spin_lock_init(&fl->lock);
1216 mutex_init(&fl->mutex);
1217 INIT_LIST_HEAD(&fl->pending);
1218 INIT_LIST_HEAD(&fl->maps);
2419e55e 1219 INIT_LIST_HEAD(&fl->mmaps);
f6f9279f
SK
1220 INIT_LIST_HEAD(&fl->user);
1221 fl->tgid = current->tgid;
1222 fl->cctx = cctx;
7c11df42
TE
1223
1224 fl->sctx = fastrpc_session_alloc(cctx);
1225 if (!fl->sctx) {
1226 dev_err(&cctx->rpdev->dev, "No session available\n");
1227 mutex_destroy(&fl->mutex);
1228 kfree(fl);
1229
1230 return -EBUSY;
1231 }
1232
977e6c8d 1233 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f 1234 list_add_tail(&fl->user, &cctx->users);
977e6c8d 1235 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f
SK
1236
1237 return 0;
1238}
1239
6cffd795
SK
1240static int fastrpc_dmabuf_alloc(struct fastrpc_user *fl, char __user *argp)
1241{
1242 struct fastrpc_alloc_dma_buf bp;
1243 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
1244 struct fastrpc_buf *buf = NULL;
1245 int err;
1246
1247 if (copy_from_user(&bp, argp, sizeof(bp)))
1248 return -EFAULT;
1249
1250 err = fastrpc_buf_alloc(fl, fl->sctx->dev, bp.size, &buf);
1251 if (err)
1252 return err;
1253 exp_info.ops = &fastrpc_dma_buf_ops;
1254 exp_info.size = bp.size;
1255 exp_info.flags = O_RDWR;
1256 exp_info.priv = buf;
1257 buf->dmabuf = dma_buf_export(&exp_info);
1258 if (IS_ERR(buf->dmabuf)) {
1259 err = PTR_ERR(buf->dmabuf);
1260 fastrpc_buf_free(buf);
1261 return err;
1262 }
1263
1264 bp.fd = dma_buf_fd(buf->dmabuf, O_ACCMODE);
1265 if (bp.fd < 0) {
1266 dma_buf_put(buf->dmabuf);
1267 return -EINVAL;
1268 }
1269
1270 if (copy_to_user(argp, &bp, sizeof(bp))) {
1271 dma_buf_put(buf->dmabuf);
1272 return -EFAULT;
1273 }
1274
6cffd795
SK
1275 return 0;
1276}
1277
d73f71c7
SK
1278static int fastrpc_init_attach(struct fastrpc_user *fl)
1279{
1280 struct fastrpc_invoke_args args[1];
1281 int tgid = fl->tgid;
1282 u32 sc;
1283
1284 args[0].ptr = (u64)(uintptr_t) &tgid;
1285 args[0].length = sizeof(tgid);
1286 args[0].fd = -1;
1287 args[0].reserved = 0;
1288 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_ATTACH, 1, 0);
1289 fl->pd = 0;
1290
1291 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1292 sc, &args[0]);
1293}
1294
c68cfb71
SK
1295static int fastrpc_invoke(struct fastrpc_user *fl, char __user *argp)
1296{
1297 struct fastrpc_invoke_args *args = NULL;
1298 struct fastrpc_invoke inv;
1299 u32 nscalars;
1300 int err;
1301
1302 if (copy_from_user(&inv, argp, sizeof(inv)))
1303 return -EFAULT;
1304
1305 /* nscalars is truncated here to max supported value */
1306 nscalars = REMOTE_SCALARS_LENGTH(inv.sc);
1307 if (nscalars) {
1308 args = kcalloc(nscalars, sizeof(*args), GFP_KERNEL);
1309 if (!args)
1310 return -ENOMEM;
1311
1312 if (copy_from_user(args, (void __user *)(uintptr_t)inv.args,
1313 nscalars * sizeof(*args))) {
1314 kfree(args);
1315 return -EFAULT;
1316 }
1317 }
1318
1319 err = fastrpc_internal_invoke(fl, false, inv.handle, inv.sc, args);
1320 kfree(args);
1321
1322 return err;
1323}
1324
2419e55e
JRO
1325static int fastrpc_req_munmap_impl(struct fastrpc_user *fl,
1326 struct fastrpc_req_munmap *req)
1327{
1328 struct fastrpc_invoke_args args[1] = { [0] = { 0 } };
1329 struct fastrpc_buf *buf, *b;
1330 struct fastrpc_munmap_req_msg req_msg;
1331 struct device *dev = fl->sctx->dev;
1332 int err;
1333 u32 sc;
1334
1335 spin_lock(&fl->lock);
1336 list_for_each_entry_safe(buf, b, &fl->mmaps, node) {
1337 if ((buf->raddr == req->vaddrout) && (buf->size == req->size))
1338 break;
1339 buf = NULL;
1340 }
1341 spin_unlock(&fl->lock);
1342
1343 if (!buf) {
1344 dev_err(dev, "mmap not in list\n");
1345 return -EINVAL;
1346 }
1347
1348 req_msg.pgid = fl->tgid;
1349 req_msg.size = buf->size;
1350 req_msg.vaddr = buf->raddr;
1351
1352 args[0].ptr = (u64) (uintptr_t) &req_msg;
1353 args[0].length = sizeof(req_msg);
1354
1355 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MUNMAP, 1, 0);
1356 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1357 &args[0]);
1358 if (!err) {
1359 dev_dbg(dev, "unmmap\tpt 0x%09lx OK\n", buf->raddr);
1360 spin_lock(&fl->lock);
1361 list_del(&buf->node);
1362 spin_unlock(&fl->lock);
1363 fastrpc_buf_free(buf);
1364 } else {
1365 dev_err(dev, "unmmap\tpt 0x%09lx ERROR\n", buf->raddr);
1366 }
1367
1368 return err;
1369}
1370
1371static int fastrpc_req_munmap(struct fastrpc_user *fl, char __user *argp)
1372{
1373 struct fastrpc_req_munmap req;
1374
1375 if (copy_from_user(&req, argp, sizeof(req)))
1376 return -EFAULT;
1377
1378 return fastrpc_req_munmap_impl(fl, &req);
1379}
1380
1381static int fastrpc_req_mmap(struct fastrpc_user *fl, char __user *argp)
1382{
1383 struct fastrpc_invoke_args args[3] = { [0 ... 2] = { 0 } };
1384 struct fastrpc_buf *buf = NULL;
1385 struct fastrpc_mmap_req_msg req_msg;
1386 struct fastrpc_mmap_rsp_msg rsp_msg;
1387 struct fastrpc_req_munmap req_unmap;
1388 struct fastrpc_phy_page pages;
1389 struct fastrpc_req_mmap req;
1390 struct device *dev = fl->sctx->dev;
1391 int err;
1392 u32 sc;
1393
1394 if (copy_from_user(&req, argp, sizeof(req)))
1395 return -EFAULT;
1396
1397 if (req.flags != ADSP_MMAP_ADD_PAGES) {
1398 dev_err(dev, "flag not supported 0x%x\n", req.flags);
1399 return -EINVAL;
1400 }
1401
1402 if (req.vaddrin) {
1403 dev_err(dev, "adding user allocated pages is not supported\n");
1404 return -EINVAL;
1405 }
1406
1407 err = fastrpc_buf_alloc(fl, fl->sctx->dev, req.size, &buf);
1408 if (err) {
1409 dev_err(dev, "failed to allocate buffer\n");
1410 return err;
1411 }
1412
1413 req_msg.pgid = fl->tgid;
1414 req_msg.flags = req.flags;
1415 req_msg.vaddr = req.vaddrin;
1416 req_msg.num = sizeof(pages);
1417
1418 args[0].ptr = (u64) (uintptr_t) &req_msg;
1419 args[0].length = sizeof(req_msg);
1420
1421 pages.addr = buf->phys;
1422 pages.size = buf->size;
1423
1424 args[1].ptr = (u64) (uintptr_t) &pages;
1425 args[1].length = sizeof(pages);
1426
1427 args[2].ptr = (u64) (uintptr_t) &rsp_msg;
1428 args[2].length = sizeof(rsp_msg);
1429
1430 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MMAP, 2, 1);
1431 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1432 &args[0]);
1433 if (err) {
1434 dev_err(dev, "mmap error (len 0x%08llx)\n", buf->size);
1435 goto err_invoke;
1436 }
1437
1438 /* update the buffer to be able to deallocate the memory on the DSP */
1439 buf->raddr = (uintptr_t) rsp_msg.vaddr;
1440
1441 /* let the client know the address to use */
1442 req.vaddrout = rsp_msg.vaddr;
1443
1444 spin_lock(&fl->lock);
1445 list_add_tail(&buf->node, &fl->mmaps);
1446 spin_unlock(&fl->lock);
1447
1448 if (copy_to_user((void __user *)argp, &req, sizeof(req))) {
1449 /* unmap the memory and release the buffer */
1450 req_unmap.vaddrout = buf->raddr;
1451 req_unmap.size = buf->size;
1452 fastrpc_req_munmap_impl(fl, &req_unmap);
1453 return -EFAULT;
1454 }
1455
1456 dev_dbg(dev, "mmap\t\tpt 0x%09lx OK [len 0x%08llx]\n",
1457 buf->raddr, buf->size);
1458
1459 return 0;
1460
1461err_invoke:
1462 fastrpc_buf_free(buf);
1463
1464 return err;
1465}
1466
c68cfb71
SK
1467static long fastrpc_device_ioctl(struct file *file, unsigned int cmd,
1468 unsigned long arg)
1469{
1470 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1471 char __user *argp = (char __user *)arg;
1472 int err;
1473
1474 switch (cmd) {
1475 case FASTRPC_IOCTL_INVOKE:
1476 err = fastrpc_invoke(fl, argp);
1477 break;
d73f71c7
SK
1478 case FASTRPC_IOCTL_INIT_ATTACH:
1479 err = fastrpc_init_attach(fl);
1480 break;
1481 case FASTRPC_IOCTL_INIT_CREATE:
1482 err = fastrpc_init_create_process(fl, argp);
1483 break;
6cffd795
SK
1484 case FASTRPC_IOCTL_ALLOC_DMA_BUFF:
1485 err = fastrpc_dmabuf_alloc(fl, argp);
1486 break;
2419e55e
JRO
1487 case FASTRPC_IOCTL_MMAP:
1488 err = fastrpc_req_mmap(fl, argp);
1489 break;
1490 case FASTRPC_IOCTL_MUNMAP:
1491 err = fastrpc_req_munmap(fl, argp);
1492 break;
c68cfb71
SK
1493 default:
1494 err = -ENOTTY;
1495 break;
1496 }
1497
1498 return err;
1499}
1500
f6f9279f
SK
1501static const struct file_operations fastrpc_fops = {
1502 .open = fastrpc_device_open,
1503 .release = fastrpc_device_release,
c68cfb71
SK
1504 .unlocked_ioctl = fastrpc_device_ioctl,
1505 .compat_ioctl = fastrpc_device_ioctl,
f6f9279f
SK
1506};
1507
1508static int fastrpc_cb_probe(struct platform_device *pdev)
1509{
1510 struct fastrpc_channel_ctx *cctx;
1511 struct fastrpc_session_ctx *sess;
1512 struct device *dev = &pdev->dev;
1513 int i, sessions = 0;
977e6c8d 1514 unsigned long flags;
01b76c32 1515 int rc;
f6f9279f
SK
1516
1517 cctx = dev_get_drvdata(dev->parent);
1518 if (!cctx)
1519 return -EINVAL;
1520
1521 of_property_read_u32(dev->of_node, "qcom,nsessions", &sessions);
1522
977e6c8d 1523 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f
SK
1524 sess = &cctx->session[cctx->sesscount];
1525 sess->used = false;
1526 sess->valid = true;
1527 sess->dev = dev;
1528 dev_set_drvdata(dev, sess);
1529
1530 if (of_property_read_u32(dev->of_node, "reg", &sess->sid))
1531 dev_info(dev, "FastRPC Session ID not specified in DT\n");
1532
1533 if (sessions > 0) {
1534 struct fastrpc_session_ctx *dup_sess;
1535
1536 for (i = 1; i < sessions; i++) {
1537 if (cctx->sesscount++ >= FASTRPC_MAX_SESSIONS)
1538 break;
1539 dup_sess = &cctx->session[cctx->sesscount];
1540 memcpy(dup_sess, sess, sizeof(*dup_sess));
1541 }
1542 }
1543 cctx->sesscount++;
977e6c8d 1544 spin_unlock_irqrestore(&cctx->lock, flags);
01b76c32
BY
1545 rc = dma_set_mask(dev, DMA_BIT_MASK(32));
1546 if (rc) {
1547 dev_err(dev, "32-bit DMA enable failed\n");
1548 return rc;
1549 }
f6f9279f
SK
1550
1551 return 0;
1552}
1553
1554static int fastrpc_cb_remove(struct platform_device *pdev)
1555{
1556 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(pdev->dev.parent);
1557 struct fastrpc_session_ctx *sess = dev_get_drvdata(&pdev->dev);
977e6c8d 1558 unsigned long flags;
f6f9279f
SK
1559 int i;
1560
977e6c8d 1561 spin_lock_irqsave(&cctx->lock, flags);
f6f9279f
SK
1562 for (i = 1; i < FASTRPC_MAX_SESSIONS; i++) {
1563 if (cctx->session[i].sid == sess->sid) {
1564 cctx->session[i].valid = false;
1565 cctx->sesscount--;
1566 }
1567 }
977e6c8d 1568 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f
SK
1569
1570 return 0;
1571}
1572
1573static const struct of_device_id fastrpc_match_table[] = {
1574 { .compatible = "qcom,fastrpc-compute-cb", },
1575 {}
1576};
1577
1578static struct platform_driver fastrpc_cb_driver = {
1579 .probe = fastrpc_cb_probe,
1580 .remove = fastrpc_cb_remove,
1581 .driver = {
1582 .name = "qcom,fastrpc-cb",
1583 .of_match_table = fastrpc_match_table,
1584 .suppress_bind_attrs = true,
1585 },
1586};
1587
1588static int fastrpc_rpmsg_probe(struct rpmsg_device *rpdev)
1589{
1590 struct device *rdev = &rpdev->dev;
1591 struct fastrpc_channel_ctx *data;
1592 int i, err, domain_id = -1;
1593 const char *domain;
1594
f6f9279f
SK
1595 err = of_property_read_string(rdev->of_node, "label", &domain);
1596 if (err) {
1597 dev_info(rdev, "FastRPC Domain not specified in DT\n");
1598 return err;
1599 }
1600
1601 for (i = 0; i <= CDSP_DOMAIN_ID; i++) {
1602 if (!strcmp(domains[i], domain)) {
1603 domain_id = i;
1604 break;
1605 }
1606 }
1607
1608 if (domain_id < 0) {
1609 dev_info(rdev, "FastRPC Invalid Domain ID %d\n", domain_id);
1610 return -EINVAL;
1611 }
1612
278d56f9
BA
1613 data = kzalloc(sizeof(*data), GFP_KERNEL);
1614 if (!data)
1615 return -ENOMEM;
1616
f6f9279f 1617 data->miscdev.minor = MISC_DYNAMIC_MINOR;
2d10d2d1
SK
1618 data->miscdev.name = devm_kasprintf(rdev, GFP_KERNEL, "fastrpc-%s",
1619 domains[domain_id]);
f6f9279f
SK
1620 data->miscdev.fops = &fastrpc_fops;
1621 err = misc_register(&data->miscdev);
1622 if (err)
1623 return err;
1624
278d56f9
BA
1625 kref_init(&data->refcount);
1626
f6f9279f
SK
1627 dev_set_drvdata(&rpdev->dev, data);
1628 dma_set_mask_and_coherent(rdev, DMA_BIT_MASK(32));
1629 INIT_LIST_HEAD(&data->users);
1630 spin_lock_init(&data->lock);
1631 idr_init(&data->ctx_idr);
1632 data->domain_id = domain_id;
1633 data->rpdev = rpdev;
1634
1635 return of_platform_populate(rdev->of_node, NULL, NULL, rdev);
1636}
1637
c68cfb71
SK
1638static void fastrpc_notify_users(struct fastrpc_user *user)
1639{
1640 struct fastrpc_invoke_ctx *ctx;
1641
1642 spin_lock(&user->lock);
1643 list_for_each_entry(ctx, &user->pending, node)
1644 complete(&ctx->work);
1645 spin_unlock(&user->lock);
1646}
1647
f6f9279f
SK
1648static void fastrpc_rpmsg_remove(struct rpmsg_device *rpdev)
1649{
1650 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
c68cfb71 1651 struct fastrpc_user *user;
977e6c8d 1652 unsigned long flags;
c68cfb71 1653
977e6c8d 1654 spin_lock_irqsave(&cctx->lock, flags);
c68cfb71
SK
1655 list_for_each_entry(user, &cctx->users, user)
1656 fastrpc_notify_users(user);
977e6c8d 1657 spin_unlock_irqrestore(&cctx->lock, flags);
f6f9279f
SK
1658
1659 misc_deregister(&cctx->miscdev);
1660 of_platform_depopulate(&rpdev->dev);
278d56f9 1661
2e369878 1662 cctx->rpdev = NULL;
278d56f9 1663 fastrpc_channel_ctx_put(cctx);
f6f9279f
SK
1664}
1665
1666static int fastrpc_rpmsg_callback(struct rpmsg_device *rpdev, void *data,
1667 int len, void *priv, u32 addr)
1668{
c68cfb71
SK
1669 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
1670 struct fastrpc_invoke_rsp *rsp = data;
1671 struct fastrpc_invoke_ctx *ctx;
1672 unsigned long flags;
1673 unsigned long ctxid;
1674
1675 if (len < sizeof(*rsp))
1676 return -EINVAL;
1677
1678 ctxid = ((rsp->ctx & FASTRPC_CTXID_MASK) >> 4);
1679
1680 spin_lock_irqsave(&cctx->lock, flags);
1681 ctx = idr_find(&cctx->ctx_idr, ctxid);
1682 spin_unlock_irqrestore(&cctx->lock, flags);
1683
1684 if (!ctx) {
1685 dev_err(&rpdev->dev, "No context ID matches response\n");
1686 return -ENOENT;
1687 }
1688
1689 ctx->retval = rsp->retval;
1690 complete(&ctx->work);
8e7389c7
TE
1691
1692 /*
1693 * The DMA buffer associated with the context cannot be freed in
1694 * interrupt context so schedule it through a worker thread to
1695 * avoid a kernel BUG.
1696 */
1697 schedule_work(&ctx->put_work);
c68cfb71 1698
f6f9279f
SK
1699 return 0;
1700}
1701
1702static const struct of_device_id fastrpc_rpmsg_of_match[] = {
1703 { .compatible = "qcom,fastrpc" },
1704 { },
1705};
1706MODULE_DEVICE_TABLE(of, fastrpc_rpmsg_of_match);
1707
1708static struct rpmsg_driver fastrpc_driver = {
1709 .probe = fastrpc_rpmsg_probe,
1710 .remove = fastrpc_rpmsg_remove,
1711 .callback = fastrpc_rpmsg_callback,
1712 .drv = {
1713 .name = "qcom,fastrpc",
1714 .of_match_table = fastrpc_rpmsg_of_match,
1715 },
1716};
1717
1718static int fastrpc_init(void)
1719{
1720 int ret;
1721
1722 ret = platform_driver_register(&fastrpc_cb_driver);
1723 if (ret < 0) {
1724 pr_err("fastrpc: failed to register cb driver\n");
1725 return ret;
1726 }
1727
1728 ret = register_rpmsg_driver(&fastrpc_driver);
1729 if (ret < 0) {
1730 pr_err("fastrpc: failed to register rpmsg driver\n");
1731 platform_driver_unregister(&fastrpc_cb_driver);
1732 return ret;
1733 }
1734
1735 return 0;
1736}
1737module_init(fastrpc_init);
1738
1739static void fastrpc_exit(void)
1740{
1741 platform_driver_unregister(&fastrpc_cb_driver);
1742 unregister_rpmsg_driver(&fastrpc_driver);
1743}
1744module_exit(fastrpc_exit);
1745
1746MODULE_LICENSE("GPL v2");