blob: 2d7cd344f3bffbc3b5960078c86f77b79d32743b [file] [log] [blame]
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +02001/*
2 * Remote processor messaging transport (OMAP platform-specific bits)
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Copyright (C) 2011 Google, Inc.
6 *
7 * Ohad Ben-Cohen <ohad@wizery.com>
8 * Brian Swetland <swetland@google.com>
9 *
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#include <linux/export.h>
21#include <linux/remoteproc.h>
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020022#include <linux/virtio.h>
23#include <linux/virtio_config.h>
24#include <linux/virtio_ids.h>
25#include <linux/virtio_ring.h>
26#include <linux/err.h>
27#include <linux/kref.h>
28#include <linux/slab.h>
29
30#include "remoteproc_internal.h"
31
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020032/* kick the remote processor, and let it know which virtqueue to poke at */
Heinz Graalfs46f9c2b2013-10-29 09:38:50 +103033static bool rproc_virtio_notify(struct virtqueue *vq)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020034{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010035 struct rproc_vring *rvring = vq->priv;
36 struct rproc *rproc = rvring->rvdev->rproc;
37 int notifyid = rvring->notifyid;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020038
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030039 dev_dbg(&rproc->dev, "kicking vq index: %d\n", notifyid);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020040
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010041 rproc->ops->kick(rproc, notifyid);
Heinz Graalfs46f9c2b2013-10-29 09:38:50 +103042 return true;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020043}
44
45/**
46 * rproc_vq_interrupt() - tell remoteproc that a virtqueue is interrupted
47 * @rproc: handle to the remote processor
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010048 * @notifyid: index of the signalled virtqueue (unique per this @rproc)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020049 *
50 * This function should be called by the platform-specific rproc driver,
51 * when the remote processor signals that a specific virtqueue has pending
52 * messages available.
53 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010054 * Returns IRQ_NONE if no message was found in the @notifyid virtqueue,
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020055 * and otherwise returns IRQ_HANDLED.
56 */
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010057irqreturn_t rproc_vq_interrupt(struct rproc *rproc, int notifyid)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020058{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010059 struct rproc_vring *rvring;
60
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030061 dev_dbg(&rproc->dev, "vq index %d is interrupted\n", notifyid);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010062
63 rvring = idr_find(&rproc->notifyids, notifyid);
64 if (!rvring || !rvring->vq)
65 return IRQ_NONE;
66
67 return vring_interrupt(0, rvring->vq);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020068}
69EXPORT_SYMBOL(rproc_vq_interrupt);
70
71static struct virtqueue *rp_find_vq(struct virtio_device *vdev,
Anna, Sumanf1459282016-08-12 18:42:19 -050072 unsigned int id,
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020073 void (*callback)(struct virtqueue *vq),
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +020074 const char *name, bool ctx)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020075{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010076 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020077 struct rproc *rproc = vdev_to_rproc(vdev);
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030078 struct device *dev = &rproc->dev;
Loic Pallardyc6aed2382018-07-27 15:14:47 +020079 struct rproc_mem_entry *mem;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010080 struct rproc_vring *rvring;
Loic Pallardyc6aed2382018-07-27 15:14:47 +020081 struct fw_rsc_vdev *rsc;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020082 struct virtqueue *vq;
83 void *addr;
Bjorn Anderssona863af52016-10-19 19:40:07 -070084 int len, size;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020085
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010086 /* we're temporarily limited to two virtqueues per rvdev */
87 if (id >= ARRAY_SIZE(rvdev->vring))
88 return ERR_PTR(-EINVAL);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +020089
Michael S. Tsirkin6457f122012-09-05 21:47:45 +030090 if (!name)
91 return NULL;
92
Loic Pallardyc6aed2382018-07-27 15:14:47 +020093 /* Search allocated memory region by name */
94 mem = rproc_find_carveout_by_name(rproc, "vdev%dvring%d", rvdev->index,
95 id);
96 if (!mem || !mem->va)
97 return ERR_PTR(-ENOMEM);
98
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +030099 rvring = &rvdev->vring[id];
Loic Pallardyc6aed2382018-07-27 15:14:47 +0200100 addr = mem->va;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100101 len = rvring->len;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200102
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100103 /* zero vring */
104 size = vring_size(len, rvring->align);
105 memset(addr, 0, size);
106
Loic Pallardy276ec992018-07-06 14:38:27 +0200107 dev_dbg(dev, "vring%d: va %pK qsz %d notifyid %d\n",
Anna, Suman730f84c2016-08-12 18:42:20 -0500108 id, addr, len, rvring->notifyid);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200109
Ohad Ben-Cohendd6da1c2012-01-12 09:26:57 +0200110 /*
111 * Create the new vq, and tell virtio we're not interested in
112 * the 'weak' smp barriers, since we're talking with a real device.
113 */
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +0200114 vq = vring_new_virtqueue(id, len, rvring->align, vdev, false, ctx,
115 addr, rproc_virtio_notify, callback, name);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200116 if (!vq) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300117 dev_err(dev, "vring_new_virtqueue %s failed\n", name);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300118 rproc_free_vring(rvring);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100119 return ERR_PTR(-ENOMEM);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200120 }
121
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100122 rvring->vq = vq;
123 vq->priv = rvring;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200124
Loic Pallardyc6aed2382018-07-27 15:14:47 +0200125 /* Update vring in resource table */
126 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset;
127 rsc->vring[id].da = mem->da;
128
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200129 return vq;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200130}
131
Ohad Ben-Cohendab55bb2012-11-12 11:13:51 +0200132static void __rproc_virtio_del_vqs(struct virtio_device *vdev)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200133{
134 struct virtqueue *vq, *n;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100135 struct rproc_vring *rvring;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200136
137 list_for_each_entry_safe(vq, n, &vdev->vqs, list) {
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100138 rvring = vq->priv;
139 rvring->vq = NULL;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200140 vring_del_virtqueue(vq);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200141 }
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200142}
143
Ohad Ben-Cohendab55bb2012-11-12 11:13:51 +0200144static void rproc_virtio_del_vqs(struct virtio_device *vdev)
145{
Ohad Ben-Cohendab55bb2012-11-12 11:13:51 +0200146 __rproc_virtio_del_vqs(vdev);
147}
148
Anna, Sumanf1459282016-08-12 18:42:19 -0500149static int rproc_virtio_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
Anna, Suman730f84c2016-08-12 18:42:20 -0500150 struct virtqueue *vqs[],
151 vq_callback_t *callbacks[],
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +0100152 const char * const names[],
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +0200153 const bool * ctx,
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +0100154 struct irq_affinity *desc)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200155{
Wei Wanga2299892018-12-28 10:26:26 +0800156 int i, ret, queue_idx = 0;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200157
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200158 for (i = 0; i < nvqs; ++i) {
Wei Wanga2299892018-12-28 10:26:26 +0800159 if (!names[i]) {
160 vqs[i] = NULL;
161 continue;
162 }
163
164 vqs[i] = rp_find_vq(vdev, queue_idx++, callbacks[i], names[i],
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +0200165 ctx ? ctx[i] : false);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200166 if (IS_ERR(vqs[i])) {
167 ret = PTR_ERR(vqs[i]);
168 goto error;
169 }
170 }
171
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200172 return 0;
173
174error:
Ohad Ben-Cohendab55bb2012-11-12 11:13:51 +0200175 __rproc_virtio_del_vqs(vdev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200176 return ret;
177}
178
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200179static u8 rproc_virtio_get_status(struct virtio_device *vdev)
180{
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100181 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
182 struct fw_rsc_vdev *rsc;
183
184 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
185
186 return rsc->status;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200187}
188
189static void rproc_virtio_set_status(struct virtio_device *vdev, u8 status)
190{
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100191 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
192 struct fw_rsc_vdev *rsc;
193
194 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
195
196 rsc->status = status;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100197 dev_dbg(&vdev->dev, "status: %d\n", status);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200198}
199
200static void rproc_virtio_reset(struct virtio_device *vdev)
201{
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100202 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
203 struct fw_rsc_vdev *rsc;
204
205 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
206
207 rsc->status = 0;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200208 dev_dbg(&vdev->dev, "reset !\n");
209}
210
211/* provide the vdev features as retrieved from the firmware */
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200212static u64 rproc_virtio_get_features(struct virtio_device *vdev)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200213{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100214 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100215 struct fw_rsc_vdev *rsc;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200216
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100217 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
218
219 return rsc->dfeatures;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200220}
221
Tiwei Bie3a814fd2018-11-21 18:03:29 +0800222static void rproc_transport_features(struct virtio_device *vdev)
223{
224 /*
225 * Packed ring isn't enabled on remoteproc for now,
226 * because remoteproc uses vring_new_virtqueue() which
227 * creates virtio rings on preallocated memory.
228 */
229 __virtio_clear_bit(vdev, VIRTIO_F_RING_PACKED);
230}
231
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +0200232static int rproc_virtio_finalize_features(struct virtio_device *vdev)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200233{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100234 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100235 struct fw_rsc_vdev *rsc;
236
237 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200238
239 /* Give virtio_ring a chance to accept features */
240 vring_transport_features(vdev);
241
Tiwei Bie3a814fd2018-11-21 18:03:29 +0800242 /* Give virtio_rproc a chance to accept features. */
243 rproc_transport_features(vdev);
244
Michael S. Tsirkin93d389f2014-11-27 13:45:58 +0200245 /* Make sure we don't have any features > 32 bits! */
246 BUG_ON((u32)vdev->features != vdev->features);
247
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200248 /*
249 * Remember the finalized features of our vdev, and provide it
250 * to the remote processor once it is powered on.
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200251 */
Michael S. Tsirkine16e12b2014-10-07 16:39:42 +0200252 rsc->gfeatures = vdev->features;
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +0200253
254 return 0;
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100255}
256
Anna, Sumanf1459282016-08-12 18:42:19 -0500257static void rproc_virtio_get(struct virtio_device *vdev, unsigned int offset,
258 void *buf, unsigned int len)
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100259{
260 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
261 struct fw_rsc_vdev *rsc;
262 void *cfg;
263
264 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
265 cfg = &rsc->vring[rsc->num_of_vrings];
266
267 if (offset + len > rsc->config_len || offset + len < len) {
268 dev_err(&vdev->dev, "rproc_virtio_get: access out of bounds\n");
269 return;
270 }
271
272 memcpy(buf, cfg + offset, len);
273}
274
Anna, Sumanf1459282016-08-12 18:42:19 -0500275static void rproc_virtio_set(struct virtio_device *vdev, unsigned int offset,
276 const void *buf, unsigned int len)
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100277{
278 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
279 struct fw_rsc_vdev *rsc;
280 void *cfg;
281
282 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset;
283 cfg = &rsc->vring[rsc->num_of_vrings];
284
285 if (offset + len > rsc->config_len || offset + len < len) {
286 dev_err(&vdev->dev, "rproc_virtio_set: access out of bounds\n");
287 return;
288 }
289
290 memcpy(cfg + offset, buf, len);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200291}
292
Stephen Hemminger93503932013-02-10 15:57:38 +1030293static const struct virtio_config_ops rproc_virtio_config_ops = {
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200294 .get_features = rproc_virtio_get_features,
295 .finalize_features = rproc_virtio_finalize_features,
296 .find_vqs = rproc_virtio_find_vqs,
297 .del_vqs = rproc_virtio_del_vqs,
298 .reset = rproc_virtio_reset,
299 .set_status = rproc_virtio_set_status,
300 .get_status = rproc_virtio_get_status,
Sjur Brændeland92b38f82013-02-21 18:15:39 +0100301 .get = rproc_virtio_get,
302 .set = rproc_virtio_set,
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200303};
304
305/*
306 * This function is called whenever vdev is released, and is responsible
Ohad Ben-Cohen7183a2a2012-05-30 22:02:24 +0300307 * to decrement the remote processor's refcount which was taken when vdev was
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200308 * added.
309 *
310 * Never call this function directly; it will be called by the driver
311 * core when needed.
312 */
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700313static void rproc_virtio_dev_release(struct device *dev)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200314{
315 struct virtio_device *vdev = dev_to_virtio(dev);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300316 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200317 struct rproc *rproc = vdev_to_rproc(vdev);
318
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700319 kref_put(&rvdev->refcount, rproc_vdev_release);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300320
Ohad Ben-Cohen7183a2a2012-05-30 22:02:24 +0300321 put_device(&rproc->dev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200322}
323
324/**
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100325 * rproc_add_virtio_dev() - register an rproc-induced virtio device
326 * @rvdev: the remote vdev
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200327 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100328 * This function registers a virtio device. This vdev's partent is
329 * the rproc device.
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200330 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100331 * Returns 0 on success or an appropriate error value otherwise.
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200332 */
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100333int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200334{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100335 struct rproc *rproc = rvdev->rproc;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300336 struct device *dev = &rproc->dev;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100337 struct virtio_device *vdev = &rvdev->vdev;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200338 int ret;
339
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100340 vdev->id.device = id,
341 vdev->config = &rproc_virtio_config_ops,
342 vdev->dev.parent = dev;
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700343 vdev->dev.release = rproc_virtio_dev_release;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200344
345 /*
346 * We're indirectly making a non-temporary copy of the rproc pointer
347 * here, because drivers probed with this vdev will indirectly
348 * access the wrapping rproc.
349 *
350 * Therefore we must increment the rproc refcount here, and decrement
351 * it _only_ when the vdev is released.
352 */
Ohad Ben-Cohen7183a2a2012-05-30 22:02:24 +0300353 get_device(&rproc->dev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200354
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700355 /* Reference the vdev and vring allocations */
356 kref_get(&rvdev->refcount);
357
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100358 ret = register_virtio_device(vdev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200359 if (ret) {
weiping zhang900a1632017-12-21 20:40:58 +0800360 put_device(&vdev->dev);
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200361 dev_err(dev, "failed to register vdev: %d\n", ret);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100362 goto out;
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200363 }
364
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100365 dev_info(dev, "registered %s (type %d)\n", dev_name(&vdev->dev), id);
366
367out:
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200368 return ret;
369}
370
371/**
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100372 * rproc_remove_virtio_dev() - remove an rproc-induced virtio device
373 * @rvdev: the remote vdev
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200374 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100375 * This function unregisters an existing virtio device.
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200376 */
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100377void rproc_remove_virtio_dev(struct rproc_vdev *rvdev)
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200378{
Ohad Ben-Cohenac8954a2011-10-20 18:15:13 +0200379 unregister_virtio_device(&rvdev->vdev);
380}