Kconfig 3.3 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
2 3 4 5

config DRM_MSM
	tristate "MSM DRM"
	depends on DRM
6
	depends on ARCH_QCOM || SOC_IMX5 || (ARM && COMPILE_TEST)
7
	depends on IOMMU_SUPPORT
8
	depends on OF && COMMON_CLK
9
	depends on QCOM_OCMEM || QCOM_OCMEM=n
10 11
	depends on QCOM_LLCC || QCOM_LLCC=n
	depends on QCOM_COMMAND_DB || QCOM_COMMAND_DB=n
12
	select IOMMU_IO_PGTABLE
13
	select QCOM_MDT_LOADER if ARCH_QCOM
Rob Clark's avatar
Rob Clark committed
14
	select REGULATOR
15
	select DRM_KMS_HELPER
16
	select DRM_PANEL
17
	select DRM_SCHED
18 19
	select SHMEM
	select TMPFS
20
	select QCOM_SCM if ARCH_QCOM
21
	select WANT_DEV_COREDUMP
22
	select SND_SOC_HDMI_CODEC if SND_SOC
23
	select SYNC_FILE
Rob Clark's avatar
Rob Clark committed
24
	select PM_OPP
Akhil P Oommen's avatar
Akhil P Oommen committed
25
	select NVMEM
26 27 28
	help
	  DRM/KMS driver for MSM/snapdragon.

29 30 31 32 33
config DRM_MSM_GPU_STATE
	bool
	depends on DRM_MSM && (DEBUG_FS || DEV_COREDUMP)
	default y

34 35 36 37 38 39 40 41
config DRM_MSM_REGISTER_LOGGING
	bool "MSM DRM register logging"
	depends on DRM_MSM
	default n
	help
	  Compile in support for logging register reads/writes in a format
	  that can be parsed by envytools demsm tool.  If enabled, register
	  logging can be switched on via msm.reglog=y module param.
42

43 44 45 46 47 48 49 50 51 52 53 54 55
config DRM_MSM_GPU_SUDO
	bool "Enable SUDO flag on submits"
	depends on DRM_MSM && EXPERT
	default n
	help
	  Enable userspace that has CAP_SYS_RAWIO to submit GPU commands
	  that are run from RB instead of IB1.  This essentially gives
	  userspace kernel level access, but is useful for firmware
	  debugging.

	  Only use this if you are a driver developer.  This should *not*
	  be enabled for production kernels.  If unsure, say N.

56 57 58 59 60 61 62
config DRM_MSM_HDMI_HDCP
	bool "Enable HDMI HDCP support in MSM DRM driver"
	depends on DRM_MSM && QCOM_SCM
	default y
	help
	  Choose this option to enable HDCP state machine

63 64 65
config DRM_MSM_DP
	bool "Enable DisplayPort support in MSM DRM driver"
	depends on DRM_MSM
66
	default y
67 68 69 70 71
	help
	  Compile in support for DP driver in MSM DRM driver. DP external
	  display support is enabled through this config option. It can
	  be primary or secondary display on device.

72 73 74 75 76 77 78 79 80 81
config DRM_MSM_DSI
	bool "Enable DSI support in MSM DRM driver"
	depends on DRM_MSM
	select DRM_PANEL
	select DRM_MIPI_DSI
	default y
	help
	  Choose this option if you have a need for MIPI DSI connector
	  support.

82 83 84 85 86 87 88 89 90 91 92 93 94
config DRM_MSM_DSI_28NM_PHY
	bool "Enable DSI 28nm PHY driver in MSM DRM"
	depends on DRM_MSM_DSI
	default y
	help
	  Choose this option if the 28nm DSI PHY is used on the platform.

config DRM_MSM_DSI_20NM_PHY
	bool "Enable DSI 20nm PHY driver in MSM DRM"
	depends on DRM_MSM_DSI
	default y
	help
	  Choose this option if the 20nm DSI PHY is used on the platform.
95 96 97 98 99 100 101 102

config DRM_MSM_DSI_28NM_8960_PHY
	bool "Enable DSI 28nm 8960 PHY driver in MSM DRM"
	depends on DRM_MSM_DSI
	default y
	help
	  Choose this option if the 28nm DSI PHY 8960 variant is used on the
	  platform.
103 104 105 106 107 108 109

config DRM_MSM_DSI_14NM_PHY
	bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)"
	depends on DRM_MSM_DSI
	default y
	help
	  Choose this option if DSI PHY on 8996 is used on the platform.
110 111 112 113 114 115 116

config DRM_MSM_DSI_10NM_PHY
	bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)"
	depends on DRM_MSM_DSI
	default y
	help
	  Choose this option if DSI PHY on SDM845 is used on the platform.
117 118

config DRM_MSM_DSI_7NM_PHY
119
	bool "Enable DSI 7nm PHY driver in MSM DRM"
120 121 122
	depends on DRM_MSM_DSI
	default y
	help
123 124
	  Choose this option if DSI PHY on SM8150/SM8250/SC7280 is used on
	  the platform.