summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/vgpu.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 19:49:50 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:14 -0500
commitb928f10d37bdb57266569073d8b5d553dbf39044 (patch)
tree60da9d9344963bfac157d91e74107d49109ef9a5 /drivers/gpu/nvgpu/vgpu/vgpu.c
parent5e68c6e971d98fc9d4beaf69c5ca58f39f8db1a7 (diff)
gpu: nvgpu: Start re-organizing the HW headers
Reorganize the HW headers of gk20a. The headers are moved to a new directory: include/nvgpu/hw/gk20a And from the code are included like so: #include <nvgpu/hw/gk20a/hw_pwr_gk20a.h> This is the first step in reorganizing all of the HW headers for gm20b, gm206, etc. This is part of a larger effort to re-structure and make the driver more readable and scalable. Bug 1799159 Change-Id: Ic151155cbc2e6f75009f2d9d597b364a1bed2c4c Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1244790 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/vgpu.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/vgpu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/vgpu.c b/drivers/gpu/nvgpu/vgpu/vgpu.c
index c3dba7d1..0ac79345 100644
--- a/drivers/gpu/nvgpu/vgpu/vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/vgpu.c
@@ -23,13 +23,14 @@
23#include "vgpu/fecs_trace_vgpu.h" 23#include "vgpu/fecs_trace_vgpu.h"
24#include "gk20a/debug_gk20a.h" 24#include "gk20a/debug_gk20a.h"
25#include "gk20a/hal_gk20a.h" 25#include "gk20a/hal_gk20a.h"
26#include "gk20a/hw_mc_gk20a.h"
27#include "gk20a/ctxsw_trace_gk20a.h" 26#include "gk20a/ctxsw_trace_gk20a.h"
28#include "gk20a/tsg_gk20a.h" 27#include "gk20a/tsg_gk20a.h"
29#include "gk20a/gk20a_scale.h" 28#include "gk20a/gk20a_scale.h"
30#include "gk20a/channel_gk20a.h" 29#include "gk20a/channel_gk20a.h"
31#include "gm20b/hal_gm20b.h" 30#include "gm20b/hal_gm20b.h"
32 31
32#include <nvgpu/hw/gk20a/hw_mc_gk20a.h>
33
33#ifdef CONFIG_ARCH_TEGRA_18x_SOC 34#ifdef CONFIG_ARCH_TEGRA_18x_SOC
34#include "nvgpu_gpuid_t18x.h" 35#include "nvgpu_gpuid_t18x.h"
35#endif 36#endif