summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/sec2_gp106.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 21:03:55 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:15 -0500
commit78ad8a23ea896abde95f76b2ced0fe353cb4cb60 (patch)
treec52725895a49d1b8a1f71816eba90ada3316c23e /drivers/gpu/nvgpu/gp106/sec2_gp106.c
parent865514be2dbd36b65c3ac128724036ea0ce63321 (diff)
gpu: nvgpu: Move gp106 HW headers
Move the gp106 HW headers to a new directory specially for them: include/nvgpu/hw/gp106 And change the code to include like so: #include <nvgpu/hw/gp106/hw_fb_gp106.h> This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: I76a4ff2e92021150ce65a8843bc12bb614a0e68a Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1280327 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/sec2_gp106.c')
-rw-r--r--drivers/gpu/nvgpu/gp106/sec2_gp106.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gp106/sec2_gp106.c b/drivers/gpu/nvgpu/gp106/sec2_gp106.c
index 8f34edd1..738519cf 100644
--- a/drivers/gpu/nvgpu/gp106/sec2_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/sec2_gp106.c
@@ -13,20 +13,26 @@
13 13
14#include <linux/delay.h> /* for udelay */ 14#include <linux/delay.h> /* for udelay */
15#include <linux/clk.h> 15#include <linux/clk.h>
16
16#include "gk20a/gk20a.h" 17#include "gk20a/gk20a.h"
17#include "gk20a/pmu_gk20a.h" 18#include "gk20a/pmu_gk20a.h"
18 19
19#include "gm206/pmu_gm206.h" 20#include "gm206/pmu_gm206.h"
21
20#include "gm20b/pmu_gm20b.h" 22#include "gm20b/pmu_gm20b.h"
23
21#include "gp10b/pmu_gp10b.h" 24#include "gp10b/pmu_gp10b.h"
25
22#include "gp106/pmu_gp106.h" 26#include "gp106/pmu_gp106.h"
23#include "gp106/acr_gp106.h" 27#include "gp106/acr_gp106.h"
24#include "gp106/hw_mc_gp106.h" 28
25#include "gp106/hw_pwr_gp106.h"
26#include "gp106/hw_psec_gp106.h"
27#include "sec2_gp106.h" 29#include "sec2_gp106.h"
28#include "acr.h" 30#include "acr.h"
29 31
32#include <nvgpu/hw/gp106/hw_mc_gp106.h>
33#include <nvgpu/hw/gp106/hw_pwr_gp106.h>
34#include <nvgpu/hw/gp106/hw_psec_gp106.h>
35
30/*Defines*/ 36/*Defines*/
31#define gm20b_dbg_pmu(fmt, arg...) \ 37#define gm20b_dbg_pmu(fmt, arg...) \
32 gk20a_dbg(gpu_dbg_pmu, fmt, ##arg) 38 gk20a_dbg(gpu_dbg_pmu, fmt, ##arg)