summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 20:03:37 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:14 -0500
commit7989012df274ba166171ac652cf80fe61993c292 (patch)
tree98bcd78940f6d4c09c28efdef834cfa536a9ce3c /drivers/gpu/nvgpu/gm20b/gr_gm20b.c
parentb928f10d37bdb57266569073d8b5d553dbf39044 (diff)
gpu: nvgpu: Move gm20b HW headers
Move the gm20b HW headers to a new directory specially for them: include/nvgpu/hw/gm20b And change the code to include like so: #include <nvgpu/hw/gm20b/hw_fb_gm20b.h> This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: I0765e2f6bcd5aa1e803efd250056de3cf9bfa7ed Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1244791 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/gr_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/gr_gm20b.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/gr_gm20b.c b/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
index c74b9fec..41532dc5 100644
--- a/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include <linux/types.h> 16#include <linux/types.h>
17#include <linux/delay.h> /* for mdelay */ 17#include <linux/delay.h>
18#include <linux/io.h> 18#include <linux/io.h>
19#include <linux/tegra-fuse.h> 19#include <linux/tegra-fuse.h>
20#include <linux/vmalloc.h> 20#include <linux/vmalloc.h>
@@ -26,16 +26,17 @@
26#include "gk20a/gr_gk20a.h" 26#include "gk20a/gr_gk20a.h"
27 27
28#include "gr_gm20b.h" 28#include "gr_gm20b.h"
29#include "hw_gr_gm20b.h"
30#include "hw_fifo_gm20b.h"
31#include "hw_fb_gm20b.h"
32#include "hw_top_gm20b.h"
33#include "hw_ltc_gm20b.h"
34#include "hw_ctxsw_prog_gm20b.h"
35#include "hw_fuse_gm20b.h"
36#include "pmu_gm20b.h" 29#include "pmu_gm20b.h"
37#include "acr_gm20b.h" 30#include "acr_gm20b.h"
38 31
32#include <nvgpu/hw/gm20b/hw_gr_gm20b.h>
33#include <nvgpu/hw/gm20b/hw_fifo_gm20b.h>
34#include <nvgpu/hw/gm20b/hw_fb_gm20b.h>
35#include <nvgpu/hw/gm20b/hw_top_gm20b.h>
36#include <nvgpu/hw/gm20b/hw_ltc_gm20b.h>
37#include <nvgpu/hw/gm20b/hw_ctxsw_prog_gm20b.h>
38#include <nvgpu/hw/gm20b/hw_fuse_gm20b.h>
39
39static void gr_gm20b_init_gpc_mmu(struct gk20a *g) 40static void gr_gm20b_init_gpc_mmu(struct gk20a *g)
40{ 41{
41 u32 temp; 42 u32 temp;