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

config DRM_MSM
	tristate "MSM DRM"
5
	depends on DRM
6
	depends on ARCH_QCOM || SOC_IMX5 || COMPILE_TEST
7
	depends on COMMON_CLK
8
	depends on IOMMU_SUPPORT
9
	depends on QCOM_AOSS_QMP || QCOM_AOSS_QMP=n
10
	depends on QCOM_OCMEM || QCOM_OCMEM=n
11 12
	depends on QCOM_LLCC || QCOM_LLCC=n
	depends on QCOM_COMMAND_DB || QCOM_COMMAND_DB=n
13
	depends on PM
14
	select IOMMU_IO_PGTABLE
15
	select QCOM_MDT_LOADER if ARCH_QCOM
Rob Clark's avatar
Rob Clark committed
16
	select REGULATOR
17
	select DRM_DISPLAY_DP_AUX_BUS
18
	select DRM_DISPLAY_DP_HELPER
19
	select DRM_DISPLAY_HELPER
20
	select DRM_BRIDGE_CONNECTOR
21
	select DRM_EXEC
22
	select DRM_KMS_HELPER
23
	select DRM_PANEL
24 25
	select DRM_BRIDGE
	select DRM_PANEL_BRIDGE
26
	select DRM_SCHED
27
	select FB_SYSMEM_HELPERS if DRM_FBDEV_EMULATION
28 29
	select SHMEM
	select TMPFS
Arnd Bergmann's avatar
Arnd Bergmann committed
30
	select QCOM_SCM
31
	select WANT_DEV_COREDUMP
32
	select SND_SOC_HDMI_CODEC if SND_SOC
33
	select SYNC_FILE
Rob Clark's avatar
Rob Clark committed
34
	select PM_OPP
Akhil P Oommen's avatar
Akhil P Oommen committed
35
	select NVMEM
36
	select PM_GENERIC_DOMAINS
Rob Clark's avatar
Rob Clark committed
37
	select TRACE_GPU_MEM
38 39 40
	help
	  DRM/KMS driver for MSM/snapdragon.

41 42 43 44 45
config DRM_MSM_GPU_STATE
	bool
	depends on DRM_MSM && (DEBUG_FS || DEV_COREDUMP)
	default y

46 47 48 49 50 51 52 53 54 55 56 57 58
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.

59 60 61 62 63 64 65 66
config DRM_MSM_VALIDATE_XML
	bool "Validate XML register files against schema"
	depends on DRM_MSM && EXPERT
	depends on $(success,$(PYTHON3) -c "import lxml")
	help
	  Validate XML files with register definitions against rules-fd schema.
	  This option is mostly targeting DRM MSM developers. If unsure, say N.

67 68 69 70 71 72 73
config DRM_MSM_MDSS
	bool
	depends on DRM_MSM
	default n

config DRM_MSM_MDP4
	bool "Enable MDP4 support in MSM DRM driver"
Arnd Bergmann's avatar
Arnd Bergmann committed
74
	depends on DRM_MSM
75 76
	default y
	help
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	  Compile in support for the Mobile Display Processor v4 (MDP4) in
	  the MSM DRM driver. It is the older display controller found in
	  devices using APQ8064/MSM8960/MSM8x60 platforms.

config DRM_MSM_MDP5
	bool "Enable MDP5 support in MSM DRM driver"
	depends on DRM_MSM
	select DRM_MSM_MDSS
	default y
	help
	  Compile in support for the Mobile Display Processor v5 (MDP5) in
	  the MSM DRM driver. It is the display controller found in devices
	  using e.g. APQ8016/MSM8916/APQ8096/MSM8996/MSM8974/SDM6x0 platforms.

config DRM_MSM_DPU
	bool "Enable DPU support in MSM DRM driver"
	depends on DRM_MSM
	select DRM_MSM_MDSS
	default y
	help
	  Compile in support for the Display Processing Unit in
	  the MSM DRM driver. It is the display controller found in devices
	  using e.g. SDM845 and newer platforms.
100

101 102 103
config DRM_MSM_DP
	bool "Enable DisplayPort support in MSM DRM driver"
	depends on DRM_MSM
104
	select RATIONAL
105
	default y
106 107 108 109 110
	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.

111 112 113 114 115 116 117 118 119 120
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.

121 122 123 124 125 126 127 128 129 130 131 132 133
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.
134 135 136 137 138 139 140 141

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.
142 143 144 145 146 147 148

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.
149 150 151 152 153 154 155

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.
156 157

config DRM_MSM_DSI_7NM_PHY
158
	bool "Enable DSI 7nm/5nm/4nm PHY driver in MSM DRM"
159 160 161
	depends on DRM_MSM_DSI
	default y
	help
162
	  Choose this option if DSI PHY on SM8150/SM8250/SM8350/SM8450/SM8550/SC7280
163
	  is used on the platform.
164 165 166 167 168 169 170 171 172

config DRM_MSM_HDMI
	bool "Enable HDMI support in MSM DRM driver"
	depends on DRM_MSM
	default y
	help
	  Compile in support for the HDMI output MSM DRM driver. It can
	  be a primary or a secondary display on device. Note that this is used
	  only for the direct HDMI output. If the device outputs HDMI data
173
	  through some kind of DSI-to-HDMI bridge, this option can be disabled.
174 175 176 177 178 179 180

config DRM_MSM_HDMI_HDCP
	bool "Enable HDMI HDCP support in MSM DRM driver"
	depends on DRM_MSM && DRM_MSM_HDMI
	default y
	help
	  Choose this option to enable HDCP state machine