Loading...
1
2config DRM_MSM
3 tristate "MSM DRM"
4 depends on DRM
5 depends on ARCH_QCOM || (ARM && COMPILE_TEST)
6 depends on OF && COMMON_CLK
7 select REGULATOR
8 select DRM_KMS_HELPER
9 select DRM_PANEL
10 select SHMEM
11 select TMPFS
12 select QCOM_SCM
13 default y
14 help
15 DRM/KMS driver for MSM/snapdragon.
16
17config DRM_MSM_REGISTER_LOGGING
18 bool "MSM DRM register logging"
19 depends on DRM_MSM
20 default n
21 help
22 Compile in support for logging register reads/writes in a format
23 that can be parsed by envytools demsm tool. If enabled, register
24 logging can be switched on via msm.reglog=y module param.
25
26config DRM_MSM_DSI
27 bool "Enable DSI support in MSM DRM driver"
28 depends on DRM_MSM
29 select DRM_PANEL
30 select DRM_MIPI_DSI
31 default y
32 help
33 Choose this option if you have a need for MIPI DSI connector
34 support.
35
36config DRM_MSM_DSI_PLL
37 bool "Enable DSI PLL driver in MSM DRM"
38 depends on DRM_MSM_DSI && COMMON_CLK
39 default y
40 help
41 Choose this option to enable DSI PLL driver which provides DSI
42 source clocks under common clock framework.
43
44config DRM_MSM_DSI_28NM_PHY
45 bool "Enable DSI 28nm PHY driver in MSM DRM"
46 depends on DRM_MSM_DSI
47 default y
48 help
49 Choose this option if the 28nm DSI PHY is used on the platform.
50
51config DRM_MSM_DSI_20NM_PHY
52 bool "Enable DSI 20nm PHY driver in MSM DRM"
53 depends on DRM_MSM_DSI
54 default y
55 help
56 Choose this option if the 20nm DSI PHY is used on the platform.
57
58config DRM_MSM_DSI_28NM_8960_PHY
59 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM"
60 depends on DRM_MSM_DSI
61 default y
62 help
63 Choose this option if the 28nm DSI PHY 8960 variant is used on the
64 platform.
1# SPDX-License-Identifier: GPL-2.0-only
2
3config DRM_MSM
4 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_OCMEM || QCOM_OCMEM=n
10 depends on QCOM_LLCC || QCOM_LLCC=n
11 depends on QCOM_COMMAND_DB || QCOM_COMMAND_DB=n
12 select IOMMU_IO_PGTABLE
13 select QCOM_MDT_LOADER if ARCH_QCOM
14 select REGULATOR
15 select DRM_DP_AUX_BUS
16 select DRM_DISPLAY_DP_HELPER
17 select DRM_DISPLAY_HELPER
18 select DRM_KMS_HELPER
19 select DRM_PANEL
20 select DRM_BRIDGE
21 select DRM_PANEL_BRIDGE
22 select DRM_SCHED
23 select SHMEM
24 select TMPFS
25 select QCOM_SCM
26 select WANT_DEV_COREDUMP
27 select SND_SOC_HDMI_CODEC if SND_SOC
28 select SYNC_FILE
29 select PM_OPP
30 select NVMEM
31 help
32 DRM/KMS driver for MSM/snapdragon.
33
34config DRM_MSM_GPU_STATE
35 bool
36 depends on DRM_MSM && (DEBUG_FS || DEV_COREDUMP)
37 default y
38
39config DRM_MSM_GPU_SUDO
40 bool "Enable SUDO flag on submits"
41 depends on DRM_MSM && EXPERT
42 default n
43 help
44 Enable userspace that has CAP_SYS_RAWIO to submit GPU commands
45 that are run from RB instead of IB1. This essentially gives
46 userspace kernel level access, but is useful for firmware
47 debugging.
48
49 Only use this if you are a driver developer. This should *not*
50 be enabled for production kernels. If unsure, say N.
51
52config DRM_MSM_MDSS
53 bool
54 depends on DRM_MSM
55 default n
56
57config DRM_MSM_MDP4
58 bool "Enable MDP4 support in MSM DRM driver"
59 depends on DRM_MSM
60 default y
61 help
62 Compile in support for the Mobile Display Processor v4 (MDP4) in
63 the MSM DRM driver. It is the older display controller found in
64 devices using APQ8064/MSM8960/MSM8x60 platforms.
65
66config DRM_MSM_MDP5
67 bool "Enable MDP5 support in MSM DRM driver"
68 depends on DRM_MSM
69 select DRM_MSM_MDSS
70 default y
71 help
72 Compile in support for the Mobile Display Processor v5 (MDP5) in
73 the MSM DRM driver. It is the display controller found in devices
74 using e.g. APQ8016/MSM8916/APQ8096/MSM8996/MSM8974/SDM6x0 platforms.
75
76config DRM_MSM_DPU
77 bool "Enable DPU support in MSM DRM driver"
78 depends on DRM_MSM
79 select DRM_MSM_MDSS
80 default y
81 help
82 Compile in support for the Display Processing Unit in
83 the MSM DRM driver. It is the display controller found in devices
84 using e.g. SDM845 and newer platforms.
85
86config DRM_MSM_DP
87 bool "Enable DisplayPort support in MSM DRM driver"
88 depends on DRM_MSM
89 select RATIONAL
90 default y
91 help
92 Compile in support for DP driver in MSM DRM driver. DP external
93 display support is enabled through this config option. It can
94 be primary or secondary display on device.
95
96config DRM_MSM_DSI
97 bool "Enable DSI support in MSM DRM driver"
98 depends on DRM_MSM
99 select DRM_PANEL
100 select DRM_MIPI_DSI
101 default y
102 help
103 Choose this option if you have a need for MIPI DSI connector
104 support.
105
106config DRM_MSM_DSI_28NM_PHY
107 bool "Enable DSI 28nm PHY driver in MSM DRM"
108 depends on DRM_MSM_DSI
109 default y
110 help
111 Choose this option if the 28nm DSI PHY is used on the platform.
112
113config DRM_MSM_DSI_20NM_PHY
114 bool "Enable DSI 20nm PHY driver in MSM DRM"
115 depends on DRM_MSM_DSI
116 default y
117 help
118 Choose this option if the 20nm DSI PHY is used on the platform.
119
120config DRM_MSM_DSI_28NM_8960_PHY
121 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM"
122 depends on DRM_MSM_DSI
123 default y
124 help
125 Choose this option if the 28nm DSI PHY 8960 variant is used on the
126 platform.
127
128config DRM_MSM_DSI_14NM_PHY
129 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)"
130 depends on DRM_MSM_DSI
131 default y
132 help
133 Choose this option if DSI PHY on 8996 is used on the platform.
134
135config DRM_MSM_DSI_10NM_PHY
136 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)"
137 depends on DRM_MSM_DSI
138 default y
139 help
140 Choose this option if DSI PHY on SDM845 is used on the platform.
141
142config DRM_MSM_DSI_7NM_PHY
143 bool "Enable DSI 7nm PHY driver in MSM DRM"
144 depends on DRM_MSM_DSI
145 default y
146 help
147 Choose this option if DSI PHY on SM8150/SM8250/SC7280 is used on
148 the platform.
149
150config DRM_MSM_HDMI
151 bool "Enable HDMI support in MSM DRM driver"
152 depends on DRM_MSM
153 default y
154 help
155 Compile in support for the HDMI output MSM DRM driver. It can
156 be a primary or a secondary display on device. Note that this is used
157 only for the direct HDMI output. If the device outputs HDMI data
158 through some kind of DSI-to-HDMI bridge, this option can be disabled.
159
160config DRM_MSM_HDMI_HDCP
161 bool "Enable HDMI HDCP support in MSM DRM driver"
162 depends on DRM_MSM && DRM_MSM_HDMI
163 default y
164 help
165 Choose this option to enable HDCP state machine