summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/fb/fb_gk20a.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2018-07-02 17:30:26 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-07-12 23:44:13 -0400
commitb97bcb3c689426a1b099e88ceef4d55584e2362b (patch)
tree4ad683912a323eca81a493314db3d74b46b6aa71 /drivers/gpu/nvgpu/common/fb/fb_gk20a.c
parentb07a304ba3e747c80fe3e0a16caec88c8e1e8b28 (diff)
gpu: nvgpu: Move FB to common
Move all FB HAL implementations to common/fb. JIRA NVGPU-596 Change-Id: Id4ea09d608f5d6d1b245bddac09ecf1444b8ab30 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1769724 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/fb/fb_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/common/fb/fb_gk20a.c123
1 files changed, 123 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/fb/fb_gk20a.c b/drivers/gpu/nvgpu/common/fb/fb_gk20a.c
new file mode 100644
index 00000000..d27ac9d0
--- /dev/null
+++ b/drivers/gpu/nvgpu/common/fb/fb_gk20a.c
@@ -0,0 +1,123 @@
1/*
2 * GK20A memory interface
3 *
4 * Copyright (c) 2014-2018, NVIDIA CORPORATION. All rights reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#include <trace/events/gk20a.h>
26
27#include "gk20a/gk20a.h"
28
29#include "fb_gk20a.h"
30
31#include <nvgpu/timers.h>
32
33#include <nvgpu/hw/gk20a/hw_mc_gk20a.h>
34#include <nvgpu/hw/gk20a/hw_fb_gk20a.h>
35
36void fb_gk20a_reset(struct gk20a *g)
37{
38 u32 val;
39
40 nvgpu_log_info(g, "reset gk20a fb");
41
42 g->ops.mc.reset(g, mc_enable_pfb_enabled_f() |
43 mc_enable_l2_enabled_f() |
44 mc_enable_xbar_enabled_f() |
45 mc_enable_hub_enabled_f());
46
47 val = gk20a_readl(g, mc_elpg_enable_r());
48 val |= mc_elpg_enable_xbar_enabled_f()
49 | mc_elpg_enable_pfb_enabled_f()
50 | mc_elpg_enable_hub_enabled_f();
51 gk20a_writel(g, mc_elpg_enable_r(), val);
52}
53
54void gk20a_fb_init_hw(struct gk20a *g)
55{
56 u32 addr = nvgpu_mem_get_addr(g, &g->mm.sysmem_flush) >> 8;
57
58 gk20a_writel(g, fb_niso_flush_sysmem_addr_r(), addr);
59}
60
61void gk20a_fb_tlb_invalidate(struct gk20a *g, struct nvgpu_mem *pdb)
62{
63 struct nvgpu_timeout timeout;
64 u32 addr_lo;
65 u32 data;
66
67 nvgpu_log_fn(g, " ");
68
69 /* pagetables are considered sw states which are preserved after
70 prepare_poweroff. When gk20a deinit releases those pagetables,
71 common code in vm unmap path calls tlb invalidate that touches
72 hw. Use the power_on flag to skip tlb invalidation when gpu
73 power is turned off */
74
75 if (!g->power_on)
76 return;
77
78 addr_lo = u64_lo32(nvgpu_mem_get_addr(g, pdb) >> 12);
79
80 nvgpu_mutex_acquire(&g->mm.tlb_lock);
81
82 trace_gk20a_mm_tlb_invalidate(g->name);
83
84 nvgpu_timeout_init(g, &timeout, 1000, NVGPU_TIMER_RETRY_TIMER);
85
86 do {
87 data = gk20a_readl(g, fb_mmu_ctrl_r());
88 if (fb_mmu_ctrl_pri_fifo_space_v(data) != 0)
89 break;
90 nvgpu_udelay(2);
91 } while (!nvgpu_timeout_expired_msg(&timeout,
92 "wait mmu fifo space"));
93
94 if (nvgpu_timeout_peek_expired(&timeout))
95 goto out;
96
97 nvgpu_timeout_init(g, &timeout, 1000, NVGPU_TIMER_RETRY_TIMER);
98
99 gk20a_writel(g, fb_mmu_invalidate_pdb_r(),
100 fb_mmu_invalidate_pdb_addr_f(addr_lo) |
101 nvgpu_aperture_mask(g, pdb,
102 fb_mmu_invalidate_pdb_aperture_sys_mem_f(),
103 fb_mmu_invalidate_pdb_aperture_sys_mem_f(),
104 fb_mmu_invalidate_pdb_aperture_vid_mem_f()));
105
106 gk20a_writel(g, fb_mmu_invalidate_r(),
107 fb_mmu_invalidate_all_va_true_f() |
108 fb_mmu_invalidate_trigger_true_f());
109
110 do {
111 data = gk20a_readl(g, fb_mmu_ctrl_r());
112 if (fb_mmu_ctrl_pri_fifo_empty_v(data) !=
113 fb_mmu_ctrl_pri_fifo_empty_false_f())
114 break;
115 nvgpu_udelay(2);
116 } while (!nvgpu_timeout_expired_msg(&timeout,
117 "wait mmu invalidate"));
118
119 trace_gk20a_mm_tlb_invalidate_done(g->name);
120
121out:
122 nvgpu_mutex_release(&g->mm.tlb_lock);
123}