1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2011-2018, The Linux Foundation. All rights reserved.
3 // Copyright (c) 2018, Linaro Limited
5 #include <linux/completion.h>
6 #include <linux/device.h>
7 #include <linux/dma-buf.h>
8 #include <linux/dma-mapping.h>
10 #include <linux/list.h>
11 #include <linux/miscdevice.h>
12 #include <linux/module.h>
13 #include <linux/of_address.h>
15 #include <linux/sort.h>
16 #include <linux/of_platform.h>
17 #include <linux/rpmsg.h>
18 #include <linux/scatterlist.h>
19 #include <linux/slab.h>
20 #include <uapi/misc/fastrpc.h>
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*/
28 #define FASTRPC_ALIGN 128
29 #define FASTRPC_MAX_FDLIST 16
30 #define FASTRPC_MAX_CRCLIST 64
31 #define FASTRPC_PHYS(p) ((p) & 0xffffffff)
32 #define FASTRPC_CTX_MAX (256)
33 #define FASTRPC_INIT_HANDLE 1
34 #define FASTRPC_CTXID_MASK (0xFF0)
35 #define INIT_FILELEN_MAX (2 * 1024 * 1024)
36 #define FASTRPC_DEVICE_NAME "fastrpc"
37 #define ADSP_MMAP_ADD_PAGES 0x1000
39 /* Retrives number of input buffers from the scalars parameter */
40 #define REMOTE_SCALARS_INBUFS(sc) (((sc) >> 16) & 0x0ff)
42 /* Retrives number of output buffers from the scalars parameter */
43 #define REMOTE_SCALARS_OUTBUFS(sc) (((sc) >> 8) & 0x0ff)
45 /* Retrives number of input handles from the scalars parameter */
46 #define REMOTE_SCALARS_INHANDLES(sc) (((sc) >> 4) & 0x0f)
48 /* Retrives number of output handles from the scalars parameter */
49 #define REMOTE_SCALARS_OUTHANDLES(sc) ((sc) & 0x0f)
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) | \
63 #define FASTRPC_SCALARS(method, in, out) \
64 FASTRPC_BUILD_SCALARS(0, method, in, out, 0, 0)
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
70 #define FASTRPC_RMID_INIT_MMAP 4
71 #define FASTRPC_RMID_INIT_MUNMAP 5
72 #define FASTRPC_RMID_INIT_CREATE 6
73 #define FASTRPC_RMID_INIT_CREATE_ATTR 7
74 #define FASTRPC_RMID_INIT_CREATE_STATIC 8
76 /* Protection Domain(PD) ids */
77 #define AUDIO_PD (0) /* also GUEST_OS PD? */
79 #define SENSORS_PD (2)
81 #define miscdev_to_cctx(d) container_of(d, struct fastrpc_channel_ctx, miscdev)
83 static const char *domains[FASTRPC_DEV_MAX] = { "adsp", "mdsp",
85 struct fastrpc_phy_page {
86 u64 addr; /* physical address */
87 u64 size; /* size of contiguous region */
90 struct fastrpc_invoke_buf {
91 u32 num; /* number of contiguous regions */
92 u32 pgidx; /* index to start of contiguous region */
95 struct fastrpc_remote_arg {
100 struct fastrpc_mmap_rsp_msg {
104 struct fastrpc_mmap_req_msg {
111 struct fastrpc_munmap_req_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 */
127 struct fastrpc_invoke_rsp {
128 u64 ctx; /* invoke caller context */
129 int retval; /* invoke return value */
132 struct fastrpc_buf_overlap {
142 struct fastrpc_user *fl;
143 struct dma_buf *dmabuf;
148 /* Lock for dma buf attachments */
150 struct list_head attachments;
152 struct list_head node; /* list of user requested mmaps */
156 struct fastrpc_dma_buf_attachment {
159 struct list_head node;
163 struct list_head node;
164 struct fastrpc_user *fl;
167 struct sg_table *table;
168 struct dma_buf_attachment *attach;
173 struct kref refcount;
176 struct fastrpc_invoke_ctx {
186 struct kref refcount;
187 struct list_head node; /* list of ctxs */
188 struct completion work;
189 struct work_struct put_work;
190 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;
196 struct fastrpc_buf_overlap *olaps;
197 struct fastrpc_channel_ctx *cctx;
200 struct fastrpc_session_ctx {
207 struct fastrpc_channel_ctx {
210 struct rpmsg_device *rpdev;
211 struct fastrpc_session_ctx session[FASTRPC_MAX_SESSIONS];
214 struct list_head users;
215 struct miscdevice miscdev;
216 struct kref refcount;
219 struct fastrpc_user {
220 struct list_head user;
221 struct list_head maps;
222 struct list_head pending;
223 struct list_head mmaps;
225 struct fastrpc_channel_ctx *cctx;
226 struct fastrpc_session_ctx *sctx;
227 struct fastrpc_buf *init_mem;
233 /* lock for allocations */
237 static void fastrpc_free_map(struct kref *ref)
239 struct fastrpc_map *map;
241 map = container_of(ref, struct fastrpc_map, refcount);
244 dma_buf_unmap_attachment(map->attach, map->table,
246 dma_buf_detach(map->buf, map->attach);
247 dma_buf_put(map->buf);
251 spin_lock(&map->fl->lock);
252 list_del(&map->node);
253 spin_unlock(&map->fl->lock);
260 static void fastrpc_map_put(struct fastrpc_map *map)
263 kref_put(&map->refcount, fastrpc_free_map);
266 static int fastrpc_map_get(struct fastrpc_map *map)
271 return kref_get_unless_zero(&map->refcount) ? 0 : -ENOENT;
274 static int fastrpc_map_find(struct fastrpc_user *fl, int fd,
275 struct fastrpc_map **ppmap)
277 struct fastrpc_map *map = NULL;
279 mutex_lock(&fl->mutex);
280 list_for_each_entry(map, &fl->maps, node) {
282 fastrpc_map_get(map);
284 mutex_unlock(&fl->mutex);
288 mutex_unlock(&fl->mutex);
293 static void fastrpc_buf_free(struct fastrpc_buf *buf)
295 dma_free_coherent(buf->dev, buf->size, buf->virt,
296 FASTRPC_PHYS(buf->phys));
300 static int fastrpc_buf_alloc(struct fastrpc_user *fl, struct device *dev,
301 u64 size, struct fastrpc_buf **obuf)
303 struct fastrpc_buf *buf;
305 buf = kzalloc(sizeof(*buf), GFP_KERNEL);
309 INIT_LIST_HEAD(&buf->attachments);
310 INIT_LIST_HEAD(&buf->node);
311 mutex_init(&buf->lock);
320 buf->virt = dma_alloc_coherent(dev, buf->size, (dma_addr_t *)&buf->phys,
323 mutex_destroy(&buf->lock);
328 if (fl->sctx && fl->sctx->sid)
329 buf->phys += ((u64)fl->sctx->sid << 32);
336 static void fastrpc_channel_ctx_free(struct kref *ref)
338 struct fastrpc_channel_ctx *cctx;
340 cctx = container_of(ref, struct fastrpc_channel_ctx, refcount);
345 static void fastrpc_channel_ctx_get(struct fastrpc_channel_ctx *cctx)
347 kref_get(&cctx->refcount);
350 static void fastrpc_channel_ctx_put(struct fastrpc_channel_ctx *cctx)
352 kref_put(&cctx->refcount, fastrpc_channel_ctx_free);
355 static void fastrpc_context_free(struct kref *ref)
357 struct fastrpc_invoke_ctx *ctx;
358 struct fastrpc_channel_ctx *cctx;
362 ctx = container_of(ref, struct fastrpc_invoke_ctx, refcount);
365 for (i = 0; i < ctx->nscalars; i++)
366 fastrpc_map_put(ctx->maps[i]);
369 fastrpc_buf_free(ctx->buf);
371 spin_lock_irqsave(&cctx->lock, flags);
372 idr_remove(&cctx->ctx_idr, ctx->ctxid >> 4);
373 spin_unlock_irqrestore(&cctx->lock, flags);
379 fastrpc_channel_ctx_put(cctx);
382 static void fastrpc_context_get(struct fastrpc_invoke_ctx *ctx)
384 kref_get(&ctx->refcount);
387 static void fastrpc_context_put(struct fastrpc_invoke_ctx *ctx)
389 kref_put(&ctx->refcount, fastrpc_context_free);
392 static void fastrpc_context_put_wq(struct work_struct *work)
394 struct fastrpc_invoke_ctx *ctx =
395 container_of(work, struct fastrpc_invoke_ctx, put_work);
397 fastrpc_context_put(ctx);
400 #define CMP(aa, bb) ((aa) == (bb) ? 0 : (aa) < (bb) ? -1 : 1)
401 static int olaps_cmp(const void *a, const void *b)
403 struct fastrpc_buf_overlap *pa = (struct fastrpc_buf_overlap *)a;
404 struct fastrpc_buf_overlap *pb = (struct fastrpc_buf_overlap *)b;
405 /* sort with lowest starting buffer first */
406 int st = CMP(pa->start, pb->start);
407 /* sort with highest ending buffer first */
408 int ed = CMP(pb->end, pa->end);
410 return st == 0 ? ed : st;
413 static void fastrpc_get_buff_overlaps(struct fastrpc_invoke_ctx *ctx)
418 for (i = 0; i < ctx->nbufs; ++i) {
419 ctx->olaps[i].start = ctx->args[i].ptr;
420 ctx->olaps[i].end = ctx->olaps[i].start + ctx->args[i].length;
421 ctx->olaps[i].raix = i;
424 sort(ctx->olaps, ctx->nbufs, sizeof(*ctx->olaps), olaps_cmp, NULL);
426 for (i = 0; i < ctx->nbufs; ++i) {
427 /* Falling inside previous range */
428 if (ctx->olaps[i].start < max_end) {
429 ctx->olaps[i].mstart = max_end;
430 ctx->olaps[i].mend = ctx->olaps[i].end;
431 ctx->olaps[i].offset = max_end - ctx->olaps[i].start;
433 if (ctx->olaps[i].end > max_end) {
434 max_end = ctx->olaps[i].end;
436 ctx->olaps[i].mend = 0;
437 ctx->olaps[i].mstart = 0;
441 ctx->olaps[i].mend = ctx->olaps[i].end;
442 ctx->olaps[i].mstart = ctx->olaps[i].start;
443 ctx->olaps[i].offset = 0;
444 max_end = ctx->olaps[i].end;
449 static struct fastrpc_invoke_ctx *fastrpc_context_alloc(
450 struct fastrpc_user *user, u32 kernel, u32 sc,
451 struct fastrpc_invoke_args *args)
453 struct fastrpc_channel_ctx *cctx = user->cctx;
454 struct fastrpc_invoke_ctx *ctx = NULL;
458 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
460 return ERR_PTR(-ENOMEM);
462 INIT_LIST_HEAD(&ctx->node);
464 ctx->nscalars = REMOTE_SCALARS_LENGTH(sc);
465 ctx->nbufs = REMOTE_SCALARS_INBUFS(sc) +
466 REMOTE_SCALARS_OUTBUFS(sc);
469 ctx->maps = kcalloc(ctx->nscalars,
470 sizeof(*ctx->maps), GFP_KERNEL);
473 return ERR_PTR(-ENOMEM);
475 ctx->olaps = kcalloc(ctx->nscalars,
476 sizeof(*ctx->olaps), GFP_KERNEL);
480 return ERR_PTR(-ENOMEM);
483 fastrpc_get_buff_overlaps(ctx);
486 /* Released in fastrpc_context_put() */
487 fastrpc_channel_ctx_get(cctx);
491 ctx->pid = current->pid;
492 ctx->tgid = user->tgid;
494 init_completion(&ctx->work);
495 INIT_WORK(&ctx->put_work, fastrpc_context_put_wq);
497 spin_lock(&user->lock);
498 list_add_tail(&ctx->node, &user->pending);
499 spin_unlock(&user->lock);
501 spin_lock_irqsave(&cctx->lock, flags);
502 ret = idr_alloc_cyclic(&cctx->ctx_idr, ctx, 1,
503 FASTRPC_CTX_MAX, GFP_ATOMIC);
505 spin_unlock_irqrestore(&cctx->lock, flags);
508 ctx->ctxid = ret << 4;
509 spin_unlock_irqrestore(&cctx->lock, flags);
511 kref_init(&ctx->refcount);
515 spin_lock(&user->lock);
516 list_del(&ctx->node);
517 spin_unlock(&user->lock);
518 fastrpc_channel_ctx_put(cctx);
526 static struct sg_table *
527 fastrpc_map_dma_buf(struct dma_buf_attachment *attachment,
528 enum dma_data_direction dir)
530 struct fastrpc_dma_buf_attachment *a = attachment->priv;
531 struct sg_table *table;
536 ret = dma_map_sgtable(attachment->dev, table, dir, 0);
538 table = ERR_PTR(ret);
542 static void fastrpc_unmap_dma_buf(struct dma_buf_attachment *attach,
543 struct sg_table *table,
544 enum dma_data_direction dir)
546 dma_unmap_sgtable(attach->dev, table, dir, 0);
549 static void fastrpc_release(struct dma_buf *dmabuf)
551 struct fastrpc_buf *buffer = dmabuf->priv;
553 fastrpc_buf_free(buffer);
556 static int fastrpc_dma_buf_attach(struct dma_buf *dmabuf,
557 struct dma_buf_attachment *attachment)
559 struct fastrpc_dma_buf_attachment *a;
560 struct fastrpc_buf *buffer = dmabuf->priv;
563 a = kzalloc(sizeof(*a), GFP_KERNEL);
567 ret = dma_get_sgtable(buffer->dev, &a->sgt, buffer->virt,
568 FASTRPC_PHYS(buffer->phys), buffer->size);
570 dev_err(buffer->dev, "failed to get scatterlist from DMA API\n");
575 a->dev = attachment->dev;
576 INIT_LIST_HEAD(&a->node);
577 attachment->priv = a;
579 mutex_lock(&buffer->lock);
580 list_add(&a->node, &buffer->attachments);
581 mutex_unlock(&buffer->lock);
586 static void fastrpc_dma_buf_detatch(struct dma_buf *dmabuf,
587 struct dma_buf_attachment *attachment)
589 struct fastrpc_dma_buf_attachment *a = attachment->priv;
590 struct fastrpc_buf *buffer = dmabuf->priv;
592 mutex_lock(&buffer->lock);
594 mutex_unlock(&buffer->lock);
595 sg_free_table(&a->sgt);
599 static int fastrpc_vmap(struct dma_buf *dmabuf, struct dma_buf_map *map)
601 struct fastrpc_buf *buf = dmabuf->priv;
603 dma_buf_map_set_vaddr(map, buf->virt);
608 static int fastrpc_mmap(struct dma_buf *dmabuf,
609 struct vm_area_struct *vma)
611 struct fastrpc_buf *buf = dmabuf->priv;
612 size_t size = vma->vm_end - vma->vm_start;
614 return dma_mmap_coherent(buf->dev, vma, buf->virt,
615 FASTRPC_PHYS(buf->phys), size);
618 static const struct dma_buf_ops fastrpc_dma_buf_ops = {
619 .attach = fastrpc_dma_buf_attach,
620 .detach = fastrpc_dma_buf_detatch,
621 .map_dma_buf = fastrpc_map_dma_buf,
622 .unmap_dma_buf = fastrpc_unmap_dma_buf,
623 .mmap = fastrpc_mmap,
624 .vmap = fastrpc_vmap,
625 .release = fastrpc_release,
628 static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
629 u64 len, struct fastrpc_map **ppmap)
631 struct fastrpc_session_ctx *sess = fl->sctx;
632 struct fastrpc_map *map = NULL;
635 if (!fastrpc_map_find(fl, fd, ppmap))
638 map = kzalloc(sizeof(*map), GFP_KERNEL);
642 INIT_LIST_HEAD(&map->node);
645 map->buf = dma_buf_get(fd);
646 if (IS_ERR(map->buf)) {
647 err = PTR_ERR(map->buf);
651 map->attach = dma_buf_attach(map->buf, sess->dev);
652 if (IS_ERR(map->attach)) {
653 dev_err(sess->dev, "Failed to attach dmabuf\n");
654 err = PTR_ERR(map->attach);
658 map->table = dma_buf_map_attachment(map->attach, DMA_BIDIRECTIONAL);
659 if (IS_ERR(map->table)) {
660 err = PTR_ERR(map->table);
664 map->phys = sg_dma_address(map->table->sgl);
665 map->phys += ((u64)fl->sctx->sid << 32);
667 map->va = sg_virt(map->table->sgl);
669 kref_init(&map->refcount);
671 spin_lock(&fl->lock);
672 list_add_tail(&map->node, &fl->maps);
673 spin_unlock(&fl->lock);
679 dma_buf_detach(map->buf, map->attach);
681 dma_buf_put(map->buf);
689 * Fastrpc payload buffer with metadata looks like:
691 * >>>>>> START of METADATA <<<<<<<<<
692 * +---------------------------------+
694 * | type:(struct fastrpc_remote_arg)|
696 * +---------------------------------+
697 * | Invoke Buffer list |
698 * | type:(struct fastrpc_invoke_buf)|
700 * +---------------------------------+
702 * | type:(struct fastrpc_phy_page) |
704 * +---------------------------------+
706 * |(can be specific to SoC/Firmware)|
707 * +---------------------------------+
708 * >>>>>>>> END of METADATA <<<<<<<<<
709 * +---------------------------------+
712 * +---------------------------------+
715 static int fastrpc_get_meta_size(struct fastrpc_invoke_ctx *ctx)
719 size = (sizeof(struct fastrpc_remote_arg) +
720 sizeof(struct fastrpc_invoke_buf) +
721 sizeof(struct fastrpc_phy_page)) * ctx->nscalars +
722 sizeof(u64) * FASTRPC_MAX_FDLIST +
723 sizeof(u32) * FASTRPC_MAX_CRCLIST;
728 static u64 fastrpc_get_payload_size(struct fastrpc_invoke_ctx *ctx, int metalen)
733 size = ALIGN(metalen, FASTRPC_ALIGN);
734 for (oix = 0; oix < ctx->nbufs; oix++) {
735 int i = ctx->olaps[oix].raix;
737 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1) {
739 if (ctx->olaps[oix].offset == 0)
740 size = ALIGN(size, FASTRPC_ALIGN);
742 size += (ctx->olaps[oix].mend - ctx->olaps[oix].mstart);
749 static int fastrpc_create_maps(struct fastrpc_invoke_ctx *ctx)
751 struct device *dev = ctx->fl->sctx->dev;
754 for (i = 0; i < ctx->nscalars; ++i) {
755 /* Make sure reserved field is set to 0 */
756 if (ctx->args[i].reserved)
759 if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1 ||
760 ctx->args[i].length == 0)
763 err = fastrpc_map_create(ctx->fl, ctx->args[i].fd,
764 ctx->args[i].length, &ctx->maps[i]);
766 dev_err(dev, "Error Creating map %d\n", err);
774 static int fastrpc_get_args(u32 kernel, struct fastrpc_invoke_ctx *ctx)
776 struct device *dev = ctx->fl->sctx->dev;
777 struct fastrpc_remote_arg *rpra;
778 struct fastrpc_invoke_buf *list;
779 struct fastrpc_phy_page *pages;
780 int inbufs, i, oix, err = 0;
781 u64 len, rlen, pkt_size;
782 u64 pg_start, pg_end;
786 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
787 metalen = fastrpc_get_meta_size(ctx);
788 pkt_size = fastrpc_get_payload_size(ctx, metalen);
790 err = fastrpc_create_maps(ctx);
794 ctx->msg_sz = pkt_size;
796 err = fastrpc_buf_alloc(ctx->fl, dev, pkt_size, &ctx->buf);
800 rpra = ctx->buf->virt;
801 list = ctx->buf->virt + ctx->nscalars * sizeof(*rpra);
802 pages = ctx->buf->virt + ctx->nscalars * (sizeof(*list) +
804 args = (uintptr_t)ctx->buf->virt + metalen;
805 rlen = pkt_size - metalen;
808 for (oix = 0; oix < ctx->nbufs; ++oix) {
811 i = ctx->olaps[oix].raix;
812 len = ctx->args[i].length;
816 list[i].num = len ? 1 : 0;
823 struct vm_area_struct *vma = NULL;
825 rpra[i].pv = (u64) ctx->args[i].ptr;
826 pages[i].addr = ctx->maps[i]->phys;
828 mmap_read_lock(current->mm);
829 vma = find_vma(current->mm, ctx->args[i].ptr);
831 pages[i].addr += ctx->args[i].ptr -
833 mmap_read_unlock(current->mm);
835 pg_start = (ctx->args[i].ptr & PAGE_MASK) >> PAGE_SHIFT;
836 pg_end = ((ctx->args[i].ptr + len - 1) & PAGE_MASK) >>
838 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
842 if (ctx->olaps[oix].offset == 0) {
843 rlen -= ALIGN(args, FASTRPC_ALIGN) - args;
844 args = ALIGN(args, FASTRPC_ALIGN);
847 mlen = ctx->olaps[oix].mend - ctx->olaps[oix].mstart;
852 rpra[i].pv = args - ctx->olaps[oix].offset;
853 pages[i].addr = ctx->buf->phys -
854 ctx->olaps[oix].offset +
856 pages[i].addr = pages[i].addr & PAGE_MASK;
858 pg_start = (args & PAGE_MASK) >> PAGE_SHIFT;
859 pg_end = ((args + len - 1) & PAGE_MASK) >> PAGE_SHIFT;
860 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE;
865 if (i < inbufs && !ctx->maps[i]) {
866 void *dst = (void *)(uintptr_t)rpra[i].pv;
867 void *src = (void *)(uintptr_t)ctx->args[i].ptr;
870 if (copy_from_user(dst, (void __user *)src,
876 memcpy(dst, src, len);
881 for (i = ctx->nbufs; i < ctx->nscalars; ++i) {
882 rpra[i].pv = (u64) ctx->args[i].ptr;
883 rpra[i].len = ctx->args[i].length;
884 list[i].num = ctx->args[i].length ? 1 : 0;
886 pages[i].addr = ctx->maps[i]->phys;
887 pages[i].size = ctx->maps[i]->size;
892 dev_err(dev, "Error: get invoke args failed:%d\n", err);
897 static int fastrpc_put_args(struct fastrpc_invoke_ctx *ctx,
900 struct fastrpc_remote_arg *rpra = ctx->rpra;
903 inbufs = REMOTE_SCALARS_INBUFS(ctx->sc);
905 for (i = inbufs; i < ctx->nbufs; ++i) {
906 void *src = (void *)(uintptr_t)rpra[i].pv;
907 void *dst = (void *)(uintptr_t)ctx->args[i].ptr;
908 u64 len = rpra[i].len;
911 if (copy_to_user((void __user *)dst, src, len))
914 memcpy(dst, src, len);
921 static int fastrpc_invoke_send(struct fastrpc_session_ctx *sctx,
922 struct fastrpc_invoke_ctx *ctx,
923 u32 kernel, uint32_t handle)
925 struct fastrpc_channel_ctx *cctx;
926 struct fastrpc_user *fl = ctx->fl;
927 struct fastrpc_msg *msg = &ctx->msg;
932 msg->tid = current->pid;
937 msg->ctx = ctx->ctxid | fl->pd;
938 msg->handle = handle;
940 msg->addr = ctx->buf ? ctx->buf->phys : 0;
941 msg->size = roundup(ctx->msg_sz, PAGE_SIZE);
942 fastrpc_context_get(ctx);
944 ret = rpmsg_send(cctx->rpdev->ept, (void *)msg, sizeof(*msg));
947 fastrpc_context_put(ctx);
953 static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel,
955 struct fastrpc_invoke_args *args)
957 struct fastrpc_invoke_ctx *ctx = NULL;
963 if (!fl->cctx->rpdev)
966 if (handle == FASTRPC_INIT_HANDLE && !kernel) {
967 dev_warn_ratelimited(fl->sctx->dev, "user app trying to send a kernel RPC message (%d)\n", handle);
971 ctx = fastrpc_context_alloc(fl, kernel, sc, args);
976 err = fastrpc_get_args(kernel, ctx);
981 /* make sure that all CPU memory writes are seen by DSP */
983 /* Send invoke buffer to remote dsp */
984 err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle);
989 if (!wait_for_completion_timeout(&ctx->work, 10 * HZ))
992 err = wait_for_completion_interruptible(&ctx->work);
998 /* Check the response from remote dsp */
1003 if (ctx->nscalars) {
1004 /* make sure that all memory writes by DSP are seen by CPU */
1006 /* populate all the output buffers with results */
1007 err = fastrpc_put_args(ctx, kernel);
1013 if (err != -ERESTARTSYS && err != -ETIMEDOUT) {
1014 /* We are done with this compute context */
1015 spin_lock(&fl->lock);
1016 list_del(&ctx->node);
1017 spin_unlock(&fl->lock);
1018 fastrpc_context_put(ctx);
1021 dev_dbg(fl->sctx->dev, "Error: Invoke Failed %d\n", err);
1026 static int fastrpc_init_create_process(struct fastrpc_user *fl,
1029 struct fastrpc_init_create init;
1030 struct fastrpc_invoke_args *args;
1031 struct fastrpc_phy_page pages[1];
1032 struct fastrpc_map *map = NULL;
1033 struct fastrpc_buf *imem = NULL;
1046 args = kcalloc(FASTRPC_CREATE_PROCESS_NARGS, sizeof(*args), GFP_KERNEL);
1050 if (copy_from_user(&init, argp, sizeof(init))) {
1055 if (init.filelen > INIT_FILELEN_MAX) {
1060 inbuf.pgid = fl->tgid;
1061 inbuf.namelen = strlen(current->comm) + 1;
1062 inbuf.filelen = init.filelen;
1064 inbuf.attrs = init.attrs;
1065 inbuf.siglen = init.siglen;
1068 if (init.filelen && init.filefd) {
1069 err = fastrpc_map_create(fl, init.filefd, init.filelen, &map);
1074 memlen = ALIGN(max(INIT_FILELEN_MAX, (int)init.filelen * 4),
1076 err = fastrpc_buf_alloc(fl, fl->sctx->dev, memlen,
1081 fl->init_mem = imem;
1082 args[0].ptr = (u64)(uintptr_t)&inbuf;
1083 args[0].length = sizeof(inbuf);
1086 args[1].ptr = (u64)(uintptr_t)current->comm;
1087 args[1].length = inbuf.namelen;
1090 args[2].ptr = (u64) init.file;
1091 args[2].length = inbuf.filelen;
1092 args[2].fd = init.filefd;
1094 pages[0].addr = imem->phys;
1095 pages[0].size = imem->size;
1097 args[3].ptr = (u64)(uintptr_t) pages;
1098 args[3].length = 1 * sizeof(*pages);
1101 args[4].ptr = (u64)(uintptr_t)&inbuf.attrs;
1102 args[4].length = sizeof(inbuf.attrs);
1105 args[5].ptr = (u64)(uintptr_t) &inbuf.siglen;
1106 args[5].length = sizeof(inbuf.siglen);
1109 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE, 4, 0);
1111 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE_ATTR, 6, 0);
1113 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1123 fl->init_mem = NULL;
1124 fastrpc_buf_free(imem);
1126 fastrpc_map_put(map);
1133 static struct fastrpc_session_ctx *fastrpc_session_alloc(
1134 struct fastrpc_channel_ctx *cctx)
1136 struct fastrpc_session_ctx *session = NULL;
1137 unsigned long flags;
1140 spin_lock_irqsave(&cctx->lock, flags);
1141 for (i = 0; i < cctx->sesscount; i++) {
1142 if (!cctx->session[i].used && cctx->session[i].valid) {
1143 cctx->session[i].used = true;
1144 session = &cctx->session[i];
1148 spin_unlock_irqrestore(&cctx->lock, flags);
1153 static void fastrpc_session_free(struct fastrpc_channel_ctx *cctx,
1154 struct fastrpc_session_ctx *session)
1156 unsigned long flags;
1158 spin_lock_irqsave(&cctx->lock, flags);
1159 session->used = false;
1160 spin_unlock_irqrestore(&cctx->lock, flags);
1163 static int fastrpc_release_current_dsp_process(struct fastrpc_user *fl)
1165 struct fastrpc_invoke_args args[1];
1170 args[0].ptr = (u64)(uintptr_t) &tgid;
1171 args[0].length = sizeof(tgid);
1173 args[0].reserved = 0;
1174 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_RELEASE, 1, 0);
1176 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1180 static int fastrpc_device_release(struct inode *inode, struct file *file)
1182 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1183 struct fastrpc_channel_ctx *cctx = fl->cctx;
1184 struct fastrpc_invoke_ctx *ctx, *n;
1185 struct fastrpc_map *map, *m;
1186 struct fastrpc_buf *buf, *b;
1187 unsigned long flags;
1189 fastrpc_release_current_dsp_process(fl);
1191 spin_lock_irqsave(&cctx->lock, flags);
1192 list_del(&fl->user);
1193 spin_unlock_irqrestore(&cctx->lock, flags);
1196 fastrpc_buf_free(fl->init_mem);
1198 list_for_each_entry_safe(ctx, n, &fl->pending, node) {
1199 list_del(&ctx->node);
1200 fastrpc_context_put(ctx);
1203 list_for_each_entry_safe(map, m, &fl->maps, node)
1204 fastrpc_map_put(map);
1206 list_for_each_entry_safe(buf, b, &fl->mmaps, node) {
1207 list_del(&buf->node);
1208 fastrpc_buf_free(buf);
1211 fastrpc_session_free(cctx, fl->sctx);
1212 fastrpc_channel_ctx_put(cctx);
1214 mutex_destroy(&fl->mutex);
1216 file->private_data = NULL;
1221 static int fastrpc_device_open(struct inode *inode, struct file *filp)
1223 struct fastrpc_channel_ctx *cctx = miscdev_to_cctx(filp->private_data);
1224 struct fastrpc_user *fl = NULL;
1225 unsigned long flags;
1227 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
1231 /* Released in fastrpc_device_release() */
1232 fastrpc_channel_ctx_get(cctx);
1234 filp->private_data = fl;
1235 spin_lock_init(&fl->lock);
1236 mutex_init(&fl->mutex);
1237 INIT_LIST_HEAD(&fl->pending);
1238 INIT_LIST_HEAD(&fl->maps);
1239 INIT_LIST_HEAD(&fl->mmaps);
1240 INIT_LIST_HEAD(&fl->user);
1241 fl->tgid = current->tgid;
1244 fl->sctx = fastrpc_session_alloc(cctx);
1246 dev_err(&cctx->rpdev->dev, "No session available\n");
1247 mutex_destroy(&fl->mutex);
1253 spin_lock_irqsave(&cctx->lock, flags);
1254 list_add_tail(&fl->user, &cctx->users);
1255 spin_unlock_irqrestore(&cctx->lock, flags);
1260 static int fastrpc_dmabuf_alloc(struct fastrpc_user *fl, char __user *argp)
1262 struct fastrpc_alloc_dma_buf bp;
1263 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
1264 struct fastrpc_buf *buf = NULL;
1267 if (copy_from_user(&bp, argp, sizeof(bp)))
1270 err = fastrpc_buf_alloc(fl, fl->sctx->dev, bp.size, &buf);
1273 exp_info.ops = &fastrpc_dma_buf_ops;
1274 exp_info.size = bp.size;
1275 exp_info.flags = O_RDWR;
1276 exp_info.priv = buf;
1277 buf->dmabuf = dma_buf_export(&exp_info);
1278 if (IS_ERR(buf->dmabuf)) {
1279 err = PTR_ERR(buf->dmabuf);
1280 fastrpc_buf_free(buf);
1284 bp.fd = dma_buf_fd(buf->dmabuf, O_ACCMODE);
1286 dma_buf_put(buf->dmabuf);
1290 if (copy_to_user(argp, &bp, sizeof(bp))) {
1292 * The usercopy failed, but we can't do much about it, as
1293 * dma_buf_fd() already called fd_install() and made the
1294 * file descriptor accessible for the current process. It
1295 * might already be closed and dmabuf no longer valid when
1296 * we reach this point. Therefore "leak" the fd and rely on
1297 * the process exit path to do any required cleanup.
1305 static int fastrpc_init_attach(struct fastrpc_user *fl, int pd)
1307 struct fastrpc_invoke_args args[1];
1308 int tgid = fl->tgid;
1311 args[0].ptr = (u64)(uintptr_t) &tgid;
1312 args[0].length = sizeof(tgid);
1314 args[0].reserved = 0;
1315 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_ATTACH, 1, 0);
1318 return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE,
1322 static int fastrpc_invoke(struct fastrpc_user *fl, char __user *argp)
1324 struct fastrpc_invoke_args *args = NULL;
1325 struct fastrpc_invoke inv;
1329 if (copy_from_user(&inv, argp, sizeof(inv)))
1332 /* nscalars is truncated here to max supported value */
1333 nscalars = REMOTE_SCALARS_LENGTH(inv.sc);
1335 args = kcalloc(nscalars, sizeof(*args), GFP_KERNEL);
1339 if (copy_from_user(args, (void __user *)(uintptr_t)inv.args,
1340 nscalars * sizeof(*args))) {
1346 err = fastrpc_internal_invoke(fl, false, inv.handle, inv.sc, args);
1352 static int fastrpc_req_munmap_impl(struct fastrpc_user *fl,
1353 struct fastrpc_req_munmap *req)
1355 struct fastrpc_invoke_args args[1] = { [0] = { 0 } };
1356 struct fastrpc_buf *buf = NULL, *iter, *b;
1357 struct fastrpc_munmap_req_msg req_msg;
1358 struct device *dev = fl->sctx->dev;
1362 spin_lock(&fl->lock);
1363 list_for_each_entry_safe(iter, b, &fl->mmaps, node) {
1364 if ((iter->raddr == req->vaddrout) && (iter->size == req->size)) {
1369 spin_unlock(&fl->lock);
1372 dev_err(dev, "mmap not in list\n");
1376 req_msg.pgid = fl->tgid;
1377 req_msg.size = buf->size;
1378 req_msg.vaddr = buf->raddr;
1380 args[0].ptr = (u64) (uintptr_t) &req_msg;
1381 args[0].length = sizeof(req_msg);
1383 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MUNMAP, 1, 0);
1384 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1387 dev_dbg(dev, "unmmap\tpt 0x%09lx OK\n", buf->raddr);
1388 spin_lock(&fl->lock);
1389 list_del(&buf->node);
1390 spin_unlock(&fl->lock);
1391 fastrpc_buf_free(buf);
1393 dev_err(dev, "unmmap\tpt 0x%09lx ERROR\n", buf->raddr);
1399 static int fastrpc_req_munmap(struct fastrpc_user *fl, char __user *argp)
1401 struct fastrpc_req_munmap req;
1403 if (copy_from_user(&req, argp, sizeof(req)))
1406 return fastrpc_req_munmap_impl(fl, &req);
1409 static int fastrpc_req_mmap(struct fastrpc_user *fl, char __user *argp)
1411 struct fastrpc_invoke_args args[3] = { [0 ... 2] = { 0 } };
1412 struct fastrpc_buf *buf = NULL;
1413 struct fastrpc_mmap_req_msg req_msg;
1414 struct fastrpc_mmap_rsp_msg rsp_msg;
1415 struct fastrpc_req_munmap req_unmap;
1416 struct fastrpc_phy_page pages;
1417 struct fastrpc_req_mmap req;
1418 struct device *dev = fl->sctx->dev;
1422 if (copy_from_user(&req, argp, sizeof(req)))
1425 if (req.flags != ADSP_MMAP_ADD_PAGES) {
1426 dev_err(dev, "flag not supported 0x%x\n", req.flags);
1431 dev_err(dev, "adding user allocated pages is not supported\n");
1435 err = fastrpc_buf_alloc(fl, fl->sctx->dev, req.size, &buf);
1437 dev_err(dev, "failed to allocate buffer\n");
1441 req_msg.pgid = fl->tgid;
1442 req_msg.flags = req.flags;
1443 req_msg.vaddr = req.vaddrin;
1444 req_msg.num = sizeof(pages);
1446 args[0].ptr = (u64) (uintptr_t) &req_msg;
1447 args[0].length = sizeof(req_msg);
1449 pages.addr = buf->phys;
1450 pages.size = buf->size;
1452 args[1].ptr = (u64) (uintptr_t) &pages;
1453 args[1].length = sizeof(pages);
1455 args[2].ptr = (u64) (uintptr_t) &rsp_msg;
1456 args[2].length = sizeof(rsp_msg);
1458 sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MMAP, 2, 1);
1459 err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc,
1462 dev_err(dev, "mmap error (len 0x%08llx)\n", buf->size);
1466 /* update the buffer to be able to deallocate the memory on the DSP */
1467 buf->raddr = (uintptr_t) rsp_msg.vaddr;
1469 /* let the client know the address to use */
1470 req.vaddrout = rsp_msg.vaddr;
1472 spin_lock(&fl->lock);
1473 list_add_tail(&buf->node, &fl->mmaps);
1474 spin_unlock(&fl->lock);
1476 if (copy_to_user((void __user *)argp, &req, sizeof(req))) {
1477 /* unmap the memory and release the buffer */
1478 req_unmap.vaddrout = buf->raddr;
1479 req_unmap.size = buf->size;
1480 fastrpc_req_munmap_impl(fl, &req_unmap);
1484 dev_dbg(dev, "mmap\t\tpt 0x%09lx OK [len 0x%08llx]\n",
1485 buf->raddr, buf->size);
1490 fastrpc_buf_free(buf);
1495 static long fastrpc_device_ioctl(struct file *file, unsigned int cmd,
1498 struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data;
1499 char __user *argp = (char __user *)arg;
1503 case FASTRPC_IOCTL_INVOKE:
1504 err = fastrpc_invoke(fl, argp);
1506 case FASTRPC_IOCTL_INIT_ATTACH:
1507 err = fastrpc_init_attach(fl, AUDIO_PD);
1509 case FASTRPC_IOCTL_INIT_ATTACH_SNS:
1510 err = fastrpc_init_attach(fl, SENSORS_PD);
1512 case FASTRPC_IOCTL_INIT_CREATE:
1513 err = fastrpc_init_create_process(fl, argp);
1515 case FASTRPC_IOCTL_ALLOC_DMA_BUFF:
1516 err = fastrpc_dmabuf_alloc(fl, argp);
1518 case FASTRPC_IOCTL_MMAP:
1519 err = fastrpc_req_mmap(fl, argp);
1521 case FASTRPC_IOCTL_MUNMAP:
1522 err = fastrpc_req_munmap(fl, argp);
1532 static const struct file_operations fastrpc_fops = {
1533 .open = fastrpc_device_open,
1534 .release = fastrpc_device_release,
1535 .unlocked_ioctl = fastrpc_device_ioctl,
1536 .compat_ioctl = fastrpc_device_ioctl,
1539 static int fastrpc_cb_probe(struct platform_device *pdev)
1541 struct fastrpc_channel_ctx *cctx;
1542 struct fastrpc_session_ctx *sess;
1543 struct device *dev = &pdev->dev;
1544 int i, sessions = 0;
1545 unsigned long flags;
1548 cctx = dev_get_drvdata(dev->parent);
1552 of_property_read_u32(dev->of_node, "qcom,nsessions", &sessions);
1554 spin_lock_irqsave(&cctx->lock, flags);
1555 if (cctx->sesscount >= FASTRPC_MAX_SESSIONS) {
1556 dev_err(&pdev->dev, "too many sessions\n");
1557 spin_unlock_irqrestore(&cctx->lock, flags);
1560 sess = &cctx->session[cctx->sesscount++];
1564 dev_set_drvdata(dev, sess);
1566 if (of_property_read_u32(dev->of_node, "reg", &sess->sid))
1567 dev_info(dev, "FastRPC Session ID not specified in DT\n");
1570 struct fastrpc_session_ctx *dup_sess;
1572 for (i = 1; i < sessions; i++) {
1573 if (cctx->sesscount >= FASTRPC_MAX_SESSIONS)
1575 dup_sess = &cctx->session[cctx->sesscount++];
1576 memcpy(dup_sess, sess, sizeof(*dup_sess));
1579 spin_unlock_irqrestore(&cctx->lock, flags);
1580 rc = dma_set_mask(dev, DMA_BIT_MASK(32));
1582 dev_err(dev, "32-bit DMA enable failed\n");
1589 static int fastrpc_cb_remove(struct platform_device *pdev)
1591 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(pdev->dev.parent);
1592 struct fastrpc_session_ctx *sess = dev_get_drvdata(&pdev->dev);
1593 unsigned long flags;
1596 spin_lock_irqsave(&cctx->lock, flags);
1597 for (i = 1; i < FASTRPC_MAX_SESSIONS; i++) {
1598 if (cctx->session[i].sid == sess->sid) {
1599 cctx->session[i].valid = false;
1603 spin_unlock_irqrestore(&cctx->lock, flags);
1608 static const struct of_device_id fastrpc_match_table[] = {
1609 { .compatible = "qcom,fastrpc-compute-cb", },
1613 static struct platform_driver fastrpc_cb_driver = {
1614 .probe = fastrpc_cb_probe,
1615 .remove = fastrpc_cb_remove,
1617 .name = "qcom,fastrpc-cb",
1618 .of_match_table = fastrpc_match_table,
1619 .suppress_bind_attrs = true,
1623 static int fastrpc_rpmsg_probe(struct rpmsg_device *rpdev)
1625 struct device *rdev = &rpdev->dev;
1626 struct fastrpc_channel_ctx *data;
1627 int i, err, domain_id = -1;
1630 err = of_property_read_string(rdev->of_node, "label", &domain);
1632 dev_info(rdev, "FastRPC Domain not specified in DT\n");
1636 for (i = 0; i <= CDSP_DOMAIN_ID; i++) {
1637 if (!strcmp(domains[i], domain)) {
1643 if (domain_id < 0) {
1644 dev_info(rdev, "FastRPC Invalid Domain ID %d\n", domain_id);
1648 data = kzalloc(sizeof(*data), GFP_KERNEL);
1652 data->miscdev.minor = MISC_DYNAMIC_MINOR;
1653 data->miscdev.name = devm_kasprintf(rdev, GFP_KERNEL, "fastrpc-%s",
1654 domains[domain_id]);
1655 data->miscdev.fops = &fastrpc_fops;
1656 err = misc_register(&data->miscdev);
1662 kref_init(&data->refcount);
1664 dev_set_drvdata(&rpdev->dev, data);
1665 dma_set_mask_and_coherent(rdev, DMA_BIT_MASK(32));
1666 INIT_LIST_HEAD(&data->users);
1667 spin_lock_init(&data->lock);
1668 idr_init(&data->ctx_idr);
1669 data->domain_id = domain_id;
1670 data->rpdev = rpdev;
1672 return of_platform_populate(rdev->of_node, NULL, NULL, rdev);
1675 static void fastrpc_notify_users(struct fastrpc_user *user)
1677 struct fastrpc_invoke_ctx *ctx;
1679 spin_lock(&user->lock);
1680 list_for_each_entry(ctx, &user->pending, node)
1681 complete(&ctx->work);
1682 spin_unlock(&user->lock);
1685 static void fastrpc_rpmsg_remove(struct rpmsg_device *rpdev)
1687 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
1688 struct fastrpc_user *user;
1689 unsigned long flags;
1691 spin_lock_irqsave(&cctx->lock, flags);
1692 list_for_each_entry(user, &cctx->users, user)
1693 fastrpc_notify_users(user);
1694 spin_unlock_irqrestore(&cctx->lock, flags);
1696 misc_deregister(&cctx->miscdev);
1697 of_platform_depopulate(&rpdev->dev);
1700 fastrpc_channel_ctx_put(cctx);
1703 static int fastrpc_rpmsg_callback(struct rpmsg_device *rpdev, void *data,
1704 int len, void *priv, u32 addr)
1706 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev);
1707 struct fastrpc_invoke_rsp *rsp = data;
1708 struct fastrpc_invoke_ctx *ctx;
1709 unsigned long flags;
1710 unsigned long ctxid;
1712 if (len < sizeof(*rsp))
1715 ctxid = ((rsp->ctx & FASTRPC_CTXID_MASK) >> 4);
1717 spin_lock_irqsave(&cctx->lock, flags);
1718 ctx = idr_find(&cctx->ctx_idr, ctxid);
1719 spin_unlock_irqrestore(&cctx->lock, flags);
1722 dev_err(&rpdev->dev, "No context ID matches response\n");
1726 ctx->retval = rsp->retval;
1727 complete(&ctx->work);
1730 * The DMA buffer associated with the context cannot be freed in
1731 * interrupt context so schedule it through a worker thread to
1732 * avoid a kernel BUG.
1734 schedule_work(&ctx->put_work);
1739 static const struct of_device_id fastrpc_rpmsg_of_match[] = {
1740 { .compatible = "qcom,fastrpc" },
1743 MODULE_DEVICE_TABLE(of, fastrpc_rpmsg_of_match);
1745 static struct rpmsg_driver fastrpc_driver = {
1746 .probe = fastrpc_rpmsg_probe,
1747 .remove = fastrpc_rpmsg_remove,
1748 .callback = fastrpc_rpmsg_callback,
1750 .name = "qcom,fastrpc",
1751 .of_match_table = fastrpc_rpmsg_of_match,
1755 static int fastrpc_init(void)
1759 ret = platform_driver_register(&fastrpc_cb_driver);
1761 pr_err("fastrpc: failed to register cb driver\n");
1765 ret = register_rpmsg_driver(&fastrpc_driver);
1767 pr_err("fastrpc: failed to register rpmsg driver\n");
1768 platform_driver_unregister(&fastrpc_cb_driver);
1774 module_init(fastrpc_init);
1776 static void fastrpc_exit(void)
1778 platform_driver_unregister(&fastrpc_cb_driver);
1779 unregister_rpmsg_driver(&fastrpc_driver);
1781 module_exit(fastrpc_exit);
1783 MODULE_LICENSE("GPL v2");