Merge tag 'drm-misc-next-2024-03-28' of https://gitlab.freedesktop.org/drm/misc/kerne...
[linux-block.git] / drivers / gpu / drm / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
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 #
8 menuconfig DRM
9         tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
10         depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && HAS_DMA
11         select DRM_PANEL_ORIENTATION_QUIRKS
12         select DRM_KMS_HELPER if DRM_FBDEV_EMULATION
13         select FB_CORE if DRM_FBDEV_EMULATION
14         select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
15         select HDMI
16         select I2C
17         select DMA_SHARED_BUFFER
18         select SYNC_FILE
19 # gallium uses SYS_kcmp for os_same_file_description() to de-duplicate
20 # device and dmabuf fd. Let's make sure that is available for our userspace.
21         select KCMP
22         select VIDEO
23         help
24           Kernel-level support for the Direct Rendering Infrastructure (DRI)
25           introduced in XFree86 4.0. If you say Y here, you need to select
26           the module that's right for your graphics card from the list below.
27           These modules provide support for synchronization, security, and
28           DMA transfers. Please see <http://dri.sourceforge.net/> for more
29           details.  You should also select and configure AGP
30           (/dev/agpgart) support if it is available for your platform.
31
32 config DRM_MIPI_DBI
33         tristate
34         depends on DRM
35         select DRM_KMS_HELPER
36
37 config DRM_MIPI_DSI
38         bool
39         depends on DRM
40
41 config DRM_DEBUG_MM
42         bool "Insert extra checks and debug info into the DRM range managers"
43         default n
44         depends on DRM
45         depends on STACKTRACE_SUPPORT
46         select STACKDEPOT
47         help
48           Enable allocation tracking of memory manager and leak detection on
49           shutdown.
50
51           Recommended for driver developers only.
52
53           If in doubt, say "N".
54
55 config DRM_USE_DYNAMIC_DEBUG
56         bool "use dynamic debug to implement drm.debug"
57         default n
58         depends on BROKEN
59         depends on DRM
60         depends on DYNAMIC_DEBUG || DYNAMIC_DEBUG_CORE
61         depends on JUMP_LABEL
62         help
63           Use dynamic-debug to avoid drm_debug_enabled() runtime overheads.
64           Due to callsite counts in DRM drivers (~4k in amdgpu) and 56
65           bytes per callsite, the .data costs can be substantial, and
66           are therefore configurable.
67
68 config DRM_KUNIT_TEST_HELPERS
69         tristate
70         depends on DRM && KUNIT
71         select DRM_KMS_HELPER
72         help
73           KUnit Helpers for KMS drivers.
74
75 config DRM_KUNIT_TEST
76         tristate "KUnit tests for DRM" if !KUNIT_ALL_TESTS
77         depends on DRM
78         depends on DRM_DISPLAY_DP_HELPER
79         depends on DRM_DISPLAY_HELPER
80         depends on KUNIT
81         depends on MMU
82         select DRM_BUDDY
83         select DRM_EXEC
84         select DRM_EXPORT_FOR_TESTS if m
85         select DRM_GEM_SHMEM_HELPER
86         select DRM_KUNIT_TEST_HELPERS
87         select DRM_LIB_RANDOM
88         select PRIME_NUMBERS
89         default KUNIT_ALL_TESTS
90         help
91           This builds unit tests for DRM. This option is not useful for
92           distributions or general kernels, but only for kernel
93           developers working on DRM and associated drivers.
94
95           For more information on KUnit and unit tests in general,
96           please refer to the KUnit documentation in
97           Documentation/dev-tools/kunit/.
98
99           If in doubt, say "N".
100
101 config DRM_KMS_HELPER
102         tristate
103         depends on DRM
104         help
105           CRTC helpers for KMS drivers.
106
107 config DRM_DEBUG_DP_MST_TOPOLOGY_REFS
108         bool "Enable refcount backtrace history in the DP MST helpers"
109         depends on STACKTRACE_SUPPORT
110         select STACKDEPOT
111         depends on DRM_KMS_HELPER
112         depends on DEBUG_KERNEL
113         depends on EXPERT
114         help
115           Enables debug tracing for topology refs in DRM's DP MST helpers. A
116           history of each topology reference/dereference will be printed to the
117           kernel log once a port or branch device's topology refcount reaches 0.
118
119           This has the potential to use a lot of memory and print some very
120           large kernel messages. If in doubt, say "N".
121
122 config DRM_DEBUG_MODESET_LOCK
123         bool "Enable backtrace history for lock contention"
124         depends on STACKTRACE_SUPPORT
125         depends on DEBUG_KERNEL
126         depends on EXPERT
127         select STACKDEPOT
128         default y if DEBUG_WW_MUTEX_SLOWPATH
129         help
130           Enable debug tracing of failures to gracefully handle drm modeset lock
131           contention. A history of each drm modeset lock path hitting -EDEADLK
132           will be saved until gracefully handled, and the backtrace will be
133           printed when attempting to lock a contended lock.
134
135           If in doubt, say "N".
136
137 config DRM_FBDEV_EMULATION
138         bool "Enable legacy fbdev support for your modesetting driver"
139         depends on DRM
140         select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
141         default FB
142         help
143           Choose this option if you have a need for the legacy fbdev
144           support. Note that this support also provides the linux console
145           support on top of your modesetting driver.
146
147           If in doubt, say "Y".
148
149 config DRM_FBDEV_OVERALLOC
150         int "Overallocation of the fbdev buffer"
151         depends on DRM_FBDEV_EMULATION
152         default 100
153         help
154           Defines the fbdev buffer overallocation in percent. Default
155           is 100. Typical values for double buffering will be 200,
156           triple buffering 300.
157
158 config DRM_FBDEV_LEAK_PHYS_SMEM
159         bool "Shamelessly allow leaking of fbdev physical address (DANGEROUS)"
160         depends on DRM_FBDEV_EMULATION && EXPERT
161         default n
162         help
163           In order to keep user-space compatibility, we want in certain
164           use-cases to keep leaking the fbdev physical address to the
165           user-space program handling the fbdev buffer.
166           This affects, not only, Amlogic, Allwinner or Rockchip devices
167           with ARM Mali GPUs using an userspace Blob.
168           This option is not supported by upstream developers and should be
169           removed as soon as possible and be considered as a broken and
170           legacy behaviour from a modern fbdev device driver.
171
172           Please send any bug reports when using this to your proprietary
173           software vendor that requires this.
174
175           If in doubt, say "N" or spread the word to your closed source
176           library vendor.
177
178 config DRM_LOAD_EDID_FIRMWARE
179         bool "Allow to specify an EDID data set instead of probing for it"
180         depends on DRM
181         help
182           Say Y here, if you want to use EDID data to be loaded from the
183           /lib/firmware directory or one of the provided built-in
184           data sets. This may be necessary, if the graphics adapter or
185           monitor are unable to provide appropriate EDID data. Since this
186           feature is provided as a workaround for broken hardware, the
187           default case is N. Details and instructions how to build your own
188           EDID data are given in Documentation/admin-guide/edid.rst.
189
190 source "drivers/gpu/drm/display/Kconfig"
191
192 config DRM_TTM
193         tristate
194         depends on DRM && MMU
195         help
196           GPU memory management subsystem for devices with multiple
197           GPU memory types. Will be enabled automatically if a device driver
198           uses it.
199
200 config DRM_TTM_KUNIT_TEST
201         tristate "KUnit tests for TTM" if !KUNIT_ALL_TESTS
202         default n
203         depends on DRM && KUNIT && MMU && (UML || COMPILE_TEST)
204         select DRM_TTM
205         select DRM_EXPORT_FOR_TESTS if m
206         select DRM_KUNIT_TEST_HELPERS
207         default KUNIT_ALL_TESTS
208         help
209           Enables unit tests for TTM, a GPU memory manager subsystem used
210           to manage memory buffers. This option is mostly useful for kernel
211           developers. It depends on (UML || COMPILE_TEST) since no other driver
212           which uses TTM can be loaded while running the tests.
213
214           If in doubt, say "N".
215
216 config DRM_EXEC
217         tristate
218         depends on DRM
219         help
220           Execution context for command submissions
221
222 config DRM_GPUVM
223         tristate
224         depends on DRM
225         help
226           GPU-VM representation providing helpers to manage a GPUs virtual
227           address space
228
229 config DRM_BUDDY
230         tristate
231         depends on DRM
232         help
233           A page based buddy allocator
234
235 config DRM_VRAM_HELPER
236         tristate
237         depends on DRM
238         help
239           Helpers for VRAM memory management
240
241 config DRM_TTM_HELPER
242         tristate
243         depends on DRM
244         select DRM_TTM
245         help
246           Helpers for ttm-based gem objects
247
248 config DRM_GEM_DMA_HELPER
249         tristate
250         depends on DRM
251         select FB_DMAMEM_HELPERS if DRM_FBDEV_EMULATION
252         help
253           Choose this if you need the GEM DMA helper functions
254
255 config DRM_GEM_SHMEM_HELPER
256         tristate
257         depends on DRM && MMU
258         help
259           Choose this if you need the GEM shmem helper functions
260
261 config DRM_SUBALLOC_HELPER
262         tristate
263         depends on DRM
264
265 config DRM_SCHED
266         tristate
267         depends on DRM
268
269 source "drivers/gpu/drm/i2c/Kconfig"
270
271 source "drivers/gpu/drm/arm/Kconfig"
272
273 source "drivers/gpu/drm/radeon/Kconfig"
274
275 source "drivers/gpu/drm/amd/amdgpu/Kconfig"
276
277 source "drivers/gpu/drm/nouveau/Kconfig"
278
279 source "drivers/gpu/drm/i915/Kconfig"
280
281 source "drivers/gpu/drm/xe/Kconfig"
282
283 source "drivers/gpu/drm/kmb/Kconfig"
284
285 config DRM_VGEM
286         tristate "Virtual GEM provider"
287         depends on DRM && MMU
288         select DRM_GEM_SHMEM_HELPER
289         help
290           Choose this option to get a virtual graphics memory manager,
291           as used by Mesa's software renderer for enhanced performance.
292           If M is selected the module will be called vgem.
293
294 source "drivers/gpu/drm/vkms/Kconfig"
295
296 source "drivers/gpu/drm/exynos/Kconfig"
297
298 source "drivers/gpu/drm/rockchip/Kconfig"
299
300 source "drivers/gpu/drm/vmwgfx/Kconfig"
301
302 source "drivers/gpu/drm/gma500/Kconfig"
303
304 source "drivers/gpu/drm/udl/Kconfig"
305
306 source "drivers/gpu/drm/ast/Kconfig"
307
308 source "drivers/gpu/drm/mgag200/Kconfig"
309
310 source "drivers/gpu/drm/armada/Kconfig"
311
312 source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
313
314 source "drivers/gpu/drm/renesas/Kconfig"
315
316 source "drivers/gpu/drm/sun4i/Kconfig"
317
318 source "drivers/gpu/drm/omapdrm/Kconfig"
319
320 source "drivers/gpu/drm/tilcdc/Kconfig"
321
322 source "drivers/gpu/drm/qxl/Kconfig"
323
324 source "drivers/gpu/drm/virtio/Kconfig"
325
326 source "drivers/gpu/drm/msm/Kconfig"
327
328 source "drivers/gpu/drm/fsl-dcu/Kconfig"
329
330 source "drivers/gpu/drm/tegra/Kconfig"
331
332 source "drivers/gpu/drm/stm/Kconfig"
333
334 source "drivers/gpu/drm/panel/Kconfig"
335
336 source "drivers/gpu/drm/bridge/Kconfig"
337
338 source "drivers/gpu/drm/sti/Kconfig"
339
340 source "drivers/gpu/drm/imx/Kconfig"
341
342 source "drivers/gpu/drm/ingenic/Kconfig"
343
344 source "drivers/gpu/drm/v3d/Kconfig"
345
346 source "drivers/gpu/drm/vc4/Kconfig"
347
348 source "drivers/gpu/drm/loongson/Kconfig"
349
350 source "drivers/gpu/drm/etnaviv/Kconfig"
351
352 source "drivers/gpu/drm/hisilicon/Kconfig"
353
354 source "drivers/gpu/drm/logicvc/Kconfig"
355
356 source "drivers/gpu/drm/mediatek/Kconfig"
357
358 source "drivers/gpu/drm/mxsfb/Kconfig"
359
360 source "drivers/gpu/drm/meson/Kconfig"
361
362 source "drivers/gpu/drm/tiny/Kconfig"
363
364 source "drivers/gpu/drm/pl111/Kconfig"
365
366 source "drivers/gpu/drm/tve200/Kconfig"
367
368 source "drivers/gpu/drm/xen/Kconfig"
369
370 source "drivers/gpu/drm/vboxvideo/Kconfig"
371
372 source "drivers/gpu/drm/lima/Kconfig"
373
374 source "drivers/gpu/drm/panfrost/Kconfig"
375
376 source "drivers/gpu/drm/panthor/Kconfig"
377
378 source "drivers/gpu/drm/aspeed/Kconfig"
379
380 source "drivers/gpu/drm/mcde/Kconfig"
381
382 source "drivers/gpu/drm/tidss/Kconfig"
383
384 source "drivers/gpu/drm/xlnx/Kconfig"
385
386 source "drivers/gpu/drm/gud/Kconfig"
387
388 source "drivers/gpu/drm/solomon/Kconfig"
389
390 source "drivers/gpu/drm/sprd/Kconfig"
391
392 source "drivers/gpu/drm/imagination/Kconfig"
393
394 config DRM_HYPERV
395         tristate "DRM Support for Hyper-V synthetic video device"
396         depends on DRM && PCI && MMU && HYPERV
397         select DRM_KMS_HELPER
398         select DRM_GEM_SHMEM_HELPER
399         help
400          This is a KMS driver for Hyper-V synthetic video device. Choose this
401          option if you would like to enable drm driver for Hyper-V virtual
402          machine. Unselect Hyper-V framebuffer driver (CONFIG_FB_HYPERV) so
403          that DRM driver is used by default.
404
405          If M is selected the module will be called hyperv_drm.
406
407 config DRM_EXPORT_FOR_TESTS
408         bool
409
410 # Separate option because drm_panel_orientation_quirks.c is shared with fbdev
411 config DRM_PANEL_ORIENTATION_QUIRKS
412         tristate
413
414 config DRM_LIB_RANDOM
415         bool
416         default n
417
418 config DRM_PRIVACY_SCREEN
419         bool
420         default n
421
422 config DRM_WERROR
423         bool "Compile the drm subsystem with warnings as errors"
424         depends on DRM && EXPERT
425         default n
426         help
427           A kernel build should not cause any compiler warnings, and this
428           enables the '-Werror' flag to enforce that rule in the drm subsystem.
429
430           The drm subsystem enables more warnings than the kernel default, so
431           this config option is disabled by default.
432
433           If in doubt, say N.