summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv100')
-rw-r--r--drivers/gpu/nvgpu/gv100/bios_gv100.c3
-rw-r--r--drivers/gpu/nvgpu/gv100/fifo_gv100.c1
-rw-r--r--drivers/gpu/nvgpu/gv100/gr_gv100.c1
-rw-r--r--drivers/gpu/nvgpu/gv100/mc_gv100.c1
-rw-r--r--drivers/gpu/nvgpu/gv100/mm_gv100.c3
-rw-r--r--drivers/gpu/nvgpu/gv100/nvlink_gv100.c1
6 files changed, 8 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gv100/bios_gv100.c b/drivers/gpu/nvgpu/gv100/bios_gv100.c
index 45d5ed31..a1a3d053 100644
--- a/drivers/gpu/nvgpu/gv100/bios_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/bios_gv100.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a 4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"), 5 * copy of this software and associated documentation files (the "Software"),
@@ -23,6 +23,7 @@
23#include <nvgpu/bios.h> 23#include <nvgpu/bios.h>
24#include <nvgpu/nvgpu_common.h> 24#include <nvgpu/nvgpu_common.h>
25#include <nvgpu/timers.h> 25#include <nvgpu/timers.h>
26#include <nvgpu/io.h>
26 27
27#include "gk20a/gk20a.h" 28#include "gk20a/gk20a.h"
28#include "gp106/bios_gp106.h" 29#include "gp106/bios_gp106.h"
diff --git a/drivers/gpu/nvgpu/gv100/fifo_gv100.c b/drivers/gpu/nvgpu/gv100/fifo_gv100.c
index 242e48f9..1dedb7d4 100644
--- a/drivers/gpu/nvgpu/gv100/fifo_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/fifo_gv100.c
@@ -26,6 +26,7 @@
26#include "fifo_gv100.h" 26#include "fifo_gv100.h"
27#include <nvgpu/timers.h> 27#include <nvgpu/timers.h>
28#include <nvgpu/ptimer.h> 28#include <nvgpu/ptimer.h>
29#include <nvgpu/io.h>
29 30
30#include <nvgpu/hw/gv100/hw_ccsr_gv100.h> 31#include <nvgpu/hw/gv100/hw_ccsr_gv100.h>
31#include <nvgpu/hw/gk20a/hw_fifo_gk20a.h> 32#include <nvgpu/hw/gk20a/hw_fifo_gk20a.h>
diff --git a/drivers/gpu/nvgpu/gv100/gr_gv100.c b/drivers/gpu/nvgpu/gv100/gr_gv100.c
index 5f891ce5..97affdd9 100644
--- a/drivers/gpu/nvgpu/gv100/gr_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/gr_gv100.c
@@ -25,6 +25,7 @@
25#include <nvgpu/log.h> 25#include <nvgpu/log.h>
26#include <nvgpu/debug.h> 26#include <nvgpu/debug.h>
27#include <nvgpu/enabled.h> 27#include <nvgpu/enabled.h>
28#include <nvgpu/io.h>
28 29
29#include "gk20a/gk20a.h" 30#include "gk20a/gk20a.h"
30#include "gk20a/gr_gk20a.h" 31#include "gk20a/gr_gk20a.h"
diff --git a/drivers/gpu/nvgpu/gv100/mc_gv100.c b/drivers/gpu/nvgpu/gv100/mc_gv100.c
index 7d38a3fb..069a012a 100644
--- a/drivers/gpu/nvgpu/gv100/mc_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/mc_gv100.c
@@ -23,6 +23,7 @@
23 */ 23 */
24 24
25#include <nvgpu/types.h> 25#include <nvgpu/types.h>
26#include <nvgpu/io.h>
26 27
27#include "gk20a/gk20a.h" 28#include "gk20a/gk20a.h"
28 29
diff --git a/drivers/gpu/nvgpu/gv100/mm_gv100.c b/drivers/gpu/nvgpu/gv100/mm_gv100.c
index ffae11f5..38b876bf 100644
--- a/drivers/gpu/nvgpu/gv100/mm_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/mm_gv100.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * GV100 memory management 2 * GV100 memory management
3 * 3 *
4 * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a 6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"), 7 * copy of this software and associated documentation files (the "Software"),
@@ -23,6 +23,7 @@
23 */ 23 */
24 24
25#include <nvgpu/sizes.h> 25#include <nvgpu/sizes.h>
26#include <nvgpu/io.h>
26 27
27#include "gk20a/gk20a.h" 28#include "gk20a/gk20a.h"
28#include "gv100/mm_gv100.h" 29#include "gv100/mm_gv100.h"
diff --git a/drivers/gpu/nvgpu/gv100/nvlink_gv100.c b/drivers/gpu/nvgpu/gv100/nvlink_gv100.c
index 41c2cd2b..add0448e 100644
--- a/drivers/gpu/nvgpu/gv100/nvlink_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/nvlink_gv100.c
@@ -28,6 +28,7 @@
28#include <nvgpu/bitops.h> 28#include <nvgpu/bitops.h>
29#include <nvgpu/nvlink.h> 29#include <nvgpu/nvlink.h>
30#include <nvgpu/enabled.h> 30#include <nvgpu/enabled.h>
31#include <nvgpu/io.h>
31 32
32#include "gk20a/gk20a.h" 33#include "gk20a/gk20a.h"
33#include "nvlink_gv100.h" 34#include "nvlink_gv100.h"