summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/include
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/include')
-rw-r--r--drivers/gpu/nvgpu/include/nvgpu/linux/nvgpu_mem.h31
-rw-r--r--drivers/gpu/nvgpu/include/nvgpu/nvgpu_mem.h10
2 files changed, 41 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/include/nvgpu/linux/nvgpu_mem.h b/drivers/gpu/nvgpu/include/nvgpu/linux/nvgpu_mem.h
index 8b1e646e..9c52811e 100644
--- a/drivers/gpu/nvgpu/include/nvgpu/linux/nvgpu_mem.h
+++ b/drivers/gpu/nvgpu/include/nvgpu/linux/nvgpu_mem.h
@@ -20,10 +20,41 @@
20struct page; 20struct page;
21struct sg_table; 21struct sg_table;
22 22
23struct gk20a;
24struct nvgpu_mem;
25
23struct nvgpu_mem_priv { 26struct nvgpu_mem_priv {
24 struct page **pages; 27 struct page **pages;
25 struct sg_table *sgt; 28 struct sg_table *sgt;
26 unsigned long flags; 29 unsigned long flags;
27}; 30};
28 31
32/**
33 * __nvgpu_mem_create_from_pages - Create an nvgpu_mem from physical pages.
34 *
35 * @g - The GPU.
36 * @dest - nvgpu_mem to initialize.
37 * @pages - A list of page pointers.
38 * @nr_pages - The number of pages in @pages.
39 *
40 * Create a new nvgpu_mem struct from a pre-existing list of physical pages. The
41 * pages need not be contiguous (the underlying scatter gather list will help
42 * with that). However, note, this API will explicitly make it so that the GMMU
43 * mapping code bypasses SMMU access for the passed pages. This allows one to
44 * make mem_descs that describe MMIO regions or other non-DRAM things.
45 *
46 * This only works for SYSMEM (or other things like SYSMEM - basically just not
47 * VIDMEM). Also, this API is only available for Linux as it heavily depends on
48 * the notion of struct %page.
49 *
50 * The resulting nvgpu_mem should be released with the nvgpu_dma_free() or the
51 * nvgpu_dma_unmap_free() function depending on whether or not the resulting
52 * nvgpu_mem has been mapped. The underlying pages themselves must be cleaned up
53 * by the caller of this API.
54 *
55 * Returns 0 on success, or a relevant error otherwise.
56 */
57int __nvgpu_mem_create_from_pages(struct gk20a *g, struct nvgpu_mem *dest,
58 struct page **pages, int nr_pages);
59
29#endif 60#endif
diff --git a/drivers/gpu/nvgpu/include/nvgpu/nvgpu_mem.h b/drivers/gpu/nvgpu/include/nvgpu/nvgpu_mem.h
index b01fbec5..66d04ab8 100644
--- a/drivers/gpu/nvgpu/include/nvgpu/nvgpu_mem.h
+++ b/drivers/gpu/nvgpu/include/nvgpu/nvgpu_mem.h
@@ -68,6 +68,16 @@ struct nvgpu_mem {
68 * therefor zeroed (to prevent leaking information in VIDMEM buffers). 68 * therefor zeroed (to prevent leaking information in VIDMEM buffers).
69 */ 69 */
70#define NVGPU_MEM_FLAG_USER_MEM (1 << 2) 70#define NVGPU_MEM_FLAG_USER_MEM (1 << 2)
71
72 /*
73 * Internal flag that specifies this struct has not been made with DMA
74 * memory and as a result should not try to use the DMA routines for
75 * freeing the backing memory.
76 *
77 * However, this will not stop the DMA API from freeing other parts of
78 * nvgpu_mem in a system specific way.
79 */
80#define __NVGPU_MEM_FLAG_NO_DMA (1 << 3)
71 unsigned long mem_flags; 81 unsigned long mem_flags;
72 82
73 /* 83 /*