Searched defs:notifyid (Results 1 - 2 of 2) sorted by relevance
/drivers/remoteproc/ |
H A D | remoteproc_virtio.c | 37 int notifyid = rvring->notifyid; local 39 dev_dbg(rproc->dev, "kicking vq index: %d\n", notifyid); 41 rproc->ops->kick(rproc, notifyid); 47 * @notifyid: index of the signalled virtqueue (unique per this @rproc) 53 * Returns IRQ_NONE if no message was found in the @notifyid virtqueue, 56 irqreturn_t rproc_vq_interrupt(struct rproc *rproc, int notifyid) argument 60 dev_dbg(rproc->dev, "vq index %d is interrupted\n", notifyid); 62 rvring = idr_find(&rproc->notifyids, notifyid); 95 dev_dbg(rproc->dev, "vring%d: va %p qsz %d notifyid [all...] |
H A D | remoteproc_core.c | 290 int ret, size, notifyid; local 327 /* TODO: assign a notifyid for rvdev updates as well */ 328 ret = idr_get_new(&rproc->notifyids, &rvdev->vring[i], ¬ifyid); 335 /* let the rproc know the da and notifyid of this vring */ 338 vring->notifyid = notifyid; 341 dma, size, notifyid); 347 rvdev->vring[i].notifyid = notifyid; 362 idr_remove(&rproc->notifyids, rvring->notifyid); [all...] |
Completed in 77 milliseconds