xref: /linux-6.15/drivers/gpu/drm/Kconfig (revision cafb2c9c)
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#
8menuconfig 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 HDMI
13	select I2C
14	select DMA_SHARED_BUFFER
15	select SYNC_FILE
16# gallium uses SYS_kcmp for os_same_file_description() to de-duplicate
17# device and dmabuf fd. Let's make sure that is available for our userspace.
18	select KCMP
19	select VIDEO
20	help
21	  Kernel-level support for the Direct Rendering Infrastructure (DRI)
22	  introduced in XFree86 4.0. If you say Y here, you need to select
23	  the module that's right for your graphics card from the list below.
24	  These modules provide support for synchronization, security, and
25	  DMA transfers. Please see <http://dri.sourceforge.net/> for more
26	  details.  You should also select and configure AGP
27	  (/dev/agpgart) support if it is available for your platform.
28
29if DRM
30
31config DRM_MIPI_DBI
32	tristate
33	depends on DRM
34	select DRM_KMS_HELPER
35
36config DRM_MIPI_DSI
37	bool
38	depends on DRM
39
40config DRM_DEBUG_MM
41	bool "Insert extra checks and debug info into the DRM range managers"
42	default n
43	depends on DRM
44	depends on STACKTRACE_SUPPORT
45	select STACKDEPOT
46	help
47	  Enable allocation tracking of memory manager and leak detection on
48	  shutdown.
49
50	  Recommended for driver developers only.
51
52	  If in doubt, say "N".
53
54config DRM_USE_DYNAMIC_DEBUG
55	bool "use dynamic debug to implement drm.debug"
56	default n
57	depends on BROKEN
58	depends on DRM
59	depends on DYNAMIC_DEBUG || DYNAMIC_DEBUG_CORE
60	depends on JUMP_LABEL
61	help
62	  Use dynamic-debug to avoid drm_debug_enabled() runtime overheads.
63	  Due to callsite counts in DRM drivers (~4k in amdgpu) and 56
64	  bytes per callsite, the .data costs can be substantial, and
65	  are therefore configurable.
66
67config DRM_KUNIT_TEST_HELPERS
68	tristate
69	depends on DRM && KUNIT
70	select DRM_KMS_HELPER
71	help
72	  KUnit Helpers for KMS drivers.
73
74config DRM_KUNIT_TEST
75	tristate "KUnit tests for DRM" if !KUNIT_ALL_TESTS
76	depends on DRM && KUNIT && MMU
77	select DRM_BUDDY
78	select DRM_DISPLAY_DP_HELPER
79	select DRM_DISPLAY_HDMI_STATE_HELPER
80	select DRM_DISPLAY_HELPER
81	select DRM_EXEC
82	select DRM_EXPORT_FOR_TESTS if m
83	select DRM_GEM_SHMEM_HELPER
84	select DRM_KUNIT_TEST_HELPERS
85	select DRM_LIB_RANDOM
86	select PRIME_NUMBERS
87	default KUNIT_ALL_TESTS
88	help
89	  This builds unit tests for DRM. This option is not useful for
90	  distributions or general kernels, but only for kernel
91	  developers working on DRM and associated drivers.
92
93	  For more information on KUnit and unit tests in general,
94	  please refer to the KUnit documentation in
95	  Documentation/dev-tools/kunit/.
96
97	  If in doubt, say "N".
98
99config DRM_KMS_HELPER
100	tristate
101	depends on DRM
102	help
103	  CRTC helpers for KMS drivers.
104
105config DRM_PANIC
106	bool "Display a user-friendly message when a kernel panic occurs"
107	depends on DRM
108	select FONT_SUPPORT
109	help
110	  Enable a drm panic handler, which will display a user-friendly message
111	  when a kernel panic occurs. It's useful when using a user-space
112	  console instead of fbcon.
113	  It will only work if your graphic driver supports this feature.
114	  To support Hi-DPI Display, you can enable bigger fonts like
115	  FONT_TER16x32
116
117config DRM_PANIC_FOREGROUND_COLOR
118	hex "Drm panic screen foreground color, in RGB"
119	depends on DRM_PANIC
120	default 0xffffff
121
122config DRM_PANIC_BACKGROUND_COLOR
123	hex "Drm panic screen background color, in RGB"
124	depends on DRM_PANIC
125	default 0x000000
126
127config DRM_PANIC_DEBUG
128	bool "Add a debug fs entry to trigger drm_panic"
129	depends on DRM_PANIC && DEBUG_FS
130	help
131	  Add dri/[device]/drm_panic_plane_x in the kernel debugfs, to force the
132	  panic handler to write the panic message to this plane scanout buffer.
133	  This is unsafe and should not be enabled on a production build.
134	  If in doubt, say "N".
135
136config DRM_PANIC_SCREEN
137	string "Panic screen formatter"
138	default "user"
139	depends on DRM_PANIC
140	help
141	  This option enable to choose what will be displayed when a kernel
142	  panic occurs. You can choose between "user", a short message telling
143	  the user to reboot the system, or "kmsg" which will display the last
144	  lines of kmsg.
145	  This can also be overridden by drm.panic_screen=xxxx kernel parameter
146	  or by writing to /sys/module/drm/parameters/panic_screen sysfs entry
147	  Default is "user"
148
149config DRM_PANIC_SCREEN_QR_CODE
150	bool "Add a panic screen with a QR code"
151	depends on DRM_PANIC && RUST
152	select ZLIB_DEFLATE
153	help
154	  This option adds a QR code generator, and a panic screen with a QR
155	  code. The QR code will contain the last lines of kmsg and other debug
156	  information. This should be easier for the user to report a kernel
157	  panic, with all debug information available.
158	  To use this panic screen, also set DRM_PANIC_SCREEN to "qr_code"
159
160config DRM_PANIC_SCREEN_QR_CODE_URL
161	string "Base URL of the QR code in the panic screen"
162	depends on DRM_PANIC_SCREEN_QR_CODE
163	help
164	  This option sets the base URL to report the kernel panic. If it's set
165	  the QR code will contain the URL and the kmsg compressed with zlib as
166	  a URL parameter. If it's empty, the QR code will contain the kmsg as
167	  uncompressed text only.
168	  There is a demo code in javascript, to decode and uncompress the kmsg
169	  data from the URL parameter at https://github.com/kdj0c/panic_report
170
171config DRM_PANIC_SCREEN_QR_VERSION
172	int "Maximum version (size) of the QR code."
173	depends on DRM_PANIC_SCREEN_QR_CODE
174	default 40
175	help
176	  This option limits the version (or size) of the QR code. QR code
177	  version ranges from Version 1 (21x21) to Version 40 (177x177).
178	  Smaller QR code are easier to read, but will contain less debugging
179	  data. Default is 40.
180
181config DRM_DEBUG_DP_MST_TOPOLOGY_REFS
182        bool "Enable refcount backtrace history in the DP MST helpers"
183	depends on STACKTRACE_SUPPORT
184        select STACKDEPOT
185        depends on DRM_KMS_HELPER
186        depends on DEBUG_KERNEL
187        depends on EXPERT
188        help
189          Enables debug tracing for topology refs in DRM's DP MST helpers. A
190          history of each topology reference/dereference will be printed to the
191          kernel log once a port or branch device's topology refcount reaches 0.
192
193          This has the potential to use a lot of memory and print some very
194          large kernel messages. If in doubt, say "N".
195
196config DRM_DEBUG_MODESET_LOCK
197	bool "Enable backtrace history for lock contention"
198	depends on STACKTRACE_SUPPORT
199	depends on DEBUG_KERNEL
200	depends on EXPERT
201	select STACKDEPOT
202	default y if DEBUG_WW_MUTEX_SLOWPATH
203	help
204	  Enable debug tracing of failures to gracefully handle drm modeset lock
205	  contention. A history of each drm modeset lock path hitting -EDEADLK
206	  will be saved until gracefully handled, and the backtrace will be
207	  printed when attempting to lock a contended lock.
208
209	  If in doubt, say "N".
210
211config DRM_CLIENT
212	bool
213	depends on DRM
214	help
215	  Enables support for DRM clients. DRM drivers that need
216	  struct drm_client_dev and its interfaces should select this
217	  option. Drivers that support the default clients should
218	  select DRM_CLIENT_SELECTION instead.
219
220source "drivers/gpu/drm/clients/Kconfig"
221
222config DRM_LOAD_EDID_FIRMWARE
223	bool "Allow to specify an EDID data set instead of probing for it"
224	depends on DRM
225	help
226	  Say Y here, if you want to use EDID data to be loaded from the
227	  /lib/firmware directory or one of the provided built-in
228	  data sets. This may be necessary, if the graphics adapter or
229	  monitor are unable to provide appropriate EDID data. Since this
230	  feature is provided as a workaround for broken hardware, the
231	  default case is N. Details and instructions how to build your own
232	  EDID data are given in Documentation/admin-guide/edid.rst.
233
234source "drivers/gpu/drm/display/Kconfig"
235
236config DRM_TTM
237	tristate
238	depends on DRM && MMU
239	help
240	  GPU memory management subsystem for devices with multiple
241	  GPU memory types. Will be enabled automatically if a device driver
242	  uses it.
243
244config DRM_TTM_KUNIT_TEST
245        tristate "KUnit tests for TTM" if !KUNIT_ALL_TESTS
246        default n
247        depends on DRM && KUNIT && MMU && (UML || COMPILE_TEST)
248        select DRM_TTM
249        select DRM_BUDDY
250        select DRM_EXPORT_FOR_TESTS if m
251        select DRM_KUNIT_TEST_HELPERS
252        default KUNIT_ALL_TESTS
253        help
254          Enables unit tests for TTM, a GPU memory manager subsystem used
255          to manage memory buffers. This option is mostly useful for kernel
256          developers. It depends on (UML || COMPILE_TEST) since no other driver
257          which uses TTM can be loaded while running the tests.
258
259          If in doubt, say "N".
260
261config DRM_EXEC
262	tristate
263	depends on DRM
264	help
265	  Execution context for command submissions
266
267config DRM_GPUVM
268	tristate
269	depends on DRM
270	select DRM_EXEC
271	help
272	  GPU-VM representation providing helpers to manage a GPUs virtual
273	  address space
274
275config DRM_BUDDY
276	tristate
277	depends on DRM
278	help
279	  A page based buddy allocator
280
281config DRM_VRAM_HELPER
282	tristate
283	depends on DRM
284	help
285	  Helpers for VRAM memory management
286
287config DRM_TTM_HELPER
288	tristate
289	depends on DRM
290	select DRM_TTM
291	select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
292	help
293	  Helpers for ttm-based gem objects
294
295config DRM_GEM_DMA_HELPER
296	tristate
297	depends on DRM
298	select FB_DMAMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
299	help
300	  Choose this if you need the GEM DMA helper functions
301
302config DRM_GEM_SHMEM_HELPER
303	tristate
304	depends on DRM && MMU
305	select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
306	help
307	  Choose this if you need the GEM shmem helper functions
308
309config DRM_SUBALLOC_HELPER
310	tristate
311	depends on DRM
312
313config DRM_SCHED
314	tristate
315	depends on DRM
316
317source "drivers/gpu/drm/i2c/Kconfig"
318
319source "drivers/gpu/drm/arm/Kconfig"
320
321source "drivers/gpu/drm/radeon/Kconfig"
322
323source "drivers/gpu/drm/amd/amdgpu/Kconfig"
324
325source "drivers/gpu/drm/nouveau/Kconfig"
326
327source "drivers/gpu/drm/i915/Kconfig"
328
329source "drivers/gpu/drm/xe/Kconfig"
330
331source "drivers/gpu/drm/kmb/Kconfig"
332
333config DRM_VGEM
334	tristate "Virtual GEM provider"
335	depends on DRM && MMU
336	select DRM_GEM_SHMEM_HELPER
337	help
338	  Choose this option to get a virtual graphics memory manager,
339	  as used by Mesa's software renderer for enhanced performance.
340	  If M is selected the module will be called vgem.
341
342source "drivers/gpu/drm/vkms/Kconfig"
343
344source "drivers/gpu/drm/exynos/Kconfig"
345
346source "drivers/gpu/drm/rockchip/Kconfig"
347
348source "drivers/gpu/drm/vmwgfx/Kconfig"
349
350source "drivers/gpu/drm/gma500/Kconfig"
351
352source "drivers/gpu/drm/udl/Kconfig"
353
354source "drivers/gpu/drm/ast/Kconfig"
355
356source "drivers/gpu/drm/mgag200/Kconfig"
357
358source "drivers/gpu/drm/armada/Kconfig"
359
360source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
361
362source "drivers/gpu/drm/renesas/Kconfig"
363
364source "drivers/gpu/drm/sun4i/Kconfig"
365
366source "drivers/gpu/drm/omapdrm/Kconfig"
367
368source "drivers/gpu/drm/tilcdc/Kconfig"
369
370source "drivers/gpu/drm/qxl/Kconfig"
371
372source "drivers/gpu/drm/virtio/Kconfig"
373
374source "drivers/gpu/drm/msm/Kconfig"
375
376source "drivers/gpu/drm/fsl-dcu/Kconfig"
377
378source "drivers/gpu/drm/tegra/Kconfig"
379
380source "drivers/gpu/drm/stm/Kconfig"
381
382source "drivers/gpu/drm/panel/Kconfig"
383
384source "drivers/gpu/drm/bridge/Kconfig"
385
386source "drivers/gpu/drm/sti/Kconfig"
387
388source "drivers/gpu/drm/imx/Kconfig"
389
390source "drivers/gpu/drm/ingenic/Kconfig"
391
392source "drivers/gpu/drm/v3d/Kconfig"
393
394source "drivers/gpu/drm/vc4/Kconfig"
395
396source "drivers/gpu/drm/loongson/Kconfig"
397
398source "drivers/gpu/drm/etnaviv/Kconfig"
399
400source "drivers/gpu/drm/hisilicon/Kconfig"
401
402source "drivers/gpu/drm/logicvc/Kconfig"
403
404source "drivers/gpu/drm/mediatek/Kconfig"
405
406source "drivers/gpu/drm/mxsfb/Kconfig"
407
408source "drivers/gpu/drm/meson/Kconfig"
409
410source "drivers/gpu/drm/tiny/Kconfig"
411
412source "drivers/gpu/drm/pl111/Kconfig"
413
414source "drivers/gpu/drm/tve200/Kconfig"
415
416source "drivers/gpu/drm/xen/Kconfig"
417
418source "drivers/gpu/drm/vboxvideo/Kconfig"
419
420source "drivers/gpu/drm/lima/Kconfig"
421
422source "drivers/gpu/drm/panfrost/Kconfig"
423
424source "drivers/gpu/drm/panthor/Kconfig"
425
426source "drivers/gpu/drm/aspeed/Kconfig"
427
428source "drivers/gpu/drm/mcde/Kconfig"
429
430source "drivers/gpu/drm/tidss/Kconfig"
431
432source "drivers/gpu/drm/xlnx/Kconfig"
433
434source "drivers/gpu/drm/gud/Kconfig"
435
436source "drivers/gpu/drm/solomon/Kconfig"
437
438source "drivers/gpu/drm/sprd/Kconfig"
439
440source "drivers/gpu/drm/imagination/Kconfig"
441
442config DRM_HYPERV
443	tristate "DRM Support for Hyper-V synthetic video device"
444	depends on DRM && PCI && MMU && HYPERV
445	select DRM_CLIENT_SELECTION
446	select DRM_KMS_HELPER
447	select DRM_GEM_SHMEM_HELPER
448	help
449	 This is a KMS driver for Hyper-V synthetic video device. Choose this
450	 option if you would like to enable drm driver for Hyper-V virtual
451	 machine. Unselect Hyper-V framebuffer driver (CONFIG_FB_HYPERV) so
452	 that DRM driver is used by default.
453
454	 If M is selected the module will be called hyperv_drm.
455
456config DRM_EXPORT_FOR_TESTS
457	bool
458
459# Separate option as not all DRM drivers use it
460config DRM_PANEL_BACKLIGHT_QUIRKS
461	tristate
462
463config DRM_LIB_RANDOM
464	bool
465	default n
466
467config DRM_PRIVACY_SCREEN
468	bool
469	default n
470
471config DRM_WERROR
472	bool "Compile the drm subsystem with warnings as errors"
473	depends on DRM && EXPERT
474	depends on !WERROR
475	default n
476	help
477	  A kernel build should not cause any compiler warnings, and this
478	  enables the '-Werror' flag to enforce that rule in the drm subsystem.
479
480	  The drm subsystem enables more warnings than the kernel default, so
481	  this config option is disabled by default.
482
483	  If in doubt, say N.
484
485endif
486
487# Separate option because drm_panel_orientation_quirks.c is shared with fbdev
488config DRM_PANEL_ORIENTATION_QUIRKS
489	tristate
490