summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2017-11-07 13:50:49 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-11-08 20:11:30 -0500
commit016231c045bfaa9f21feed00b88ac507c4935ebc (patch)
treeca6f41e1dfd89005c9716c13f1e9eb9404979274 /drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
parente7c45478895a359bd122b359c1f29b7e64116caf (diff)
gpu: nvgpu: Use only contig CBCs
Modify the LTC code to only use a contiguous CompBit Cache (CBC). The original code had two allocation schemes: "physical" and "virtual" - what they meant was virtually contiguous or physically contiguous. The CBC must appear contiguous to the GPU be it either from the IOMMU or from physical pages allocated contiguously. This change makes the CBC get allocated with the FORCE_CONTIGUOUS flag if the GPU is not IOMMU'able. If we can get contiguous mem with the IOMMU then no need to force the underlying pages to be contiguous. However, not all GPUs may be IOMMU'able so we do need to handle that case. Also delete the gk20a/ltc_gk20a.[ch] code. All that remained in these files was the CBC alloc functions which were completely chip agnostic. As a result these functions were consolidated and moved to common/ltc.c. Bug 2015747 Change-Id: I3f41961b4f94378b954e7502a6b27cf0bc627375 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1593666 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/ltc_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/ltc_gm20b.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
index 84759192..6ec9aec5 100644
--- a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
@@ -24,18 +24,18 @@
24 24
25#include <trace/events/gk20a.h> 25#include <trace/events/gk20a.h>
26 26
27#include "gk20a/gk20a.h"
28
29#include <nvgpu/timers.h> 27#include <nvgpu/timers.h>
30#include <nvgpu/enabled.h> 28#include <nvgpu/enabled.h>
31#include <nvgpu/bug.h> 29#include <nvgpu/bug.h>
30#include <nvgpu/ltc.h>
32 31
33#include <nvgpu/hw/gm20b/hw_mc_gm20b.h> 32#include <nvgpu/hw/gm20b/hw_mc_gm20b.h>
34#include <nvgpu/hw/gm20b/hw_ltc_gm20b.h> 33#include <nvgpu/hw/gm20b/hw_ltc_gm20b.h>
35#include <nvgpu/hw/gm20b/hw_top_gm20b.h> 34#include <nvgpu/hw/gm20b/hw_top_gm20b.h>
36#include <nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h> 35#include <nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h>
37 36
38#include "gk20a/ltc_gk20a.h" 37#include "gk20a/gk20a.h"
38
39#include "ltc_gm20b.h" 39#include "ltc_gm20b.h"
40 40
41int gm20b_ltc_init_comptags(struct gk20a *g, struct gr_gk20a *gr) 41int gm20b_ltc_init_comptags(struct gk20a *g, struct gr_gk20a *gr)
@@ -92,11 +92,7 @@ int gm20b_ltc_init_comptags(struct gk20a *g, struct gr_gk20a *gr)
92 gk20a_dbg_info("max comptag lines : %d", 92 gk20a_dbg_info("max comptag lines : %d",
93 max_comptag_lines); 93 max_comptag_lines);
94 94
95 if (nvgpu_is_enabled(g, NVGPU_IS_FMODEL)) 95 err = nvgpu_ltc_alloc_cbc(g, compbit_backing_size);
96 err = gk20a_ltc_alloc_phys_cbc(g, compbit_backing_size);
97 else
98 err = gk20a_ltc_alloc_virt_cbc(g, compbit_backing_size);
99
100 if (err) 96 if (err)
101 return err; 97 return err;
102 98