summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
diff options
context:
space:
mode:
authorKevin Huang <kevinh@nvidia.com>2014-04-23 18:39:00 -0400
committerDan Willemsen <dwillemsen@nvidia.com>2015-03-18 15:09:59 -0400
commit18939e4b4a680a8e01bbec864b267e193fb3714d (patch)
tree5fa061e5f27978084350b79b56a3035ddbf12ece /drivers/gpu/nvgpu/gm20b/hal_gm20b.c
parentda56b17de0b360cb020a8831ba82c202057c2968 (diff)
gpu: nvgpu: add support to Maxwell sparse texture
Bug 1442531 Change-Id: Ie927cca905b2ea9811417e7a1fdfdf9d48f015e2 Signed-off-by: Kevin Huang <kevinh@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/hal_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/hal_gm20b.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
index 7e390c37..0fc5fe99 100644
--- a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
@@ -24,6 +24,7 @@
24#include "gm20b_gating_reglist.h" 24#include "gm20b_gating_reglist.h"
25#include "fifo_gm20b.h" 25#include "fifo_gm20b.h"
26#include "gr_ctx_gm20b.h" 26#include "gr_ctx_gm20b.h"
27#include "mm_gm20b.h"
27 28
28struct gpu_ops gm20b_ops = { 29struct gpu_ops gm20b_ops = {
29 .clock_gating = { 30 .clock_gating = {
@@ -49,6 +50,7 @@ int gm20b_init_hal(struct gpu_ops *gops)
49 gm20b_init_fb(gops); 50 gm20b_init_fb(gops);
50 gm20b_init_fifo(gops); 51 gm20b_init_fifo(gops);
51 gm20b_init_gr_ctx(gops); 52 gm20b_init_gr_ctx(gops);
53 gm20b_init_mm(gops);
52 gops->name = "gm20b"; 54 gops->name = "gm20b";
53 55
54 return 0; 56 return 0;