summaryrefslogtreecommitdiffstats
path: root/include/linux/remoteproc.h
diff options
context:
space:
mode:
authorSjur Brændeland <sjur.brandeland@stericsson.com>2013-02-21 12:15:39 -0500
committerOhad Ben-Cohen <ohad@wizery.com>2013-04-07 07:06:17 -0400
commit92b38f851470f8d8ea7ed638d546f83b5268bc12 (patch)
tree2c9010584f33d5b6b9e26f6f9139e5c42b19aad0 /include/linux/remoteproc.h
parenta2b950ac7b1e6442919ee9e79c4963e134698869 (diff)
remoteproc: support virtio config space.
Support virtio configuration space and device status. The virtio device can now access the resource table in shared memory. Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com> Acked-by: Ido Yariv <ido@wizery.com> [rebase and style changes] Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'include/linux/remoteproc.h')
-rw-r--r--include/linux/remoteproc.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h
index b4cef16460f8..9e7e745dac55 100644
--- a/include/linux/remoteproc.h
+++ b/include/linux/remoteproc.h
@@ -469,8 +469,6 @@ struct rproc_vring {
469 * @rproc: the rproc handle 469 * @rproc: the rproc handle
470 * @vdev: the virio device 470 * @vdev: the virio device
471 * @vring: the vrings for this vdev 471 * @vring: the vrings for this vdev
472 * @dfeatures: virtio device features
473 * @gfeatures: virtio guest features
474 * @rsc_offset: offset of the vdev's resource entry 472 * @rsc_offset: offset of the vdev's resource entry
475 */ 473 */
476struct rproc_vdev { 474struct rproc_vdev {
@@ -478,8 +476,6 @@ struct rproc_vdev {
478 struct rproc *rproc; 476 struct rproc *rproc;
479 struct virtio_device vdev; 477 struct virtio_device vdev;
480 struct rproc_vring vring[RVDEV_NUM_VRINGS]; 478 struct rproc_vring vring[RVDEV_NUM_VRINGS];
481 unsigned long dfeatures;
482 unsigned long gfeatures;
483 u32 rsc_offset; 479 u32 rsc_offset;
484}; 480};
485 481