summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/fifo_gk20a.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/gk20a/fifo_gk20a.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/gk20a/fifo_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/fifo_gk20a.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
index fb772ebd..ccc3afca 100644
--- a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
@@ -27,13 +27,15 @@
27#include "debug_gk20a.h" 27#include "debug_gk20a.h"
28#include "ctxsw_trace_gk20a.h" 28#include "ctxsw_trace_gk20a.h"
29#include "semaphore_gk20a.h" 29#include "semaphore_gk20a.h"
30#include "hw_fifo_gk20a.h" 30
31#include "hw_pbdma_gk20a.h" 31#include <nvgpu/hw/gk20a/hw_fifo_gk20a.h>
32#include "hw_ccsr_gk20a.h" 32#include <nvgpu/hw/gk20a/hw_pbdma_gk20a.h>
33#include "hw_ram_gk20a.h" 33#include <nvgpu/hw/gk20a/hw_ccsr_gk20a.h>
34#include "hw_top_gk20a.h" 34#include <nvgpu/hw/gk20a/hw_ram_gk20a.h>
35#include "hw_mc_gk20a.h" 35#include <nvgpu/hw/gk20a/hw_top_gk20a.h>
36#include "hw_gr_gk20a.h" 36#include <nvgpu/hw/gk20a/hw_mc_gk20a.h>
37#include <nvgpu/hw/gk20a/hw_gr_gk20a.h>
38
37#define FECS_METHOD_WFI_RESTORE 0x80000 39#define FECS_METHOD_WFI_RESTORE 0x80000
38 40
39static int gk20a_fifo_update_runlist_locked(struct gk20a *g, u32 runlist_id, 41static int gk20a_fifo_update_runlist_locked(struct gk20a *g, u32 runlist_id,