summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSamuel Payne <spayne@nvidia.com>2017-06-20 00:01:49 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-06-23 18:54:12 -0400
commit102c512082b8810c4b50ab0266748ec6776b76d8 (patch)
tree5bf58f947f1b188572f889435f9d851db5d250b4 /include
parent94cb4b635fba4c01b58f36a6d3384db729e4c9f6 (diff)
gpu: nvpgu: Use correct chipid
Add gm20b "B" revision chipip. Bug 1870669 Change-Id: Ife31e6d739aabb8ef4a4f401091c3202b415a70e Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1490650 Reviewed-by: Samuel Payne <spayne@nvidia.com> Signed-off-by: Samuel Payne <spayne@nvidia.com> Reviewed-on: http://git-master/r/1490648 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/nvgpu.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/include/uapi/linux/nvgpu.h b/include/uapi/linux/nvgpu.h
index 065aaece..8b29a3ae 100644
--- a/include/uapi/linux/nvgpu.h
+++ b/include/uapi/linux/nvgpu.h
@@ -81,17 +81,18 @@ struct nvgpu_gpu_zbc_query_table_args {
81 81
82/* This contains the minimal set by which the userspace can 82/* This contains the minimal set by which the userspace can
83 determine all the properties of the GPU */ 83 determine all the properties of the GPU */
84#define NVGPU_GPU_ARCH_GK100 0x000000E0 84#define NVGPU_GPU_ARCH_GK100 0x000000E0
85#define NVGPU_GPU_ARCH_GM200 0x00000120 85#define NVGPU_GPU_ARCH_GM200 0x00000120
86#define NVGPU_GPU_ARCH_GP100 0x00000130 86#define NVGPU_GPU_ARCH_GP100 0x00000130
87 87
88#define NVGPU_GPU_IMPL_GK20A 0x0000000A 88#define NVGPU_GPU_IMPL_GK20A 0x0000000A
89#define NVGPU_GPU_IMPL_GM204 0x00000004 89#define NVGPU_GPU_IMPL_GM204 0x00000004
90#define NVGPU_GPU_IMPL_GM206 0x00000006 90#define NVGPU_GPU_IMPL_GM206 0x00000006
91#define NVGPU_GPU_IMPL_GM20B 0x0000000B 91#define NVGPU_GPU_IMPL_GM20B 0x0000000B
92#define NVGPU_GPU_IMPL_GP104 0x00000004 92#define NVGPU_GPU_IMPL_GM20B_B 0x0000000E
93#define NVGPU_GPU_IMPL_GP106 0x00000006 93#define NVGPU_GPU_IMPL_GP104 0x00000004
94#define NVGPU_GPU_IMPL_GP10B 0x0000000B 94#define NVGPU_GPU_IMPL_GP106 0x00000006
95#define NVGPU_GPU_IMPL_GP10B 0x0000000B
95 96
96#ifdef CONFIG_ARCH_TEGRA_18x_SOC 97#ifdef CONFIG_ARCH_TEGRA_18x_SOC
97#include <linux/nvgpu-t18x.h> 98#include <linux/nvgpu-t18x.h>