firmware: tegra: Disable virtual BPMP driver for Linux v6.2+

Upstream Linux commit 4c1e0a97351a ("firmware: tegra: bpmp: Use
iosys-map helpers") updated the Tegra IVC driver to use the
iosys-map helpers for Linux v6.2. This causes the virtual BPMP driver
build to fail. Temporarily disable the building of this driver while
this build issue is fixed.

Bug 3936429
Bug 3974855

Change-Id: I1ae8800f1a44824c185960cee9dbf72c34b659c4
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2861310
Reviewed-by: Rohit Khanna <rokhanna@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Jon Hunter
2023-02-21 12:18:21 +00:00
committed by mobile promotions
parent b04b8c841c
commit 4a7bb89d97

View File

@@ -11,11 +11,11 @@ LINUX_VERSION_6_2 := $(shell expr 6 \* 256 + 2)
# ivc_ext is currently broken for Linux v6.2 and so skip for Linux v6.2+ # ivc_ext is currently broken for Linux v6.2 and so skip for Linux v6.2+
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_2); echo $$?),0) ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_2); echo $$?),0)
obj-m += ivc_ext.o obj-m += ivc_ext.o
endif
tegra_bpmp-y += ../../clk/tegra/clk-bpmp.o tegra_bpmp-y += ../../clk/tegra/clk-bpmp.o
tegra_bpmp-y += ../../reset/tegra/reset-bpmp.o tegra_bpmp-y += ../../reset/tegra/reset-bpmp.o
tegra_bpmp-y += ../../soc/tegra/powergate-bpmp.o tegra_bpmp-y += ../../soc/tegra/powergate-bpmp.o
tegra_bpmp-y += bpmp-debugfs.o tegra_bpmp-y += bpmp-debugfs.o
tegra_bpmp-y += bpmp-tegra186-hv.o tegra_bpmp-y += bpmp-tegra186-hv.o
obj-m += tegra_bpmp.o obj-m += tegra_bpmp.o
endif