summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/mm_gv11b.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/mm_gv11b.h')
-rw-r--r--drivers/gpu/nvgpu/gv11b/mm_gv11b.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/mm_gv11b.h b/drivers/gpu/nvgpu/gv11b/mm_gv11b.h
new file mode 100644
index 00000000..d830b7cc
--- /dev/null
+++ b/drivers/gpu/nvgpu/gv11b/mm_gv11b.h
@@ -0,0 +1,46 @@
1/*
2 * GV11B MM
3 * Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#ifndef MM_GV11B_H
25#define MM_GV11B_H
26
27#define HW_FAULT_BUF_STATUS_ALLOC_TRUE 1
28#define HW_FAULT_BUF_STATUS_ALLOC_FALSE 0
29
30struct gk20a;
31struct nvgpu_mem;
32struct vm_gk20a;
33
34bool gv11b_mm_is_bar1_supported(struct gk20a *g);
35void gv11b_init_inst_block(struct nvgpu_mem *inst_block,
36 struct vm_gk20a *vm, u32 big_page_size);
37bool gv11b_mm_mmu_fault_pending(struct gk20a *g);
38void gv11b_mm_remove_bar2_vm(struct gk20a *g);
39int gv11b_init_mm_setup_hw(struct gk20a *g);
40int gv11b_init_bar2_mm_hw_setup(struct gk20a *g);
41void gv11b_mm_l2_flush(struct gk20a *g, bool invalidate);
42u64 gv11b_gpu_phys_addr(struct gk20a *g,
43 struct nvgpu_gmmu_attrs *attrs, u64 phys);
44void gv11b_mm_fault_info_mem_destroy(struct gk20a *g);
45
46#endif