Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5751df3b authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "defconfig: quinvm: Enable HGSL"

parents ce5a3930 38d2b945
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -31,3 +31,5 @@ CONFIG_RENAME_BLOCK_DEVICE=y
CONFIG_DM_INIT=y
CONFIG_BUILD_ARM64_UNCOMPRESSED_KERNEL=y
# CONFIG_BUILD_ARM64_KERNEL_COMPRESSION_GZIP is not set
CONFIG_QCOM_HGSL=y
CONFIG_QCOM_HGSL_TCSR_SIGNAL=y
+1 −0
Original line number Diff line number Diff line
@@ -658,6 +658,7 @@ config QCOM_GLINK_PKT
	  some glink packets channel.

source "drivers/soc/qcom/hab/Kconfig"
source "drivers/soc/qcom/hgsl/Kconfig"

config MSM_PERFORMANCE
        tristate "msm performance driver to support userspace fmin/fmax request"
+1 −0
Original line number Diff line number Diff line
@@ -96,6 +96,7 @@ obj-$(CONFIG_QTI_HW_KEY_MANAGER) += hwkm.o crypto-qti-hwkm.o
obj-$(CONFIG_QCOM_WDT_CORE) += qcom_wdt_core.o
obj-$(CONFIG_QCOM_SOC_WATCHDOG) += qcom_soc_wdt.o
obj-$(CONFIG_MSM_HAB) += hab/
obj-$(CONFIG_QCOM_HGSL) += hgsl/
ifdef CONFIG_DEBUG_FS
obj-$(CONFIG_MSM_RPM_SMD)   +=  rpm-smd-debug.o
endif
+21 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Hypervisor graphics system layer configuration
#
config QCOM_HGSL
	bool "Graphics driver for Hypervisor"
	depends on QTI_QUIN_GVM
	help
	  This driver could help commands submmitting functions for
	  hypervisor Linux. With HFI feature provided by A6x, it
	  could submit commands directly to hardware without passing
	  them to host system.

config QCOM_HGSL_TCSR_SIGNAL
	bool "TCSR signal for Hypervisor GSL"
	depends on MFD_SYSCON && QCOM_HGSL
	help
	  The TCSR compute signal module provides hgsl driver
	  in hypervisor Linux a way to send/receive signals
	  to/from A6x GPU hardware directly, without going
	  through host system.
+3 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_QCOM_HGSL) += hgsl.o
obj-$(CONFIG_QCOM_HGSL_TCSR_SIGNAL) += hgsl_tcsr.o
Loading