From 4a7bb89d97eca6a59b86b3036c0cd8dba645fe39 Mon Sep 17 00:00:00 2001 From: Jon Hunter Date: Tue, 21 Feb 2023 12:18:21 +0000 Subject: [PATCH] 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 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2861310 Reviewed-by: Rohit Khanna GVS: Gerrit_Virtual_Submit --- drivers/firmware/tegra/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/tegra/Makefile b/drivers/firmware/tegra/Makefile index cdf46dd2..d67b38e1 100644 --- a/drivers/firmware/tegra/Makefile +++ b/drivers/firmware/tegra/Makefile @@ -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+ ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_2); echo $$?),0) obj-m += ivc_ext.o -endif tegra_bpmp-y += ../../clk/tegra/clk-bpmp.o tegra_bpmp-y += ../../reset/tegra/reset-bpmp.o tegra_bpmp-y += ../../soc/tegra/powergate-bpmp.o tegra_bpmp-y += bpmp-debugfs.o tegra_bpmp-y += bpmp-tegra186-hv.o obj-m += tegra_bpmp.o +endif