From: Wendy Liang <wendy.liang@xxxxxxxxxx> Use rproc_virtio_notify() to notify vdev config changes. Signed-off-by: Wendy Liang <jliang@xxxxxxxxxx> Signed-off-by: Michal Simek <michal.simek@xxxxxxxxxx> --- drivers/remoteproc/remoteproc_virtio.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index cc421f3..d43e15b 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c @@ -29,6 +29,20 @@ #include "remoteproc_internal.h" +/* kick the remote processor, and let it know the virtio dev has update */ +static bool rproc_virtio_notify(struct rproc_vdev *rvdev) +{ + struct rproc *rproc; + struct fw_rsc_vdev *rsc; + + if (!rvdev) + return false; + rproc = rvdev->rproc; + rsc = (void *)rproc->table_ptr + rvdev->rsc_offset; + rproc->ops->kick(rproc, rsc->notifyid); + return true; +} + /* kick the remote processor, and let it know which virtqueue to poke at */ static bool rproc_vq_notify(struct virtqueue *vq) { -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-remoteproc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html