David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 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 | |
| 5 | #include <linux/completion.h> |
| 6 | #include <linux/device.h> |
| 7 | #include <linux/dma-buf.h> |
| 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> |
| 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> |
| 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*/ |
| 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) |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 35 | #define INIT_FILELEN_MAX (2 * 1024 * 1024) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 36 | #define FASTRPC_DEVICE_NAME "fastrpc" |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 37 | #define ADSP_MMAP_ADD_PAGES 0x1000 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 38 | |
| 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 | |
| 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 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 70 | #define FASTRPC_RMID_INIT_MMAP 4 |
| 71 | #define FASTRPC_RMID_INIT_MUNMAP 5 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 72 | #define FASTRPC_RMID_INIT_CREATE 6 |
| 73 | #define FASTRPC_RMID_INIT_CREATE_ATTR 7 |
| 74 | #define FASTRPC_RMID_INIT_CREATE_STATIC 8 |
| 75 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 76 | /* Protection Domain(PD) ids */ |
| 77 | #define AUDIO_PD (0) /* also GUEST_OS PD? */ |
| 78 | #define USER_PD (1) |
| 79 | #define SENSORS_PD (2) |
| 80 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 81 | #define miscdev_to_cctx(d) container_of(d, struct fastrpc_channel_ctx, miscdev) |
| 82 | |
| 83 | static const char *domains[FASTRPC_DEV_MAX] = { "adsp", "mdsp", |
| 84 | "sdsp", "cdsp"}; |
| 85 | struct fastrpc_phy_page { |
| 86 | u64 addr; /* physical address */ |
| 87 | u64 size; /* size of contiguous region */ |
| 88 | }; |
| 89 | |
| 90 | struct fastrpc_invoke_buf { |
| 91 | u32 num; /* number of contiguous regions */ |
| 92 | u32 pgidx; /* index to start of contiguous region */ |
| 93 | }; |
| 94 | |
| 95 | struct fastrpc_remote_arg { |
| 96 | u64 pv; |
| 97 | u64 len; |
| 98 | }; |
| 99 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 100 | struct fastrpc_mmap_rsp_msg { |
| 101 | u64 vaddr; |
| 102 | }; |
| 103 | |
| 104 | struct fastrpc_mmap_req_msg { |
| 105 | s32 pgid; |
| 106 | u32 flags; |
| 107 | u64 vaddr; |
| 108 | s32 num; |
| 109 | }; |
| 110 | |
| 111 | struct fastrpc_munmap_req_msg { |
| 112 | s32 pgid; |
| 113 | u64 vaddr; |
| 114 | u64 size; |
| 115 | }; |
| 116 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 117 | struct 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 | |
| 127 | struct fastrpc_invoke_rsp { |
| 128 | u64 ctx; /* invoke caller context */ |
| 129 | int retval; /* invoke return value */ |
| 130 | }; |
| 131 | |
| 132 | struct fastrpc_buf_overlap { |
| 133 | u64 start; |
| 134 | u64 end; |
| 135 | int raix; |
| 136 | u64 mstart; |
| 137 | u64 mend; |
| 138 | u64 offset; |
| 139 | }; |
| 140 | |
| 141 | struct fastrpc_buf { |
| 142 | struct fastrpc_user *fl; |
| 143 | struct dma_buf *dmabuf; |
| 144 | struct device *dev; |
| 145 | void *virt; |
| 146 | u64 phys; |
| 147 | u64 size; |
| 148 | /* Lock for dma buf attachments */ |
| 149 | struct mutex lock; |
| 150 | struct list_head attachments; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 151 | /* mmap support */ |
| 152 | struct list_head node; /* list of user requested mmaps */ |
| 153 | uintptr_t raddr; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | struct fastrpc_dma_buf_attachment { |
| 157 | struct device *dev; |
| 158 | struct sg_table sgt; |
| 159 | struct list_head node; |
| 160 | }; |
| 161 | |
| 162 | struct 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 | |
| 176 | struct 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; |
| 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; |
| 198 | }; |
| 199 | |
| 200 | struct fastrpc_session_ctx { |
| 201 | struct device *dev; |
| 202 | int sid; |
| 203 | bool used; |
| 204 | bool valid; |
| 205 | }; |
| 206 | |
| 207 | struct 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; |
| 216 | struct kref refcount; |
| 217 | }; |
| 218 | |
| 219 | struct fastrpc_user { |
| 220 | struct list_head user; |
| 221 | struct list_head maps; |
| 222 | struct list_head pending; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 223 | struct list_head mmaps; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 224 | |
| 225 | struct fastrpc_channel_ctx *cctx; |
| 226 | struct fastrpc_session_ctx *sctx; |
| 227 | struct fastrpc_buf *init_mem; |
| 228 | |
| 229 | int tgid; |
| 230 | int pd; |
| 231 | /* Lock for lists */ |
| 232 | spinlock_t lock; |
| 233 | /* lock for allocations */ |
| 234 | struct mutex mutex; |
| 235 | }; |
| 236 | |
| 237 | static 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 | |
| 253 | static void fastrpc_map_put(struct fastrpc_map *map) |
| 254 | { |
| 255 | if (map) |
| 256 | kref_put(&map->refcount, fastrpc_free_map); |
| 257 | } |
| 258 | |
| 259 | static void fastrpc_map_get(struct fastrpc_map *map) |
| 260 | { |
| 261 | if (map) |
| 262 | kref_get(&map->refcount); |
| 263 | } |
| 264 | |
| 265 | static 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 | |
| 284 | static 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 | |
| 291 | static 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 | |
| 300 | INIT_LIST_HEAD(&buf->attachments); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 301 | INIT_LIST_HEAD(&buf->node); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 302 | mutex_init(&buf->lock); |
| 303 | |
| 304 | buf->fl = fl; |
| 305 | buf->virt = NULL; |
| 306 | buf->phys = 0; |
| 307 | buf->size = size; |
| 308 | buf->dev = dev; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 309 | buf->raddr = 0; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 310 | |
| 311 | buf->virt = dma_alloc_coherent(dev, buf->size, (dma_addr_t *)&buf->phys, |
| 312 | GFP_KERNEL); |
| 313 | if (!buf->virt) { |
| 314 | mutex_destroy(&buf->lock); |
| 315 | kfree(buf); |
| 316 | return -ENOMEM; |
| 317 | } |
| 318 | |
| 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 | |
| 327 | static 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 | |
| 336 | static void fastrpc_channel_ctx_get(struct fastrpc_channel_ctx *cctx) |
| 337 | { |
| 338 | kref_get(&cctx->refcount); |
| 339 | } |
| 340 | |
| 341 | static void fastrpc_channel_ctx_put(struct fastrpc_channel_ctx *cctx) |
| 342 | { |
| 343 | kref_put(&cctx->refcount, fastrpc_channel_ctx_free); |
| 344 | } |
| 345 | |
| 346 | static void fastrpc_context_free(struct kref *ref) |
| 347 | { |
| 348 | struct fastrpc_invoke_ctx *ctx; |
| 349 | struct fastrpc_channel_ctx *cctx; |
| 350 | unsigned long flags; |
| 351 | 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 | |
| 362 | spin_lock_irqsave(&cctx->lock, flags); |
| 363 | idr_remove(&cctx->ctx_idr, ctx->ctxid >> 4); |
| 364 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 365 | |
| 366 | kfree(ctx->maps); |
| 367 | kfree(ctx->olaps); |
| 368 | kfree(ctx); |
| 369 | |
| 370 | fastrpc_channel_ctx_put(cctx); |
| 371 | } |
| 372 | |
| 373 | static void fastrpc_context_get(struct fastrpc_invoke_ctx *ctx) |
| 374 | { |
| 375 | kref_get(&ctx->refcount); |
| 376 | } |
| 377 | |
| 378 | static void fastrpc_context_put(struct fastrpc_invoke_ctx *ctx) |
| 379 | { |
| 380 | kref_put(&ctx->refcount, fastrpc_context_free); |
| 381 | } |
| 382 | |
| 383 | static 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 | |
| 391 | #define CMP(aa, bb) ((aa) == (bb) ? 0 : (aa) < (bb) ? -1 : 1) |
| 392 | static 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 | |
| 404 | static 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 | |
| 440 | static 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; |
| 446 | unsigned long flags; |
| 447 | 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 | } |
| 466 | 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 | } |
| 473 | ctx->args = args; |
| 474 | fastrpc_get_buff_overlaps(ctx); |
| 475 | } |
| 476 | |
| 477 | /* Released in fastrpc_context_put() */ |
| 478 | fastrpc_channel_ctx_get(cctx); |
| 479 | |
| 480 | 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); |
| 486 | INIT_WORK(&ctx->put_work, fastrpc_context_put_wq); |
| 487 | |
| 488 | spin_lock(&user->lock); |
| 489 | list_add_tail(&ctx->node, &user->pending); |
| 490 | spin_unlock(&user->lock); |
| 491 | |
| 492 | spin_lock_irqsave(&cctx->lock, flags); |
| 493 | ret = idr_alloc_cyclic(&cctx->ctx_idr, ctx, 1, |
| 494 | FASTRPC_CTX_MAX, GFP_ATOMIC); |
| 495 | if (ret < 0) { |
| 496 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 497 | goto err_idr; |
| 498 | } |
| 499 | ctx->ctxid = ret << 4; |
| 500 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 501 | |
| 502 | kref_init(&ctx->refcount); |
| 503 | |
| 504 | return ctx; |
| 505 | err_idr: |
| 506 | spin_lock(&user->lock); |
| 507 | list_del(&ctx->node); |
| 508 | spin_unlock(&user->lock); |
| 509 | fastrpc_channel_ctx_put(cctx); |
| 510 | kfree(ctx->maps); |
| 511 | kfree(ctx->olaps); |
| 512 | kfree(ctx); |
| 513 | |
| 514 | return ERR_PTR(ret); |
| 515 | } |
| 516 | |
| 517 | static struct sg_table * |
| 518 | fastrpc_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; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 523 | int ret; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 524 | |
| 525 | table = &a->sgt; |
| 526 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 527 | ret = dma_map_sgtable(attachment->dev, table, dir, 0); |
| 528 | if (ret) |
| 529 | table = ERR_PTR(ret); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 530 | return table; |
| 531 | } |
| 532 | |
| 533 | static void fastrpc_unmap_dma_buf(struct dma_buf_attachment *attach, |
| 534 | struct sg_table *table, |
| 535 | enum dma_data_direction dir) |
| 536 | { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 537 | dma_unmap_sgtable(attach->dev, table, dir, 0); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | static void fastrpc_release(struct dma_buf *dmabuf) |
| 541 | { |
| 542 | struct fastrpc_buf *buffer = dmabuf->priv; |
| 543 | |
| 544 | fastrpc_buf_free(buffer); |
| 545 | } |
| 546 | |
| 547 | static 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"); |
| 562 | kfree(a); |
| 563 | 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 | |
| 577 | static 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); |
| 586 | sg_free_table(&a->sgt); |
| 587 | kfree(a); |
| 588 | } |
| 589 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 590 | static void *fastrpc_vmap(struct dma_buf *dmabuf) |
| 591 | { |
| 592 | struct fastrpc_buf *buf = dmabuf->priv; |
| 593 | |
| 594 | return buf->virt; |
| 595 | } |
| 596 | |
| 597 | static 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 | |
| 607 | static 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, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 613 | .vmap = fastrpc_vmap, |
| 614 | .release = fastrpc_release, |
| 615 | }; |
| 616 | |
| 617 | static int fastrpc_map_create(struct fastrpc_user *fl, int fd, |
| 618 | u64 len, struct fastrpc_map **ppmap) |
| 619 | { |
| 620 | struct fastrpc_session_ctx *sess = fl->sctx; |
| 621 | struct fastrpc_map *map = NULL; |
| 622 | int err = 0; |
| 623 | |
| 624 | if (!fastrpc_map_find(fl, fd, ppmap)) |
| 625 | return 0; |
| 626 | |
| 627 | map = kzalloc(sizeof(*map), GFP_KERNEL); |
| 628 | if (!map) |
| 629 | return -ENOMEM; |
| 630 | |
| 631 | INIT_LIST_HEAD(&map->node); |
| 632 | map->fl = fl; |
| 633 | map->fd = fd; |
| 634 | map->buf = dma_buf_get(fd); |
| 635 | if (IS_ERR(map->buf)) { |
| 636 | err = PTR_ERR(map->buf); |
| 637 | goto get_err; |
| 638 | } |
| 639 | |
| 640 | map->attach = dma_buf_attach(map->buf, sess->dev); |
| 641 | if (IS_ERR(map->attach)) { |
| 642 | dev_err(sess->dev, "Failed to attach dmabuf\n"); |
| 643 | err = PTR_ERR(map->attach); |
| 644 | goto attach_err; |
| 645 | } |
| 646 | |
| 647 | map->table = dma_buf_map_attachment(map->attach, DMA_BIDIRECTIONAL); |
| 648 | if (IS_ERR(map->table)) { |
| 649 | err = PTR_ERR(map->table); |
| 650 | goto map_err; |
| 651 | } |
| 652 | |
| 653 | map->phys = sg_dma_address(map->table->sgl); |
| 654 | map->phys += ((u64)fl->sctx->sid << 32); |
| 655 | map->size = len; |
| 656 | map->va = sg_virt(map->table->sgl); |
| 657 | map->len = len; |
| 658 | kref_init(&map->refcount); |
| 659 | |
| 660 | spin_lock(&fl->lock); |
| 661 | list_add_tail(&map->node, &fl->maps); |
| 662 | spin_unlock(&fl->lock); |
| 663 | *ppmap = map; |
| 664 | |
| 665 | return 0; |
| 666 | |
| 667 | map_err: |
| 668 | dma_buf_detach(map->buf, map->attach); |
| 669 | attach_err: |
| 670 | dma_buf_put(map->buf); |
| 671 | get_err: |
| 672 | kfree(map); |
| 673 | |
| 674 | return err; |
| 675 | } |
| 676 | |
| 677 | /* |
| 678 | * Fastrpc payload buffer with metadata looks like: |
| 679 | * |
| 680 | * >>>>>> START of METADATA <<<<<<<<< |
| 681 | * +---------------------------------+ |
| 682 | * | Arguments | |
| 683 | * | type:(struct fastrpc_remote_arg)| |
| 684 | * | (0 - N) | |
| 685 | * +---------------------------------+ |
| 686 | * | Invoke Buffer list | |
| 687 | * | type:(struct fastrpc_invoke_buf)| |
| 688 | * | (0 - N) | |
| 689 | * +---------------------------------+ |
| 690 | * | Page info list | |
| 691 | * | type:(struct fastrpc_phy_page) | |
| 692 | * | (0 - N) | |
| 693 | * +---------------------------------+ |
| 694 | * | Optional info | |
| 695 | * |(can be specific to SoC/Firmware)| |
| 696 | * +---------------------------------+ |
| 697 | * >>>>>>>> END of METADATA <<<<<<<<< |
| 698 | * +---------------------------------+ |
| 699 | * | Inline ARGS | |
| 700 | * | (0-N) | |
| 701 | * +---------------------------------+ |
| 702 | */ |
| 703 | |
| 704 | static int fastrpc_get_meta_size(struct fastrpc_invoke_ctx *ctx) |
| 705 | { |
| 706 | int size = 0; |
| 707 | |
| 708 | size = (sizeof(struct fastrpc_remote_arg) + |
| 709 | sizeof(struct fastrpc_invoke_buf) + |
| 710 | sizeof(struct fastrpc_phy_page)) * ctx->nscalars + |
| 711 | sizeof(u64) * FASTRPC_MAX_FDLIST + |
| 712 | sizeof(u32) * FASTRPC_MAX_CRCLIST; |
| 713 | |
| 714 | return size; |
| 715 | } |
| 716 | |
| 717 | static u64 fastrpc_get_payload_size(struct fastrpc_invoke_ctx *ctx, int metalen) |
| 718 | { |
| 719 | u64 size = 0; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 720 | int oix; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 721 | |
| 722 | size = ALIGN(metalen, FASTRPC_ALIGN); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 723 | for (oix = 0; oix < ctx->nbufs; oix++) { |
| 724 | int i = ctx->olaps[oix].raix; |
| 725 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 726 | if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1) { |
| 727 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 728 | if (ctx->olaps[oix].offset == 0) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 729 | size = ALIGN(size, FASTRPC_ALIGN); |
| 730 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 731 | size += (ctx->olaps[oix].mend - ctx->olaps[oix].mstart); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 732 | } |
| 733 | } |
| 734 | |
| 735 | return size; |
| 736 | } |
| 737 | |
| 738 | static 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 | |
| 763 | static 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; |
| 769 | int inbufs, i, oix, err = 0; |
| 770 | u64 len, rlen, pkt_size; |
| 771 | u64 pg_start, pg_end; |
| 772 | uintptr_t args; |
| 773 | int metalen; |
| 774 | |
| 775 | 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 | |
| 797 | for (oix = 0; oix < ctx->nbufs; ++oix) { |
| 798 | int mlen; |
| 799 | |
| 800 | i = ctx->olaps[oix].raix; |
| 801 | len = ctx->args[i].length; |
| 802 | |
| 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 | |
| 811 | if (ctx->maps[i]) { |
| 812 | struct vm_area_struct *vma = NULL; |
| 813 | |
| 814 | rpra[i].pv = (u64) ctx->args[i].ptr; |
| 815 | pages[i].addr = ctx->maps[i]->phys; |
| 816 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 817 | mmap_read_lock(current->mm); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 818 | vma = find_vma(current->mm, ctx->args[i].ptr); |
| 819 | if (vma) |
| 820 | pages[i].addr += ctx->args[i].ptr - |
| 821 | vma->vm_start; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 822 | mmap_read_unlock(current->mm); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 823 | |
| 824 | pg_start = (ctx->args[i].ptr & PAGE_MASK) >> PAGE_SHIFT; |
| 825 | pg_end = ((ctx->args[i].ptr + len - 1) & PAGE_MASK) >> |
| 826 | PAGE_SHIFT; |
| 827 | pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE; |
| 828 | |
| 829 | } else { |
| 830 | |
| 831 | if (ctx->olaps[oix].offset == 0) { |
| 832 | rlen -= ALIGN(args, FASTRPC_ALIGN) - args; |
| 833 | args = ALIGN(args, FASTRPC_ALIGN); |
| 834 | } |
| 835 | |
| 836 | mlen = ctx->olaps[oix].mend - ctx->olaps[oix].mstart; |
| 837 | |
| 838 | if (rlen < mlen) |
| 839 | goto bail; |
| 840 | |
| 841 | rpra[i].pv = args - ctx->olaps[oix].offset; |
| 842 | pages[i].addr = ctx->buf->phys - |
| 843 | ctx->olaps[oix].offset + |
| 844 | (pkt_size - rlen); |
| 845 | pages[i].addr = pages[i].addr & PAGE_MASK; |
| 846 | |
| 847 | pg_start = (args & PAGE_MASK) >> PAGE_SHIFT; |
| 848 | pg_end = ((args + len - 1) & PAGE_MASK) >> PAGE_SHIFT; |
| 849 | pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE; |
| 850 | args = args + mlen; |
| 851 | rlen -= mlen; |
| 852 | } |
| 853 | |
| 854 | if (i < inbufs && !ctx->maps[i]) { |
| 855 | void *dst = (void *)(uintptr_t)rpra[i].pv; |
| 856 | void *src = (void *)(uintptr_t)ctx->args[i].ptr; |
| 857 | |
| 858 | if (!kernel) { |
| 859 | if (copy_from_user(dst, (void __user *)src, |
| 860 | len)) { |
| 861 | err = -EFAULT; |
| 862 | goto bail; |
| 863 | } |
| 864 | } else { |
| 865 | memcpy(dst, src, len); |
| 866 | } |
| 867 | } |
| 868 | } |
| 869 | |
| 870 | for (i = ctx->nbufs; i < ctx->nscalars; ++i) { |
| 871 | rpra[i].pv = (u64) ctx->args[i].ptr; |
| 872 | rpra[i].len = ctx->args[i].length; |
| 873 | list[i].num = ctx->args[i].length ? 1 : 0; |
| 874 | list[i].pgidx = i; |
| 875 | pages[i].addr = ctx->maps[i]->phys; |
| 876 | pages[i].size = ctx->maps[i]->size; |
| 877 | } |
| 878 | |
| 879 | bail: |
| 880 | if (err) |
| 881 | dev_err(dev, "Error: get invoke args failed:%d\n", err); |
| 882 | |
| 883 | return err; |
| 884 | } |
| 885 | |
| 886 | static int fastrpc_put_args(struct fastrpc_invoke_ctx *ctx, |
| 887 | u32 kernel) |
| 888 | { |
| 889 | struct fastrpc_remote_arg *rpra = ctx->rpra; |
| 890 | int i, inbufs; |
| 891 | |
| 892 | inbufs = REMOTE_SCALARS_INBUFS(ctx->sc); |
| 893 | |
| 894 | for (i = inbufs; i < ctx->nbufs; ++i) { |
| 895 | void *src = (void *)(uintptr_t)rpra[i].pv; |
| 896 | void *dst = (void *)(uintptr_t)ctx->args[i].ptr; |
| 897 | u64 len = rpra[i].len; |
| 898 | |
| 899 | if (!kernel) { |
| 900 | if (copy_to_user((void __user *)dst, src, len)) |
| 901 | return -EFAULT; |
| 902 | } else { |
| 903 | memcpy(dst, src, len); |
| 904 | } |
| 905 | } |
| 906 | |
| 907 | return 0; |
| 908 | } |
| 909 | |
| 910 | static int fastrpc_invoke_send(struct fastrpc_session_ctx *sctx, |
| 911 | struct fastrpc_invoke_ctx *ctx, |
| 912 | u32 kernel, uint32_t handle) |
| 913 | { |
| 914 | struct fastrpc_channel_ctx *cctx; |
| 915 | struct fastrpc_user *fl = ctx->fl; |
| 916 | struct fastrpc_msg *msg = &ctx->msg; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 917 | int ret; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 918 | |
| 919 | cctx = fl->cctx; |
| 920 | msg->pid = fl->tgid; |
| 921 | msg->tid = current->pid; |
| 922 | |
| 923 | if (kernel) |
| 924 | msg->pid = 0; |
| 925 | |
| 926 | msg->ctx = ctx->ctxid | fl->pd; |
| 927 | msg->handle = handle; |
| 928 | msg->sc = ctx->sc; |
| 929 | msg->addr = ctx->buf ? ctx->buf->phys : 0; |
| 930 | msg->size = roundup(ctx->msg_sz, PAGE_SIZE); |
| 931 | fastrpc_context_get(ctx); |
| 932 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 933 | ret = rpmsg_send(cctx->rpdev->ept, (void *)msg, sizeof(*msg)); |
| 934 | |
| 935 | if (ret) |
| 936 | fastrpc_context_put(ctx); |
| 937 | |
| 938 | return ret; |
| 939 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel, |
| 943 | u32 handle, u32 sc, |
| 944 | struct fastrpc_invoke_args *args) |
| 945 | { |
| 946 | struct fastrpc_invoke_ctx *ctx = NULL; |
| 947 | int err = 0; |
| 948 | |
| 949 | if (!fl->sctx) |
| 950 | return -EINVAL; |
| 951 | |
| 952 | if (!fl->cctx->rpdev) |
| 953 | return -EPIPE; |
| 954 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 955 | if (handle == FASTRPC_INIT_HANDLE && !kernel) { |
| 956 | dev_warn_ratelimited(fl->sctx->dev, "user app trying to send a kernel RPC message (%d)\n", handle); |
| 957 | return -EPERM; |
| 958 | } |
| 959 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 960 | ctx = fastrpc_context_alloc(fl, kernel, sc, args); |
| 961 | if (IS_ERR(ctx)) |
| 962 | return PTR_ERR(ctx); |
| 963 | |
| 964 | if (ctx->nscalars) { |
| 965 | err = fastrpc_get_args(kernel, ctx); |
| 966 | if (err) |
| 967 | goto bail; |
| 968 | } |
| 969 | |
| 970 | /* make sure that all CPU memory writes are seen by DSP */ |
| 971 | dma_wmb(); |
| 972 | /* Send invoke buffer to remote dsp */ |
| 973 | err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle); |
| 974 | if (err) |
| 975 | goto bail; |
| 976 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 977 | if (kernel) { |
| 978 | if (!wait_for_completion_timeout(&ctx->work, 10 * HZ)) |
| 979 | err = -ETIMEDOUT; |
| 980 | } else { |
| 981 | err = wait_for_completion_interruptible(&ctx->work); |
| 982 | } |
| 983 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 984 | if (err) |
| 985 | goto bail; |
| 986 | |
| 987 | /* Check the response from remote dsp */ |
| 988 | err = ctx->retval; |
| 989 | if (err) |
| 990 | goto bail; |
| 991 | |
| 992 | if (ctx->nscalars) { |
| 993 | /* make sure that all memory writes by DSP are seen by CPU */ |
| 994 | dma_rmb(); |
| 995 | /* populate all the output buffers with results */ |
| 996 | err = fastrpc_put_args(ctx, kernel); |
| 997 | if (err) |
| 998 | goto bail; |
| 999 | } |
| 1000 | |
| 1001 | bail: |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1002 | if (err != -ERESTARTSYS && err != -ETIMEDOUT) { |
| 1003 | /* We are done with this compute context */ |
| 1004 | spin_lock(&fl->lock); |
| 1005 | list_del(&ctx->node); |
| 1006 | spin_unlock(&fl->lock); |
| 1007 | fastrpc_context_put(ctx); |
| 1008 | } |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1009 | if (err) |
| 1010 | dev_dbg(fl->sctx->dev, "Error: Invoke Failed %d\n", err); |
| 1011 | |
| 1012 | return err; |
| 1013 | } |
| 1014 | |
| 1015 | static int fastrpc_init_create_process(struct fastrpc_user *fl, |
| 1016 | char __user *argp) |
| 1017 | { |
| 1018 | struct fastrpc_init_create init; |
| 1019 | struct fastrpc_invoke_args *args; |
| 1020 | struct fastrpc_phy_page pages[1]; |
| 1021 | struct fastrpc_map *map = NULL; |
| 1022 | struct fastrpc_buf *imem = NULL; |
| 1023 | int memlen; |
| 1024 | int err; |
| 1025 | struct { |
| 1026 | int pgid; |
| 1027 | u32 namelen; |
| 1028 | u32 filelen; |
| 1029 | u32 pageslen; |
| 1030 | u32 attrs; |
| 1031 | u32 siglen; |
| 1032 | } inbuf; |
| 1033 | u32 sc; |
| 1034 | |
| 1035 | args = kcalloc(FASTRPC_CREATE_PROCESS_NARGS, sizeof(*args), GFP_KERNEL); |
| 1036 | if (!args) |
| 1037 | return -ENOMEM; |
| 1038 | |
| 1039 | if (copy_from_user(&init, argp, sizeof(init))) { |
| 1040 | err = -EFAULT; |
| 1041 | goto err; |
| 1042 | } |
| 1043 | |
| 1044 | if (init.filelen > INIT_FILELEN_MAX) { |
| 1045 | err = -EINVAL; |
| 1046 | goto err; |
| 1047 | } |
| 1048 | |
| 1049 | inbuf.pgid = fl->tgid; |
| 1050 | inbuf.namelen = strlen(current->comm) + 1; |
| 1051 | inbuf.filelen = init.filelen; |
| 1052 | inbuf.pageslen = 1; |
| 1053 | inbuf.attrs = init.attrs; |
| 1054 | inbuf.siglen = init.siglen; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1055 | fl->pd = USER_PD; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1056 | |
| 1057 | if (init.filelen && init.filefd) { |
| 1058 | err = fastrpc_map_create(fl, init.filefd, init.filelen, &map); |
| 1059 | if (err) |
| 1060 | goto err; |
| 1061 | } |
| 1062 | |
| 1063 | memlen = ALIGN(max(INIT_FILELEN_MAX, (int)init.filelen * 4), |
| 1064 | 1024 * 1024); |
| 1065 | err = fastrpc_buf_alloc(fl, fl->sctx->dev, memlen, |
| 1066 | &imem); |
| 1067 | if (err) |
| 1068 | goto err_alloc; |
| 1069 | |
| 1070 | fl->init_mem = imem; |
| 1071 | args[0].ptr = (u64)(uintptr_t)&inbuf; |
| 1072 | args[0].length = sizeof(inbuf); |
| 1073 | args[0].fd = -1; |
| 1074 | |
| 1075 | args[1].ptr = (u64)(uintptr_t)current->comm; |
| 1076 | args[1].length = inbuf.namelen; |
| 1077 | args[1].fd = -1; |
| 1078 | |
| 1079 | args[2].ptr = (u64) init.file; |
| 1080 | args[2].length = inbuf.filelen; |
| 1081 | args[2].fd = init.filefd; |
| 1082 | |
| 1083 | pages[0].addr = imem->phys; |
| 1084 | pages[0].size = imem->size; |
| 1085 | |
| 1086 | args[3].ptr = (u64)(uintptr_t) pages; |
| 1087 | args[3].length = 1 * sizeof(*pages); |
| 1088 | args[3].fd = -1; |
| 1089 | |
| 1090 | args[4].ptr = (u64)(uintptr_t)&inbuf.attrs; |
| 1091 | args[4].length = sizeof(inbuf.attrs); |
| 1092 | args[4].fd = -1; |
| 1093 | |
| 1094 | args[5].ptr = (u64)(uintptr_t) &inbuf.siglen; |
| 1095 | args[5].length = sizeof(inbuf.siglen); |
| 1096 | args[5].fd = -1; |
| 1097 | |
| 1098 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE, 4, 0); |
| 1099 | if (init.attrs) |
| 1100 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_CREATE_ATTR, 6, 0); |
| 1101 | |
| 1102 | err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, |
| 1103 | sc, args); |
| 1104 | if (err) |
| 1105 | goto err_invoke; |
| 1106 | |
| 1107 | kfree(args); |
| 1108 | |
| 1109 | return 0; |
| 1110 | |
| 1111 | err_invoke: |
| 1112 | fl->init_mem = NULL; |
| 1113 | fastrpc_buf_free(imem); |
| 1114 | err_alloc: |
| 1115 | if (map) { |
| 1116 | spin_lock(&fl->lock); |
| 1117 | list_del(&map->node); |
| 1118 | spin_unlock(&fl->lock); |
| 1119 | fastrpc_map_put(map); |
| 1120 | } |
| 1121 | err: |
| 1122 | kfree(args); |
| 1123 | |
| 1124 | return err; |
| 1125 | } |
| 1126 | |
| 1127 | static struct fastrpc_session_ctx *fastrpc_session_alloc( |
| 1128 | struct fastrpc_channel_ctx *cctx) |
| 1129 | { |
| 1130 | struct fastrpc_session_ctx *session = NULL; |
| 1131 | unsigned long flags; |
| 1132 | int i; |
| 1133 | |
| 1134 | spin_lock_irqsave(&cctx->lock, flags); |
| 1135 | for (i = 0; i < cctx->sesscount; i++) { |
| 1136 | if (!cctx->session[i].used && cctx->session[i].valid) { |
| 1137 | cctx->session[i].used = true; |
| 1138 | session = &cctx->session[i]; |
| 1139 | break; |
| 1140 | } |
| 1141 | } |
| 1142 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1143 | |
| 1144 | return session; |
| 1145 | } |
| 1146 | |
| 1147 | static void fastrpc_session_free(struct fastrpc_channel_ctx *cctx, |
| 1148 | struct fastrpc_session_ctx *session) |
| 1149 | { |
| 1150 | unsigned long flags; |
| 1151 | |
| 1152 | spin_lock_irqsave(&cctx->lock, flags); |
| 1153 | session->used = false; |
| 1154 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1155 | } |
| 1156 | |
| 1157 | static int fastrpc_release_current_dsp_process(struct fastrpc_user *fl) |
| 1158 | { |
| 1159 | struct fastrpc_invoke_args args[1]; |
| 1160 | int tgid = 0; |
| 1161 | u32 sc; |
| 1162 | |
| 1163 | tgid = fl->tgid; |
| 1164 | args[0].ptr = (u64)(uintptr_t) &tgid; |
| 1165 | args[0].length = sizeof(tgid); |
| 1166 | args[0].fd = -1; |
| 1167 | args[0].reserved = 0; |
| 1168 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_RELEASE, 1, 0); |
| 1169 | |
| 1170 | return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, |
| 1171 | sc, &args[0]); |
| 1172 | } |
| 1173 | |
| 1174 | static int fastrpc_device_release(struct inode *inode, struct file *file) |
| 1175 | { |
| 1176 | struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data; |
| 1177 | struct fastrpc_channel_ctx *cctx = fl->cctx; |
| 1178 | struct fastrpc_invoke_ctx *ctx, *n; |
| 1179 | struct fastrpc_map *map, *m; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1180 | struct fastrpc_buf *buf, *b; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1181 | unsigned long flags; |
| 1182 | |
| 1183 | fastrpc_release_current_dsp_process(fl); |
| 1184 | |
| 1185 | spin_lock_irqsave(&cctx->lock, flags); |
| 1186 | list_del(&fl->user); |
| 1187 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1188 | |
| 1189 | if (fl->init_mem) |
| 1190 | fastrpc_buf_free(fl->init_mem); |
| 1191 | |
| 1192 | list_for_each_entry_safe(ctx, n, &fl->pending, node) { |
| 1193 | list_del(&ctx->node); |
| 1194 | fastrpc_context_put(ctx); |
| 1195 | } |
| 1196 | |
| 1197 | list_for_each_entry_safe(map, m, &fl->maps, node) { |
| 1198 | list_del(&map->node); |
| 1199 | fastrpc_map_put(map); |
| 1200 | } |
| 1201 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1202 | list_for_each_entry_safe(buf, b, &fl->mmaps, node) { |
| 1203 | list_del(&buf->node); |
| 1204 | fastrpc_buf_free(buf); |
| 1205 | } |
| 1206 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1207 | fastrpc_session_free(cctx, fl->sctx); |
| 1208 | fastrpc_channel_ctx_put(cctx); |
| 1209 | |
| 1210 | mutex_destroy(&fl->mutex); |
| 1211 | kfree(fl); |
| 1212 | file->private_data = NULL; |
| 1213 | |
| 1214 | return 0; |
| 1215 | } |
| 1216 | |
| 1217 | static int fastrpc_device_open(struct inode *inode, struct file *filp) |
| 1218 | { |
| 1219 | struct fastrpc_channel_ctx *cctx = miscdev_to_cctx(filp->private_data); |
| 1220 | struct fastrpc_user *fl = NULL; |
| 1221 | unsigned long flags; |
| 1222 | |
| 1223 | fl = kzalloc(sizeof(*fl), GFP_KERNEL); |
| 1224 | if (!fl) |
| 1225 | return -ENOMEM; |
| 1226 | |
| 1227 | /* Released in fastrpc_device_release() */ |
| 1228 | fastrpc_channel_ctx_get(cctx); |
| 1229 | |
| 1230 | filp->private_data = fl; |
| 1231 | spin_lock_init(&fl->lock); |
| 1232 | mutex_init(&fl->mutex); |
| 1233 | INIT_LIST_HEAD(&fl->pending); |
| 1234 | INIT_LIST_HEAD(&fl->maps); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1235 | INIT_LIST_HEAD(&fl->mmaps); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1236 | INIT_LIST_HEAD(&fl->user); |
| 1237 | fl->tgid = current->tgid; |
| 1238 | fl->cctx = cctx; |
| 1239 | |
| 1240 | fl->sctx = fastrpc_session_alloc(cctx); |
| 1241 | if (!fl->sctx) { |
| 1242 | dev_err(&cctx->rpdev->dev, "No session available\n"); |
| 1243 | mutex_destroy(&fl->mutex); |
| 1244 | kfree(fl); |
| 1245 | |
| 1246 | return -EBUSY; |
| 1247 | } |
| 1248 | |
| 1249 | spin_lock_irqsave(&cctx->lock, flags); |
| 1250 | list_add_tail(&fl->user, &cctx->users); |
| 1251 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1252 | |
| 1253 | return 0; |
| 1254 | } |
| 1255 | |
| 1256 | static int fastrpc_dmabuf_alloc(struct fastrpc_user *fl, char __user *argp) |
| 1257 | { |
| 1258 | struct fastrpc_alloc_dma_buf bp; |
| 1259 | DEFINE_DMA_BUF_EXPORT_INFO(exp_info); |
| 1260 | struct fastrpc_buf *buf = NULL; |
| 1261 | int err; |
| 1262 | |
| 1263 | if (copy_from_user(&bp, argp, sizeof(bp))) |
| 1264 | return -EFAULT; |
| 1265 | |
| 1266 | err = fastrpc_buf_alloc(fl, fl->sctx->dev, bp.size, &buf); |
| 1267 | if (err) |
| 1268 | return err; |
| 1269 | exp_info.ops = &fastrpc_dma_buf_ops; |
| 1270 | exp_info.size = bp.size; |
| 1271 | exp_info.flags = O_RDWR; |
| 1272 | exp_info.priv = buf; |
| 1273 | buf->dmabuf = dma_buf_export(&exp_info); |
| 1274 | if (IS_ERR(buf->dmabuf)) { |
| 1275 | err = PTR_ERR(buf->dmabuf); |
| 1276 | fastrpc_buf_free(buf); |
| 1277 | return err; |
| 1278 | } |
| 1279 | |
| 1280 | bp.fd = dma_buf_fd(buf->dmabuf, O_ACCMODE); |
| 1281 | if (bp.fd < 0) { |
| 1282 | dma_buf_put(buf->dmabuf); |
| 1283 | return -EINVAL; |
| 1284 | } |
| 1285 | |
| 1286 | if (copy_to_user(argp, &bp, sizeof(bp))) { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1287 | /* |
| 1288 | * The usercopy failed, but we can't do much about it, as |
| 1289 | * dma_buf_fd() already called fd_install() and made the |
| 1290 | * file descriptor accessible for the current process. It |
| 1291 | * might already be closed and dmabuf no longer valid when |
| 1292 | * we reach this point. Therefore "leak" the fd and rely on |
| 1293 | * the process exit path to do any required cleanup. |
| 1294 | */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1295 | return -EFAULT; |
| 1296 | } |
| 1297 | |
| 1298 | return 0; |
| 1299 | } |
| 1300 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1301 | static int fastrpc_init_attach(struct fastrpc_user *fl, int pd) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1302 | { |
| 1303 | struct fastrpc_invoke_args args[1]; |
| 1304 | int tgid = fl->tgid; |
| 1305 | u32 sc; |
| 1306 | |
| 1307 | args[0].ptr = (u64)(uintptr_t) &tgid; |
| 1308 | args[0].length = sizeof(tgid); |
| 1309 | args[0].fd = -1; |
| 1310 | args[0].reserved = 0; |
| 1311 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_ATTACH, 1, 0); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1312 | fl->pd = pd; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1313 | |
| 1314 | return fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, |
| 1315 | sc, &args[0]); |
| 1316 | } |
| 1317 | |
| 1318 | static int fastrpc_invoke(struct fastrpc_user *fl, char __user *argp) |
| 1319 | { |
| 1320 | struct fastrpc_invoke_args *args = NULL; |
| 1321 | struct fastrpc_invoke inv; |
| 1322 | u32 nscalars; |
| 1323 | int err; |
| 1324 | |
| 1325 | if (copy_from_user(&inv, argp, sizeof(inv))) |
| 1326 | return -EFAULT; |
| 1327 | |
| 1328 | /* nscalars is truncated here to max supported value */ |
| 1329 | nscalars = REMOTE_SCALARS_LENGTH(inv.sc); |
| 1330 | if (nscalars) { |
| 1331 | args = kcalloc(nscalars, sizeof(*args), GFP_KERNEL); |
| 1332 | if (!args) |
| 1333 | return -ENOMEM; |
| 1334 | |
| 1335 | if (copy_from_user(args, (void __user *)(uintptr_t)inv.args, |
| 1336 | nscalars * sizeof(*args))) { |
| 1337 | kfree(args); |
| 1338 | return -EFAULT; |
| 1339 | } |
| 1340 | } |
| 1341 | |
| 1342 | err = fastrpc_internal_invoke(fl, false, inv.handle, inv.sc, args); |
| 1343 | kfree(args); |
| 1344 | |
| 1345 | return err; |
| 1346 | } |
| 1347 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1348 | static int fastrpc_req_munmap_impl(struct fastrpc_user *fl, |
| 1349 | struct fastrpc_req_munmap *req) |
| 1350 | { |
| 1351 | struct fastrpc_invoke_args args[1] = { [0] = { 0 } }; |
| 1352 | struct fastrpc_buf *buf, *b; |
| 1353 | struct fastrpc_munmap_req_msg req_msg; |
| 1354 | struct device *dev = fl->sctx->dev; |
| 1355 | int err; |
| 1356 | u32 sc; |
| 1357 | |
| 1358 | spin_lock(&fl->lock); |
| 1359 | list_for_each_entry_safe(buf, b, &fl->mmaps, node) { |
| 1360 | if ((buf->raddr == req->vaddrout) && (buf->size == req->size)) |
| 1361 | break; |
| 1362 | buf = NULL; |
| 1363 | } |
| 1364 | spin_unlock(&fl->lock); |
| 1365 | |
| 1366 | if (!buf) { |
| 1367 | dev_err(dev, "mmap not in list\n"); |
| 1368 | return -EINVAL; |
| 1369 | } |
| 1370 | |
| 1371 | req_msg.pgid = fl->tgid; |
| 1372 | req_msg.size = buf->size; |
| 1373 | req_msg.vaddr = buf->raddr; |
| 1374 | |
| 1375 | args[0].ptr = (u64) (uintptr_t) &req_msg; |
| 1376 | args[0].length = sizeof(req_msg); |
| 1377 | |
| 1378 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MUNMAP, 1, 0); |
| 1379 | err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc, |
| 1380 | &args[0]); |
| 1381 | if (!err) { |
| 1382 | dev_dbg(dev, "unmmap\tpt 0x%09lx OK\n", buf->raddr); |
| 1383 | spin_lock(&fl->lock); |
| 1384 | list_del(&buf->node); |
| 1385 | spin_unlock(&fl->lock); |
| 1386 | fastrpc_buf_free(buf); |
| 1387 | } else { |
| 1388 | dev_err(dev, "unmmap\tpt 0x%09lx ERROR\n", buf->raddr); |
| 1389 | } |
| 1390 | |
| 1391 | return err; |
| 1392 | } |
| 1393 | |
| 1394 | static int fastrpc_req_munmap(struct fastrpc_user *fl, char __user *argp) |
| 1395 | { |
| 1396 | struct fastrpc_req_munmap req; |
| 1397 | |
| 1398 | if (copy_from_user(&req, argp, sizeof(req))) |
| 1399 | return -EFAULT; |
| 1400 | |
| 1401 | return fastrpc_req_munmap_impl(fl, &req); |
| 1402 | } |
| 1403 | |
| 1404 | static int fastrpc_req_mmap(struct fastrpc_user *fl, char __user *argp) |
| 1405 | { |
| 1406 | struct fastrpc_invoke_args args[3] = { [0 ... 2] = { 0 } }; |
| 1407 | struct fastrpc_buf *buf = NULL; |
| 1408 | struct fastrpc_mmap_req_msg req_msg; |
| 1409 | struct fastrpc_mmap_rsp_msg rsp_msg; |
| 1410 | struct fastrpc_req_munmap req_unmap; |
| 1411 | struct fastrpc_phy_page pages; |
| 1412 | struct fastrpc_req_mmap req; |
| 1413 | struct device *dev = fl->sctx->dev; |
| 1414 | int err; |
| 1415 | u32 sc; |
| 1416 | |
| 1417 | if (copy_from_user(&req, argp, sizeof(req))) |
| 1418 | return -EFAULT; |
| 1419 | |
| 1420 | if (req.flags != ADSP_MMAP_ADD_PAGES) { |
| 1421 | dev_err(dev, "flag not supported 0x%x\n", req.flags); |
| 1422 | return -EINVAL; |
| 1423 | } |
| 1424 | |
| 1425 | if (req.vaddrin) { |
| 1426 | dev_err(dev, "adding user allocated pages is not supported\n"); |
| 1427 | return -EINVAL; |
| 1428 | } |
| 1429 | |
| 1430 | err = fastrpc_buf_alloc(fl, fl->sctx->dev, req.size, &buf); |
| 1431 | if (err) { |
| 1432 | dev_err(dev, "failed to allocate buffer\n"); |
| 1433 | return err; |
| 1434 | } |
| 1435 | |
| 1436 | req_msg.pgid = fl->tgid; |
| 1437 | req_msg.flags = req.flags; |
| 1438 | req_msg.vaddr = req.vaddrin; |
| 1439 | req_msg.num = sizeof(pages); |
| 1440 | |
| 1441 | args[0].ptr = (u64) (uintptr_t) &req_msg; |
| 1442 | args[0].length = sizeof(req_msg); |
| 1443 | |
| 1444 | pages.addr = buf->phys; |
| 1445 | pages.size = buf->size; |
| 1446 | |
| 1447 | args[1].ptr = (u64) (uintptr_t) &pages; |
| 1448 | args[1].length = sizeof(pages); |
| 1449 | |
| 1450 | args[2].ptr = (u64) (uintptr_t) &rsp_msg; |
| 1451 | args[2].length = sizeof(rsp_msg); |
| 1452 | |
| 1453 | sc = FASTRPC_SCALARS(FASTRPC_RMID_INIT_MMAP, 2, 1); |
| 1454 | err = fastrpc_internal_invoke(fl, true, FASTRPC_INIT_HANDLE, sc, |
| 1455 | &args[0]); |
| 1456 | if (err) { |
| 1457 | dev_err(dev, "mmap error (len 0x%08llx)\n", buf->size); |
| 1458 | goto err_invoke; |
| 1459 | } |
| 1460 | |
| 1461 | /* update the buffer to be able to deallocate the memory on the DSP */ |
| 1462 | buf->raddr = (uintptr_t) rsp_msg.vaddr; |
| 1463 | |
| 1464 | /* let the client know the address to use */ |
| 1465 | req.vaddrout = rsp_msg.vaddr; |
| 1466 | |
| 1467 | spin_lock(&fl->lock); |
| 1468 | list_add_tail(&buf->node, &fl->mmaps); |
| 1469 | spin_unlock(&fl->lock); |
| 1470 | |
| 1471 | if (copy_to_user((void __user *)argp, &req, sizeof(req))) { |
| 1472 | /* unmap the memory and release the buffer */ |
| 1473 | req_unmap.vaddrout = buf->raddr; |
| 1474 | req_unmap.size = buf->size; |
| 1475 | fastrpc_req_munmap_impl(fl, &req_unmap); |
| 1476 | return -EFAULT; |
| 1477 | } |
| 1478 | |
| 1479 | dev_dbg(dev, "mmap\t\tpt 0x%09lx OK [len 0x%08llx]\n", |
| 1480 | buf->raddr, buf->size); |
| 1481 | |
| 1482 | return 0; |
| 1483 | |
| 1484 | err_invoke: |
| 1485 | fastrpc_buf_free(buf); |
| 1486 | |
| 1487 | return err; |
| 1488 | } |
| 1489 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1490 | static long fastrpc_device_ioctl(struct file *file, unsigned int cmd, |
| 1491 | unsigned long arg) |
| 1492 | { |
| 1493 | struct fastrpc_user *fl = (struct fastrpc_user *)file->private_data; |
| 1494 | char __user *argp = (char __user *)arg; |
| 1495 | int err; |
| 1496 | |
| 1497 | switch (cmd) { |
| 1498 | case FASTRPC_IOCTL_INVOKE: |
| 1499 | err = fastrpc_invoke(fl, argp); |
| 1500 | break; |
| 1501 | case FASTRPC_IOCTL_INIT_ATTACH: |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1502 | err = fastrpc_init_attach(fl, AUDIO_PD); |
| 1503 | break; |
| 1504 | case FASTRPC_IOCTL_INIT_ATTACH_SNS: |
| 1505 | err = fastrpc_init_attach(fl, SENSORS_PD); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1506 | break; |
| 1507 | case FASTRPC_IOCTL_INIT_CREATE: |
| 1508 | err = fastrpc_init_create_process(fl, argp); |
| 1509 | break; |
| 1510 | case FASTRPC_IOCTL_ALLOC_DMA_BUFF: |
| 1511 | err = fastrpc_dmabuf_alloc(fl, argp); |
| 1512 | break; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1513 | case FASTRPC_IOCTL_MMAP: |
| 1514 | err = fastrpc_req_mmap(fl, argp); |
| 1515 | break; |
| 1516 | case FASTRPC_IOCTL_MUNMAP: |
| 1517 | err = fastrpc_req_munmap(fl, argp); |
| 1518 | break; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1519 | default: |
| 1520 | err = -ENOTTY; |
| 1521 | break; |
| 1522 | } |
| 1523 | |
| 1524 | return err; |
| 1525 | } |
| 1526 | |
| 1527 | static const struct file_operations fastrpc_fops = { |
| 1528 | .open = fastrpc_device_open, |
| 1529 | .release = fastrpc_device_release, |
| 1530 | .unlocked_ioctl = fastrpc_device_ioctl, |
| 1531 | .compat_ioctl = fastrpc_device_ioctl, |
| 1532 | }; |
| 1533 | |
| 1534 | static int fastrpc_cb_probe(struct platform_device *pdev) |
| 1535 | { |
| 1536 | struct fastrpc_channel_ctx *cctx; |
| 1537 | struct fastrpc_session_ctx *sess; |
| 1538 | struct device *dev = &pdev->dev; |
| 1539 | int i, sessions = 0; |
| 1540 | unsigned long flags; |
| 1541 | int rc; |
| 1542 | |
| 1543 | cctx = dev_get_drvdata(dev->parent); |
| 1544 | if (!cctx) |
| 1545 | return -EINVAL; |
| 1546 | |
| 1547 | of_property_read_u32(dev->of_node, "qcom,nsessions", &sessions); |
| 1548 | |
| 1549 | spin_lock_irqsave(&cctx->lock, flags); |
| 1550 | sess = &cctx->session[cctx->sesscount]; |
| 1551 | sess->used = false; |
| 1552 | sess->valid = true; |
| 1553 | sess->dev = dev; |
| 1554 | dev_set_drvdata(dev, sess); |
| 1555 | |
| 1556 | if (of_property_read_u32(dev->of_node, "reg", &sess->sid)) |
| 1557 | dev_info(dev, "FastRPC Session ID not specified in DT\n"); |
| 1558 | |
| 1559 | if (sessions > 0) { |
| 1560 | struct fastrpc_session_ctx *dup_sess; |
| 1561 | |
| 1562 | for (i = 1; i < sessions; i++) { |
| 1563 | if (cctx->sesscount++ >= FASTRPC_MAX_SESSIONS) |
| 1564 | break; |
| 1565 | dup_sess = &cctx->session[cctx->sesscount]; |
| 1566 | memcpy(dup_sess, sess, sizeof(*dup_sess)); |
| 1567 | } |
| 1568 | } |
| 1569 | cctx->sesscount++; |
| 1570 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1571 | rc = dma_set_mask(dev, DMA_BIT_MASK(32)); |
| 1572 | if (rc) { |
| 1573 | dev_err(dev, "32-bit DMA enable failed\n"); |
| 1574 | return rc; |
| 1575 | } |
| 1576 | |
| 1577 | return 0; |
| 1578 | } |
| 1579 | |
| 1580 | static int fastrpc_cb_remove(struct platform_device *pdev) |
| 1581 | { |
| 1582 | struct fastrpc_channel_ctx *cctx = dev_get_drvdata(pdev->dev.parent); |
| 1583 | struct fastrpc_session_ctx *sess = dev_get_drvdata(&pdev->dev); |
| 1584 | unsigned long flags; |
| 1585 | int i; |
| 1586 | |
| 1587 | spin_lock_irqsave(&cctx->lock, flags); |
| 1588 | for (i = 1; i < FASTRPC_MAX_SESSIONS; i++) { |
| 1589 | if (cctx->session[i].sid == sess->sid) { |
| 1590 | cctx->session[i].valid = false; |
| 1591 | cctx->sesscount--; |
| 1592 | } |
| 1593 | } |
| 1594 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1595 | |
| 1596 | return 0; |
| 1597 | } |
| 1598 | |
| 1599 | static const struct of_device_id fastrpc_match_table[] = { |
| 1600 | { .compatible = "qcom,fastrpc-compute-cb", }, |
| 1601 | {} |
| 1602 | }; |
| 1603 | |
| 1604 | static struct platform_driver fastrpc_cb_driver = { |
| 1605 | .probe = fastrpc_cb_probe, |
| 1606 | .remove = fastrpc_cb_remove, |
| 1607 | .driver = { |
| 1608 | .name = "qcom,fastrpc-cb", |
| 1609 | .of_match_table = fastrpc_match_table, |
| 1610 | .suppress_bind_attrs = true, |
| 1611 | }, |
| 1612 | }; |
| 1613 | |
| 1614 | static int fastrpc_rpmsg_probe(struct rpmsg_device *rpdev) |
| 1615 | { |
| 1616 | struct device *rdev = &rpdev->dev; |
| 1617 | struct fastrpc_channel_ctx *data; |
| 1618 | int i, err, domain_id = -1; |
| 1619 | const char *domain; |
| 1620 | |
| 1621 | err = of_property_read_string(rdev->of_node, "label", &domain); |
| 1622 | if (err) { |
| 1623 | dev_info(rdev, "FastRPC Domain not specified in DT\n"); |
| 1624 | return err; |
| 1625 | } |
| 1626 | |
| 1627 | for (i = 0; i <= CDSP_DOMAIN_ID; i++) { |
| 1628 | if (!strcmp(domains[i], domain)) { |
| 1629 | domain_id = i; |
| 1630 | break; |
| 1631 | } |
| 1632 | } |
| 1633 | |
| 1634 | if (domain_id < 0) { |
| 1635 | dev_info(rdev, "FastRPC Invalid Domain ID %d\n", domain_id); |
| 1636 | return -EINVAL; |
| 1637 | } |
| 1638 | |
| 1639 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 1640 | if (!data) |
| 1641 | return -ENOMEM; |
| 1642 | |
| 1643 | data->miscdev.minor = MISC_DYNAMIC_MINOR; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 1644 | data->miscdev.name = devm_kasprintf(rdev, GFP_KERNEL, "fastrpc-%s", |
| 1645 | domains[domain_id]); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1646 | data->miscdev.fops = &fastrpc_fops; |
| 1647 | err = misc_register(&data->miscdev); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 1648 | if (err) { |
| 1649 | kfree(data); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1650 | return err; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 1651 | } |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1652 | |
| 1653 | kref_init(&data->refcount); |
| 1654 | |
| 1655 | dev_set_drvdata(&rpdev->dev, data); |
| 1656 | dma_set_mask_and_coherent(rdev, DMA_BIT_MASK(32)); |
| 1657 | INIT_LIST_HEAD(&data->users); |
| 1658 | spin_lock_init(&data->lock); |
| 1659 | idr_init(&data->ctx_idr); |
| 1660 | data->domain_id = domain_id; |
| 1661 | data->rpdev = rpdev; |
| 1662 | |
| 1663 | return of_platform_populate(rdev->of_node, NULL, NULL, rdev); |
| 1664 | } |
| 1665 | |
| 1666 | static void fastrpc_notify_users(struct fastrpc_user *user) |
| 1667 | { |
| 1668 | struct fastrpc_invoke_ctx *ctx; |
| 1669 | |
| 1670 | spin_lock(&user->lock); |
| 1671 | list_for_each_entry(ctx, &user->pending, node) |
| 1672 | complete(&ctx->work); |
| 1673 | spin_unlock(&user->lock); |
| 1674 | } |
| 1675 | |
| 1676 | static void fastrpc_rpmsg_remove(struct rpmsg_device *rpdev) |
| 1677 | { |
| 1678 | struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev); |
| 1679 | struct fastrpc_user *user; |
| 1680 | unsigned long flags; |
| 1681 | |
| 1682 | spin_lock_irqsave(&cctx->lock, flags); |
| 1683 | list_for_each_entry(user, &cctx->users, user) |
| 1684 | fastrpc_notify_users(user); |
| 1685 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1686 | |
| 1687 | misc_deregister(&cctx->miscdev); |
| 1688 | of_platform_depopulate(&rpdev->dev); |
| 1689 | |
| 1690 | cctx->rpdev = NULL; |
| 1691 | fastrpc_channel_ctx_put(cctx); |
| 1692 | } |
| 1693 | |
| 1694 | static int fastrpc_rpmsg_callback(struct rpmsg_device *rpdev, void *data, |
| 1695 | int len, void *priv, u32 addr) |
| 1696 | { |
| 1697 | struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev); |
| 1698 | struct fastrpc_invoke_rsp *rsp = data; |
| 1699 | struct fastrpc_invoke_ctx *ctx; |
| 1700 | unsigned long flags; |
| 1701 | unsigned long ctxid; |
| 1702 | |
| 1703 | if (len < sizeof(*rsp)) |
| 1704 | return -EINVAL; |
| 1705 | |
| 1706 | ctxid = ((rsp->ctx & FASTRPC_CTXID_MASK) >> 4); |
| 1707 | |
| 1708 | spin_lock_irqsave(&cctx->lock, flags); |
| 1709 | ctx = idr_find(&cctx->ctx_idr, ctxid); |
| 1710 | spin_unlock_irqrestore(&cctx->lock, flags); |
| 1711 | |
| 1712 | if (!ctx) { |
| 1713 | dev_err(&rpdev->dev, "No context ID matches response\n"); |
| 1714 | return -ENOENT; |
| 1715 | } |
| 1716 | |
| 1717 | ctx->retval = rsp->retval; |
| 1718 | complete(&ctx->work); |
| 1719 | |
| 1720 | /* |
| 1721 | * The DMA buffer associated with the context cannot be freed in |
| 1722 | * interrupt context so schedule it through a worker thread to |
| 1723 | * avoid a kernel BUG. |
| 1724 | */ |
| 1725 | schedule_work(&ctx->put_work); |
| 1726 | |
| 1727 | return 0; |
| 1728 | } |
| 1729 | |
| 1730 | static const struct of_device_id fastrpc_rpmsg_of_match[] = { |
| 1731 | { .compatible = "qcom,fastrpc" }, |
| 1732 | { }, |
| 1733 | }; |
| 1734 | MODULE_DEVICE_TABLE(of, fastrpc_rpmsg_of_match); |
| 1735 | |
| 1736 | static struct rpmsg_driver fastrpc_driver = { |
| 1737 | .probe = fastrpc_rpmsg_probe, |
| 1738 | .remove = fastrpc_rpmsg_remove, |
| 1739 | .callback = fastrpc_rpmsg_callback, |
| 1740 | .drv = { |
| 1741 | .name = "qcom,fastrpc", |
| 1742 | .of_match_table = fastrpc_rpmsg_of_match, |
| 1743 | }, |
| 1744 | }; |
| 1745 | |
| 1746 | static int fastrpc_init(void) |
| 1747 | { |
| 1748 | int ret; |
| 1749 | |
| 1750 | ret = platform_driver_register(&fastrpc_cb_driver); |
| 1751 | if (ret < 0) { |
| 1752 | pr_err("fastrpc: failed to register cb driver\n"); |
| 1753 | return ret; |
| 1754 | } |
| 1755 | |
| 1756 | ret = register_rpmsg_driver(&fastrpc_driver); |
| 1757 | if (ret < 0) { |
| 1758 | pr_err("fastrpc: failed to register rpmsg driver\n"); |
| 1759 | platform_driver_unregister(&fastrpc_cb_driver); |
| 1760 | return ret; |
| 1761 | } |
| 1762 | |
| 1763 | return 0; |
| 1764 | } |
| 1765 | module_init(fastrpc_init); |
| 1766 | |
| 1767 | static void fastrpc_exit(void) |
| 1768 | { |
| 1769 | platform_driver_unregister(&fastrpc_cb_driver); |
| 1770 | unregister_rpmsg_driver(&fastrpc_driver); |
| 1771 | } |
| 1772 | module_exit(fastrpc_exit); |
| 1773 | |
| 1774 | MODULE_LICENSE("GPL v2"); |