]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
remoteproc: Set vring addresses in resource table
authorSjur Brændeland <sjur.brandeland@stericsson.com>
Thu, 13 Dec 2012 13:01:47 +0000 (14:01 +0100)
committerSjur Brændeland <sjur@brendeland.net>
Tue, 12 Feb 2013 16:23:22 +0000 (17:23 +0100)
Set the vring addresses in the resource table so that
the remote device can read the actual addresses used.

Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com>
drivers/remoteproc/remoteproc_core.c
include/linux/remoteproc.h

index dd3bfaf1ad4075436c8bce652d48d80024d5c705..c12a385d1c733d0cd0d1b6b861bb7e48a7c8be4a 100644 (file)
@@ -207,7 +207,6 @@ int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
        /*
         * Allocate non-cacheable memory for the vring. In the future
         * this call will also configure the IOMMU for us
-        * TODO: let the rproc know the da of this vring
         */
        va = dma_alloc_coherent(dev->parent, size, &dma, GFP_KERNEL);
        if (!va) {
@@ -218,7 +217,6 @@ int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
        /*
         * Assign an rproc-wide unique index for this vring
         * TODO: assign a notifyid for rvdev updates as well
-        * TODO: let the rproc know the notifyid of this vring
         * TODO: support predefined notifyids (via resource table)
         */
        ret = idr_get_new(&rproc->notifyids, rvring, &notifyid);
@@ -238,6 +236,14 @@ int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
        rvring->dma = dma;
        rvring->notifyid = notifyid;
 
+       /*
+        * Let the rproc know the notifyid and da of this vring.
+        * Not all platforms use dma_alloc_coherent to automatically
+        * set up the iommu. In this case the device address (da) will
+        * hold the physical address and not the device address.
+        */
+       rvdev->rsc->vring[i].da = dma;
+       rvdev->rsc->vring[i].notifyid = notifyid;
        return 0;
 }
 
@@ -365,6 +371,9 @@ static int rproc_handle_vdev(struct rproc *rproc, struct fw_rsc_vdev *rsc,
        /* remember the device features */
        rvdev->dfeatures = rsc->dfeatures;
 
+       /* remember the resource entry */
+       rvdev->rsc = rsc;
+
        list_add_tail(&rvdev->node, &rproc->rvdevs);
 
        /* it is now safe to add the virtio device */
index faf33324c78f9613526a66474670303ae5661aab..cdacd660a60d21dbeaaf0f3ebf412c68a4d8dcfe 100644 (file)
@@ -464,6 +464,7 @@ struct rproc_vring {
  * @vring: the vrings for this vdev
  * @dfeatures: virtio device features
  * @gfeatures: virtio guest features
+ * @rsc: vdev resource entry
  */
 struct rproc_vdev {
        struct list_head node;
@@ -472,6 +473,7 @@ struct rproc_vdev {
        struct rproc_vring vring[RVDEV_NUM_VRINGS];
        unsigned long dfeatures;
        unsigned long gfeatures;
+       struct fw_rsc_vdev *rsc;
 };
 
 struct rproc *rproc_alloc(struct device *dev, const char *name,