gpu: nvgpu: move gv11b code under config flag

Move gv11b specific code under CONFIG_NVGPU_GV11B_SUPPORT so that gv11b
support can be removed for qnx later as it is no longer POR for qnx on
dev-main.

Jira NVGPU-8189
Bug 3642168

Change-Id: Idc17cfa22199f2b69a1bab0849cd2bd2e0fb6288
Signed-off-by: Shashank Singh <shashsingh@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2693828
(cherry picked from commit ba22f6263b)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2725975
Tested-by: Jonathan Hunter <jonathanh@nvidia.com>
Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com>
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: Bibek Basu <bbasu@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
Shashank Singh
2022-04-07 07:19:24 +00:00
committed by mobile promotions
parent b37181569b
commit 09da6eb397
5 changed files with 23 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
/*
* NVIDIA GPU HAL interface.
*
* Copyright (c) 2014-2021, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2014-2022, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -68,11 +68,13 @@ int nvgpu_init_hal(struct gk20a *g)
err = -ENODEV;
}
break;
#ifdef CONFIG_NVGPU_SUPPORT_GV11B
case NVGPU_GPUID_GV11B:
if (gv11b_init_hal(g) != 0) {
err = -ENODEV;
}
break;
#endif
#if defined(CONFIG_NVGPU_DGPU) && defined(CONFIG_NVGPU_HAL_NON_FUSA)
case NVGPU_GPUID_TU104:
@@ -121,6 +123,7 @@ int nvgpu_detect_chip(struct gk20a *g)
return -ENODEV;
}
#ifdef CONFIG_NVGPU_SUPPORT_GV11B
if (nvgpu_safe_add_u32(p->gpu_arch, p->gpu_impl) ==
(u32)NVGPU_GPUID_GV11B) {
/* overwrite gpu revison for A02 */
@@ -128,6 +131,7 @@ int nvgpu_detect_chip(struct gk20a *g)
p->gpu_rev = 0xa2;
}
}
#endif
nvgpu_log_info(g, "arch: %x, impl: %x, rev: %x\n",
g->params.gpu_arch,
g->params.gpu_impl,