summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm206/bios_gm206.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 20:11:10 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:14 -0500
commit6dd57c29b064774e065b001266aef9dd37bc7feb (patch)
tree6da65a7322edd13cdf0b6e00cd29f6b670e64dc4 /drivers/gpu/nvgpu/gm206/bios_gm206.c
parent7989012df274ba166171ac652cf80fe61993c292 (diff)
gpu: nvgpu: Move gm206 HW headers
Move the gm206 HW headers to a new directory specially for them: include/nvgpu/hw/gm206 And change the code to include like so: #include <nvgpu/hw/gm206/hw_fb_gm206.h> This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: I90dc39e64e1b58ee9e87fbc26ad0d18c361e239c Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1244792 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm206/bios_gm206.c')
-rw-r--r--drivers/gpu/nvgpu/gm206/bios_gm206.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gm206/bios_gm206.c b/drivers/gpu/nvgpu/gm206/bios_gm206.c
index c278cb08..bfb90e19 100644
--- a/drivers/gpu/nvgpu/gm206/bios_gm206.c
+++ b/drivers/gpu/nvgpu/gm206/bios_gm206.c
@@ -19,13 +19,14 @@
19#include "gk20a/gk20a.h" 19#include "gk20a/gk20a.h"
20#include "gm20b/fifo_gm20b.h" 20#include "gm20b/fifo_gm20b.h"
21#include "fifo_gm206.h" 21#include "fifo_gm206.h"
22#include "hw_pwr_gm206.h"
23#include "hw_mc_gm206.h"
24#include "hw_xve_gm206.h"
25#include "hw_top_gm206.h"
26#include "bios_gm206.h" 22#include "bios_gm206.h"
27#include "nvgpu_common.h" 23#include "nvgpu_common.h"
28 24
25#include <nvgpu/hw/gm206/hw_pwr_gm206.h>
26#include <nvgpu/hw/gm206/hw_mc_gm206.h>
27#include <nvgpu/hw/gm206/hw_xve_gm206.h>
28#include <nvgpu/hw/gm206/hw_top_gm206.h>
29
29#define BIT_HEADER_ID 0xb8ff 30#define BIT_HEADER_ID 0xb8ff
30#define BIT_HEADER_SIGNATURE 0x00544942 31#define BIT_HEADER_SIGNATURE 0x00544942
31#define BIOS_SIZE 0x40000 32#define BIOS_SIZE 0x40000