treewide: Add SPDX license identifier - Makefile/Kconfig
[linux-2.6-block.git] / drivers / gpu / drm / Kconfig
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2#
3# Drm device configuration
4#
5# This driver provides support for the
6# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
7#
179b025f 8menuconfig DRM
1da177e4 9 tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
62a0d98a 10 depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && HAS_DMA
8d70f395 11 select DRM_PANEL_ORIENTATION_QUIRKS
10a85120 12 select HDMI
eaf99c74 13 select FB_CMDLINE
57a6297e
DA
14 select I2C
15 select I2C_ALGOBIT
3248877e 16 select DMA_SHARED_BUFFER
96260142 17 select SYNC_FILE
1da177e4
LT
18 help
19 Kernel-level support for the Direct Rendering Infrastructure (DRI)
20 introduced in XFree86 4.0. If you say Y here, you need to select
21 the module that's right for your graphics card from the list below.
22 These modules provide support for synchronization, security, and
23 DMA transfers. Please see <http://dri.sourceforge.net/> for more
24 details. You should also select and configure AGP
dcdb1674 25 (/dev/agpgart) support if it is available for your platform.
1da177e4 26
068a0023
AH
27config DRM_MIPI_DSI
28 bool
29 depends on DRM
30
e94cb37b
RA
31config DRM_DP_AUX_CHARDEV
32 bool "DRM DP AUX Interface"
33 depends on DRM
34 help
35 Choose this option to enable a /dev/drm_dp_auxN node that allows to
36 read and write values to arbitrary DPCD registers on the DP aux
37 channel.
38
5705670d
CW
39config DRM_DEBUG_MM
40 bool "Insert extra checks and debug info into the DRM range managers"
41 default n
cd456f8d 42 depends on DRM=y
4b514e10 43 depends on STACKTRACE_SUPPORT
5705670d
CW
44 select STACKDEPOT
45 help
46 Enable allocation tracking of memory manager and leak detection on
47 shutdown.
48
49 Recommended for driver developers only.
50
51 If in doubt, say "N".
52
34b13e5e
ML
53config DRM_DEBUG_SELFTEST
54 tristate "kselftests for DRM"
50f0033d
CW
55 depends on DRM
56 depends on DEBUG_KERNEL
57 select PRIME_NUMBERS
58 select DRM_LIB_RANDOM
7420e049 59 select DRM_KMS_HELPER
50f0033d
CW
60 default n
61 help
34b13e5e
ML
62 This option provides kernel modules that can be used to run
63 various selftests on parts of the DRM api. This option is not
50f0033d
CW
64 useful for distributions or general kernels, but only for kernel
65 developers working on DRM and associated drivers.
66
67 If in doubt, say "N".
68
6fcefd56 69config DRM_KMS_HELPER
13a8195b
DA
70 tristate
71 depends on DRM
92b6f89f
DV
72 help
73 CRTC helpers for KMS drivers.
74
75config DRM_KMS_FB_HELPER
76 bool
77 depends on DRM_KMS_HELPER
13a8195b 78 select FB
6a108a14 79 select FRAMEBUFFER_CONSOLE if !EXPERT
bf5192ed 80 select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
cbb1a82e 81 select FB_SYS_FOPS
742547b7
AT
82 select FB_SYS_FILLRECT
83 select FB_SYS_COPYAREA
84 select FB_SYS_IMAGEBLIT
85 select FB_CFB_FILLRECT
86 select FB_CFB_COPYAREA
87 select FB_CFB_IMAGEBLIT
eaa434de 88 select FB_DEFERRED_IO
13a8195b 89 help
92b6f89f 90 FBDEV helpers for KMS drivers.
13a8195b 91
a03fdcb1
AT
92config DRM_FBDEV_EMULATION
93 bool "Enable legacy fbdev support for your modesetting driver"
94 depends on DRM
95 select DRM_KMS_HELPER
96 select DRM_KMS_FB_HELPER
97 default y
98 help
99 Choose this option if you have a need for the legacy fbdev
100 support. Note that this support also provides the linux console
101 support on top of your modesetting driver.
102
103 If in doubt, say "Y".
104
5f152576
XL
105config DRM_FBDEV_OVERALLOC
106 int "Overallocation of the fbdev buffer"
107 depends on DRM_FBDEV_EMULATION
108 default 100
109 help
110 Defines the fbdev buffer overallocation in percent. Default
111 is 100. Typical values for double buffering will be 200,
112 triple buffering 300.
113
4be9bd10
NA
114config DRM_FBDEV_LEAK_PHYS_SMEM
115 bool "Shamelessly allow leaking of fbdev physical address (DANGEROUS)"
116 depends on DRM_FBDEV_EMULATION && EXPERT
117 default n
118 help
119 In order to keep user-space compatibility, we want in certain
120 use-cases to keep leaking the fbdev physical address to the
121 user-space program handling the fbdev buffer.
122 This affects, not only, Amlogic, Allwinner or Rockchip devices
123 with ARM Mali GPUs using an userspace Blob.
124 This option is not supported by upstream developers and should be
125 removed as soon as possible and be considered as a broken and
126 legacy behaviour from a modern fbdev device driver.
127
128 Please send any bug reports when using this to your proprietary
129 software vendor that requires this.
130
131 If in doubt, say "N" or spread the word to your closed source
132 library vendor.
133
da0df92b
CE
134config DRM_LOAD_EDID_FIRMWARE
135 bool "Allow to specify an EDID data set instead of probing for it"
53fd40a9 136 depends on DRM
da0df92b
CE
137 help
138 Say Y here, if you want to use EDID data to be loaded from the
139 /lib/firmware directory or one of the provided built-in
140 data sets. This may be necessary, if the graphics adapter or
141 monitor are unable to provide appropriate EDID data. Since this
142 feature is provided as a workaround for broken hardware, the
143 default case is N. Details and instructions how to build your own
144 EDID data are given in Documentation/EDID/HOWTO.txt.
145
2c6d1fff
HV
146config DRM_DP_CEC
147 bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
148 select CEC_CORE
149 help
150 Choose this option if you want to enable HDMI CEC support for
151 DisplayPort/USB-C to HDMI adapters.
152
153 Note: not all adapters support this feature, and even for those
154 that do support this they often do not hook up the CEC pin.
155
ba4e7d97 156config DRM_TTM
771fe6b9 157 tristate
62a0d98a 158 depends on DRM && MMU
ba4e7d97
TH
159 help
160 GPU memory management subsystem for devices with multiple
161 GPU memory types. Will be enabled automatically if a device driver
162 uses it.
163
b9d47450
SH
164config DRM_GEM_CMA_HELPER
165 bool
e1c7e324 166 depends on DRM
b9d47450
SH
167 help
168 Choose this if you need the GEM CMA helper functions
169
2e3b3c42
LPC
170config DRM_KMS_CMA_HELPER
171 bool
e1c7e324 172 depends on DRM
2e3b3c42 173 select DRM_GEM_CMA_HELPER
2e3b3c42
LPC
174 help
175 Choose this if you need the KMS CMA helper functions
176
2194a63a
NT
177config DRM_GEM_SHMEM_HELPER
178 bool
179 depends on DRM
180 help
181 Choose this if you need the GEM shmem helper functions
182
99c48e1e
BG
183config DRM_VM
184 bool
7e53c284 185 depends on DRM && MMU
99c48e1e 186
1b1f42d8
LS
187config DRM_SCHED
188 tristate
189 depends on DRM
190
6504d0d9
RC
191source "drivers/gpu/drm/i2c/Kconfig"
192
8e22d792
LD
193source "drivers/gpu/drm/arm/Kconfig"
194
1da177e4
LT
195config DRM_RADEON
196 tristate "ATI Radeon"
011cda58 197 depends on DRM && PCI && MMU
70967ab9 198 select FW_LOADER
a0cdc649
DA
199 select DRM_KMS_HELPER
200 select DRM_TTM
5d9b7e2d 201 select POWER_SUPPLY
21a8122a 202 select HWMON
14adc892 203 select BACKLIGHT_CLASS_DEVICE
0aea5e4a 204 select INTERVAL_TREE
1da177e4
LT
205 help
206 Choose this option if you have an ATI Radeon graphics card. There
207 are both PCI and AGP versions. You don't need to choose this to
7b9af345 208 run the Radeon in plain VGA mode.
bc5f4523 209
1da177e4
LT
210 If M is selected, the module will be called radeon.
211
f71d0187
DA
212source "drivers/gpu/drm/radeon/Kconfig"
213
d38ceaf9
AD
214config DRM_AMDGPU
215 tristate "AMD GPU"
011cda58 216 depends on DRM && PCI && MMU
d38ceaf9
AD
217 select FW_LOADER
218 select DRM_KMS_HELPER
1b1f42d8 219 select DRM_SCHED
d38ceaf9
AD
220 select DRM_TTM
221 select POWER_SUPPLY
222 select HWMON
223 select BACKLIGHT_CLASS_DEVICE
224 select INTERVAL_TREE
a2f14820 225 select CHASH
d38ceaf9
AD
226 help
227 Choose this option if you have a recent AMD Radeon graphics card.
228
229 If M is selected, the module will be called amdgpu.
230
231source "drivers/gpu/drm/amd/amdgpu/Kconfig"
a8fe58ce 232
f3c93cbd
BS
233source "drivers/gpu/drm/nouveau/Kconfig"
234
4520f53a 235source "drivers/gpu/drm/i915/Kconfig"
99486b8e 236
502e95c6
ZR
237config DRM_VGEM
238 tristate "Virtual GEM provider"
239 depends on DRM
240 help
241 Choose this option to get a virtual graphics memory manager,
242 as used by Mesa's software renderer for enhanced performance.
243 If M is selected the module will be called vgem.
244
1c7c5fd9 245config DRM_VKMS
c91b007e 246 tristate "Virtual KMS (EXPERIMENTAL)"
1c7c5fd9 247 depends on DRM
5ba57bab 248 select DRM_KMS_HELPER
c91b007e 249 default n
1c7c5fd9 250 help
c91b007e
RS
251 Virtual Kernel Mode-Setting (VKMS) is used for testing or for
252 running GPU in a headless machines. Choose this option to get
253 a VKMS.
254
1c7c5fd9 255 If M is selected the module will be called vkms.
502e95c6 256
848ee538
DA
257config DRM_ATI_PCIGART
258 bool
259
5a7b74be
TH
260source "drivers/gpu/drm/exynos/Kconfig"
261
2048e328
MY
262source "drivers/gpu/drm/rockchip/Kconfig"
263
5a7b74be 264source "drivers/gpu/drm/vmwgfx/Kconfig"
91c75492
AC
265
266source "drivers/gpu/drm/gma500/Kconfig"
267
5320918b 268source "drivers/gpu/drm/udl/Kconfig"
312fec14
DA
269
270source "drivers/gpu/drm/ast/Kconfig"
271
414c4531 272source "drivers/gpu/drm/mgag200/Kconfig"
f9aa76a8
DA
273
274source "drivers/gpu/drm/cirrus/Kconfig"
51c13278 275
96f60e37
RK
276source "drivers/gpu/drm/armada/Kconfig"
277
1a396789
BB
278source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
279
4bf8e196
LP
280source "drivers/gpu/drm/rcar-du/Kconfig"
281
51c13278 282source "drivers/gpu/drm/shmobile/Kconfig"
d8f4a9ed 283
9026e0d1
MR
284source "drivers/gpu/drm/sun4i/Kconfig"
285
8bb0daff 286source "drivers/gpu/drm/omapdrm/Kconfig"
ca18e142 287
16ea975e 288source "drivers/gpu/drm/tilcdc/Kconfig"
f64122c1
DA
289
290source "drivers/gpu/drm/qxl/Kconfig"
c8afe684 291
0a6659bd
GH
292source "drivers/gpu/drm/bochs/Kconfig"
293
dc5698e8
DA
294source "drivers/gpu/drm/virtio/Kconfig"
295
c8afe684 296source "drivers/gpu/drm/msm/Kconfig"
dee8268f 297
109eee2f
JW
298source "drivers/gpu/drm/fsl-dcu/Kconfig"
299
dee8268f 300source "drivers/gpu/drm/tegra/Kconfig"
aead40ea 301
b759012c
YF
302source "drivers/gpu/drm/stm/Kconfig"
303
aead40ea 304source "drivers/gpu/drm/panel/Kconfig"
f2cb3148 305
a33ee95f
TR
306source "drivers/gpu/drm/bridge/Kconfig"
307
f2cb3148 308source "drivers/gpu/drm/sti/Kconfig"
4a488a7a 309
6556f7f8 310source "drivers/gpu/drm/imx/Kconfig"
c8b75bca 311
57692c94
EA
312source "drivers/gpu/drm/v3d/Kconfig"
313
c8b75bca 314source "drivers/gpu/drm/vc4/Kconfig"
a8c21a54
T
315
316source "drivers/gpu/drm/etnaviv/Kconfig"
51dacf20
CP
317
318source "drivers/gpu/drm/arc/Kconfig"
23e7b2ab
XL
319
320source "drivers/gpu/drm/hisilicon/Kconfig"
119f5173
CH
321
322source "drivers/gpu/drm/mediatek/Kconfig"
d92d9c3a 323
0a886f59
SG
324source "drivers/gpu/drm/zte/Kconfig"
325
45d59d70
MV
326source "drivers/gpu/drm/mxsfb/Kconfig"
327
bbbe775e
NA
328source "drivers/gpu/drm/meson/Kconfig"
329
fa201ac2
NT
330source "drivers/gpu/drm/tinydrm/Kconfig"
331
bed41005
TC
332source "drivers/gpu/drm/pl111/Kconfig"
333
179c02fe
LW
334source "drivers/gpu/drm/tve200/Kconfig"
335
c575b7ee
OA
336source "drivers/gpu/drm/xen/Kconfig"
337
131abc56
HG
338source "drivers/gpu/drm/vboxvideo/Kconfig"
339
a1d2a633
QY
340source "drivers/gpu/drm/lima/Kconfig"
341
f3ba9122
RH
342source "drivers/gpu/drm/panfrost/Kconfig"
343
4f2a8f58
JS
344source "drivers/gpu/drm/aspeed/Kconfig"
345
d92d9c3a
DH
346# Keep legacy drivers last
347
348menuconfig DRM_LEGACY
349 bool "Enable legacy drivers (DANGEROUS)"
7e53c284 350 depends on DRM && MMU
99c48e1e 351 select DRM_VM
848ee538 352 select DRM_ATI_PCIGART if PCI
d92d9c3a
DH
353 help
354 Enable legacy DRI1 drivers. Those drivers expose unsafe and dangerous
355 APIs to user-space, which can be used to circumvent access
356 restrictions and other security measures. For backwards compatibility
357 those drivers are still available, but their use is highly
358 inadvisable and might harm your system.
359
360 You are recommended to use the safe modeset-only drivers instead, and
361 perform 3D emulation in user-space.
362
363 Unless you have strong reasons to go rogue, say "N".
364
365if DRM_LEGACY
366
367config DRM_TDFX
368 tristate "3dfx Banshee/Voodoo3+"
369 depends on DRM && PCI
370 help
371 Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
372 graphics card. If M is selected, the module will be called tdfx.
373
374config DRM_R128
375 tristate "ATI Rage 128"
376 depends on DRM && PCI
377 select FW_LOADER
378 help
379 Choose this option if you have an ATI Rage 128 graphics card. If M
380 is selected, the module will be called r128. AGP support for
381 this card is strongly suggested (unless you have a PCI version).
382
383config DRM_I810
384 tristate "Intel I810"
385 # !PREEMPT because of missing ioctl locking
386 depends on DRM && AGP && AGP_INTEL && (!PREEMPT || BROKEN)
387 help
388 Choose this option if you have an Intel I810 graphics card. If M is
389 selected, the module will be called i810. AGP support is required
390 for this driver to work.
391
392config DRM_MGA
393 tristate "Matrox g200/g400"
394 depends on DRM && PCI
395 select FW_LOADER
396 help
397 Choose this option if you have a Matrox G200, G400 or G450 graphics
398 card. If M is selected, the module will be called mga. AGP
399 support is required for this driver to work.
400
401config DRM_SIS
402 tristate "SiS video cards"
403 depends on DRM && AGP
404 depends on FB_SIS || FB_SIS=n
405 help
406 Choose this option if you have a SiS 630 or compatible video
407 chipset. If M is selected the module will be called sis. AGP
408 support is required for this driver to work.
409
410config DRM_VIA
411 tristate "Via unichrome video cards"
412 depends on DRM && PCI
413 help
414 Choose this option if you have a Via unichrome or compatible video
415 chipset. If M is selected the module will be called via.
416
417config DRM_SAVAGE
418 tristate "Savage video cards"
419 depends on DRM && PCI
420 help
421 Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
422 chipset. If M is selected the module will be called savage.
423
424endif # DRM_LEGACY
a33d42dd 425
341a0ffc
HG
426# Separate option because drm_panel_orientation_quirks.c is shared with fbdev
427config DRM_PANEL_ORIENTATION_QUIRKS
428 tristate
429
a33d42dd
CW
430config DRM_LIB_RANDOM
431 bool
432 default n