gpu: nvgpu: remove CONFIG_TEGRA_USE_NA_GPCPLL

Following commit had moved this config definition from the nvgpu Kconfig
to Makefile and removed setting it from the defconfig files for various
kernels. However, config defined by nvgpu does not apply to the kernel.

commit 864f98ea2582 ("gpu: nvgpu: move linux configs from Kconfig file")
commit 59f5e242fa4a ("k4.9: tegra_defconfig: remove nvgpu config entries")
commit 84313f485840 ("k4.9: arm64: android_defconfig: remove nvgpu config entries")

Remove the definition from nvgpu. It is defined in the soc/tegra Kconfig
as enabled.

Bug 200653821

Change-Id: I077acd2e4c586fa4ca9dd23ca98a6028f7499e54
Signed-off-by: Sagar Kamble <skamble@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2414698
Reviewed-by: automaticguardword <automaticguardword@nvidia.com>
Reviewed-by: Aaron Tian <atian@nvidia.com>
Reviewed-by: Alex Waterman <alexw@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: Aaron Tian <atian@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
Sagar Kamble
2020-09-16 22:15:35 +05:30
committed by Alex Waterman
parent 56a73c8230
commit 0d53ca42cf

View File

@@ -37,15 +37,6 @@ ifeq ($(CONFIG_NVGPU_COMPRESSION),y)
CONFIG_NVGPU_SUPPORT_CDE := y
endif
ifeq ($(CONFIG_COMMON_CLK),y)
ifeq ($(CONFIG_TEGRA_KFUSE),y)
# Enable noise aware (NA) mode of GM20b GPCPLL. In this mode PLL output
# frequency is automatically adjusted when GM20b voltage is fluctuating
# because of transient PMIC or power distribution tree noise.
CONFIG_TEGRA_USE_NA_GPCPLL := y
endif
endif
ifeq ($(CONFIG_COMMON_CLK),y)
ifeq ($(CONFIG_PM_DEVFREQ),y)
# Select this entry to enable gk20a scaling
@@ -183,9 +174,6 @@ endif
ifeq ($(CONFIG_NVGPU_SUPPORT_CDE),y)
ccflags-y += -DCONFIG_NVGPU_SUPPORT_CDE
endif
ifeq ($(CONFIG_TEGRA_USE_NA_GPCPLL),y)
ccflags-y += -DCONFIG_TEGRA_USE_NA_GPCPLL
endif
ifeq ($(CONFIG_GK20A_DEVFREQ),y)
ccflags-y += -DCONFIG_GK20A_DEVFREQ
endif