]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
gpu: ion: Get an sg_table from an ion handle
authorRebecca Schultz Zavin <rebecca@android.com>
Fri, 13 Dec 2013 22:23:44 +0000 (14:23 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 14 Dec 2013 16:55:37 +0000 (08:55 -0800)
This patch adds an interface to return and sg_table given a
valid ion handle.

Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
[jstultz: modified patch to apply to staging directory]
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion.c
drivers/staging/android/ion/ion.h

index b95202b0a51ae9e27aa70aefe47b6090805003bb..7ff9983c8eb9280a7a0a891922520c81051197eb 100644 (file)
@@ -616,8 +616,8 @@ void ion_client_destroy(struct ion_client *client)
        kfree(client);
 }
 
-struct sg_table *ion_map_dma(struct ion_client *client,
-                            struct ion_handle *handle)
+struct sg_table *ion_sg_table(struct ion_client *client,
+                             struct ion_handle *handle)
 {
        struct ion_buffer *buffer;
        struct sg_table *table;
@@ -635,10 +635,6 @@ struct sg_table *ion_map_dma(struct ion_client *client,
        return table;
 }
 
-void ion_unmap_dma(struct ion_client *client, struct ion_handle *handle)
-{
-}
-
 static struct sg_table *ion_map_dma_buf(struct dma_buf_attachment *attachment,
                                        enum dma_data_direction direction)
 {
index 84ca2a98ae837e4e2dc2bf4598777b753a4fd7fb..28810c8295bd2582c6c944ca791d181b5715d348 100644 (file)
@@ -149,7 +149,7 @@ void ion_free(struct ion_client *client, struct ion_handle *handle);
  * This function queries the heap for a particular handle to get the
  * handle's physical address.  It't output is only correct if
  * a heap returns physically contiguous memory -- in other cases
- * this api should not be implemented -- ion_map_dma should be used
+ * this api should not be implemented -- ion_sg_table should be used
  * instead.  Returns -EINVAL if the handle is invalid.  This has
  * no implications on the reference counting of the handle --
  * the returned value may not be valid if the caller is not
@@ -158,6 +158,17 @@ void ion_free(struct ion_client *client, struct ion_handle *handle);
 int ion_phys(struct ion_client *client, struct ion_handle *handle,
             ion_phys_addr_t *addr, size_t *len);
 
+/**
+ * ion_map_dma - return an sg_table describing a handle
+ * @client:    the client
+ * @handle:    the handle
+ *
+ * This function returns the sg_table describing
+ * a particular ion handle.
+ */
+struct sg_table *ion_sg_table(struct ion_client *client,
+                             struct ion_handle *handle);
+
 /**
  * ion_map_kernel - create mapping for the given handle
  * @client:    the client