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